--- /dev/null
+#include <pci.h>
+#include <output.h>
+#include "3c905.h"
+
+static int found = 0, _bus, _dev, _fn;
+
+static int bother_3c905(pci_dev_t *dev)
+{
+ if (dev->vid == 0x10B7 || dev->did == 0x9200)
+ {
+ outputf("Found a 3c905 to bother");
+
+ _bus = dev->bus;
+ _dev = dev->dev;
+ _fn = dev->fn;
+ found = 1;
+
+ return 1;
+ }
+ return 0;
+}
+
+void eth_poll()
+{
+ if (!found)
+ return;
+
+ pci_write16(_bus, _dev, _fn, 0x04, 0xFF);
+
+ pci_write16(_bus, _dev, _fn, 0x04, 0x00);
+}
+
+void eth_init()
+{
+ pci_probe(bother_3c905);
+}
CC=gcc
CFLAGS=-I../include -I../include/raw -nostdlib -nostdinc -fno-builtin -D__RAW__ -Wall -Werror -pedantic -ansi -std=gnu99
-OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o
+OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o 3c905.o
all: aseg.elf
#include <video_defines.h>
#include <minilib.h>
#include <smi.h>
+#include "3c905.h"
#include "vga-overlay.h"
#include "packet.h"
sprintf(statstr, "15-412! %08x %08x", smi_status(), counter);
strblit(statstr, 0, 0);
- extern void do_bother();
- do_bother();
+ eth_poll();
if (inl(0x840) & 0x1000)
{
#include <output.h>
#include "vga-overlay.h"
#include <smram.h>
+#include "3c905.h"
extern int _bss, _bssend;
extern void kbc_handler(smi_event_t ev);
extern void gbl_rls_handler(smi_event_t ev);
-static int found = 0, _bus, _dev, _fn;
-
-void do_bother()
-{
- int bar;
-
- if (!found)
- return;
-
- pci_write16(_bus, _dev, _fn, 0x04, 0x00);
- for (bar = 0; bar < 6; bar++)
- pci_write32(_bus, _dev, _fn, 0x10 + bar*4, 0x1FFFFFFF);
-}
-
-int bother_3c905(pci_dev_t *dev)
-{
- if (dev->vid == 0x10B7 || dev->did == 0x9200)
- {
- outputf("Found a 3c905 to bother");
-
- _bus = dev->bus;
- _dev = dev->dev;
- _fn = dev->fn;
- found = 1;
-
- do_bother();
-
- return 1;
- }
- return 0;
-}
-
void __firstrun_start() {
unsigned char *bp;
smram_state_t smram;
/* Turn on the SMIs we want */
smi_disable();
- pci_probe(bother_3c905);
+ eth_init();
smi_register_handler(SMI_EVENT_FAST_TIMER, timer_handler);
smi_enable_event(SMI_EVENT_FAST_TIMER);