From owner-freebsd-questions Sun Feb 9 16:44: 9 2003 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C567237B401 for ; Sun, 9 Feb 2003 16:44:06 -0800 (PST) Received: from fresalo.cs.poste.it (fresalo.cs.poste.it [62.241.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB31343FA3 for ; Sun, 9 Feb 2003 16:44:05 -0800 (PST) (envelope-from andrea.franceschini@postecom.it) Received: from knute.cs.poste.it (192.168.44.146) by fresalo.cs.poste.it (5.5.053.1) id 3E36CC4B0000F880 for freebsd-questions@FreeBSD.ORG; Wed, 5 Feb 2003 13:07:51 +0100 Received: (from andrea@localhost) by knute.cs.poste.it (8.12.6/8.12.6) id h15C5ORd003244 for freebsd-questions@FreeBSD.ORG; Wed, 5 Feb 2003 13:05:24 +0100 (CET) (envelope-from andrea.franceschini@postecom.it) X-Authentication-Warning: knute.cs.poste.it: andrea set sender to andrea.franceschini@postecom.it using -f Date: Wed, 5 Feb 2003 13:05:24 +0100 From: Andrea Franceschini To: freebsd-questions@FreeBSD.ORG Subject: Wireless(if_wi): supported card attachment problems Message-ID: <20030205120524.GA3172@postecom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@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 bought a card that, according to the man page of wi driver, should have been supported. The card is a Sohoware/NCP 130 and this is the output of 'man wi': The following cards are among those supported by the wi driver: Card Chip Bus ---------------------------------------------------------------- .. .. NANOSPEED ROOT-RZ2000 Prism-II PCMCIA --> NDC/Sohoware NCP130 Prism-II PCI <-- NEC CMZ-RT-WP Prism-II PCMCIA ... But the driver simply doesn't see it... This is the output of pciconf : none2@pci0:8:0: class=0x028000 card=0x013115e8 chip=0x013115e8 rev=0x01 hdr=0x00 vendor = 'National Datacomm Corp.' device = 'Prism II InstantWave HR PCI card' class = network I modified the driver sources and i added my card among those supported: static struct { unsigned int vendor,device; int bus_type; char *desc; } pci_ids[] = { /* Sorted by description */ {0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"}, {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 WaveLAN"}, {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5"}, {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11"}, {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"}, {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"}, --> {0x15E8, 0x0131, WI_BUS_PCI_PLX, "Prism II InstantWave HR PCI card"} and in this flavour --> {0x15E8, 0x0131, WI_BUS_PCI_NATIVE, "Prism II InstantWave HR PCI card"} Because I didnt know if the card was PLX based or not. Now I get the following messages: wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No Mem space on prism2.5? device_probe_and_attach: wi0 attach returned 6 or wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No I/O space?! device_probe_and_attach: wi0 attach returned 6 Using the WI_BUS_PCI_PLX. I have a FreeBSD 4.7 system with no other cards except for the NCP130. Does anyone have some ideas? Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message