Date: Mon, 23 Dec 2002 16:22:22 +0100 (CET) From: Martin Blapp <mb@imp.ch> To: <current@freebsd.org> Subject: SIS 962 chipset, problems ... Message-ID: <20021223154736.B854-100000@levais.imp.ch>
next in thread | raw e-mail | index | archive | help
Hi all, I'm trying to get my laptop running, with some success, but the network card is not very friendly to me. none3@pci0:4:0: class=0x020000 card=0x105517c0 chip=0x09001039 rev=0x91 hdr=0x00 vendor = 'Silicon Integrated Systems (SiS)' device = 'SiS900 Fast Ethernet/Home Networking Ctrlr' class = network subclass = ethernet Dec 23 15:17:03 kernel: sis0: Ethernet address: ff:ff:ff:ff:ff:ff Dec 23 15:17:03 kernel: sis0: MII without any PHY! Dec 23 15:17:03 kernel: device_probe_and_attach: sis0 attach returned 6 Dec 23 15:17:03 kernel: sis0: <SiS 900 10/100BaseTX> port 0x2000-0x20ff mem 0xec005000-0xec005fff irq 11 at device 4.0 on pci0 Dec 23 15:17:03 kernel: sis0: Ethernet address: ff:ff:ff:ff:ff:ff Dec 23 15:17:03 kernel: sis0: MII without any PHY! I thought first that this is a similar problem to the one where the physical is at id 1, not 0. But it still doesn't work. http://www.freebsd.org/cgi/query-pr.cgi?pr=30836 Then I tried another tip from google: http://www.geocrawler.com/archives/3/152/2002/6/0/9065467/ No way ... I'll try some other tricks now ... Other things I got running, like the ATA UDMA support. It seems that many new chipsets are unsupported in FreeBSD ... --- sys/pci/agp_sis.c.orig Mon Dec 23 14:34:30 2002 +++ sys/pci/agp_sis.c Mon Dec 23 14:34:32 2002 @@ -66,6 +66,8 @@ switch (pci_get_devid(dev)) { case 0x00011039: return ("SiS 5591 host to AGP bridge"); + case 0x06461039: + return ("SiS 645DX host to AGP bridge"); }; if (pci_get_vendor(dev) == 0x1039) --- sys/dev/ata/ata-dma.c.orig Mon Dec 23 14:44:39 2002 +++ sys/dev/ata/ata-dma.c Mon Dec 23 15:49:20 2002 @@ -632,7 +632,9 @@ ata_find_dev(parent, 0x06351039, 0) || /* SiS 635 */ ata_find_dev(parent, 0x06401039, 0) || /* SiS 640 */ ata_find_dev(parent, 0x06451039, 0) || /* SiS 645 */ + ata_find_dev(parent, 0x06461039, 0) || /* SiS 646 */ ata_find_dev(parent, 0x06501039, 0) || /* SiS 650 */ + ata_find_dev(parent, 0x06511039, 0) || /* SiS 651 */ ata_find_dev(parent, 0x07301039, 0) || /* SiS 730 */ ata_find_dev(parent, 0x07331039, 0) || /* SiS 733 */ ata_find_dev(parent, 0x07351039, 0) || /* SiS 735 */ --- sys/dev/ata/ata-pci.c.orig Mon Dec 23 16:40:04 2002 +++ sys/dev/ata/ata-pci.c Mon Dec 23 16:39:27 2002 @@ -188,7 +188,9 @@ ata_find_dev(dev, 0x06351039, 0) || ata_find_dev(dev, 0x06401039, 0) || ata_find_dev(dev, 0x06451039, 0) || + ata_find_dev(dev, 0x06461039, 0) || ata_find_dev(dev, 0x06501039, 0) || + ata_find_dev(dev, 0x06511039, 0) || ata_find_dev(dev, 0x07301039, 0) || ata_find_dev(dev, 0x07331039, 0) || ata_find_dev(dev, 0x07351039, 0) || Martin Martin Blapp, <mb@imp.ch> <mbr@FreeBSD.org> ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 061 826 93 00: +41 61 826 93 01 PGP: <finger -l mbr@freebsd.org> PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021223154736.B854-100000>