#include <video_defines.h>
#include <minilib.h>
#include <smi.h>
+#include <pci-bother.h>
+#include "../net/net.h"
#include "vga-overlay.h"
+#include "packet.h"
unsigned int counter = 0;
unsigned long pcisave;
{
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))
{
unsigned long ecx;
- ecx = *(unsigned char*)0xAFFD4;
- dologf("ECX was %08x", ecx);
- *(unsigned long*)0xAFFD4 = 0x2BADD00D;
+ ecx = *(unsigned long*)0xAFFD4;
+
+ packet_t * packet = check_packet(ecx);
+ if (!packet)
+ {
+ dologf("WARN: bad packet at %08x", ecx);
+ return;
+ }
+
+ dologf("Got packet: type %08x", packet->type);
+
+ if (packet->type == 42) {
+ dump_log((char *)packet->data);
+ *(unsigned long*)0xAFFD4 = 42;
+ } else {
+ *(unsigned long*)0xAFFD4 = 0x2BADD00D;
+ }
}
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();
smi_poll();
+ pci_bother_all();
outl(0xCF8, pcisave);
outb(0x3D4, vgasave);
}