blob: f9595ca71a0648d4f8fff5135b1b63ad4762968b [file] [log] [blame]
Jouni Malinenff1d2762005-05-12 22:54:16 -04001#define PRISM2_PCCARD
2
Jouni Malinenff1d2762005-05-12 22:54:16 -04003#include <linux/module.h>
4#include <linux/init.h>
5#include <linux/if.h>
6#include <linux/wait.h>
7#include <linux/timer.h>
8#include <linux/skbuff.h>
9#include <linux/netdevice.h>
10#include <linux/workqueue.h>
11#include <linux/wireless.h>
12#include <net/iw_handler.h>
13
Jouni Malinenff1d2762005-05-12 22:54:16 -040014#include <pcmcia/cs_types.h>
15#include <pcmcia/cs.h>
16#include <pcmcia/cistpl.h>
17#include <pcmcia/cisreg.h>
18#include <pcmcia/ds.h>
19
20#include <asm/io.h>
21
22#include "hostap_wlan.h"
23
24
Jouni Malinenff1d2762005-05-12 22:54:16 -040025static dev_info_t dev_info = "hostap_cs";
Jouni Malinenff1d2762005-05-12 22:54:16 -040026
27MODULE_AUTHOR("Jouni Malinen");
28MODULE_DESCRIPTION("Support for Intersil Prism2-based 802.11 wireless LAN "
29 "cards (PC Card).");
30MODULE_SUPPORTED_DEVICE("Intersil Prism2-based WLAN cards (PC Card)");
31MODULE_LICENSE("GPL");
32
33
Jouni Malinenff1d2762005-05-12 22:54:16 -040034static int ignore_cis_vcc;
35module_param(ignore_cis_vcc, int, 0444);
36MODULE_PARM_DESC(ignore_cis_vcc, "Ignore broken CIS VCC entry");
37
38
Jouni Malinen67e0e472005-08-14 19:08:41 -070039/* struct local_info::hw_priv */
40struct hostap_cs_priv {
41 dev_node_t node;
Dominik Brodowskifba395e2006-03-31 17:21:06 +020042 struct pcmcia_device *link;
Jouni Malinen67e0e472005-08-14 19:08:41 -070043 int sandisk_connectplus;
44};
45
46
Jouni Malinenff1d2762005-05-12 22:54:16 -040047#ifdef PRISM2_IO_DEBUG
48
49static inline void hfa384x_outb_debug(struct net_device *dev, int a, u8 v)
50{
51 struct hostap_interface *iface;
52 local_info_t *local;
53 unsigned long flags;
54
55 iface = netdev_priv(dev);
56 local = iface->local;
57 spin_lock_irqsave(&local->lock, flags);
58 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTB, a, v);
59 outb(v, dev->base_addr + a);
60 spin_unlock_irqrestore(&local->lock, flags);
61}
62
63static inline u8 hfa384x_inb_debug(struct net_device *dev, int a)
64{
65 struct hostap_interface *iface;
66 local_info_t *local;
67 unsigned long flags;
68 u8 v;
69
70 iface = netdev_priv(dev);
71 local = iface->local;
72 spin_lock_irqsave(&local->lock, flags);
73 v = inb(dev->base_addr + a);
74 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INB, a, v);
75 spin_unlock_irqrestore(&local->lock, flags);
76 return v;
77}
78
79static inline void hfa384x_outw_debug(struct net_device *dev, int a, u16 v)
80{
81 struct hostap_interface *iface;
82 local_info_t *local;
83 unsigned long flags;
84
85 iface = netdev_priv(dev);
86 local = iface->local;
87 spin_lock_irqsave(&local->lock, flags);
88 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTW, a, v);
89 outw(v, dev->base_addr + a);
90 spin_unlock_irqrestore(&local->lock, flags);
91}
92
93static inline u16 hfa384x_inw_debug(struct net_device *dev, int a)
94{
95 struct hostap_interface *iface;
96 local_info_t *local;
97 unsigned long flags;
98 u16 v;
99
100 iface = netdev_priv(dev);
101 local = iface->local;
102 spin_lock_irqsave(&local->lock, flags);
103 v = inw(dev->base_addr + a);
104 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INW, a, v);
105 spin_unlock_irqrestore(&local->lock, flags);
106 return v;
107}
108
109static inline void hfa384x_outsw_debug(struct net_device *dev, int a,
110 u8 *buf, int wc)
111{
112 struct hostap_interface *iface;
113 local_info_t *local;
114 unsigned long flags;
115
116 iface = netdev_priv(dev);
117 local = iface->local;
118 spin_lock_irqsave(&local->lock, flags);
119 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTSW, a, wc);
120 outsw(dev->base_addr + a, buf, wc);
121 spin_unlock_irqrestore(&local->lock, flags);
122}
123
124static inline void hfa384x_insw_debug(struct net_device *dev, int a,
125 u8 *buf, int wc)
126{
127 struct hostap_interface *iface;
128 local_info_t *local;
129 unsigned long flags;
130
131 iface = netdev_priv(dev);
132 local = iface->local;
133 spin_lock_irqsave(&local->lock, flags);
134 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INSW, a, wc);
135 insw(dev->base_addr + a, buf, wc);
136 spin_unlock_irqrestore(&local->lock, flags);
137}
138
139#define HFA384X_OUTB(v,a) hfa384x_outb_debug(dev, (a), (v))
140#define HFA384X_INB(a) hfa384x_inb_debug(dev, (a))
141#define HFA384X_OUTW(v,a) hfa384x_outw_debug(dev, (a), (v))
142#define HFA384X_INW(a) hfa384x_inw_debug(dev, (a))
143#define HFA384X_OUTSW(a, buf, wc) hfa384x_outsw_debug(dev, (a), (buf), (wc))
144#define HFA384X_INSW(a, buf, wc) hfa384x_insw_debug(dev, (a), (buf), (wc))
145
146#else /* PRISM2_IO_DEBUG */
147
148#define HFA384X_OUTB(v,a) outb((v), dev->base_addr + (a))
149#define HFA384X_INB(a) inb(dev->base_addr + (a))
150#define HFA384X_OUTW(v,a) outw((v), dev->base_addr + (a))
151#define HFA384X_INW(a) inw(dev->base_addr + (a))
152#define HFA384X_INSW(a, buf, wc) insw(dev->base_addr + (a), buf, wc)
153#define HFA384X_OUTSW(a, buf, wc) outsw(dev->base_addr + (a), buf, wc)
154
155#endif /* PRISM2_IO_DEBUG */
156
157
158static int hfa384x_from_bap(struct net_device *dev, u16 bap, void *buf,
159 int len)
160{
161 u16 d_off;
162 u16 *pos;
163
164 d_off = (bap == 1) ? HFA384X_DATA1_OFF : HFA384X_DATA0_OFF;
165 pos = (u16 *) buf;
166
167 if (len / 2)
168 HFA384X_INSW(d_off, buf, len / 2);
169 pos += len / 2;
170
171 if (len & 1)
172 *((char *) pos) = HFA384X_INB(d_off);
173
174 return 0;
175}
176
177
178static int hfa384x_to_bap(struct net_device *dev, u16 bap, void *buf, int len)
179{
180 u16 d_off;
181 u16 *pos;
182
183 d_off = (bap == 1) ? HFA384X_DATA1_OFF : HFA384X_DATA0_OFF;
184 pos = (u16 *) buf;
185
186 if (len / 2)
187 HFA384X_OUTSW(d_off, buf, len / 2);
188 pos += len / 2;
189
190 if (len & 1)
191 HFA384X_OUTB(*((char *) pos), d_off);
192
193 return 0;
194}
195
196
197/* FIX: This might change at some point.. */
198#include "hostap_hw.c"
199
200
201
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100202static void prism2_detach(struct pcmcia_device *p_dev);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400203static void prism2_release(u_long arg);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200204static int prism2_config(struct pcmcia_device *link);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400205
206
207static int prism2_pccard_card_present(local_info_t *local)
208{
Jouni Malinen67e0e472005-08-14 19:08:41 -0700209 struct hostap_cs_priv *hw_priv = local->hw_priv;
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100210 if (hw_priv != NULL && hw_priv->link != NULL && pcmcia_dev_present(hw_priv->link))
Jouni Malinenff1d2762005-05-12 22:54:16 -0400211 return 1;
212 return 0;
213}
214
215
216/*
217 * SanDisk CompactFlash WLAN Flashcard - Product Manual v1.0
218 * Document No. 20-10-00058, January 2004
219 * http://www.sandisk.com/pdf/industrial/ProdManualCFWLANv1.0.pdf
220 */
221#define SANDISK_WLAN_ACTIVATION_OFF 0x40
222#define SANDISK_HCR_OFF 0x42
223
224
225static void sandisk_set_iobase(local_info_t *local)
226{
227 int res;
228 conf_reg_t reg;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700229 struct hostap_cs_priv *hw_priv = local->hw_priv;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400230
231 reg.Function = 0;
232 reg.Action = CS_WRITE;
233 reg.Offset = 0x10; /* 0x3f0 IO base 1 */
Jouni Malinen67e0e472005-08-14 19:08:41 -0700234 reg.Value = hw_priv->link->io.BasePort1 & 0x00ff;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200235 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700236 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400237 if (res != CS_SUCCESS) {
238 printk(KERN_DEBUG "Prism3 SanDisk - failed to set I/O base 0 -"
239 " res=%d\n", res);
240 }
241 udelay(10);
242
243 reg.Function = 0;
244 reg.Action = CS_WRITE;
245 reg.Offset = 0x12; /* 0x3f2 IO base 2 */
Jouni Malinen67e0e472005-08-14 19:08:41 -0700246 reg.Value = (hw_priv->link->io.BasePort1 & 0xff00) >> 8;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200247 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700248 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400249 if (res != CS_SUCCESS) {
250 printk(KERN_DEBUG "Prism3 SanDisk - failed to set I/O base 1 -"
251 " res=%d\n", res);
252 }
253}
254
255
256static void sandisk_write_hcr(local_info_t *local, int hcr)
257{
258 struct net_device *dev = local->dev;
259 int i;
260
261 HFA384X_OUTB(0x80, SANDISK_WLAN_ACTIVATION_OFF);
262 udelay(50);
263 for (i = 0; i < 10; i++) {
264 HFA384X_OUTB(hcr, SANDISK_HCR_OFF);
265 }
266 udelay(55);
267 HFA384X_OUTB(0x45, SANDISK_WLAN_ACTIVATION_OFF);
268}
269
270
271static int sandisk_enable_wireless(struct net_device *dev)
272{
273 int res, ret = 0;
274 conf_reg_t reg;
Yoann Padioleau6dbc9c82007-08-03 19:37:16 +0200275 struct hostap_interface *iface = netdev_priv(dev);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400276 local_info_t *local = iface->local;
277 tuple_t tuple;
278 cisparse_t *parse = NULL;
279 u_char buf[64];
Jouni Malinen67e0e472005-08-14 19:08:41 -0700280 struct hostap_cs_priv *hw_priv = local->hw_priv;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400281
Jouni Malinen67e0e472005-08-14 19:08:41 -0700282 if (hw_priv->link->io.NumPorts1 < 0x42) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400283 /* Not enough ports to be SanDisk multi-function card */
284 ret = -ENODEV;
285 goto done;
286 }
287
288 parse = kmalloc(sizeof(cisparse_t), GFP_KERNEL);
289 if (parse == NULL) {
290 ret = -ENOMEM;
291 goto done;
292 }
293
Jouni Malinenff1d2762005-05-12 22:54:16 -0400294 tuple.Attributes = TUPLE_RETURN_COMMON;
295 tuple.TupleData = buf;
296 tuple.TupleDataMax = sizeof(buf);
297 tuple.TupleOffset = 0;
Dominik Brodowskiefd50582006-10-25 21:28:53 -0400298
299 if (hw_priv->link->manf_id != 0xd601 || hw_priv->link->card_id != 0x0101) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400300 /* No SanDisk manfid found */
301 ret = -ENODEV;
302 goto done;
303 }
304
305 tuple.DesiredTuple = CISTPL_LONGLINK_MFC;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200306 if (pcmcia_get_first_tuple(hw_priv->link, &tuple) ||
307 pcmcia_get_tuple_data(hw_priv->link, &tuple) ||
308 pcmcia_parse_tuple(hw_priv->link, &tuple, parse) ||
Jouni Malinenff1d2762005-05-12 22:54:16 -0400309 parse->longlink_mfc.nfn < 2) {
310 /* No multi-function links found */
311 ret = -ENODEV;
312 goto done;
313 }
314
315 printk(KERN_DEBUG "%s: Multi-function SanDisk ConnectPlus detected"
316 " - using vendor-specific initialization\n", dev->name);
Jouni Malinen67e0e472005-08-14 19:08:41 -0700317 hw_priv->sandisk_connectplus = 1;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400318
319 reg.Function = 0;
320 reg.Action = CS_WRITE;
321 reg.Offset = CISREG_COR;
322 reg.Value = COR_SOFT_RESET;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200323 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700324 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400325 if (res != CS_SUCCESS) {
326 printk(KERN_DEBUG "%s: SanDisk - COR sreset failed (%d)\n",
327 dev->name, res);
328 goto done;
329 }
330 mdelay(5);
331
332 reg.Function = 0;
333 reg.Action = CS_WRITE;
334 reg.Offset = CISREG_COR;
335 /*
336 * Do not enable interrupts here to avoid some bogus events. Interrupts
337 * will be enabled during the first cor_sreset call.
338 */
339 reg.Value = COR_LEVEL_REQ | 0x8 | COR_ADDR_DECODE | COR_FUNC_ENA;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200340 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700341 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400342 if (res != CS_SUCCESS) {
343 printk(KERN_DEBUG "%s: SanDisk - COR sreset failed (%d)\n",
344 dev->name, res);
345 goto done;
346 }
347 mdelay(5);
348
349 sandisk_set_iobase(local);
350
351 HFA384X_OUTB(0xc5, SANDISK_WLAN_ACTIVATION_OFF);
352 udelay(10);
353 HFA384X_OUTB(0x4b, SANDISK_WLAN_ACTIVATION_OFF);
354 udelay(10);
355
356done:
357 kfree(parse);
358 return ret;
359}
360
361
362static void prism2_pccard_cor_sreset(local_info_t *local)
363{
364 int res;
365 conf_reg_t reg;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700366 struct hostap_cs_priv *hw_priv = local->hw_priv;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400367
368 if (!prism2_pccard_card_present(local))
369 return;
370
371 reg.Function = 0;
372 reg.Action = CS_READ;
373 reg.Offset = CISREG_COR;
374 reg.Value = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200375 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700376 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400377 if (res != CS_SUCCESS) {
378 printk(KERN_DEBUG "prism2_pccard_cor_sreset failed 1 (%d)\n",
379 res);
380 return;
381 }
382 printk(KERN_DEBUG "prism2_pccard_cor_sreset: original COR %02x\n",
383 reg.Value);
384
385 reg.Action = CS_WRITE;
386 reg.Value |= COR_SOFT_RESET;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200387 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700388 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400389 if (res != CS_SUCCESS) {
390 printk(KERN_DEBUG "prism2_pccard_cor_sreset failed 2 (%d)\n",
391 res);
392 return;
393 }
394
Jouni Malinen67e0e472005-08-14 19:08:41 -0700395 mdelay(hw_priv->sandisk_connectplus ? 5 : 2);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400396
397 reg.Value &= ~COR_SOFT_RESET;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700398 if (hw_priv->sandisk_connectplus)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400399 reg.Value |= COR_IREQ_ENA;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200400 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700401 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400402 if (res != CS_SUCCESS) {
403 printk(KERN_DEBUG "prism2_pccard_cor_sreset failed 3 (%d)\n",
404 res);
405 return;
406 }
407
Jouni Malinen67e0e472005-08-14 19:08:41 -0700408 mdelay(hw_priv->sandisk_connectplus ? 5 : 2);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400409
Jouni Malinen67e0e472005-08-14 19:08:41 -0700410 if (hw_priv->sandisk_connectplus)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400411 sandisk_set_iobase(local);
412}
413
414
415static void prism2_pccard_genesis_reset(local_info_t *local, int hcr)
416{
417 int res;
418 conf_reg_t reg;
419 int old_cor;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700420 struct hostap_cs_priv *hw_priv = local->hw_priv;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400421
422 if (!prism2_pccard_card_present(local))
423 return;
424
Jouni Malinen67e0e472005-08-14 19:08:41 -0700425 if (hw_priv->sandisk_connectplus) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400426 sandisk_write_hcr(local, hcr);
427 return;
428 }
429
430 reg.Function = 0;
431 reg.Action = CS_READ;
432 reg.Offset = CISREG_COR;
433 reg.Value = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200434 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700435 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400436 if (res != CS_SUCCESS) {
437 printk(KERN_DEBUG "prism2_pccard_genesis_sreset failed 1 "
438 "(%d)\n", res);
439 return;
440 }
441 printk(KERN_DEBUG "prism2_pccard_genesis_sreset: original COR %02x\n",
442 reg.Value);
443 old_cor = reg.Value;
444
445 reg.Action = CS_WRITE;
446 reg.Value |= COR_SOFT_RESET;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200447 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700448 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400449 if (res != CS_SUCCESS) {
450 printk(KERN_DEBUG "prism2_pccard_genesis_sreset failed 2 "
451 "(%d)\n", res);
452 return;
453 }
454
455 mdelay(10);
456
457 /* Setup Genesis mode */
458 reg.Action = CS_WRITE;
459 reg.Value = hcr;
460 reg.Offset = CISREG_CCSR;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200461 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700462 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400463 if (res != CS_SUCCESS) {
464 printk(KERN_DEBUG "prism2_pccard_genesis_sreset failed 3 "
465 "(%d)\n", res);
466 return;
467 }
468 mdelay(10);
469
470 reg.Action = CS_WRITE;
471 reg.Offset = CISREG_COR;
472 reg.Value = old_cor & ~COR_SOFT_RESET;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200473 res = pcmcia_access_configuration_register(hw_priv->link,
Jouni Malinen67e0e472005-08-14 19:08:41 -0700474 &reg);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400475 if (res != CS_SUCCESS) {
476 printk(KERN_DEBUG "prism2_pccard_genesis_sreset failed 4 "
477 "(%d)\n", res);
478 return;
479 }
480
481 mdelay(10);
482}
483
484
Jouni Malinenff1d2762005-05-12 22:54:16 -0400485static struct prism2_helper_functions prism2_pccard_funcs =
486{
487 .card_present = prism2_pccard_card_present,
488 .cor_sreset = prism2_pccard_cor_sreset,
Jouni Malinenff1d2762005-05-12 22:54:16 -0400489 .genesis_reset = prism2_pccard_genesis_reset,
490 .hw_type = HOSTAP_HW_PCCARD,
491};
492
493
494/* allocate local data and register with CardServices
495 * initialize dev_link structure, but do not configure the card yet */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200496static int hostap_cs_probe(struct pcmcia_device *p_dev)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400497{
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200498 int ret;
499
Jouni Malinenff1d2762005-05-12 22:54:16 -0400500 PDEBUG(DEBUG_HW, "%s: setting Vcc=33 (constant)\n", dev_info);
Dominik Brodowskifd238232006-03-05 10:45:09 +0100501 p_dev->conf.IntType = INT_MEMORY_AND_IO;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400502
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200503 ret = prism2_config(p_dev);
504 if (ret) {
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100505 PDEBUG(DEBUG_EXTRA, "prism2_config() failed\n");
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200506 }
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100507
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200508 return ret;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400509}
510
511
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200512static void prism2_detach(struct pcmcia_device *link)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400513{
Jouni Malinenff1d2762005-05-12 22:54:16 -0400514 PDEBUG(DEBUG_FLOW, "prism2_detach\n");
515
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100516 prism2_release((u_long)link);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400517
Jouni Malinenff1d2762005-05-12 22:54:16 -0400518 /* release net devices */
519 if (link->priv) {
Jouni Malinenc3551842005-10-02 17:19:00 -0700520 struct hostap_cs_priv *hw_priv;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700521 struct net_device *dev;
522 struct hostap_interface *iface;
523 dev = link->priv;
524 iface = netdev_priv(dev);
Jouni Malinenc3551842005-10-02 17:19:00 -0700525 hw_priv = iface->local->hw_priv;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700526 prism2_free_local_data(dev);
Jouni Malinenc3551842005-10-02 17:19:00 -0700527 kfree(hw_priv);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400528 }
Jouni Malinenff1d2762005-05-12 22:54:16 -0400529}
530
531
532#define CS_CHECK(fn, ret) \
533do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
534
Jouni Malinenff1d2762005-05-12 22:54:16 -0400535
536/* run after a CARD_INSERTION event is received to configure the PCMCIA
537 * socket and make the device available to the system */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200538
539struct prism2_config_data {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200540 config_info_t conf;
541};
542
543static int prism2_config_check(struct pcmcia_device *p_dev,
544 cistpl_cftable_entry_t *cfg,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200545 cistpl_cftable_entry_t *dflt,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200546 void *priv_data)
547{
548 struct prism2_config_data *cfg_mem = priv_data;
549
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200550 if (cfg->index == 0)
551 return -ENODEV;
552
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200553 PDEBUG(DEBUG_EXTRA, "Checking CFTABLE_ENTRY 0x%02X "
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200554 "(default 0x%02X)\n", cfg->index, dflt->index);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200555
556 /* Does this card need audio output? */
557 if (cfg->flags & CISTPL_CFTABLE_AUDIO) {
558 p_dev->conf.Attributes |= CONF_ENABLE_SPKR;
559 p_dev->conf.Status = CCSR_AUDIO_ENA;
560 }
561
562 /* Use power settings for Vcc and Vpp if present */
563 /* Note that the CIS values need to be rescaled */
564 if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
565 if (cfg_mem->conf.Vcc != cfg->vcc.param[CISTPL_POWER_VNOM] /
566 10000 && !ignore_cis_vcc) {
567 PDEBUG(DEBUG_EXTRA, " Vcc mismatch - skipping"
568 " this entry\n");
569 return -ENODEV;
570 }
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200571 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
572 if (cfg_mem->conf.Vcc != dflt->vcc.param[CISTPL_POWER_VNOM] /
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200573 10000 && !ignore_cis_vcc) {
574 PDEBUG(DEBUG_EXTRA, " Vcc (default) mismatch "
575 "- skipping this entry\n");
576 return -ENODEV;
577 }
578 }
579
580 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
581 p_dev->conf.Vpp = cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200582 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
583 p_dev->conf.Vpp = dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200584
585 /* Do we need to allocate an interrupt? */
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200586 if (cfg->irq.IRQInfo1 || dflt->irq.IRQInfo1)
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200587 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
588 else if (!(p_dev->conf.Attributes & CONF_ENABLE_IRQ)) {
589 /* At least Compaq WL200 does not have IRQInfo1 set,
590 * but it does not work without interrupts.. */
591 printk(KERN_WARNING "Config has no IRQ info, but trying to "
592 "enable IRQ anyway..\n");
593 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
594 }
595
596 /* IO window settings */
597 PDEBUG(DEBUG_EXTRA, "IO window settings: cfg->io.nwin=%d "
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200598 "dflt->io.nwin=%d\n",
599 cfg->io.nwin, dflt->io.nwin);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200600 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200601 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
602 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200603 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
604 PDEBUG(DEBUG_EXTRA, "io->flags = 0x%04X, "
605 "io.base=0x%04x, len=%d\n", io->flags,
606 io->win[0].base, io->win[0].len);
607 if (!(io->flags & CISTPL_IO_8BIT))
608 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
609 if (!(io->flags & CISTPL_IO_16BIT))
610 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
611 p_dev->io.IOAddrLines = io->flags &
612 CISTPL_IO_LINES_MASK;
613 p_dev->io.BasePort1 = io->win[0].base;
614 p_dev->io.NumPorts1 = io->win[0].len;
615 if (io->nwin > 1) {
616 p_dev->io.Attributes2 = p_dev->io.Attributes1;
617 p_dev->io.BasePort2 = io->win[1].base;
618 p_dev->io.NumPorts2 = io->win[1].len;
619 }
620 }
621
622 /* This reserves IO space but doesn't actually enable it */
623 return pcmcia_request_io(p_dev, &p_dev->io);
624}
625
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200626static int prism2_config(struct pcmcia_device *link)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400627{
628 struct net_device *dev;
629 struct hostap_interface *iface;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200630 struct prism2_config_data *cfg_mem;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400631 local_info_t *local;
632 int ret = 1;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400633 int last_fn, last_ret;
Jouni Malinen67e0e472005-08-14 19:08:41 -0700634 struct hostap_cs_priv *hw_priv;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400635
636 PDEBUG(DEBUG_FLOW, "prism2_config()\n");
637
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200638 cfg_mem = kzalloc(sizeof(struct prism2_config_data), GFP_KERNEL);
639 if (!cfg_mem)
640 return -ENOMEM;
641
Yan Burmanb0471bb72006-12-02 13:33:40 +0200642 hw_priv = kzalloc(sizeof(*hw_priv), GFP_KERNEL);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200643 if (hw_priv == NULL) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400644 ret = -ENOMEM;
645 goto failed;
646 }
647
Jouni Malinenff1d2762005-05-12 22:54:16 -0400648 CS_CHECK(GetConfigurationInfo,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200649 pcmcia_get_configuration_info(link, &cfg_mem->conf));
Jouni Malinenff1d2762005-05-12 22:54:16 -0400650
651 /* Look for an appropriate configuration table entry in the CIS */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200652 last_ret = pcmcia_loop_config(link, prism2_config_check, cfg_mem);
653 if (last_ret) {
654 if (!ignore_cis_vcc)
655 printk(KERN_ERR "GetNextTuple(): No matching "
656 "CIS configuration. Maybe you need the "
657 "ignore_cis_vcc=1 parameter.\n");
658 cs_error(link, RequestIO, last_ret);
659 goto failed;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400660 }
661
662 /* Need to allocate net_device before requesting IRQ handler */
Dave Hansen0cd545d2005-07-30 12:49:58 -0700663 dev = prism2_init_local_data(&prism2_pccard_funcs, 0,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200664 &handle_to_dev(link));
Jouni Malinenff1d2762005-05-12 22:54:16 -0400665 if (dev == NULL)
666 goto failed;
667 link->priv = dev;
668
Jouni Malinenfbff8682005-08-28 17:53:32 -0700669 iface = netdev_priv(dev);
670 local = iface->local;
671 local->hw_priv = hw_priv;
672 hw_priv->link = link;
673 strcpy(hw_priv->node.dev_name, dev->name);
Dominik Brodowskifd238232006-03-05 10:45:09 +0100674 link->dev_node = &hw_priv->node;
Jouni Malinenfbff8682005-08-28 17:53:32 -0700675
Jouni Malinenff1d2762005-05-12 22:54:16 -0400676 /*
677 * Allocate an interrupt line. Note that this does not assign a
678 * handler to the interrupt, unless the 'Handler' member of the
679 * irq structure is initialized.
680 */
681 if (link->conf.Attributes & CONF_ENABLE_IRQ) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400682 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
Jar0ef79ee2005-07-30 12:49:57 -0700683 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400684 link->irq.Handler = prism2_interrupt;
685 link->irq.Instance = dev;
686 CS_CHECK(RequestIRQ,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200687 pcmcia_request_irq(link, &link->irq));
Jouni Malinenff1d2762005-05-12 22:54:16 -0400688 }
689
690 /*
691 * This actually configures the PCMCIA socket -- setting up
692 * the I/O windows and the interrupt mapping, and putting the
693 * card and host interface into "Memory and IO" mode.
694 */
695 CS_CHECK(RequestConfiguration,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200696 pcmcia_request_configuration(link, &link->conf));
Jouni Malinenff1d2762005-05-12 22:54:16 -0400697
698 dev->irq = link->irq.AssignedIRQ;
699 dev->base_addr = link->io.BasePort1;
700
701 /* Finally, report what we've done */
Dominik Brodowski70294b42006-01-15 12:43:16 +0100702 printk(KERN_INFO "%s: index 0x%02x: ",
703 dev_info, link->conf.ConfigIndex);
704 if (link->conf.Vpp)
705 printk(", Vpp %d.%d", link->conf.Vpp / 10,
706 link->conf.Vpp % 10);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400707 if (link->conf.Attributes & CONF_ENABLE_IRQ)
708 printk(", irq %d", link->irq.AssignedIRQ);
709 if (link->io.NumPorts1)
710 printk(", io 0x%04x-0x%04x", link->io.BasePort1,
711 link->io.BasePort1+link->io.NumPorts1-1);
712 if (link->io.NumPorts2)
713 printk(" & 0x%04x-0x%04x", link->io.BasePort2,
714 link->io.BasePort2+link->io.NumPorts2-1);
715 printk("\n");
716
Jouni Malinenff1d2762005-05-12 22:54:16 -0400717 local->shutdown = 0;
718
719 sandisk_enable_wireless(dev);
720
721 ret = prism2_hw_config(dev, 1);
722 if (!ret) {
723 ret = hostap_hw_ready(dev);
724 if (ret == 0 && local->ddev)
Jouni Malinen67e0e472005-08-14 19:08:41 -0700725 strcpy(hw_priv->node.dev_name, local->ddev->name);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400726 }
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200727 kfree(cfg_mem);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400728 return ret;
729
730 cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200731 cs_error(link, last_fn, last_ret);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400732
733 failed:
Jouni Malinen67e0e472005-08-14 19:08:41 -0700734 kfree(hw_priv);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200735 kfree(cfg_mem);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400736 prism2_release((u_long)link);
737 return ret;
738}
739
740
741static void prism2_release(u_long arg)
742{
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200743 struct pcmcia_device *link = (struct pcmcia_device *)arg;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400744
745 PDEBUG(DEBUG_FLOW, "prism2_release\n");
746
747 if (link->priv) {
748 struct net_device *dev = link->priv;
749 struct hostap_interface *iface;
750
751 iface = netdev_priv(dev);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100752 prism2_hw_shutdown(dev, 0);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400753 iface->local->shutdown = 1;
754 }
755
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200756 pcmcia_disable_device(link);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400757 PDEBUG(DEBUG_FLOW, "release - done\n");
758}
759
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200760static int hostap_cs_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100761{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100762 struct net_device *dev = (struct net_device *) link->priv;
763 int dev_open = 0;
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100764 struct hostap_interface *iface = NULL;
765
John W. Linvillefcee7a02008-07-02 11:04:24 -0400766 if (!dev)
767 return -ENODEV;
768
769 iface = netdev_priv(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100770
771 PDEBUG(DEBUG_EXTRA, "%s: CS_EVENT_PM_SUSPEND\n", dev_info);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100772 if (iface && iface->local)
773 dev_open = iface->local->num_dev_open > 0;
774 if (dev_open) {
775 netif_stop_queue(dev);
776 netif_device_detach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100777 }
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100778 prism2_suspend(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100779
780 return 0;
781}
782
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200783static int hostap_cs_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100784{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100785 struct net_device *dev = (struct net_device *) link->priv;
786 int dev_open = 0;
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100787 struct hostap_interface *iface = NULL;
788
John W. Linvillefcee7a02008-07-02 11:04:24 -0400789 if (!dev)
790 return -ENODEV;
791
792 iface = netdev_priv(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100793
794 PDEBUG(DEBUG_EXTRA, "%s: CS_EVENT_PM_RESUME\n", dev_info);
795
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100796 if (iface && iface->local)
797 dev_open = iface->local->num_dev_open > 0;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100798
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100799 prism2_hw_shutdown(dev, 1);
800 prism2_hw_config(dev, dev_open ? 0 : 1);
801 if (dev_open) {
802 netif_device_attach(dev);
803 netif_start_queue(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100804 }
805
806 return 0;
807}
Jouni Malinenff1d2762005-05-12 22:54:16 -0400808
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700809static struct pcmcia_device_id hostap_cs_ids[] = {
810 PCMCIA_DEVICE_MANF_CARD(0x000b, 0x7100),
811 PCMCIA_DEVICE_MANF_CARD(0x000b, 0x7300),
812 PCMCIA_DEVICE_MANF_CARD(0x0101, 0x0777),
813 PCMCIA_DEVICE_MANF_CARD(0x0126, 0x8000),
814 PCMCIA_DEVICE_MANF_CARD(0x0138, 0x0002),
Stefan Lippers-Hollmann46232d22007-10-05 23:42:51 +0200815 PCMCIA_DEVICE_MANF_CARD(0x01bf, 0x3301),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700816 PCMCIA_DEVICE_MANF_CARD(0x0250, 0x0002),
Richard Purdie1e4adbd2005-08-04 00:16:27 +0100817 PCMCIA_DEVICE_MANF_CARD(0x026f, 0x030b),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700818 PCMCIA_DEVICE_MANF_CARD(0x0274, 0x1612),
819 PCMCIA_DEVICE_MANF_CARD(0x0274, 0x1613),
820 PCMCIA_DEVICE_MANF_CARD(0x028a, 0x0002),
821 PCMCIA_DEVICE_MANF_CARD(0x02aa, 0x0002),
822 PCMCIA_DEVICE_MANF_CARD(0x02d2, 0x0001),
823 PCMCIA_DEVICE_MANF_CARD(0x50c2, 0x0001),
824 PCMCIA_DEVICE_MANF_CARD(0x50c2, 0x7300),
Komurofd99ddd072006-04-17 21:41:21 +0900825/* PCMCIA_DEVICE_MANF_CARD(0xc00f, 0x0000), conflict with pcnet_cs */
Pavel Roskin449fecc2008-05-16 17:52:57 -0400826 PCMCIA_DEVICE_MANF_CARD(0xc250, 0x0002),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700827 PCMCIA_DEVICE_MANF_CARD(0xd601, 0x0002),
828 PCMCIA_DEVICE_MANF_CARD(0xd601, 0x0005),
829 PCMCIA_DEVICE_MANF_CARD(0xd601, 0x0010),
Christian Steineck884d3a22006-09-08 23:51:34 +0200830 PCMCIA_DEVICE_MANF_CARD(0x0126, 0x0002),
Marcin Juszkiewicz25ac6c22007-03-30 15:34:14 +0200831 PCMCIA_DEVICE_MANF_CARD_PROD_ID1(0xd601, 0x0005, "ADLINK 345 CF",
832 0x2d858104),
Pavel Roskin40e3cad2006-02-28 01:18:31 -0500833 PCMCIA_DEVICE_MANF_CARD_PROD_ID1(0x0156, 0x0002, "INTERSIL",
834 0x74c5e40d),
835 PCMCIA_DEVICE_MANF_CARD_PROD_ID1(0x0156, 0x0002, "Intersil",
836 0x4b801a17),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700837 PCMCIA_MFC_DEVICE_PROD_ID12(0, "SanDisk", "ConnectPlus",
838 0x7a954bd9, 0x74be00c6),
Pavel Roskin17f65f82008-01-09 22:16:58 -0500839 PCMCIA_DEVICE_PROD_ID123(
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700840 "Intersil", "PRISM 2_5 PCMCIA ADAPTER", "ISL37300P",
Pavel Roskin17f65f82008-01-09 22:16:58 -0500841 0x4b801a17, 0x6345a0bf, 0xc9049a39),
Jouni Malinen99d31842007-02-27 19:46:46 -0800842 /* D-Link DWL-650 Rev. P1; manfid 0x000b, 0x7110 */
Pavel Roskin17f65f82008-01-09 22:16:58 -0500843 PCMCIA_DEVICE_PROD_ID123(
Jouni Malinen99d31842007-02-27 19:46:46 -0800844 "D-Link", "DWL-650 Wireless PC Card RevP", "ISL37101P-10",
Pavel Roskin17f65f82008-01-09 22:16:58 -0500845 0x1a424a1c, 0x6ea57632, 0xdd97a26b),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700846 PCMCIA_DEVICE_PROD_ID123(
847 "Addtron", "AWP-100 Wireless PCMCIA", "Version 01.02",
848 0xe6ec52ce, 0x08649af2, 0x4b74baa0),
849 PCMCIA_DEVICE_PROD_ID123(
850 "D", "Link DWL-650 11Mbps WLAN Card", "Version 01.02",
851 0x71b18589, 0xb6f1b0ab, 0x4b74baa0),
852 PCMCIA_DEVICE_PROD_ID123(
853 "Instant Wireless ", " Network PC CARD", "Version 01.02",
854 0x11d901af, 0x6e9bd926, 0x4b74baa0),
855 PCMCIA_DEVICE_PROD_ID123(
856 "SMC", "SMC2632W", "Version 01.02",
857 0xc4f8b18b, 0x474a1f2a, 0x4b74baa0),
Richard Purdie1e4adbd2005-08-04 00:16:27 +0100858 PCMCIA_DEVICE_PROD_ID12("BUFFALO", "WLI-CF-S11G",
Jouni Malinen6c5b90d2005-08-28 10:51:36 -0700859 0x2decece3, 0x82067c18),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700860 PCMCIA_DEVICE_PROD_ID12("Compaq", "WL200_11Mbps_Wireless_PCI_Card",
861 0x54f7c49c, 0x15a75e5b),
862 PCMCIA_DEVICE_PROD_ID12("INTERSIL", "HFA384x/IEEE",
863 0x74c5e40d, 0xdb472a18),
864 PCMCIA_DEVICE_PROD_ID12("Linksys", "Wireless CompactFlash Card",
865 0x0733cc81, 0x0c52f395),
866 PCMCIA_DEVICE_PROD_ID12(
867 "ZoomAir 11Mbps High", "Rate wireless Networking",
868 0x273fe3db, 0x32a1eaee),
Marcin Juszkiewiczdf8ccb92006-05-22 10:56:55 +0200869 PCMCIA_DEVICE_PROD_ID123(
870 "Pretec", "CompactWLAN Card 802.11b", "2.5",
871 0x1cadd3e5, 0xe697636c, 0x7a5bfcf1),
872 PCMCIA_DEVICE_PROD_ID123(
873 "U.S. Robotics", "IEEE 802.11b PC-CARD", "Version 01.02",
874 0xc7b8df9d, 0x1700d087, 0x4b74baa0),
Dominik Brodowski01918d12006-07-02 21:21:51 +0200875 PCMCIA_DEVICE_PROD_ID123(
876 "Allied Telesyn", "AT-WCL452 Wireless PCMCIA Radio",
877 "Ver. 1.00",
878 0x5cd01705, 0x4271660f, 0x9d08ee12),
879 PCMCIA_DEVICE_PROD_ID123(
880 "corega", "WL PCCL-11", "ISL37300P",
881 0xa21501a, 0x59868926, 0xc9049a39),
Pavel Roskin17f65f82008-01-09 22:16:58 -0500882 PCMCIA_DEVICE_PROD_ID123(
Marcin Juszkiewicz04dd9d32007-10-07 20:51:08 +0200883 "The Linksys Group, Inc.", "Wireless Network CF Card", "ISL37300P",
Pavel Roskin17f65f82008-01-09 22:16:58 -0500884 0xa5f472c2, 0x9c05598d, 0xc9049a39),
Marcin Juszkiewicz5d635ea2008-01-29 09:42:53 +0100885 PCMCIA_DEVICE_PROD_ID123(
886 "Wireless LAN" , "11Mbps PC Card", "Version 01.02",
887 0x4b8870ff, 0x70e946d1, 0x4b74baa0),
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700888 PCMCIA_DEVICE_NULL
889};
890MODULE_DEVICE_TABLE(pcmcia, hostap_cs_ids);
891
892
Jouni Malinenff1d2762005-05-12 22:54:16 -0400893static struct pcmcia_driver hostap_driver = {
894 .drv = {
895 .name = "hostap_cs",
896 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200897 .probe = hostap_cs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100898 .remove = prism2_detach,
Jouni Malinenff1d2762005-05-12 22:54:16 -0400899 .owner = THIS_MODULE,
Henrik Brix Andersen093853c2005-07-30 12:49:59 -0700900 .id_table = hostap_cs_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100901 .suspend = hostap_cs_suspend,
902 .resume = hostap_cs_resume,
Jouni Malinenff1d2762005-05-12 22:54:16 -0400903};
904
905static int __init init_prism2_pccard(void)
906{
Jouni Malinenff1d2762005-05-12 22:54:16 -0400907 return pcmcia_register_driver(&hostap_driver);
908}
909
910static void __exit exit_prism2_pccard(void)
911{
912 pcmcia_unregister_driver(&hostap_driver);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400913}
914
915
916module_init(init_prism2_pccard);
917module_exit(exit_prism2_pccard);