blob: 2d898d3afc975b7560a79224a4b0376fe1cfaf1d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: avm_cs.c,v 1.4.6.3 2001/09/23 22:24:33 kai Exp $
2 *
3 * A PCMCIA client driver for AVM B1/M1/M2
4 *
5 * Copyright 1999 by Carsten Paeth <calle@calle.de>
6 *
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/sched.h>
16#include <linux/ptrace.h>
17#include <linux/slab.h>
18#include <linux/string.h>
19#include <linux/tty.h>
20#include <linux/serial.h>
21#include <linux/major.h>
22#include <asm/io.h>
23#include <asm/system.h>
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <pcmcia/cs_types.h>
26#include <pcmcia/cs.h>
27#include <pcmcia/cistpl.h>
28#include <pcmcia/ciscode.h>
29#include <pcmcia/ds.h>
30#include <pcmcia/cisreg.h>
31
32#include <linux/skbuff.h>
33#include <linux/capi.h>
34#include <linux/b1lli.h>
35#include <linux/b1pcmcia.h>
36
37/*====================================================================*/
38
39MODULE_DESCRIPTION("CAPI4Linux: PCMCIA client driver for AVM B1/M1/M2");
40MODULE_AUTHOR("Carsten Paeth");
41MODULE_LICENSE("GPL");
42
43/*====================================================================*/
44
45/*
46 The event() function is this driver's Card Services event handler.
47 It will be called by Card Services when an appropriate card status
48 event is received. The config() and release() entry points are
49 used to configure or release a socket, in response to card insertion
50 and ejection events. They are invoked from the skeleton event
51 handler.
52*/
53
54static void avmcs_config(dev_link_t *link);
55static void avmcs_release(dev_link_t *link);
56static int avmcs_event(event_t event, int priority,
57 event_callback_args_t *args);
58
59/*
60 The attach() and detach() entry points are used to create and destroy
61 "instances" of the driver, where each instance represents everything
62 needed to manage one actual PCMCIA card.
63*/
64
65static dev_link_t *avmcs_attach(void);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +010066static void avmcs_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 The dev_info variable is the "key" that is used to match up this
70 device driver with appropriate cards, through the card configuration
71 database.
72*/
73
74static dev_info_t dev_info = "avm_cs";
75
76/*
77 A linked list of "instances" of the skeleton device. Each actual
78 PCMCIA card corresponds to one device instance, and is described
79 by one dev_link_t structure (defined in ds.h).
80
81 You may not want to use a linked list for this -- for example, the
82 memory card driver uses an array of dev_link_t pointers, where minor
83 device numbers are used to derive the corresponding array index.
84*/
85
86static dev_link_t *dev_list = NULL;
87
88/*
89 A dev_link_t structure has fields for most things that are needed
90 to keep track of a socket, but there will usually be some device
91 specific information that also needs to be kept track of. The
92 'priv' pointer in a dev_link_t structure can be used to point to
93 a device-specific private data structure, like this.
94
95 A driver needs to provide a dev_node_t structure for each device
96 on a card. In some cases, there is only one device per card (for
97 example, ethernet cards, modems). In other cases, there may be
98 many actual or logical devices (SCSI adapters, memory cards with
99 multiple partitions). The dev_node_t structures need to be kept
100 in a linked list starting at the 'dev' field of a dev_link_t
101 structure. We allocate them in the card's private data structure,
102 because they generally can't be allocated dynamically.
103*/
104
105typedef struct local_info_t {
106 dev_node_t node;
107} local_info_t;
108
109/*======================================================================
110
111 avmcs_attach() creates an "instance" of the driver, allocating
112 local data structures for one device. The device is registered
113 with Card Services.
114
115 The dev_link structure is initialized, but we don't actually
116 configure the card at this point -- we wait until we receive a
117 card insertion event.
118
119======================================================================*/
120
121static dev_link_t *avmcs_attach(void)
122{
123 client_reg_t client_reg;
124 dev_link_t *link;
125 local_info_t *local;
126 int ret;
127
128 /* Initialize the dev_link_t structure */
129 link = kmalloc(sizeof(struct dev_link_t), GFP_KERNEL);
130 if (!link)
131 goto err;
132 memset(link, 0, sizeof(struct dev_link_t));
133
134 /* The io structure describes IO port mapping */
135 link->io.NumPorts1 = 16;
136 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
137 link->io.NumPorts2 = 0;
138
139 /* Interrupt setup */
140 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
141 link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
142
143 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
144
145 /* General socket configuration */
146 link->conf.Attributes = CONF_ENABLE_IRQ;
147 link->conf.Vcc = 50;
148 link->conf.IntType = INT_MEMORY_AND_IO;
149 link->conf.ConfigIndex = 1;
150 link->conf.Present = PRESENT_OPTION;
151
152 /* Allocate space for private device-specific data */
153 local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
154 if (!local)
155 goto err_kfree;
156 memset(local, 0, sizeof(local_info_t));
157 link->priv = local;
158
159 /* Register with Card Services */
160 link->next = dev_list;
161 dev_list = link;
162 client_reg.dev_info = &dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 client_reg.Version = 0x0210;
164 client_reg.event_callback_args.client_data = link;
165 ret = pcmcia_register_client(&link->handle, &client_reg);
166 if (ret != 0) {
167 cs_error(link->handle, RegisterClient, ret);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100168 avmcs_detach(link->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 goto err;
170 }
171 return link;
172
173 err_kfree:
174 kfree(link);
175 err:
176 return NULL;
177} /* avmcs_attach */
178
179/*======================================================================
180
181 This deletes a driver "instance". The device is de-registered
182 with Card Services. If it has been released, all local data
183 structures are freed. Otherwise, the structures will be freed
184 when the device is released.
185
186======================================================================*/
187
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100188static void avmcs_detach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100190 dev_link_t *link = dev_to_instance(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 dev_link_t **linkp;
192
193 /* Locate device structure */
194 for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
195 if (*linkp == link) break;
196 if (*linkp == NULL)
197 return;
198
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100199 if (link->state & DEV_CONFIG)
200 avmcs_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Unlink device structure, free pieces */
203 *linkp = link->next;
Jesper Juhl3c7208f2005-11-07 01:01:29 -0800204 kfree(link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 kfree(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206} /* avmcs_detach */
207
208/*======================================================================
209
210 avmcs_config() is scheduled to run after a CARD_INSERTION event
211 is received, to configure the PCMCIA socket, and to make the
212 ethernet device available to the system.
213
214======================================================================*/
215
216static int get_tuple(client_handle_t handle, tuple_t *tuple,
217 cisparse_t *parse)
218{
219 int i = pcmcia_get_tuple_data(handle, tuple);
220 if (i != CS_SUCCESS) return i;
221 return pcmcia_parse_tuple(handle, tuple, parse);
222}
223
224static int first_tuple(client_handle_t handle, tuple_t *tuple,
225 cisparse_t *parse)
226{
227 int i = pcmcia_get_first_tuple(handle, tuple);
228 if (i != CS_SUCCESS) return i;
229 return get_tuple(handle, tuple, parse);
230}
231
232static int next_tuple(client_handle_t handle, tuple_t *tuple,
233 cisparse_t *parse)
234{
235 int i = pcmcia_get_next_tuple(handle, tuple);
236 if (i != CS_SUCCESS) return i;
237 return get_tuple(handle, tuple, parse);
238}
239
240static void avmcs_config(dev_link_t *link)
241{
242 client_handle_t handle;
243 tuple_t tuple;
244 cisparse_t parse;
245 cistpl_cftable_entry_t *cf = &parse.cftable_entry;
246 local_info_t *dev;
247 int i;
248 u_char buf[64];
249 char devname[128];
250 int cardtype;
251 int (*addcard)(unsigned int port, unsigned irq);
252
253 handle = link->handle;
254 dev = link->priv;
255
256 /*
257 This reads the card's CONFIG tuple to find its configuration
258 registers.
259 */
260 do {
261 tuple.DesiredTuple = CISTPL_CONFIG;
262 i = pcmcia_get_first_tuple(handle, &tuple);
263 if (i != CS_SUCCESS) break;
264 tuple.TupleData = buf;
265 tuple.TupleDataMax = 64;
266 tuple.TupleOffset = 0;
267 i = pcmcia_get_tuple_data(handle, &tuple);
268 if (i != CS_SUCCESS) break;
269 i = pcmcia_parse_tuple(handle, &tuple, &parse);
270 if (i != CS_SUCCESS) break;
271 link->conf.ConfigBase = parse.config.base;
272 } while (0);
273 if (i != CS_SUCCESS) {
274 cs_error(link->handle, ParseTuple, i);
275 link->state &= ~DEV_CONFIG_PENDING;
276 return;
277 }
278
279 /* Configure card */
280 link->state |= DEV_CONFIG;
281
282 do {
283
284 tuple.Attributes = 0;
285 tuple.TupleData = buf;
286 tuple.TupleDataMax = 254;
287 tuple.TupleOffset = 0;
288 tuple.DesiredTuple = CISTPL_VERS_1;
289
290 devname[0] = 0;
291 if( !first_tuple(handle, &tuple, &parse) && parse.version_1.ns > 1 ) {
292 strlcpy(devname,parse.version_1.str + parse.version_1.ofs[1],
293 sizeof(devname));
294 }
295 /*
296 * find IO port
297 */
298 tuple.TupleData = (cisdata_t *)buf;
299 tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
300 tuple.Attributes = 0;
301 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
302 i = first_tuple(handle, &tuple, &parse);
303 while (i == CS_SUCCESS) {
304 if (cf->io.nwin > 0) {
305 link->conf.ConfigIndex = cf->index;
306 link->io.BasePort1 = cf->io.win[0].base;
307 link->io.NumPorts1 = cf->io.win[0].len;
308 link->io.NumPorts2 = 0;
309 printk(KERN_INFO "avm_cs: testing i/o %#x-%#x\n",
310 link->io.BasePort1,
311 link->io.BasePort1+link->io.NumPorts1-1);
312 i = pcmcia_request_io(link->handle, &link->io);
313 if (i == CS_SUCCESS) goto found_port;
314 }
315 i = next_tuple(handle, &tuple, &parse);
316 }
317
318found_port:
319 if (i != CS_SUCCESS) {
320 cs_error(link->handle, RequestIO, i);
321 break;
322 }
323
324 /*
325 * allocate an interrupt line
326 */
327 i = pcmcia_request_irq(link->handle, &link->irq);
328 if (i != CS_SUCCESS) {
329 cs_error(link->handle, RequestIRQ, i);
330 pcmcia_release_io(link->handle, &link->io);
331 break;
332 }
333
334 /*
335 * configure the PCMCIA socket
336 */
337 i = pcmcia_request_configuration(link->handle, &link->conf);
338 if (i != CS_SUCCESS) {
339 cs_error(link->handle, RequestConfiguration, i);
340 pcmcia_release_io(link->handle, &link->io);
341 pcmcia_release_irq(link->handle, &link->irq);
342 break;
343 }
344
345 } while (0);
346
347 /* At this point, the dev_node_t structure(s) should be
348 initialized and arranged in a linked list at link->dev. */
349
350 if (devname[0]) {
351 char *s = strrchr(devname, ' ');
352 if (!s)
353 s = devname;
354 else s++;
355 strcpy(dev->node.dev_name, s);
356 if (strcmp("M1", s) == 0) {
357 cardtype = AVM_CARDTYPE_M1;
358 } else if (strcmp("M2", s) == 0) {
359 cardtype = AVM_CARDTYPE_M2;
360 } else {
361 cardtype = AVM_CARDTYPE_B1;
362 }
363 } else {
364 strcpy(dev->node.dev_name, "b1");
365 cardtype = AVM_CARDTYPE_B1;
366 }
367
368 dev->node.major = 64;
369 dev->node.minor = 0;
370 link->dev = &dev->node;
371
372 link->state &= ~DEV_CONFIG_PENDING;
373 /* If any step failed, release any partially configured state */
374 if (i != 0) {
375 avmcs_release(link);
376 return;
377 }
378
379
380 switch (cardtype) {
381 case AVM_CARDTYPE_M1: addcard = b1pcmcia_addcard_m1; break;
382 case AVM_CARDTYPE_M2: addcard = b1pcmcia_addcard_m2; break;
383 default:
384 case AVM_CARDTYPE_B1: addcard = b1pcmcia_addcard_b1; break;
385 }
386 if ((i = (*addcard)(link->io.BasePort1, link->irq.AssignedIRQ)) < 0) {
387 printk(KERN_ERR "avm_cs: failed to add AVM-%s-Controller at i/o %#x, irq %d\n",
388 dev->node.dev_name, link->io.BasePort1, link->irq.AssignedIRQ);
389 avmcs_release(link);
390 return;
391 }
392 dev->node.minor = i;
393
394} /* avmcs_config */
395
396/*======================================================================
397
398 After a card is removed, avmcs_release() will unregister the net
399 device, and release the PCMCIA configuration. If the device is
400 still open, this will be postponed until it is closed.
401
402======================================================================*/
403
404static void avmcs_release(dev_link_t *link)
405{
406 b1pcmcia_delcard(link->io.BasePort1, link->irq.AssignedIRQ);
407
408 /* Unlink the device chain */
409 link->dev = NULL;
410
411 /* Don't bother checking to see if these succeed or not */
412 pcmcia_release_configuration(link->handle);
413 pcmcia_release_io(link->handle, &link->io);
414 pcmcia_release_irq(link->handle, &link->irq);
415 link->state &= ~DEV_CONFIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416} /* avmcs_release */
417
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100418static int avmcs_suspend(struct pcmcia_device *dev)
419{
420 dev_link_t *link = dev_to_instance(dev);
421
422 link->state |= DEV_SUSPEND;
423 if (link->state & DEV_CONFIG)
424 pcmcia_release_configuration(link->handle);
425
426 return 0;
427}
428
429static int avmcs_resume(struct pcmcia_device *dev)
430{
431 dev_link_t *link = dev_to_instance(dev);
432
433 link->state &= ~DEV_SUSPEND;
434 if (link->state & DEV_CONFIG)
435 pcmcia_request_configuration(link->handle, &link->conf);
436
437 return 0;
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*======================================================================
441
442 The card status event handler. Mostly, this schedules other
443 stuff to run after an event is received. A CARD_REMOVAL event
444 also sets some flags to discourage the net drivers from trying
445 to talk to the card any more.
446
447 When a CARD_REMOVAL event is received, we immediately set a flag
448 to block future accesses to this device. All the functions that
449 actually access the device should check this flag to make sure
450 the card is still present.
451
452======================================================================*/
453
454static int avmcs_event(event_t event, int priority,
455 event_callback_args_t *args)
456{
457 dev_link_t *link = args->client_data;
458
459 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 case CS_EVENT_CARD_INSERTION:
461 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
462 avmcs_config(link);
463 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 return 0;
466} /* avmcs_event */
467
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700468static struct pcmcia_device_id avmcs_ids[] = {
469 PCMCIA_DEVICE_PROD_ID12("AVM", "ISDN-Controller B1", 0x95d42008, 0x845dc335),
470 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M1", 0x95d42008, 0x81e10430),
471 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M2", 0x95d42008, 0x18e8558a),
472 PCMCIA_DEVICE_NULL
473};
474MODULE_DEVICE_TABLE(pcmcia, avmcs_ids);
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476static struct pcmcia_driver avmcs_driver = {
477 .owner = THIS_MODULE,
478 .drv = {
479 .name = "avm_cs",
480 },
481 .attach = avmcs_attach,
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700482 .event = avmcs_event,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100483 .remove = avmcs_detach,
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700484 .id_table = avmcs_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100485 .suspend= avmcs_suspend,
486 .resume = avmcs_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487};
488
489static int __init avmcs_init(void)
490{
491 return pcmcia_register_driver(&avmcs_driver);
492}
493
494static void __exit avmcs_exit(void)
495{
496 pcmcia_unregister_driver(&avmcs_driver);
497 BUG_ON(dev_list != NULL);
498}
499
500module_init(avmcs_init);
501module_exit(avmcs_exit);