OSDN Git Service

pcmcia: re-work pcmcia_request_irq()
[uclinux-h8/linux.git] / drivers / char / pcmcia / ipwireless / main.c
1 /*
2  * IPWireless 3G PCMCIA Network Driver
3  *
4  * Original code
5  *   by Stephen Blackheath <stephen@blacksapphire.com>,
6  *      Ben Martel <benm@symmetric.co.nz>
7  *
8  * Copyrighted as follows:
9  *   Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
10  *
11  * Various driver changes and rewrites, port to new kernels
12  *   Copyright (C) 2006-2007 Jiri Kosina
13  *
14  * Misc code cleanups and updates
15  *   Copyright (C) 2007 David Sterba
16  */
17
18 #include "hardware.h"
19 #include "network.h"
20 #include "main.h"
21 #include "tty.h"
22
23 #include <linux/delay.h>
24 #include <linux/init.h>
25 #include <linux/io.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/sched.h>
29 #include <linux/slab.h>
30
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>
36
37 static struct pcmcia_device_id ipw_ids[] = {
38         PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0100),
39         PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0200),
40         PCMCIA_DEVICE_NULL
41 };
42 MODULE_DEVICE_TABLE(pcmcia, ipw_ids);
43
44 static void ipwireless_detach(struct pcmcia_device *link);
45
46 /*
47  * Module params
48  */
49 /* Debug mode: more verbose, print sent/recv bytes */
50 int ipwireless_debug;
51 int ipwireless_loopback;
52 int ipwireless_out_queue = 10;
53
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]");
61
62 /* Executes in process context. */
63 static void signalled_reboot_work(struct work_struct *work_reboot)
64 {
65         struct ipw_dev *ipw = container_of(work_reboot, struct ipw_dev,
66                         work_reboot);
67         struct pcmcia_device *link = ipw->link;
68         pcmcia_reset_card(link->socket);
69 }
70
71 static void signalled_reboot_callback(void *callback_data)
72 {
73         struct ipw_dev *ipw = (struct ipw_dev *) callback_data;
74
75         /* Delegate to process context. */
76         schedule_work(&ipw->work_reboot);
77 }
78
79 static int ipwireless_probe(struct pcmcia_device *p_dev,
80                             cistpl_cftable_entry_t *cfg,
81                             cistpl_cftable_entry_t *dflt,
82                             unsigned int vcc,
83                             void *priv_data)
84 {
85         struct ipw_dev *ipw = priv_data;
86         struct resource *io_resource;
87         memreq_t memreq_attr_memory;
88         memreq_t memreq_common_memory;
89         int ret;
90
91         p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
92         p_dev->io.BasePort1 = cfg->io.win[0].base;
93         p_dev->io.NumPorts1 = cfg->io.win[0].len;
94         p_dev->io.IOAddrLines = 16;
95
96         /* 0x40 causes it to generate level mode interrupts. */
97         /* 0x04 enables IREQ pin. */
98         p_dev->conf.ConfigIndex = cfg->index | 0x44;
99         ret = pcmcia_request_io(p_dev, &p_dev->io);
100         if (ret)
101                 return ret;
102
103         io_resource = request_region(p_dev->io.BasePort1, p_dev->io.NumPorts1,
104                                 IPWIRELESS_PCCARD_NAME);
105
106         if (cfg->mem.nwin == 0)
107                 return 0;
108
109         ipw->request_common_memory.Attributes =
110                 WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_CM | WIN_ENABLE;
111         ipw->request_common_memory.Base = cfg->mem.win[0].host_addr;
112         ipw->request_common_memory.Size = cfg->mem.win[0].len;
113         if (ipw->request_common_memory.Size < 0x1000)
114                 ipw->request_common_memory.Size = 0x1000;
115         ipw->request_common_memory.AccessSpeed = 0;
116
117         ret = pcmcia_request_window(p_dev, &ipw->request_common_memory,
118                                 &ipw->handle_common_memory);
119
120         if (ret != 0)
121                 goto exit1;
122
123         memreq_common_memory.CardOffset = cfg->mem.win[0].card_addr;
124         memreq_common_memory.Page = 0;
125
126         ret = pcmcia_map_mem_page(p_dev, ipw->handle_common_memory,
127                                 &memreq_common_memory);
128
129         if (ret != 0)
130                 goto exit2;
131
132         ipw->is_v2_card = cfg->mem.win[0].len == 0x100;
133
134         ipw->common_memory = ioremap(ipw->request_common_memory.Base,
135                                 ipw->request_common_memory.Size);
136         request_mem_region(ipw->request_common_memory.Base,
137                         ipw->request_common_memory.Size,
138                         IPWIRELESS_PCCARD_NAME);
139
140         ipw->request_attr_memory.Attributes =
141                 WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_AM | WIN_ENABLE;
142         ipw->request_attr_memory.Base = 0;
143         ipw->request_attr_memory.Size = 0;      /* this used to be 0x1000 */
144         ipw->request_attr_memory.AccessSpeed = 0;
145
146         ret = pcmcia_request_window(p_dev, &ipw->request_attr_memory,
147                                 &ipw->handle_attr_memory);
148
149         if (ret != 0)
150                 goto exit2;
151
152         memreq_attr_memory.CardOffset = 0;
153         memreq_attr_memory.Page = 0;
154
155         ret = pcmcia_map_mem_page(p_dev, ipw->handle_attr_memory,
156                                 &memreq_attr_memory);
157
158         if (ret != 0)
159                 goto exit3;
160
161         ipw->attr_memory = ioremap(ipw->request_attr_memory.Base,
162                                 ipw->request_attr_memory.Size);
163         request_mem_region(ipw->request_attr_memory.Base,
164                         ipw->request_attr_memory.Size, IPWIRELESS_PCCARD_NAME);
165
166         return 0;
167
168 exit3:
169         pcmcia_release_window(p_dev, ipw->handle_attr_memory);
170 exit2:
171         if (ipw->common_memory) {
172                 release_mem_region(ipw->request_common_memory.Base,
173                                 ipw->request_common_memory.Size);
174                 iounmap(ipw->common_memory);
175                 pcmcia_release_window(p_dev, ipw->handle_common_memory);
176         } else
177                 pcmcia_release_window(p_dev, ipw->handle_common_memory);
178 exit1:
179         release_resource(io_resource);
180         pcmcia_disable_device(p_dev);
181         return -1;
182 }
183
184 static int config_ipwireless(struct ipw_dev *ipw)
185 {
186         struct pcmcia_device *link = ipw->link;
187         int ret = 0;
188
189         ipw->is_v2_card = 0;
190
191         ret = pcmcia_loop_config(link, ipwireless_probe, ipw);
192         if (ret != 0)
193                 return ret;
194
195         link->conf.Attributes = CONF_ENABLE_IRQ;
196         link->conf.IntType = INT_MEMORY_AND_IO;
197
198         INIT_WORK(&ipw->work_reboot, signalled_reboot_work);
199
200         ipwireless_init_hardware_v1(ipw->hardware, link->io.BasePort1,
201                                     ipw->attr_memory, ipw->common_memory,
202                                     ipw->is_v2_card, signalled_reboot_callback,
203                                     ipw);
204
205         ret = pcmcia_request_irq(link, ipwireless_interrupt);
206         if (ret != 0)
207                 goto exit;
208
209         printk(KERN_INFO IPWIRELESS_PCCARD_NAME ": Card type %s\n",
210                         ipw->is_v2_card ? "V2/V3" : "V1");
211         printk(KERN_INFO IPWIRELESS_PCCARD_NAME
212                         ": I/O ports 0x%04x-0x%04x, irq %d\n",
213                         (unsigned int) link->io.BasePort1,
214                         (unsigned int) (link->io.BasePort1 +
215                                 link->io.NumPorts1 - 1),
216                         (unsigned int) link->irq);
217         if (ipw->attr_memory && ipw->common_memory)
218                 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
219                         ": attr memory 0x%08lx-0x%08lx, common memory 0x%08lx-0x%08lx\n",
220                         ipw->request_attr_memory.Base,
221                         ipw->request_attr_memory.Base
222                         + ipw->request_attr_memory.Size - 1,
223                         ipw->request_common_memory.Base,
224                         ipw->request_common_memory.Base
225                         + ipw->request_common_memory.Size - 1);
226
227         ipw->network = ipwireless_network_create(ipw->hardware);
228         if (!ipw->network)
229                 goto exit;
230
231         ipw->tty = ipwireless_tty_create(ipw->hardware, ipw->network,
232                         ipw->nodes);
233         if (!ipw->tty)
234                 goto exit;
235
236         ipwireless_init_hardware_v2_v3(ipw->hardware);
237
238         /*
239          * Do the RequestConfiguration last, because it enables interrupts.
240          * Then we don't get any interrupts before we're ready for them.
241          */
242         ret = pcmcia_request_configuration(link, &link->conf);
243
244         if (ret != 0)
245                 goto exit;
246
247         link->dev_node = &ipw->nodes[0];
248
249         return 0;
250
251 exit:
252         if (ipw->attr_memory) {
253                 release_mem_region(ipw->request_attr_memory.Base,
254                                 ipw->request_attr_memory.Size);
255                 iounmap(ipw->attr_memory);
256                 pcmcia_release_window(link, ipw->handle_attr_memory);
257         }
258         if (ipw->common_memory) {
259                 release_mem_region(ipw->request_common_memory.Base,
260                                 ipw->request_common_memory.Size);
261                 iounmap(ipw->common_memory);
262                 pcmcia_release_window(link, ipw->handle_common_memory);
263         }
264         pcmcia_disable_device(link);
265         return -1;
266 }
267
268 static void release_ipwireless(struct ipw_dev *ipw)
269 {
270         if (ipw->common_memory) {
271                 release_mem_region(ipw->request_common_memory.Base,
272                                 ipw->request_common_memory.Size);
273                 iounmap(ipw->common_memory);
274         }
275         if (ipw->attr_memory) {
276                 release_mem_region(ipw->request_attr_memory.Base,
277                                 ipw->request_attr_memory.Size);
278                 iounmap(ipw->attr_memory);
279         }
280         if (ipw->common_memory)
281                 pcmcia_release_window(ipw->link, ipw->handle_common_memory);
282         if (ipw->attr_memory)
283                 pcmcia_release_window(ipw->link, ipw->handle_attr_memory);
284
285         pcmcia_disable_device(ipw->link);
286 }
287
288 /*
289  * ipwireless_attach() creates an "instance" of the driver, allocating
290  * local data structures for one device (one interface).  The device
291  * is registered with Card Services.
292  *
293  * The pcmcia_device structure is initialized, but we don't actually
294  * configure the card at this point -- we wait until we receive a
295  * card insertion event.
296  */
297 static int ipwireless_attach(struct pcmcia_device *link)
298 {
299         struct ipw_dev *ipw;
300         int ret;
301
302         ipw = kzalloc(sizeof(struct ipw_dev), GFP_KERNEL);
303         if (!ipw)
304                 return -ENOMEM;
305
306         ipw->link = link;
307         link->priv = ipw;
308
309         /* Link this device into our device list. */
310         link->dev_node = &ipw->nodes[0];
311
312         ipw->hardware = ipwireless_hardware_create();
313         if (!ipw->hardware) {
314                 kfree(ipw);
315                 return -ENOMEM;
316         }
317         /* RegisterClient will call config_ipwireless */
318
319         ret = config_ipwireless(ipw);
320
321         if (ret != 0) {
322                 ipwireless_detach(link);
323                 return ret;
324         }
325
326         return 0;
327 }
328
329 /*
330  * This deletes a driver "instance".  The device is de-registered with
331  * Card Services.  If it has been released, all local data structures
332  * are freed.  Otherwise, the structures will be freed when the device
333  * is released.
334  */
335 static void ipwireless_detach(struct pcmcia_device *link)
336 {
337         struct ipw_dev *ipw = link->priv;
338
339         release_ipwireless(ipw);
340
341         if (ipw->tty != NULL)
342                 ipwireless_tty_free(ipw->tty);
343         if (ipw->network != NULL)
344                 ipwireless_network_free(ipw->network);
345         if (ipw->hardware != NULL)
346                 ipwireless_hardware_free(ipw->hardware);
347         kfree(ipw);
348 }
349
350 static struct pcmcia_driver me = {
351         .owner          = THIS_MODULE,
352         .probe          = ipwireless_attach,
353         .remove         = ipwireless_detach,
354         .drv = { .name  = IPWIRELESS_PCCARD_NAME },
355         .id_table       = ipw_ids
356 };
357
358 /*
359  * Module insertion : initialisation of the module.
360  * Register the card with cardmgr...
361  */
362 static int __init init_ipwireless(void)
363 {
364         int ret;
365
366         printk(KERN_INFO IPWIRELESS_PCCARD_NAME " "
367                IPWIRELESS_PCMCIA_VERSION " by " IPWIRELESS_PCMCIA_AUTHOR "\n");
368
369         ret = ipwireless_tty_init();
370         if (ret != 0)
371                 return ret;
372
373         ret = pcmcia_register_driver(&me);
374         if (ret != 0)
375                 ipwireless_tty_release();
376
377         return ret;
378 }
379
380 /*
381  * Module removal
382  */
383 static void __exit exit_ipwireless(void)
384 {
385         printk(KERN_INFO IPWIRELESS_PCCARD_NAME " "
386                         IPWIRELESS_PCMCIA_VERSION " removed\n");
387
388         pcmcia_unregister_driver(&me);
389         ipwireless_tty_release();
390 }
391
392 module_init(init_ipwireless);
393 module_exit(exit_ipwireless);
394
395 MODULE_AUTHOR(IPWIRELESS_PCMCIA_AUTHOR);
396 MODULE_DESCRIPTION(IPWIRELESS_PCCARD_NAME " " IPWIRELESS_PCMCIA_VERSION);
397 MODULE_LICENSE("GPL");