2 * IPWireless 3G PCMCIA Network Driver
5 * by Stephen Blackheath <stephen@blacksapphire.com>,
6 * Ben Martel <benm@symmetric.co.nz>
8 * Copyrighted as follows:
9 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
11 * Various driver changes and rewrites, port to new kernels
12 * Copyright (C) 2006-2007 Jiri Kosina
14 * Misc code cleanups and updates
15 * Copyright (C) 2007 David Sterba
23 #include <linux/delay.h>
24 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/sched.h>
29 #include <linux/slab.h>
31 #include <pcmcia/cisreg.h>
32 #include <pcmcia/device_id.h>
33 #include <pcmcia/ss.h>
34 #include <pcmcia/ds.h>
35 #include <pcmcia/cs.h>
37 static struct pcmcia_device_id ipw_ids
[] = {
38 PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0100),
39 PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0200),
42 MODULE_DEVICE_TABLE(pcmcia
, ipw_ids
);
44 static void ipwireless_detach(struct pcmcia_device
*link
);
49 /* Debug mode: more verbose, print sent/recv bytes */
51 int ipwireless_loopback
;
52 int ipwireless_out_queue
= 10;
54 module_param_named(debug
, ipwireless_debug
, int, 0);
55 module_param_named(loopback
, ipwireless_loopback
, int, 0);
56 module_param_named(out_queue
, ipwireless_out_queue
, int, 0);
57 MODULE_PARM_DESC(debug
, "switch on debug messages [0]");
58 MODULE_PARM_DESC(loopback
,
59 "debug: enable ras_raw channel [0]");
60 MODULE_PARM_DESC(out_queue
, "debug: set size of outgoing PPP queue [10]");
62 /* Executes in process context. */
63 static void signalled_reboot_work(struct work_struct
*work_reboot
)
65 struct ipw_dev
*ipw
= container_of(work_reboot
, struct ipw_dev
,
67 struct pcmcia_device
*link
= ipw
->link
;
68 int ret
= pcmcia_reset_card(link
->socket
);
71 cs_error(link
, ResetCard
, ret
);
74 static void signalled_reboot_callback(void *callback_data
)
76 struct ipw_dev
*ipw
= (struct ipw_dev
*) callback_data
;
78 /* Delegate to process context. */
79 schedule_work(&ipw
->work_reboot
);
82 static int config_ipwireless(struct ipw_dev
*ipw
)
84 struct pcmcia_device
*link
= ipw
->link
;
87 unsigned short buf
[64];
89 unsigned short cor_value
;
90 memreq_t memreq_attr_memory
;
91 memreq_t memreq_common_memory
;
96 tuple
.TupleData
= (cisdata_t
*) buf
;
97 tuple
.TupleDataMax
= sizeof(buf
);
98 tuple
.TupleOffset
= 0;
100 tuple
.DesiredTuple
= RETURN_FIRST_TUPLE
;
102 ret
= pcmcia_get_first_tuple(link
, &tuple
);
105 ret
= pcmcia_get_tuple_data(link
, &tuple
);
108 cs_error(link
, GetTupleData
, ret
);
111 ret
= pcmcia_get_next_tuple(link
, &tuple
);
114 tuple
.DesiredTuple
= CISTPL_CFTABLE_ENTRY
;
116 ret
= pcmcia_get_first_tuple(link
, &tuple
);
119 cs_error(link
, GetFirstTuple
, ret
);
123 ret
= pcmcia_get_tuple_data(link
, &tuple
);
126 cs_error(link
, GetTupleData
, ret
);
130 ret
= pcmcia_parse_tuple(&tuple
, &parse
);
133 cs_error(link
, ParseTuple
, ret
);
137 link
->io
.Attributes1
= IO_DATA_PATH_WIDTH_AUTO
;
138 link
->io
.BasePort1
= parse
.cftable_entry
.io
.win
[0].base
;
139 link
->io
.NumPorts1
= parse
.cftable_entry
.io
.win
[0].len
;
140 link
->io
.IOAddrLines
= 16;
142 link
->irq
.IRQInfo1
= parse
.cftable_entry
.irq
.IRQInfo1
;
144 /* 0x40 causes it to generate level mode interrupts. */
145 /* 0x04 enables IREQ pin. */
146 cor_value
= parse
.cftable_entry
.index
| 0x44;
147 link
->conf
.ConfigIndex
= cor_value
;
149 /* IRQ and I/O settings */
150 tuple
.DesiredTuple
= CISTPL_CONFIG
;
152 ret
= pcmcia_get_first_tuple(link
, &tuple
);
155 cs_error(link
, GetFirstTuple
, ret
);
159 ret
= pcmcia_get_tuple_data(link
, &tuple
);
162 cs_error(link
, GetTupleData
, ret
);
166 ret
= pcmcia_parse_tuple(&tuple
, &parse
);
169 cs_error(link
, GetTupleData
, ret
);
172 link
->conf
.Attributes
= CONF_ENABLE_IRQ
;
173 link
->conf
.ConfigBase
= parse
.config
.base
;
174 link
->conf
.Present
= parse
.config
.rmask
[0];
175 link
->conf
.IntType
= INT_MEMORY_AND_IO
;
177 link
->irq
.Attributes
= IRQ_TYPE_DYNAMIC_SHARING
| IRQ_HANDLE_PRESENT
;
178 link
->irq
.Handler
= ipwireless_interrupt
;
179 link
->irq
.Instance
= ipw
->hardware
;
181 ret
= pcmcia_request_io(link
, &link
->io
);
184 cs_error(link
, RequestIO
, ret
);
188 request_region(link
->io
.BasePort1
, link
->io
.NumPorts1
,
189 IPWIRELESS_PCCARD_NAME
);
191 /* memory settings */
193 tuple
.DesiredTuple
= CISTPL_CFTABLE_ENTRY
;
195 ret
= pcmcia_get_first_tuple(link
, &tuple
);
198 cs_error(link
, GetFirstTuple
, ret
);
202 ret
= pcmcia_get_tuple_data(link
, &tuple
);
205 cs_error(link
, GetTupleData
, ret
);
209 ret
= pcmcia_parse_tuple(&tuple
, &parse
);
212 cs_error(link
, ParseTuple
, ret
);
216 if (parse
.cftable_entry
.mem
.nwin
> 0) {
217 ipw
->request_common_memory
.Attributes
=
218 WIN_DATA_WIDTH_16
| WIN_MEMORY_TYPE_CM
| WIN_ENABLE
;
219 ipw
->request_common_memory
.Base
=
220 parse
.cftable_entry
.mem
.win
[0].host_addr
;
221 ipw
->request_common_memory
.Size
= parse
.cftable_entry
.mem
.win
[0].len
;
222 if (ipw
->request_common_memory
.Size
< 0x1000)
223 ipw
->request_common_memory
.Size
= 0x1000;
224 ipw
->request_common_memory
.AccessSpeed
= 0;
226 ret
= pcmcia_request_window(&link
, &ipw
->request_common_memory
,
227 &ipw
->handle_common_memory
);
230 cs_error(link
, RequestWindow
, ret
);
234 memreq_common_memory
.CardOffset
=
235 parse
.cftable_entry
.mem
.win
[0].card_addr
;
236 memreq_common_memory
.Page
= 0;
238 ret
= pcmcia_map_mem_page(ipw
->handle_common_memory
,
239 &memreq_common_memory
);
242 cs_error(link
, MapMemPage
, ret
);
247 parse
.cftable_entry
.mem
.win
[0].len
== 0x100;
249 ipw
->common_memory
= ioremap(ipw
->request_common_memory
.Base
,
250 ipw
->request_common_memory
.Size
);
251 request_mem_region(ipw
->request_common_memory
.Base
,
252 ipw
->request_common_memory
.Size
, IPWIRELESS_PCCARD_NAME
);
254 ipw
->request_attr_memory
.Attributes
=
255 WIN_DATA_WIDTH_16
| WIN_MEMORY_TYPE_AM
| WIN_ENABLE
;
256 ipw
->request_attr_memory
.Base
= 0;
257 ipw
->request_attr_memory
.Size
= 0; /* this used to be 0x1000 */
258 ipw
->request_attr_memory
.AccessSpeed
= 0;
260 ret
= pcmcia_request_window(&link
, &ipw
->request_attr_memory
,
261 &ipw
->handle_attr_memory
);
264 cs_error(link
, RequestWindow
, ret
);
268 memreq_attr_memory
.CardOffset
= 0;
269 memreq_attr_memory
.Page
= 0;
271 ret
= pcmcia_map_mem_page(ipw
->handle_attr_memory
,
272 &memreq_attr_memory
);
275 cs_error(link
, MapMemPage
, ret
);
279 ipw
->attr_memory
= ioremap(ipw
->request_attr_memory
.Base
,
280 ipw
->request_attr_memory
.Size
);
281 request_mem_region(ipw
->request_attr_memory
.Base
, ipw
->request_attr_memory
.Size
,
282 IPWIRELESS_PCCARD_NAME
);
285 INIT_WORK(&ipw
->work_reboot
, signalled_reboot_work
);
287 ipwireless_init_hardware_v1(ipw
->hardware
, link
->io
.BasePort1
,
288 ipw
->attr_memory
, ipw
->common_memory
,
289 ipw
->is_v2_card
, signalled_reboot_callback
,
292 ret
= pcmcia_request_irq(link
, &link
->irq
);
295 cs_error(link
, RequestIRQ
, ret
);
299 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
": Card type %s\n",
300 ipw
->is_v2_card
? "V2/V3" : "V1");
301 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
302 ": I/O ports 0x%04x-0x%04x, irq %d\n",
303 (unsigned int) link
->io
.BasePort1
,
304 (unsigned int) (link
->io
.BasePort1
+
305 link
->io
.NumPorts1
- 1),
306 (unsigned int) link
->irq
.AssignedIRQ
);
307 if (ipw
->attr_memory
&& ipw
->common_memory
)
308 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
309 ": attr memory 0x%08lx-0x%08lx, common memory 0x%08lx-0x%08lx\n",
310 ipw
->request_attr_memory
.Base
,
311 ipw
->request_attr_memory
.Base
312 + ipw
->request_attr_memory
.Size
- 1,
313 ipw
->request_common_memory
.Base
,
314 ipw
->request_common_memory
.Base
315 + ipw
->request_common_memory
.Size
- 1);
317 ipw
->network
= ipwireless_network_create(ipw
->hardware
);
321 ipw
->tty
= ipwireless_tty_create(ipw
->hardware
, ipw
->network
,
326 ipwireless_init_hardware_v2_v3(ipw
->hardware
);
329 * Do the RequestConfiguration last, because it enables interrupts.
330 * Then we don't get any interrupts before we're ready for them.
332 ret
= pcmcia_request_configuration(link
, &link
->conf
);
335 cs_error(link
, RequestConfiguration
, ret
);
339 link
->dev_node
= &ipw
->nodes
[0];
344 pcmcia_disable_device(link
);
346 if (ipw
->attr_memory
) {
347 release_mem_region(ipw
->request_attr_memory
.Base
,
348 ipw
->request_attr_memory
.Size
);
349 iounmap(ipw
->attr_memory
);
350 pcmcia_release_window(ipw
->handle_attr_memory
);
351 pcmcia_disable_device(link
);
354 if (ipw
->common_memory
) {
355 release_mem_region(ipw
->request_common_memory
.Base
,
356 ipw
->request_common_memory
.Size
);
357 iounmap(ipw
->common_memory
);
358 pcmcia_release_window(ipw
->handle_common_memory
);
361 pcmcia_disable_device(link
);
366 static void release_ipwireless(struct ipw_dev
*ipw
)
368 pcmcia_disable_device(ipw
->link
);
370 if (ipw
->common_memory
) {
371 release_mem_region(ipw
->request_common_memory
.Base
,
372 ipw
->request_common_memory
.Size
);
373 iounmap(ipw
->common_memory
);
375 if (ipw
->attr_memory
) {
376 release_mem_region(ipw
->request_attr_memory
.Base
,
377 ipw
->request_attr_memory
.Size
);
378 iounmap(ipw
->attr_memory
);
380 if (ipw
->common_memory
)
381 pcmcia_release_window(ipw
->handle_common_memory
);
382 if (ipw
->attr_memory
)
383 pcmcia_release_window(ipw
->handle_attr_memory
);
385 /* Break the link with Card Services */
386 pcmcia_disable_device(ipw
->link
);
390 * ipwireless_attach() creates an "instance" of the driver, allocating
391 * local data structures for one device (one interface). The device
392 * is registered with Card Services.
394 * The pcmcia_device structure is initialized, but we don't actually
395 * configure the card at this point -- we wait until we receive a
396 * card insertion event.
398 static int ipwireless_attach(struct pcmcia_device
*link
)
403 ipw
= kzalloc(sizeof(struct ipw_dev
), GFP_KERNEL
);
409 link
->irq
.Instance
= ipw
;
411 /* Link this device into our device list. */
412 link
->dev_node
= &ipw
->nodes
[0];
414 ipw
->hardware
= ipwireless_hardware_create();
415 if (!ipw
->hardware
) {
419 /* RegisterClient will call config_ipwireless */
421 ret
= config_ipwireless(ipw
);
424 cs_error(link
, RegisterClient
, ret
);
425 ipwireless_detach(link
);
433 * This deletes a driver "instance". The device is de-registered with
434 * Card Services. If it has been released, all local data structures
435 * are freed. Otherwise, the structures will be freed when the device
438 static void ipwireless_detach(struct pcmcia_device
*link
)
440 struct ipw_dev
*ipw
= link
->priv
;
442 release_ipwireless(ipw
);
444 if (ipw
->tty
!= NULL
)
445 ipwireless_tty_free(ipw
->tty
);
446 if (ipw
->network
!= NULL
)
447 ipwireless_network_free(ipw
->network
);
448 if (ipw
->hardware
!= NULL
)
449 ipwireless_hardware_free(ipw
->hardware
);
453 static struct pcmcia_driver me
= {
454 .owner
= THIS_MODULE
,
455 .probe
= ipwireless_attach
,
456 .remove
= ipwireless_detach
,
457 .drv
= { .name
= IPWIRELESS_PCCARD_NAME
},
462 * Module insertion : initialisation of the module.
463 * Register the card with cardmgr...
465 static int __init
init_ipwireless(void)
469 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
" "
470 IPWIRELESS_PCMCIA_VERSION
" by " IPWIRELESS_PCMCIA_AUTHOR
"\n");
472 ret
= ipwireless_tty_init();
476 ret
= pcmcia_register_driver(&me
);
478 ipwireless_tty_release();
486 static void __exit
exit_ipwireless(void)
488 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
" "
489 IPWIRELESS_PCMCIA_VERSION
" removed\n");
491 pcmcia_unregister_driver(&me
);
492 ipwireless_tty_release();
495 module_init(init_ipwireless
);
496 module_exit(exit_ipwireless
);
498 MODULE_AUTHOR(IPWIRELESS_PCMCIA_AUTHOR
);
499 MODULE_DESCRIPTION(IPWIRELESS_PCCARD_NAME
" " IPWIRELESS_PCMCIA_VERSION
);
500 MODULE_LICENSE("GPL");