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