pckbd: return 'keyboard enabled' on read input port command
Bit 7 of Input Port is the keyboard inhibit switch. 0 means keyboard inhibited, while 1 means keyboard enabled. Incidentaly, this also fixes an error encountered while booting an Award BIOS: "Keyboard is locked out - Unlock the key". Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
175f099b30
commit
f1b7e0e498
@ -281,7 +281,7 @@ static void kbd_write_command(void *opaque, hwaddr addr,
|
|||||||
kbd_update_irq(s);
|
kbd_update_irq(s);
|
||||||
break;
|
break;
|
||||||
case KBD_CCMD_READ_INPORT:
|
case KBD_CCMD_READ_INPORT:
|
||||||
kbd_queue(s, 0x00, 0);
|
kbd_queue(s, 0x80, 0);
|
||||||
break;
|
break;
|
||||||
case KBD_CCMD_READ_OUTPORT:
|
case KBD_CCMD_READ_OUTPORT:
|
||||||
kbd_queue(s, s->outport, 0);
|
kbd_queue(s, s->outport, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user