From owner-freebsd-current Mon Dec 23 7:22:32 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 097B437B401 for ; Mon, 23 Dec 2002 07:22:29 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A83D443ED8 for ; Mon, 23 Dec 2002 07:22:27 -0800 (PST) (envelope-from mb@imp.ch) Received: from nbs.imp.ch (nbs.imp.ch [157.161.4.7]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id gBNFMLFU042656 for ; Mon, 23 Dec 2002 16:22:21 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by nbs.imp.ch (8.12.3/8.12.3) with ESMTP id gBNFMLJw1937921 for ; Mon, 23 Dec 2002 16:22:21 +0100 (MEZ) Date: Mon, 23 Dec 2002 16:22:22 +0100 (CET) From: Martin Blapp To: Subject: SIS 962 chipset, problems ... Message-ID: <20021223154736.B854-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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: 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, ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 061 826 93 00: +41 61 826 93 01 PGP: 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