aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarvin Borner2019-09-15 18:06:14 +0200
committerMarvin Borner2019-09-15 18:06:14 +0200
commitd7acec1be838230f3188b3887977ca185e38f1a4 (patch)
treec0b526422efc6ebe9f2efac14995de875e9ee108 /src
parentd3bb62c3b99b3b7108de0c2aa4d1d1ead0bd3fb8 (diff)
Added basic PS/2 keyboard driver
Diffstat (limited to 'src')
-rw-r--r--src/graphics/vga.h2
-rw-r--r--src/input/input.h10
-rw-r--r--src/input/ps2/keyboard.c50
-rw-r--r--src/input/ps2/mouse.c9
-rw-r--r--src/interrupts/isr.c2
-rw-r--r--src/kernel.c3
6 files changed, 72 insertions, 4 deletions
diff --git a/src/graphics/vga.h b/src/graphics/vga.h
index 7c96c08..efe2117 100644
--- a/src/graphics/vga.h
+++ b/src/graphics/vga.h
@@ -12,4 +12,6 @@ void terminal_set_color(uint8_t color);
void terminal_write_string(const char *data);
+void terminal_put_char(char c);
+
#endif \ No newline at end of file
diff --git a/src/input/input.h b/src/input/input.h
new file mode 100644
index 0000000..60d2f79
--- /dev/null
+++ b/src/input/input.h
@@ -0,0 +1,10 @@
+#ifndef MELVIX_INPUT_H
+#define MELVIX_INPUT_H
+
+void mouse_install();
+
+char get_mouse(int n);
+
+void keyboard_install();
+
+#endif
diff --git a/src/input/ps2/keyboard.c b/src/input/ps2/keyboard.c
new file mode 100644
index 0000000..bd8a4ba
--- /dev/null
+++ b/src/input/ps2/keyboard.c
@@ -0,0 +1,50 @@
+#include "../../interrupts/interrupts.h"
+#include "../../io/io.h"
+#include "../../graphics/vga.h"
+
+unsigned char keymap[128] = {
+ 0 /*E*/, 27, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '=', '\b',
+ '\t', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', '[', ']', '\n',
+ 0 /*C*/, 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';', '\'', '`', 0 /*LS*/,
+ '\\', 'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/', 0 /*RS*/, '*',
+ 0, // Alt key
+ ' ', // Space bar
+ 0, // Caps lock
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // F keys
+ 0, // Num lock
+ 0, // Scroll lock
+ 0, // Home key
+ 0, // Up arrow
+ 0, // Page up
+ '-',
+ 0, // Left arrow
+ 0,
+ 0, // Right arrow
+ '+',
+ 0, // End key
+ 0, // Down arrow
+ 0, // Page down
+ 0, // Insert key
+ 0, // Delete key
+ 0, 0, 0,
+ 0, // F11
+ 0, // F12
+ 0, // Other keys
+};
+
+void keyboard_handler(struct regs *r) {
+ unsigned char scan_code;
+
+ scan_code = receive(0x60);
+
+ if (scan_code & 0x80) {
+ // Release
+ } else {
+ terminal_put_char(keymap[scan_code]);
+ }
+}
+
+/* Installs the keyboard handler into IRQ1 */
+void keyboard_install() {
+ irq_install_handler(1, keyboard_handler);
+}
diff --git a/src/input/ps2/mouse.c b/src/input/ps2/mouse.c
index 5113c70..191c270 100644
--- a/src/input/ps2/mouse.c
+++ b/src/input/ps2/mouse.c
@@ -1,4 +1,7 @@
#include "../../io/io.h"
+#include "../../interrupts/interrupts.h"
+#include "../../graphics/vga.h"
+#include "../input.h"
char mouse_cycle = 0;
signed char mouse_byte[3], mouse_ex[3];
@@ -8,7 +11,7 @@ int mouse_but_1 = 0;
int mouse_but_2 = 0;
int mm_n[3] = {0, 0, 0,};
-void mouse_handler(struct iregs *a_r) {
+void mouse_handler(struct regs *a_r) {
switch (mouse_cycle) {
case 0:
mouse_byte[0] = receive(0x60);
@@ -32,6 +35,8 @@ void mouse_handler(struct iregs *a_r) {
mouse_ex[2] = mouse_byte[2];
mm_n[2] = 1;
break;
+ default:
+ break;
}
}
@@ -92,7 +97,7 @@ void mouse_install() {
mouse_read();
// Setup the mouse handler
- // irq_install_handler(12, mouse_handler);
+ irq_install_handler(2, mouse_handler);
}
diff --git a/src/interrupts/isr.c b/src/interrupts/isr.c
index aea1ce6..a91838f 100644
--- a/src/interrupts/isr.c
+++ b/src/interrupts/isr.c
@@ -106,7 +106,7 @@ void isrs_install() {
}
// Error exception messages
-unsigned char *exception_messages[] = {
+const char *exception_messages[] = {
"Division By Zero",
"Debug",
"Non Maskable Interrupt",
diff --git a/src/kernel.c b/src/kernel.c
index 73bed6f..e4b8a37 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -11,8 +11,9 @@ void kernel_main(void) {
isrs_install();
irq_install();
timer_install();
+ keyboard_install();
mouse_install();
terminal_write_string("Melvix loaded successfully!\n");
- // __asm__ ("div %0" :: "r"(0)); Exception testing x/0
+ // __asm__ ("div %0" :: "r"(0)); // Exception testing x/0
} \ No newline at end of file