* [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110
@ 2006-05-12 13:21 Marcin Juszkiewicz
2006-05-12 13:37 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 (FIXED) Marcin Juszkiewicz
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Marcin Juszkiewicz @ 2006-05-12 13:21 UTC (permalink / raw)
To: netdev; +Cc: Jouni Malinen, Pavel Roskin
This time I checked more carefully my changeset and split it into
smaller parts. Few of my patches was tested by OpenZaurus users, some
are waiting for testing.
We switched to pcmciautils when moved to 2.6.16 and many users complain
that their WiFi CompactFlash cards are driven by orinoco instead of
hostap.
BTW - how to force using of hostap_cs when both hostap_cs and orinoco_cs
has card in device table?
All patches require 24_hostap_cs_id.diff from Pavel Roskin.
I'm subscribed to netdev mailing list now.
-----------------------------------------------------------------------
Here's another card that would benefit from a hostap driver: ASUS WL-110
Platform: HP Ipaq hx4700 running 2.6.16-hh
root@ipaq-pxa270:~# pccardctl ident
Socket 0:
product info: "ASUS", "802_11B_CF_CARD_25", "Version 01.00", ""
manfid: 0x02aa, 0x0002
function: 6 (network)
root@ipaq-pxa270:~# ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr 00:0C:6E:F0:DA:CD
inet addr:172.20.0.3 Bcast:172.20.255.255 Mask:255.255.0.0
inet6 addr: 2001:610:600:93:20c:6eff:fef0:dacd/64 Scope:Global
inet6 addr: fe80::20c:6eff:fef0:dacd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:158 errors:0 dropped:0 overruns:0 frame:0
TX packets:77 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:17978 (17.5 KiB) TX bytes:11424 (11.1 KiB)
Interrupt:92
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Index: linux/drivers/net/wireless/orinoco_cs.c
===================================================================
--- linux.orig/drivers/net/wireless/orinoco_cs.c 2006-05-12 15:02:13.000000000 +0200
+++ linux/drivers/net/wireless/orinoco_cs.c 2006-05-12 15:03:31.000000000 +0200
@@ -533,7 +533,6 @@
PCMCIA_DEVICE_MANF_CARD(0x0274, 0x1613), /* Linksys WPC11 Version 3 */
PCMCIA_DEVICE_MANF_CARD(0x028a, 0x0002), /* Compaq HNW-100 11 Mbps Wireless Adapter */
PCMCIA_DEVICE_MANF_CARD(0x028a, 0x0673), /* Linksys WCF12 Wireless CompactFlash Card */
- PCMCIA_DEVICE_MANF_CARD(0x02aa, 0x0002), /* ASUS SpaceLink WL-100 */
PCMCIA_DEVICE_MANF_CARD(0x02ac, 0x0002), /* SpeedStream SS1021 Wireless Adapter */
PCMCIA_DEVICE_MANF_CARD(0x14ea, 0xb001), /* PLANEX RoadLannerWave GW-NS11H */
PCMCIA_DEVICE_MANF_CARD(0x50c2, 0x7300), /* Airvast WN-100 */
@@ -548,8 +547,6 @@
PCMCIA_DEVICE_PROD_ID12("Addtron", "AWP-100 Wireless PCMCIA", 0xe6ec52ce, 0x08649af2),
PCMCIA_DEVICE_PROD_ID123("AIRVAST", "IEEE 802.11b Wireless PCMCIA Card", "HFA3863", 0xea569531, 0x4bcb9645, 0x355cb092),
PCMCIA_DEVICE_PROD_ID12("Allied Telesyn", "AT-WCL452 Wireless PCMCIA Radio", 0x5cd01705, 0x4271660f),
- PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11b_PC_CARD_25", 0x78fc06ee, 0xdb9aa842),
- PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11B_CF_CARD_25", 0x78fc06ee, 0x45a50c1e),
PCMCIA_DEVICE_PROD_ID12("Avaya Communication", "Avaya Wireless PC Card", 0xd8a43b78, 0x0d341169),
PCMCIA_DEVICE_PROD_ID12("BENQ", "AWL100 PCMCIA ADAPTER", 0x35dadc74, 0x01f7fedb),
PCMCIA_DEVICE_PROD_ID12("BUFFALO", "WLI-PCM-L11G", 0x2decece3, 0xf57ca4b3),
Index: linux/drivers/net/wireless/hostap/hostap_cs.c
===================================================================
--- linux.orig/drivers/net/wireless/hostap/hostap_cs.c 2006-05-12 15:02:51.000000000 +0200
+++ linux/drivers/net/wireless/hostap/hostap_cs.c 2006-05-12 15:06:26.000000000 +0200
@@ -935,6 +935,8 @@
PCMCIA_DEVICE_PROD_ID123(
"U.S. Robotics", "IEEE 802.11b PC-CARD", "Version 01.02",
0xc7b8df9d, 0x1700d087, 0x4b74baa0),
+ PCMCIA_DEVICE_PROD_ID1234("ASUS", "802_11B_CF_CARD_25", "Version 01.00", ""
+ 0x78fc06ee, 0x45a50c1e, 0xa57adb8c, 0x00000000),
PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11b_PC_CARD_25",
0x78fc06ee, 0xdb9aa842),
PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11B_CF_CARD_25",
--
JID: hrw-jabber.org
Sharp Zaurus C-760 (OZ 3.5.x)
OpenEmbedded/OpenZaurus/OPIE developer
So when I die, the first thing I will see in Heaven is a hi-score list?
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 (FIXED)
2006-05-12 13:21 [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Marcin Juszkiewicz
@ 2006-05-12 13:37 ` Marcin Juszkiewicz
2006-05-12 20:44 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Pavel Roskin
2006-05-13 9:58 ` Jochen Friedrich
2 siblings, 0 replies; 4+ messages in thread
From: Marcin Juszkiewicz @ 2006-05-12 13:37 UTC (permalink / raw)
To: netdev; +Cc: Jouni Malinen, Pavel Roskin
This time I checked more carefully my changeset and split it into
smaller parts. Few of my patches was tested by OpenZaurus users, some
are waiting for testing.
We switched to pcmciautils when moved to 2.6.16 and many users complain
that their WiFi CompactFlash cards are driven by orinoco instead of
hostap.
BTW - how to force using of hostap_cs when both hostap_cs and orinoco_cs
has card in device table?
All patches require 24_hostap_cs_id.diff from Pavel Roskin.
I'm subscribed to netdev mailing list now.
-----------------------------------------------------------------------
Here's another card that would benefit from a hostap driver: ASUS WL-110
Platform: HP Ipaq hx4700 running 2.6.16-hh
root@ipaq-pxa270:~# pccardctl ident
Socket 0:
product info: "ASUS", "802_11B_CF_CARD_25", "Version 01.00", ""
manfid: 0x02aa, 0x0002
function: 6 (network)
root@ipaq-pxa270:~# ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr 00:0C:6E:F0:DA:CD
inet addr:172.20.0.3 Bcast:172.20.255.255 Mask:255.255.0.0
inet6 addr: 2001:610:600:93:20c:6eff:fef0:dacd/64 Scope:Global
inet6 addr: fe80::20c:6eff:fef0:dacd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:158 errors:0 dropped:0 overruns:0 frame:0
TX packets:77 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:17978 (17.5 KiB) TX bytes:11424 (11.1 KiB)
Interrupt:92
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Index: linux/drivers/net/wireless/orinoco_cs.c
===================================================================
--- linux.orig/drivers/net/wireless/orinoco_cs.c 2006-05-12
15:02:13.000000000 +0200
+++ linux/drivers/net/wireless/orinoco_cs.c 2006-05-12 15:03:31.000000000
+0200
@@ -533,7 +533,6 @@
PCMCIA_DEVICE_MANF_CARD(0x0274, 0x1613), /* Linksys WPC11 Version 3 */
PCMCIA_DEVICE_MANF_CARD(0x028a, 0x0002), /* Compaq HNW-100 11 Mbps
Wireless Adapter */
PCMCIA_DEVICE_MANF_CARD(0x028a, 0x0673), /* Linksys WCF12 Wireless
CompactFlash Card */
- PCMCIA_DEVICE_MANF_CARD(0x02aa, 0x0002), /* ASUS SpaceLink WL-100 */
PCMCIA_DEVICE_MANF_CARD(0x02ac, 0x0002), /* SpeedStream SS1021 Wireless
Adapter */
PCMCIA_DEVICE_MANF_CARD(0x14ea, 0xb001), /* PLANEX RoadLannerWave
GW-NS11H */
PCMCIA_DEVICE_MANF_CARD(0x50c2, 0x7300), /* Airvast WN-100 */
@@ -548,8 +547,6 @@
PCMCIA_DEVICE_PROD_ID12("Addtron", "AWP-100 Wireless PCMCIA", 0xe6ec52ce,
0x08649af2),
PCMCIA_DEVICE_PROD_ID123("AIRVAST", "IEEE 802.11b Wireless PCMCIA
Card", "HFA3863", 0xea569531, 0x4bcb9645, 0x355cb092),
PCMCIA_DEVICE_PROD_ID12("Allied Telesyn", "AT-WCL452 Wireless PCMCIA
Radio", 0x5cd01705, 0x4271660f),
- PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11b_PC_CARD_25", 0x78fc06ee,
0xdb9aa842),
- PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11B_CF_CARD_25", 0x78fc06ee,
0x45a50c1e),
PCMCIA_DEVICE_PROD_ID12("Avaya Communication", "Avaya Wireless PC Card",
0xd8a43b78, 0x0d341169),
PCMCIA_DEVICE_PROD_ID12("BENQ", "AWL100 PCMCIA ADAPTER", 0x35dadc74,
0x01f7fedb),
PCMCIA_DEVICE_PROD_ID12("BUFFALO", "WLI-PCM-L11G", 0x2decece3,
0xf57ca4b3),
Index: linux/drivers/net/wireless/hostap/hostap_cs.c
===================================================================
--- linux.orig/drivers/net/wireless/hostap/hostap_cs.c 2006-05-12
15:02:51.000000000 +0200
+++ linux/drivers/net/wireless/hostap/hostap_cs.c 2006-05-12
15:06:26.000000000 +0200
@@ -935,6 +935,8 @@
PCMCIA_DEVICE_PROD_ID123(
"U.S. Robotics", "IEEE 802.11b PC-CARD", "Version 01.02",
0xc7b8df9d, 0x1700d087, 0x4b74baa0),
+ PCMCIA_DEVICE_PROD_ID1234("ASUS", "802_11B_CF_CARD_25", "Version
01.00", "",
+ 0x78fc06ee, 0x45a50c1e, 0xa57adb8c, 0x00000000),
PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11b_PC_CARD_25",
0x78fc06ee, 0xdb9aa842),
PCMCIA_DEVICE_PROD_ID12("ASUS", "802_11B_CF_CARD_25",
--
JID: hrw-jabber.org
Sharp Zaurus C-760 (OZ 3.5.x)
OpenEmbedded/OpenZaurus/OPIE developer
So when I die, the first thing I will see in Heaven is a hi-score list?
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110
2006-05-12 13:21 [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Marcin Juszkiewicz
2006-05-12 13:37 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 (FIXED) Marcin Juszkiewicz
@ 2006-05-12 20:44 ` Pavel Roskin
2006-05-13 9:58 ` Jochen Friedrich
2 siblings, 0 replies; 4+ messages in thread
From: Pavel Roskin @ 2006-05-12 20:44 UTC (permalink / raw)
To: Marcin Juszkiewicz; +Cc: netdev, Jouni Malinen
On Fri, 2006-05-12 at 15:21 +0200, Marcin Juszkiewicz wrote:
> All patches require 24_hostap_cs_id.diff from Pavel Roskin.
This patch was never submitted. Please ignore the series.
--
Regards,
Pavel Roskin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110
2006-05-12 13:21 [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Marcin Juszkiewicz
2006-05-12 13:37 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 (FIXED) Marcin Juszkiewicz
2006-05-12 20:44 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Pavel Roskin
@ 2006-05-13 9:58 ` Jochen Friedrich
2 siblings, 0 replies; 4+ messages in thread
From: Jochen Friedrich @ 2006-05-13 9:58 UTC (permalink / raw)
To: Marcin Juszkiewicz; +Cc: netdev, Jouni Malinen, Pavel Roskin
Hi Marcin,
> root@ipaq-pxa270:~# pccardctl ident
> Socket 0:
> product info: "ASUS", "802_11B_CF_CARD_25", "Version 01.00", ""
> manfid: 0x02aa, 0x0002
> function: 6 (network)
Yet another card known to work OK with hostap_cs:
# pccardctl ident
Socket 0:
no product info available
Socket 1:
product info: "U.S. Robotics", "IEEE 802.11b PC-CARD", "Version 01.02", ""
manfid: 0x0156, 0x0002
function: 6 (network)
Thanks,
Jochen
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-05-13 9:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-12 13:21 [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Marcin Juszkiewicz
2006-05-12 13:37 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 (FIXED) Marcin Juszkiewicz
2006-05-12 20:44 ` [PATCH 1/5] new pcmcia IDs for hostap - ASUS WL-110 Pavel Roskin
2006-05-13 9:58 ` Jochen Friedrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).