X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/d5cffad757d05610d796476603aaff266e6c8f50..50d89a314a394e5427d0791a08ffc3a3b79b6670:/aseg/counter.c diff --git a/aseg/counter.c b/aseg/counter.c index 6ef4cf9..73003da 100644 --- a/aseg/counter.c +++ b/aseg/counter.c @@ -3,8 +3,11 @@ #include #include #include +#include +#include "../net/net.h" #include "vga-overlay.h" #include "packet.h" +#include "keyboard.h" unsigned int counter = 0; unsigned long pcisave; @@ -24,11 +27,24 @@ void pci_dump() { { unsigned char b; b = inb(cts & 0xFFFF); - dologf("READ: %08x (%02x)", cts, b); + //dologf("READ: %08x (%02x)", cts, b); if ((cts & 0xFFFF) == 0x64) curdev = (b & 0x20) ? 1 : 0; - if ((curdev == 0) && ((cts & 0xFFFF) == 0x60) && (b == 0x01)) - outb(0xCF9, 0x4); + + if ((curdev == 0) && ((cts & 0xFFFF) == 0x60)) + { + /* This is a keyboard read. */ + if (b == 0x01) { + /* Reset. */ + outb(0xCF9, 0x4); + return; + } + + if (kbd_get_injected_scancode()) { + b = kbd_get_injected_scancode(); + } + } + *(unsigned char*)0xAFFD0 /* EAX */ = b; break; } @@ -84,6 +100,8 @@ void gbl_rls_handler(smi_event_t ev) if (packet->type == 42) { dump_log((char *)packet->data); *(unsigned long*)0xAFFD4 = 42; + } else if (packet->type == 0xAA) { + kbd_inject_key('A'); } else { *(unsigned long*)0xAFFD4 = 0x2BADD00D; } @@ -95,11 +113,14 @@ void smi_entry(void) pcisave = inl(0xCF8); vgasave = inb(0x3D4); + pci_unbother_all(); counter++; sprintf(statstr, "15-412! %08x %08x", smi_status(), counter); strblit(statstr, 0, 0); + eth_poll(); + if (inl(0x840) & 0x1000) { pci_dump(); @@ -109,6 +130,7 @@ void smi_entry(void) smi_poll(); + pci_bother_all(); outl(0xCF8, pcisave); outb(0x3D4, vgasave); }