Move debugging messages to appropriate functions.
[seabios.git] / src / kbd.c
1 // 16bit code to handle keyboard requests.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "biosvar.h" // struct bregs
9 #include "util.h" // debug_enter
10 #include "config.h" // CONFIG_*
11
12 //--------------------------------------------------------------------------
13 // keyboard_panic
14 //--------------------------------------------------------------------------
15 static void
16 keyboard_panic(u16 status)
17 {
18     // If you're getting a 993 keyboard panic here,
19     // please see the comment in keyboard_init
20
21     BX_PANIC("Keyboard error:%u\n",status);
22 }
23
24 static void
25 kbd_flush(u8 code)
26 {
27     u16 max = 0xffff;
28     while ((inb(PORT_PS2_STATUS) & 0x02) && (--max > 0))
29         outb(code, PORT_DIAG);
30     if (!max && code != 0xff)
31         keyboard_panic(code);
32 }
33
34 static void
35 kbd_waitdata(u8 code)
36 {
37     u16 max = 0xffff;
38     while ( ((inb(PORT_PS2_STATUS) & 0x01) == 0) && (--max>0) )
39         outb(code, PORT_DIAG);
40     if (!max)
41         keyboard_panic(code);
42 }
43
44 //--------------------------------------------------------------------------
45 // keyboard_init
46 //--------------------------------------------------------------------------
47 // this file is based on LinuxBIOS implementation of keyboard.c
48 static void
49 keyboard_init()
50 {
51     if (CONFIG_COREBOOT)
52         // Coreboot already does low-level keyboard init.
53         return;
54
55     /* ------------------- Flush buffers ------------------------*/
56     /* Wait until buffer is empty */
57     kbd_flush(0xff);
58
59     /* flush incoming keys */
60     u16 max=0x2000;
61     while (--max > 0) {
62         outb(0x00, PORT_DIAG);
63         if (inb(PORT_PS2_STATUS) & 0x01) {
64             inb(PORT_PS2_DATA);
65             max = 0x2000;
66         }
67     }
68
69     // Due to timer issues, and if the IPS setting is > 15000000,
70     // the incoming keys might not be flushed here. That will
71     // cause a panic a few lines below.  See sourceforge bug report :
72     // [ 642031 ] FATAL: Keyboard RESET error:993
73
74     /* ------------------- controller side ----------------------*/
75     /* send cmd = 0xAA, self test 8042 */
76     outb(0xaa, PORT_PS2_STATUS);
77
78     kbd_flush(0x00);
79     kbd_waitdata(0x01);
80
81     /* read self-test result, 0x55 should be returned from 0x60 */
82     if (inb(PORT_PS2_DATA) != 0x55)
83         keyboard_panic(991);
84
85     /* send cmd = 0xAB, keyboard interface test */
86     outb(0xab, PORT_PS2_STATUS);
87
88     kbd_flush(0x10);
89     kbd_waitdata(0x11);
90
91     /* read keyboard interface test result, */
92     /* 0x00 should be returned form 0x60 */
93     if (inb(PORT_PS2_DATA) != 0x00)
94         keyboard_panic(992);
95
96     /* Enable Keyboard clock */
97     outb(0xae, PORT_PS2_STATUS);
98     outb(0xa8, PORT_PS2_STATUS);
99
100     /* ------------------- keyboard side ------------------------*/
101     /* reset kerboard and self test  (keyboard side) */
102     outb(0xff, PORT_PS2_DATA);
103
104     kbd_flush(0x20);
105     kbd_waitdata(0x21);
106
107     /* keyboard should return ACK */
108     if (inb(PORT_PS2_DATA) != 0xfa)
109         keyboard_panic(993);
110
111     kbd_waitdata(0x31);
112
113     if (inb(PORT_PS2_DATA) != 0xaa)
114         keyboard_panic(994);
115
116     /* Disable keyboard */
117     outb(0xf5, PORT_PS2_DATA);
118
119     kbd_flush(0x40);
120     kbd_waitdata(0x41);
121
122     /* keyboard should return ACK */
123     if (inb(PORT_PS2_DATA) != 0xfa)
124         keyboard_panic(995);
125
126     /* Write Keyboard Mode */
127     outb(0x60, PORT_PS2_STATUS);
128
129     kbd_flush(0x50);
130
131     /* send cmd: scan code convert, disable mouse, enable IRQ 1 */
132     outb(0x61, PORT_PS2_DATA);
133
134     kbd_flush(0x60);
135
136     /* Enable keyboard */
137     outb(0xf4, PORT_PS2_DATA);
138
139     kbd_flush(0x70);
140     kbd_waitdata(0x71);
141
142     /* keyboard should return ACK */
143     if (inb(PORT_PS2_DATA) != 0xfa)
144         keyboard_panic(996);
145
146     outb(0x77, PORT_DIAG);
147 }
148
149 void
150 kbd_setup()
151 {
152     dprintf(3, "init keyboard\n");
153     u16 x = offsetof(struct bios_data_area_s, kbd_buf) - 0x400;
154     SET_BDA(kbd_mode, 0x10);
155     SET_BDA(kbd_buf_head, x);
156     SET_BDA(kbd_buf_tail, x);
157     SET_BDA(kbd_buf_start_offset, x);
158
159     SET_BDA(kbd_buf_end_offset
160             , x + FIELD_SIZEOF(struct bios_data_area_s, kbd_buf));
161
162     keyboard_init();
163 }
164
165 static u8
166 enqueue_key(u8 scan_code, u8 ascii_code)
167 {
168     u16 buffer_start = GET_BDA(kbd_buf_start_offset);
169     u16 buffer_end   = GET_BDA(kbd_buf_end_offset);
170
171     u16 buffer_head = GET_BDA(kbd_buf_head);
172     u16 buffer_tail = GET_BDA(kbd_buf_tail);
173
174     u16 temp_tail = buffer_tail;
175     buffer_tail += 2;
176     if (buffer_tail >= buffer_end)
177         buffer_tail = buffer_start;
178
179     if (buffer_tail == buffer_head)
180         return 0;
181
182     SET_FARVAR(SEG_BDA, *(u8*)(temp_tail+0x400+0), ascii_code);
183     SET_FARVAR(SEG_BDA, *(u8*)(temp_tail+0x400+1), scan_code);
184     SET_BDA(kbd_buf_tail, buffer_tail);
185     return 1;
186 }
187
188 static u8
189 dequeue_key(u8 *scan_code, u8 *ascii_code, u8 incr)
190 {
191     u16 buffer_head;
192     u16 buffer_tail;
193     for (;;) {
194         buffer_head = GET_BDA(kbd_buf_head);
195         buffer_tail = GET_BDA(kbd_buf_tail);
196
197         if (buffer_head != buffer_tail)
198             break;
199         if (!incr)
200             return 0;
201         cpu_relax();
202     }
203
204     *ascii_code = GET_FARVAR(SEG_BDA, *(u8*)(buffer_head+0x400+0));
205     *scan_code  = GET_FARVAR(SEG_BDA, *(u8*)(buffer_head+0x400+1));
206
207     if (incr) {
208         u16 buffer_start = GET_BDA(kbd_buf_start_offset);
209         u16 buffer_end   = GET_BDA(kbd_buf_end_offset);
210
211         buffer_head += 2;
212         if (buffer_head >= buffer_end)
213             buffer_head = buffer_start;
214         SET_BDA(kbd_buf_head, buffer_head);
215     }
216     return 1;
217 }
218
219 // read keyboard input
220 static void
221 handle_1600(struct bregs *regs)
222 {
223     u8 scan_code, ascii_code;
224     dequeue_key(&scan_code, &ascii_code, 1);
225     if (scan_code != 0 && ascii_code == 0xF0)
226         ascii_code = 0;
227     else if (ascii_code == 0xE0)
228         ascii_code = 0;
229     regs->ax = (scan_code << 8) | ascii_code;
230 }
231
232 // check keyboard status
233 static void
234 handle_1601(struct bregs *regs)
235 {
236     u8 scan_code, ascii_code;
237     if (!dequeue_key(&scan_code, &ascii_code, 0)) {
238         regs->flags |= F_ZF;
239         return;
240     }
241     if (scan_code != 0 && ascii_code == 0xF0)
242         ascii_code = 0;
243     else if (ascii_code == 0xE0)
244         ascii_code = 0;
245     regs->ax = (scan_code << 8) | ascii_code;
246     regs->flags &= ~F_ZF;
247 }
248
249 // get shift flag status
250 static void
251 handle_1602(struct bregs *regs)
252 {
253     regs->al = GET_BDA(kbd_flag0);
254 }
255
256 // store key-stroke into buffer
257 static void
258 handle_1605(struct bregs *regs)
259 {
260     regs->al = !enqueue_key(regs->ch, regs->cl);
261 }
262
263 // GET KEYBOARD FUNCTIONALITY
264 static void
265 handle_1609(struct bregs *regs)
266 {
267     // bit Bochs Description
268     //  7    0   reserved
269     //  6    0   INT 16/AH=20h-22h supported (122-key keyboard support)
270     //  5    1   INT 16/AH=10h-12h supported (enhanced keyboard support)
271     //  4    1   INT 16/AH=0Ah supported
272     //  3    0   INT 16/AX=0306h supported
273     //  2    0   INT 16/AX=0305h supported
274     //  1    0   INT 16/AX=0304h supported
275     //  0    0   INT 16/AX=0300h supported
276     //
277     regs->al = 0x30;
278 }
279
280 // GET KEYBOARD ID
281 static void
282 handle_160a(struct bregs *regs)
283 {
284     outb(0xf2, PORT_PS2_DATA);
285     /* Wait for data */
286     u16 max=0xffff;
287     while ( ((inb(PORT_PS2_STATUS) & 0x01) == 0) && (--max>0) )
288         outb(0x00, PORT_DIAG);
289     if (!max)
290         return;
291     if (inb(PORT_PS2_DATA) != 0xfa) {
292         regs->bx = 0;
293         return;
294     }
295     u16 kbd_code = 0;
296     u8 count = 2;
297     do {
298         max=0xffff;
299         while ( ((inb(PORT_PS2_STATUS) & 0x01) == 0) && (--max>0) )
300             outb(0x00, PORT_DIAG);
301         if (max>0x0) {
302             kbd_code >>= 8;
303             kbd_code |= (inb(PORT_PS2_DATA) << 8);
304         }
305     } while (--count>0);
306     regs->bx = kbd_code;
307 }
308
309 // read MF-II keyboard input
310 static void
311 handle_1610(struct bregs *regs)
312 {
313     u8 scan_code, ascii_code;
314     dequeue_key(&scan_code, &ascii_code, 1);
315     if (scan_code != 0 && ascii_code == 0xF0)
316         ascii_code = 0;
317     regs->ax = (scan_code << 8) | ascii_code;
318 }
319
320 // check MF-II keyboard status
321 static void
322 handle_1611(struct bregs *regs)
323 {
324     u8 scan_code, ascii_code;
325     if (!dequeue_key(&scan_code, &ascii_code, 0)) {
326         regs->flags |= F_ZF;
327         return;
328     }
329     if (scan_code != 0 && ascii_code == 0xF0)
330         ascii_code = 0;
331     regs->ax = (scan_code << 8) | ascii_code;
332     regs->flags &= ~F_ZF;
333 }
334
335 // get extended keyboard status
336 static void
337 handle_1612(struct bregs *regs)
338 {
339     regs->al = GET_BDA(kbd_flag0);
340     regs->ah = (GET_BDA(kbd_flag1) & 0x73) | (GET_BDA(kbd_mode) & 0x0c);
341     //BX_DEBUG_INT16("int16: func 12 sending %04x\n",AX);
342 }
343
344 static void
345 handle_166f(struct bregs *regs)
346 {
347     if (regs->al == 0x08)
348         // unsupported, aka normal keyboard
349         regs->ah = 2;
350 }
351
352 // keyboard capability check called by DOS 5.0+ keyb
353 static void
354 handle_1692(struct bregs *regs)
355 {
356     // function int16 ah=0x10-0x12 supported
357     regs->ah = 0x80;
358 }
359
360 // 122 keys capability check called by DOS 5.0+ keyb
361 static void
362 handle_16a2(struct bregs *regs)
363 {
364     // don't change AH : function int16 ah=0x20-0x22 NOT supported
365 }
366
367 static void
368 set_leds()
369 {
370     u8 shift_flags = GET_BDA(kbd_flag0);
371     u8 led_flags = GET_BDA(kbd_led);
372     if (((shift_flags >> 4) & 0x07) ^ ((led_flags & 0x07) == 0))
373         return;
374
375     outb(0xed, PORT_PS2_DATA);
376     while ((inb(PORT_PS2_STATUS) & 0x01) == 0)
377         outb(0x21, PORT_DIAG);
378     if (inb(PORT_PS2_DATA) == 0xfa) {
379         led_flags &= 0xf8;
380         led_flags |= (shift_flags >> 4) & 0x07;
381         outb(led_flags & 0x07, PORT_PS2_DATA);
382         while ((inb(PORT_PS2_STATUS) & 0x01) == 0)
383             outb(0x21, PORT_DIAG);
384         inb(PORT_PS2_DATA);
385         SET_BDA(kbd_led, led_flags);
386     }
387 }
388
389 // INT 16h Keyboard Service Entry Point
390 void VISIBLE16
391 handle_16(struct bregs *regs)
392 {
393     //debug_enter(regs);
394
395     set_leds();
396
397     irq_enable();
398
399     switch (regs->ah) {
400     case 0x00: handle_1600(regs); break;
401     case 0x01: handle_1601(regs); break;
402     case 0x02: handle_1602(regs); break;
403     case 0x05: handle_1605(regs); break;
404     case 0x09: handle_1609(regs); break;
405     case 0x0a: handle_160a(regs); break;
406     case 0x10: handle_1610(regs); break;
407     case 0x11: handle_1611(regs); break;
408     case 0x12: handle_1612(regs); break;
409     case 0x92: handle_1692(regs); break;
410     case 0xa2: handle_16a2(regs); break;
411     case 0x6f: handle_166f(regs); break;
412     }
413 }
414
415 #define none 0
416 #define MAX_SCAN_CODE 0x58
417
418 static struct scaninfo {
419     u16 normal;
420     u16 shift;
421     u16 control;
422     u16 alt;
423     u8 lock_flags;
424 } scan_to_scanascii[MAX_SCAN_CODE + 1] = {
425     {   none,   none,   none,   none, none },
426     { 0x011b, 0x011b, 0x011b, 0x0100, none }, /* escape */
427     { 0x0231, 0x0221,   none, 0x7800, none }, /* 1! */
428     { 0x0332, 0x0340, 0x0300, 0x7900, none }, /* 2@ */
429     { 0x0433, 0x0423,   none, 0x7a00, none }, /* 3# */
430     { 0x0534, 0x0524,   none, 0x7b00, none }, /* 4$ */
431     { 0x0635, 0x0625,   none, 0x7c00, none }, /* 5% */
432     { 0x0736, 0x075e, 0x071e, 0x7d00, none }, /* 6^ */
433     { 0x0837, 0x0826,   none, 0x7e00, none }, /* 7& */
434     { 0x0938, 0x092a,   none, 0x7f00, none }, /* 8* */
435     { 0x0a39, 0x0a28,   none, 0x8000, none }, /* 9( */
436     { 0x0b30, 0x0b29,   none, 0x8100, none }, /* 0) */
437     { 0x0c2d, 0x0c5f, 0x0c1f, 0x8200, none }, /* -_ */
438     { 0x0d3d, 0x0d2b,   none, 0x8300, none }, /* =+ */
439     { 0x0e08, 0x0e08, 0x0e7f,   none, none }, /* backspace */
440     { 0x0f09, 0x0f00,   none,   none, none }, /* tab */
441     { 0x1071, 0x1051, 0x1011, 0x1000, 0x40 }, /* Q */
442     { 0x1177, 0x1157, 0x1117, 0x1100, 0x40 }, /* W */
443     { 0x1265, 0x1245, 0x1205, 0x1200, 0x40 }, /* E */
444     { 0x1372, 0x1352, 0x1312, 0x1300, 0x40 }, /* R */
445     { 0x1474, 0x1454, 0x1414, 0x1400, 0x40 }, /* T */
446     { 0x1579, 0x1559, 0x1519, 0x1500, 0x40 }, /* Y */
447     { 0x1675, 0x1655, 0x1615, 0x1600, 0x40 }, /* U */
448     { 0x1769, 0x1749, 0x1709, 0x1700, 0x40 }, /* I */
449     { 0x186f, 0x184f, 0x180f, 0x1800, 0x40 }, /* O */
450     { 0x1970, 0x1950, 0x1910, 0x1900, 0x40 }, /* P */
451     { 0x1a5b, 0x1a7b, 0x1a1b,   none, none }, /* [{ */
452     { 0x1b5d, 0x1b7d, 0x1b1d,   none, none }, /* ]} */
453     { 0x1c0d, 0x1c0d, 0x1c0a,   none, none }, /* Enter */
454     {   none,   none,   none,   none, none }, /* L Ctrl */
455     { 0x1e61, 0x1e41, 0x1e01, 0x1e00, 0x40 }, /* A */
456     { 0x1f73, 0x1f53, 0x1f13, 0x1f00, 0x40 }, /* S */
457     { 0x2064, 0x2044, 0x2004, 0x2000, 0x40 }, /* D */
458     { 0x2166, 0x2146, 0x2106, 0x2100, 0x40 }, /* F */
459     { 0x2267, 0x2247, 0x2207, 0x2200, 0x40 }, /* G */
460     { 0x2368, 0x2348, 0x2308, 0x2300, 0x40 }, /* H */
461     { 0x246a, 0x244a, 0x240a, 0x2400, 0x40 }, /* J */
462     { 0x256b, 0x254b, 0x250b, 0x2500, 0x40 }, /* K */
463     { 0x266c, 0x264c, 0x260c, 0x2600, 0x40 }, /* L */
464     { 0x273b, 0x273a,   none,   none, none }, /* ;: */
465     { 0x2827, 0x2822,   none,   none, none }, /* '" */
466     { 0x2960, 0x297e,   none,   none, none }, /* `~ */
467     {   none,   none,   none,   none, none }, /* L shift */
468     { 0x2b5c, 0x2b7c, 0x2b1c,   none, none }, /* |\ */
469     { 0x2c7a, 0x2c5a, 0x2c1a, 0x2c00, 0x40 }, /* Z */
470     { 0x2d78, 0x2d58, 0x2d18, 0x2d00, 0x40 }, /* X */
471     { 0x2e63, 0x2e43, 0x2e03, 0x2e00, 0x40 }, /* C */
472     { 0x2f76, 0x2f56, 0x2f16, 0x2f00, 0x40 }, /* V */
473     { 0x3062, 0x3042, 0x3002, 0x3000, 0x40 }, /* B */
474     { 0x316e, 0x314e, 0x310e, 0x3100, 0x40 }, /* N */
475     { 0x326d, 0x324d, 0x320d, 0x3200, 0x40 }, /* M */
476     { 0x332c, 0x333c,   none,   none, none }, /* ,< */
477     { 0x342e, 0x343e,   none,   none, none }, /* .> */
478     { 0x352f, 0x353f,   none,   none, none }, /* /? */
479     {   none,   none,   none,   none, none }, /* R Shift */
480     { 0x372a, 0x372a,   none,   none, none }, /* * */
481     {   none,   none,   none,   none, none }, /* L Alt */
482     { 0x3920, 0x3920, 0x3920, 0x3920, none }, /* space */
483     {   none,   none,   none,   none, none }, /* caps lock */
484     { 0x3b00, 0x5400, 0x5e00, 0x6800, none }, /* F1 */
485     { 0x3c00, 0x5500, 0x5f00, 0x6900, none }, /* F2 */
486     { 0x3d00, 0x5600, 0x6000, 0x6a00, none }, /* F3 */
487     { 0x3e00, 0x5700, 0x6100, 0x6b00, none }, /* F4 */
488     { 0x3f00, 0x5800, 0x6200, 0x6c00, none }, /* F5 */
489     { 0x4000, 0x5900, 0x6300, 0x6d00, none }, /* F6 */
490     { 0x4100, 0x5a00, 0x6400, 0x6e00, none }, /* F7 */
491     { 0x4200, 0x5b00, 0x6500, 0x6f00, none }, /* F8 */
492     { 0x4300, 0x5c00, 0x6600, 0x7000, none }, /* F9 */
493     { 0x4400, 0x5d00, 0x6700, 0x7100, none }, /* F10 */
494     {   none,   none,   none,   none, none }, /* Num Lock */
495     {   none,   none,   none,   none, none }, /* Scroll Lock */
496     { 0x4700, 0x4737, 0x7700,   none, 0x20 }, /* 7 Home */
497     { 0x4800, 0x4838,   none,   none, 0x20 }, /* 8 UP */
498     { 0x4900, 0x4939, 0x8400,   none, 0x20 }, /* 9 PgUp */
499     { 0x4a2d, 0x4a2d,   none,   none, none }, /* - */
500     { 0x4b00, 0x4b34, 0x7300,   none, 0x20 }, /* 4 Left */
501     { 0x4c00, 0x4c35,   none,   none, 0x20 }, /* 5 */
502     { 0x4d00, 0x4d36, 0x7400,   none, 0x20 }, /* 6 Right */
503     { 0x4e2b, 0x4e2b,   none,   none, none }, /* + */
504     { 0x4f00, 0x4f31, 0x7500,   none, 0x20 }, /* 1 End */
505     { 0x5000, 0x5032,   none,   none, 0x20 }, /* 2 Down */
506     { 0x5100, 0x5133, 0x7600,   none, 0x20 }, /* 3 PgDn */
507     { 0x5200, 0x5230,   none,   none, 0x20 }, /* 0 Ins */
508     { 0x5300, 0x532e,   none,   none, 0x20 }, /* Del */
509     {   none,   none,   none,   none, none },
510     {   none,   none,   none,   none, none },
511     { 0x565c, 0x567c,   none,   none, none }, /* \| */
512     { 0x5700, 0x5700,   none,   none, none }, /* F11 */
513     { 0x5800, 0x5800,   none,   none, none }  /* F12 */
514 };
515
516 static void
517 process_key(u8 scancode)
518 {
519     u8 shift_flags = GET_BDA(kbd_flag0);
520     u8 mf2_flags = GET_BDA(kbd_flag1);
521     u8 mf2_state = GET_BDA(kbd_mode);
522
523     switch (scancode) {
524     case 0x00:
525         dprintf(1, "KBD: int09 handler: AL=0\n");
526         return;
527
528     case 0x3a: /* Caps Lock press */
529         shift_flags ^= 0x40;
530         SET_BDA(kbd_flag0, shift_flags);
531         mf2_flags |= 0x40;
532         SET_BDA(kbd_flag1, mf2_flags);
533         break;
534     case 0xba: /* Caps Lock release */
535         mf2_flags &= ~0x40;
536         SET_BDA(kbd_flag1, mf2_flags);
537         break;
538
539     case 0x2a: /* L Shift press */
540         shift_flags |= 0x02;
541         SET_BDA(kbd_flag0, shift_flags);
542         break;
543     case 0xaa: /* L Shift release */
544         shift_flags &= ~0x02;
545         SET_BDA(kbd_flag0, shift_flags);
546         break;
547
548     case 0x36: /* R Shift press */
549         shift_flags |= 0x01;
550         SET_BDA(kbd_flag0, shift_flags);
551         break;
552     case 0xb6: /* R Shift release */
553         shift_flags &= ~0x01;
554         SET_BDA(kbd_flag0, shift_flags);
555         break;
556
557     case 0x1d: /* Ctrl press */
558         if ((mf2_state & 0x01) == 0) {
559             shift_flags |= 0x04;
560             SET_BDA(kbd_flag0, shift_flags);
561             if (mf2_state & 0x02) {
562                 mf2_state |= 0x04;
563                 SET_BDA(kbd_mode, mf2_state);
564             } else {
565                 mf2_flags |= 0x01;
566                 SET_BDA(kbd_flag1, mf2_flags);
567             }
568         }
569         break;
570     case 0x9d: /* Ctrl release */
571         if ((mf2_state & 0x01) == 0) {
572             shift_flags &= ~0x04;
573             SET_BDA(kbd_flag0, shift_flags);
574             if (mf2_state & 0x02) {
575                 mf2_state &= ~0x04;
576                 SET_BDA(kbd_mode, mf2_state);
577             } else {
578                 mf2_flags &= ~0x01;
579                 SET_BDA(kbd_flag1, mf2_flags);
580             }
581         }
582         break;
583
584     case 0x38: /* Alt press */
585         shift_flags |= 0x08;
586         SET_BDA(kbd_flag0, shift_flags);
587         if (mf2_state & 0x02) {
588             mf2_state |= 0x08;
589             SET_BDA(kbd_mode, mf2_state);
590         } else {
591             mf2_flags |= 0x02;
592             SET_BDA(kbd_flag1, mf2_flags);
593         }
594         break;
595     case 0xb8: /* Alt release */
596         shift_flags &= ~0x08;
597         SET_BDA(kbd_flag0, shift_flags);
598         if (mf2_state & 0x02) {
599             mf2_state &= ~0x08;
600             SET_BDA(kbd_mode, mf2_state);
601         } else {
602             mf2_flags &= ~0x02;
603             SET_BDA(kbd_flag1, mf2_flags);
604         }
605         break;
606
607     case 0x45: /* Num Lock press */
608         if ((mf2_state & 0x03) == 0) {
609             mf2_flags |= 0x20;
610             SET_BDA(kbd_flag1, mf2_flags);
611             shift_flags ^= 0x20;
612             SET_BDA(kbd_flag0, shift_flags);
613         }
614         break;
615     case 0xc5: /* Num Lock release */
616         if ((mf2_state & 0x03) == 0) {
617             mf2_flags &= ~0x20;
618             SET_BDA(kbd_flag1, mf2_flags);
619         }
620         break;
621
622     case 0x46: /* Scroll Lock press */
623         mf2_flags |= 0x10;
624         SET_BDA(kbd_flag1, mf2_flags);
625         shift_flags ^= 0x10;
626         SET_BDA(kbd_flag0, shift_flags);
627         break;
628     case 0xc6: /* Scroll Lock release */
629         mf2_flags &= ~0x10;
630         SET_BDA(kbd_flag1, mf2_flags);
631         break;
632
633     case 0xe0:
634         // Extended key
635         SETBITS_BDA(kbd_mode, 0x02);
636         return;
637     case 0xe1:
638         // Pause key
639         SETBITS_BDA(kbd_mode, 0x01);
640         return;
641
642     default:
643         if (scancode & 0x80) {
644             break; /* toss key releases ... */
645         }
646         if (scancode > MAX_SCAN_CODE) {
647             dprintf(1, "KBD: int09h_handler(): unknown scancode read: 0x%02x!\n"
648                     , scancode);
649             return;
650         }
651         u8 asciicode;
652         struct scaninfo *info = &scan_to_scanascii[scancode];
653         if (shift_flags & 0x08) { /* ALT */
654             asciicode = GET_VAR(CS, info->alt);
655             scancode = GET_VAR(CS, info->alt) >> 8;
656         } else if (shift_flags & 0x04) { /* CONTROL */
657             asciicode = GET_VAR(CS, info->control);
658             scancode = GET_VAR(CS, info->control) >> 8;
659         } else if ((mf2_state & 0x02) > 0
660                    && scancode >= 0x47 && scancode <= 0x53) {
661             /* extended keys handling */
662             asciicode = 0xe0;
663             scancode = GET_VAR(CS, info->normal) >> 8;
664         } else if (shift_flags & 0x03) { /* LSHIFT + RSHIFT */
665             /* check if lock state should be ignored
666              * because a SHIFT key are pressed */
667
668             if (shift_flags & GET_VAR(CS, info->lock_flags)) {
669                 asciicode = GET_VAR(CS, info->normal);
670                 scancode = GET_VAR(CS, info->normal) >> 8;
671             } else {
672                 asciicode = GET_VAR(CS, info->shift);
673                 scancode = GET_VAR(CS, info->shift) >> 8;
674             }
675         } else {
676             /* check if lock is on */
677             if (shift_flags & GET_VAR(CS, info->lock_flags)) {
678                 asciicode = GET_VAR(CS, info->shift);
679                 scancode = GET_VAR(CS, info->shift) >> 8;
680             } else {
681                 asciicode = GET_VAR(CS, info->normal);
682                 scancode = GET_VAR(CS, info->normal) >> 8;
683             }
684         }
685         if (scancode==0 && asciicode==0) {
686             dprintf(1, "KBD: int09h_handler():"
687                     " scancode & asciicode are zero?\n");
688         }
689         enqueue_key(scancode, asciicode);
690         break;
691     }
692     if ((scancode & 0x7f) != 0x1d) {
693         mf2_state &= ~0x01;
694     }
695     mf2_state &= ~0x02;
696     SET_BDA(kbd_mode, mf2_state);
697 }
698
699 // INT09h : Keyboard Hardware Service Entry Point
700 void VISIBLE16
701 handle_09()
702 {
703     //debug_isr();
704
705     // disable keyboard
706     outb(0xad, PORT_PS2_STATUS);
707
708     outb(0x0b, PORT_PIC1);
709     if ((inb(PORT_PIC1) & 0x02) == 0)
710         goto done;
711
712     // read key from keyboard controller
713     u8 key = inb(PORT_PS2_DATA);
714     irq_enable();
715     if (CONFIG_KBD_CALL_INT15_4F) {
716         // allow for keyboard intercept
717         struct bregs tr;
718         memset(&tr, 0, sizeof(tr));
719         tr.al = key;
720         tr.ah = 0x4f;
721         tr.flags = F_CF;
722         call16_int(0x15, &tr);
723         if (!(tr.flags & F_CF))
724             goto done;
725         key = tr.al;
726     }
727     process_key(key);
728
729     irq_disable();
730     eoi_master_pic();
731
732 done:
733     // enable keyboard
734     outb(0xae, PORT_PS2_STATUS);
735 }