3 * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
6 * This is free software. You are permitted to use,
7 * redistribute, and modify it as specified in the file "COPYING".
11 * Information sources:
12 * - Chapter 8 of _The Undocumented PC_, 2nd ed, by Frank van Gilluwe,
14 * - Pages 400-409 of _The Programmers PC Sourcebook_, by Thom Hogan,
20 * - Peter Gnodde <peter@pcswebdesign.nl> added support for
21 * the CTRL and ALT modifiers
26 * - Right now we're assuming an 83-key keyboard.
27 * Should add support for 101+ keyboards.
28 * - Should toggle keyboard LEDs.
31 #include <geekos/kthread.h>
32 #include <geekos/kassert.h>
33 #include <geekos/screen.h>
34 #include <geekos/irq.h>
35 #include <geekos/io.h>
36 #include <geekos/keyboard.h>
39 #include <geekos/vmm_stubs.h>
43 static enum {TARGET_GEEKOS, TARGET_VMM} target = TARGET_VMM;
48 /* ----------------------------------------------------------------------
49 * Private data and functions
50 * ---------------------------------------------------------------------- */
53 * Current shift state.
55 #define LEFT_SHIFT 0x01
56 #define RIGHT_SHIFT 0x02
57 #define LEFT_CTRL 0x04
58 #define RIGHT_CTRL 0x08
60 #define RIGHT_ALT 0x20
61 #define SHIFT_MASK (LEFT_SHIFT | RIGHT_SHIFT)
62 #define CTRL_MASK (LEFT_CTRL | RIGHT_CTRL)
63 #define ALT_MASK (LEFT_ALT | RIGHT_ALT)
64 static unsigned s_shiftState = 0;
67 * Queue for keycodes, in case they arrive faster than consumer
70 #define QUEUE_SIZE 256
71 #define QUEUE_MASK 0xff
72 #define NEXT(index) (((index) + 1) & QUEUE_MASK)
73 static Keycode s_queue[QUEUE_SIZE];
74 static int s_queueHead, s_queueTail;
77 * Wait queue for thread(s) waiting for keyboard events.
79 static struct Thread_Queue s_waitQueue;
82 * Translate from scan code to key code, when shift is not pressed.
84 static const Keycode s_scanTableNoShift[] = {
85 KEY_UNKNOWN, ASCII_ESC, '1', '2', /* 0x00 - 0x03 */
86 '3', '4', '5', '6', /* 0x04 - 0x07 */
87 '7', '8', '9', '0', /* 0x08 - 0x0B */
88 '-', '=', ASCII_BS, '\t', /* 0x0C - 0x0F */
89 'q', 'w', 'e', 'r', /* 0x10 - 0x13 */
90 't', 'y', 'u', 'i', /* 0x14 - 0x17 */
91 'o', 'p', '[', ']', /* 0x18 - 0x1B */
92 '\r', KEY_LCTRL, 'a', 's', /* 0x1C - 0x1F */
93 'd', 'f', 'g', 'h', /* 0x20 - 0x23 */
94 'j', 'k', 'l', ';', /* 0x24 - 0x27 */
95 '\'', '`', KEY_LSHIFT, '\\', /* 0x28 - 0x2B */
96 'z', 'x', 'c', 'v', /* 0x2C - 0x2F */
97 'b', 'n', 'm', ',', /* 0x30 - 0x33 */
98 '.', '/', KEY_RSHIFT, KEY_PRINTSCRN, /* 0x34 - 0x37 */
99 KEY_LALT, ' ', KEY_CAPSLOCK, KEY_F1, /* 0x38 - 0x3B */
100 KEY_F2, KEY_F3, KEY_F4, KEY_F5, /* 0x3C - 0x3F */
101 KEY_F6, KEY_F7, KEY_F8, KEY_F9, /* 0x40 - 0x43 */
102 KEY_F10, KEY_NUMLOCK, KEY_SCRLOCK, KEY_KPHOME, /* 0x44 - 0x47 */
103 KEY_KPUP, KEY_KPPGUP, KEY_KPMINUS, KEY_KPLEFT, /* 0x48 - 0x4B */
104 KEY_KPCENTER, KEY_KPRIGHT, KEY_KPPLUS, KEY_KPEND, /* 0x4C - 0x4F */
105 KEY_KPDOWN, KEY_KPPGDN, KEY_KPINSERT, KEY_KPDEL, /* 0x50 - 0x53 */
106 KEY_SYSREQ, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, /* 0x54 - 0x57 */
108 #define SCAN_TABLE_SIZE (sizeof(s_scanTableNoShift) / sizeof(Keycode))
111 * Translate from scan code to key code, when shift *is* pressed.
112 * Keep this in sync with the unshifted table above!
113 * They must be the same size.
115 static const Keycode s_scanTableWithShift[] = {
116 KEY_UNKNOWN, ASCII_ESC, '!', '@', /* 0x00 - 0x03 */
117 '#', '$', '%', '^', /* 0x04 - 0x07 */
118 '&', '*', '(', ')', /* 0x08 - 0x0B */
119 '_', '+', ASCII_BS, '\t', /* 0x0C - 0x0F */
120 'Q', 'W', 'E', 'R', /* 0x10 - 0x13 */
121 'T', 'Y', 'U', 'I', /* 0x14 - 0x17 */
122 'O', 'P', '{', '}', /* 0x18 - 0x1B */
123 '\r', KEY_LCTRL, 'A', 'S', /* 0x1C - 0x1F */
124 'D', 'F', 'G', 'H', /* 0x20 - 0x23 */
125 'J', 'K', 'L', ':', /* 0x24 - 0x27 */
126 '"', '~', KEY_LSHIFT, '|', /* 0x28 - 0x2B */
127 'Z', 'X', 'C', 'V', /* 0x2C - 0x2F */
128 'B', 'N', 'M', '<', /* 0x30 - 0x33 */
129 '>', '?', KEY_RSHIFT, KEY_PRINTSCRN, /* 0x34 - 0x37 */
130 KEY_LALT, ' ', KEY_CAPSLOCK, KEY_F1, /* 0x38 - 0x3B */
131 KEY_F2, KEY_F3, KEY_F4, KEY_F5, /* 0x3C - 0x3F */
132 KEY_F6, KEY_F7, KEY_F8, KEY_F9, /* 0x40 - 0x43 */
133 KEY_F10, KEY_NUMLOCK, KEY_SCRLOCK, KEY_KPHOME, /* 0x44 - 0x47 */
134 KEY_KPUP, KEY_KPPGUP, KEY_KPMINUS, KEY_KPLEFT, /* 0x48 - 0x4B */
135 KEY_KPCENTER, KEY_KPRIGHT, KEY_KPPLUS, KEY_KPEND, /* 0x4C - 0x4F */
136 KEY_KPDOWN, KEY_KPPGDN, KEY_KPINSERT, KEY_KPDEL, /* 0x50 - 0x53 */
137 KEY_SYSREQ, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, /* 0x54 - 0x57 */
140 static __inline__ bool Is_Queue_Empty(void)
142 return s_queueHead == s_queueTail;
145 static __inline__ bool Is_Queue_Full(void)
147 return NEXT(s_queueTail) == s_queueHead;
150 static __inline__ void Enqueue_Keycode(Keycode keycode)
152 if (!Is_Queue_Full()) {
153 s_queue[ s_queueTail ] = keycode;
154 s_queueTail = NEXT(s_queueTail);
158 static __inline__ Keycode Dequeue_Keycode(void)
161 KASSERT(!Is_Queue_Empty());
162 result = s_queue[ s_queueHead ];
163 s_queueHead = NEXT(s_queueHead);
168 * Handler for keyboard interrupts.
170 static void Keyboard_Interrupt_Handler(struct Interrupt_State* state)
172 uchar_t raw_status, raw_scancode;
174 uchar_t status, scanCode;
176 bool release = false, shift;
182 //Print("Keyboard\n");
185 status = In_Byte(KB_CMD);
191 if ((status & KB_OUTPUT_FULL) != 0) {
192 /* There is a byte available */
193 scanCode = In_Byte(KB_DATA);
194 raw_scancode=scanCode;
195 //Print("Keyboard: status=0x%x, scancode=0x%x\n", raw_status, raw_scancode);
198 * Print("code=%x%s\n", scanCode, (scanCode&0x80) ? " [release]" : "");
201 if (scanCode & KB_KEY_RELEASE) {
203 scanCode &= ~(KB_KEY_RELEASE);
206 if (scanCode >= SCAN_TABLE_SIZE) {
207 Print("Unknown scan code: %x\n", scanCode);
211 /* Process the key */
212 shift = ((s_shiftState & SHIFT_MASK) != 0);
213 keycode = shift ? s_scanTableWithShift[scanCode] : s_scanTableNoShift[scanCode];
217 /* Update shift, control and alt state */
242 s_shiftState &= ~(flag);
244 s_shiftState |= flag;
247 * Shift, control and alt keys don't have to be
248 * queued, flags will be set!
252 goto skip_flagchange;
255 /* Format the new keycode */
257 keycode |= KEY_SHIFT_FLAG;
258 if ((s_shiftState & CTRL_MASK) != 0)
259 keycode |= KEY_CTRL_FLAG;
260 if ((s_shiftState & ALT_MASK) != 0)
261 keycode |= KEY_ALT_FLAG;
263 keycode |= KEY_RELEASE_FLAG;
268 if (target == TARGET_GEEKOS) {
269 if (raw_scancode==0xc4) { // F10 release
270 Print("Switching keyboard to VMM\n");
276 /* Put the keycode in the buffer */
277 Enqueue_Keycode(keycode);
279 /* Wake up event consumers */
280 Wake_Up(&s_waitQueue);
283 * Pick a new thread upon return from interrupt
284 * (hopefully the one waiting for the keyboard event)
286 g_needReschedule = true;
288 } else if (target == TARGET_VMM) {
290 if (raw_scancode == 0xc4) { // F10 release
291 Print("Switching keyboard to GeekOS\n");
292 target = TARGET_GEEKOS;
294 send_key_to_vmm(raw_status, raw_scancode);
305 /* ----------------------------------------------------------------------
307 * ---------------------------------------------------------------------- */
309 void Init_Keyboard(void)
313 Print("Initializing keyboard...\n");
315 /* Start out with no shift keys enabled. */
318 /* Buffer is initially empty. */
319 s_queueHead = s_queueTail = 0;
321 /* Install interrupt handler */
322 Install_IRQ(KB_IRQ, Keyboard_Interrupt_Handler);
324 /* Enable IRQ1 (keyboard) */
325 irqMask = Get_IRQ_Mask();
326 irqMask &= ~(1 << KB_IRQ);
327 Set_IRQ_Mask(irqMask);
331 * Poll for a key event.
332 * Returns true if a key is available,
333 * false if not. If a key event is available,
334 * it will be stored in the location pointed to
337 bool Read_Key(Keycode* keycode)
341 iflag = Begin_Int_Atomic();
343 result = !Is_Queue_Empty();
345 *keycode = Dequeue_Keycode();
348 End_Int_Atomic(iflag);
354 * Wait for a keycode to arrive.
355 * Uses the keyboard wait queue to sleep until
358 Keycode Wait_For_Key(void)
361 Keycode keycode = KEY_UNKNOWN;
363 iflag = Begin_Int_Atomic();
366 gotKey = !Is_Queue_Empty();
368 keycode = Dequeue_Keycode();
374 End_Int_Atomic(iflag);