Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Apr 2002 04:06:27 -0400
From:      "Jason" <Freebsd-current@tcpipbitch.net>
To:        "'M. Warner Losh'" <imp@village.org>
Cc:        <freebsd-current@FreeBSD.ORG>
Subject:   RE: d-link dwl520 wireless pci
Message-ID:  <020901c1edc2$6e876590$0300000a@desktop>
In-Reply-To: <20020427.010737.110481017.imp@village.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Seems to be working just fine, appropriate portion of dmesg

wi0: <Intersil Prism2.5 PCI> mem 0xfb800000-0xfb800fff irq 2 at device
10.0 on pci0
wi0: 802.11 address: 00:05:5d:da:5f:47
wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI)
wi0: Intersil Firmware: Primary 1.00.07, Station 1.03.05

Kinda unrelated I think.. But dunno it just started happening after I
ran the patch and recompiled... I have numerous machines, all 10.0.0.x
and a wireless networks 10.0.x.x ....  My rl0 card has decided it won't
talk to .4 and the .4 machine won't talk to the .2 machine, but both of
the machines will talk to the rest of the network just fine (note I did
do a cvsup just before I ran your patch). After about 5 to 10 min they
start talking just fine.. No user interferance.. They just start to
work.. Dunno.. Prolly under wrong thread... But I figured I would throw
it out there anyways. However the wireless network works great, well no
real diff as far as I can tell.

Jason

-----Original Message-----
From: owner-freebsd-current@FreeBSD.ORG
[mailto:owner-freebsd-current@FreeBSD.ORG] On Behalf Of M. Warner Losh
Sent: Saturday, April 27, 2002 3:08 AM
To: brooks@one-eyed-alien.net
Cc: tentacles@mail.themuseav.com; freebsd-current@FreeBSD.ORG
Subject: Re: d-link dwl520 wireless pci


In message: <20020426171741.A5833@Odin.AC.HMC.Edu>
            Brooks Davis <brooks@one-eyed-alien.net> writes:
: If it's going to work the definition for the Linksys WMP11 will do it.
: It will have the wrong name in dmesg, but that doesn't do anything.
: This entry should be changed to reflect the fact that it's actually an
: Intersil Prism 2.5 ID that lazy vendors are using.

Comments on the following patch?  It removes the extra IEEE 802.11 stuff
(which is noise since wi is an 802.11b driver :-) and changes Linksys
WMP11 to the more generic Intersil Prism2.5 PCI.

Warner

Index: if_wi_pci.c
===================================================================
RCS file: /home/imp/FreeBSD/CVS/src/sys/dev/wi/if_wi_pci.c,v
retrieving revision 1.5
diff -u -r1.5 if_wi_pci.c
--- if_wi_pci.c	14 Apr 2002 22:08:58 -0000	1.5
+++ if_wi_pci.c	27 Apr 2002 07:06:57 -0000
@@ -94,13 +94,13 @@
 	int bus_type;
 	char *desc;
 } pci_ids[] = {
-	{0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA PCI WaveLAN/IEEE
802.11"},
-	{0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301 PCI IEEE
802.11b"},
-	{0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN/IEEE
802.11"},
-	{0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI IEEE
802.11b"},
-	{0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Linksys WMP11 PCI
Prism2.5"},
-	{0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect IEEE
802.11b"},
-	{0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream IEEE
802.11b"},
+	{0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA PCI WaveLAN"},
+	{0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301 PCI"},
+	{0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN"},
+	{0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI"},
+	{0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5 PCI"},
+	{0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"},
+	{0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"},
 	{0, 0, 0, NULL}
 };
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message


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?020901c1edc2$6e876590$0300000a>