On Sun, Aug 14, 2005 at 09:04:04AM -0500, Joe Szedula wrote:
> I've installed the amd64 -current (13 August) on my ASUS K8S-MX system. 
> It solved the "bus-master DMA error" problem as well as the problem with 
> the drives (CD & hard disk) on the secondary IDE not being recognized. I 
> compiled the kernel and the rest of the system from source just to 
> exercise the computer. Using the BIOS settings to overclock the CPU by 
> about 10% from 1.8Ghz to 2.0GHz also seems to work ok.
> 
> I'm still not able to use the built-in ethernet. The dmesg shows:
> 
> vendor "SIS", unknown product 0x0190 (class network subclass ethernet, 
> rev 0x00) at pci0 dev 4 function 0 not configured

As said earlier this is an unsupported chipset.

> Does this:
> 
> "SIS 182 SATA" rev 0x01 at pci0 dev 5 function 0 not configured
> 
> just mean there were no SATA drives connected? Will SATA drives work when 
> connected to this motherboard?

No this means no driver has claimed that device.
Try this diff

Index: pciide.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/pciide.c,v
retrieving revision 1.199
diff -u -p -r1.199 pciide.c
--- pciide.c    9 Aug 2005 04:10:13 -0000       1.199
+++ pciide.c    14 Aug 2005 15:25:34 -0000
@@ -519,7 +519,7 @@ const struct pciide_product_desc pciide_
          sata_chip_map
        },
        { PCI_PRODUCT_SIS_182,          /* SIS 182 SATA */
-         0,
+         IDE_PCI_CLASS_OVERRIDE,
          sata_chip_map
        }
 };

Reply via email to