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