]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Add the 3c905 bother routine.
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Fri, 26 Sep 2008 03:28:25 +0000 (23:28 -0400)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Fri, 26 Sep 2008 03:28:25 +0000 (23:28 -0400)
aseg/Makefile
aseg/firstrun.c

index 80ef8595764ec90f17ae70a1110380be0471eb64..c5f33f4d62a7fdec956cf85f25b1d86146530f53 100644 (file)
@@ -1,6 +1,6 @@
 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
+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
 
 all: aseg.elf
 
index e0e290466f9756895ba013fe8036de1316efd332..2ca07e0dbaa43caddbdbccdb7224b80d51a29c35 100644 (file)
@@ -2,6 +2,7 @@
 #include <smi.h>
 #include <pci.h>
 #include <reg-82801b.h>
+#include <output.h>
 #include "vga-overlay.h"
 #include <smram.h>
 
@@ -11,6 +12,24 @@ extern void timer_handler(smi_event_t ev);
 extern void kbc_handler(smi_event_t ev);
 extern void gbl_rls_handler(smi_event_t ev);
 
+int bother_3c905(pci_dev_t *dev)
+{
+       if (dev->vid == 0x10B7 || dev->did == 0x9200)
+       {
+               int bar;
+               
+               outputf("Found a 3c905 to bother");
+               pci_write16(dev->bus, dev->dev, dev->fn, 0x04, 0x00);
+               
+               for (bar = 0; bar < 6; bar++)
+                       if (dev->bars[bar].type != PCI_BAR_NONE)
+                               pci_write32(dev->bus, dev->dev, dev->fn, 0x10 + bar*4, 0);
+               
+               return 1;
+       }
+       return 0;
+}
+
 void __firstrun_start() {
        unsigned char *bp;
        smram_state_t smram;
@@ -21,7 +40,7 @@ void __firstrun_start() {
        for (bp = (void *)&_bss; (void *)bp < (void *)&_bssend; bp++)
                *bp = 0;
        
-       dologf("NetWatch running");
+       outputf("NetWatch running");
 
        /* Try really hard to shut up USB_LEGKEY. */
        pci_write16(0, 31, 2, 0xC0, pci_read16(0, 31, 2, 0xC0));
@@ -32,6 +51,8 @@ void __firstrun_start() {
        /* Turn on the SMIs we want */
        smi_disable();
        
+       pci_probe(bother_3c905);
+       
        smi_register_handler(SMI_EVENT_FAST_TIMER, timer_handler);
        smi_enable_event(SMI_EVENT_FAST_TIMER);
        
This page took 0.027215 seconds and 4 git commands to generate.