blob: db3755b28f536be9752ac45538e18913d3f26728 [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
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020054static int avmcs_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020055static void avmcs_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
58 The attach() and detach() entry points are used to create and destroy
59 "instances" of the driver, where each instance represents everything
60 needed to manage one actual PCMCIA card.
61*/
62
Dominik Brodowskicc3b4862005-11-14 21:23:14 +010063static void avmcs_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 A linked list of "instances" of the skeleton device. Each actual
67 PCMCIA card corresponds to one device instance, and is described
Dominik Brodowskifba395e2006-03-31 17:21:06 +020068 by one struct pcmcia_device structure (defined in ds.h).
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 You may not want to use a linked list for this -- for example, the
Dominik Brodowskifba395e2006-03-31 17:21:06 +020071 memory card driver uses an array of struct pcmcia_device pointers, where minor
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 device numbers are used to derive the corresponding array index.
73*/
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 A driver needs to provide a dev_node_t structure for each device
77 on a card. In some cases, there is only one device per card (for
78 example, ethernet cards, modems). In other cases, there may be
79 many actual or logical devices (SCSI adapters, memory cards with
80 multiple partitions). The dev_node_t structures need to be kept
Dominik Brodowskifba395e2006-03-31 17:21:06 +020081 in a linked list starting at the 'dev' field of a struct pcmcia_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 structure. We allocate them in the card's private data structure,
83 because they generally can't be allocated dynamically.
84*/
85
86typedef struct local_info_t {
87 dev_node_t node;
88} local_info_t;
89
90/*======================================================================
91
92 avmcs_attach() creates an "instance" of the driver, allocating
93 local data structures for one device. The device is registered
94 with Card Services.
95
96 The dev_link structure is initialized, but we don't actually
97 configure the card at this point -- we wait until we receive a
98 card insertion event.
99
100======================================================================*/
101
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200102static int avmcs_probe(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 local_info_t *local;
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /* The io structure describes IO port mapping */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100107 p_dev->io.NumPorts1 = 16;
108 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
109 p_dev->io.NumPorts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* Interrupt setup */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100112 p_dev->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
113 p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Dominik Brodowskifd238232006-03-05 10:45:09 +0100115 p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* General socket configuration */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100118 p_dev->conf.Attributes = CONF_ENABLE_IRQ;
119 p_dev->conf.IntType = INT_MEMORY_AND_IO;
120 p_dev->conf.ConfigIndex = 1;
121 p_dev->conf.Present = PRESENT_OPTION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /* Allocate space for private device-specific data */
124 local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
125 if (!local)
Dominik Brodowskifd238232006-03-05 10:45:09 +0100126 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 memset(local, 0, sizeof(local_info_t));
Dominik Brodowskifd238232006-03-05 10:45:09 +0100128 p_dev->priv = local;
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100129
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200130 return avmcs_config(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 err:
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200133 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134} /* avmcs_attach */
135
136/*======================================================================
137
138 This deletes a driver "instance". The device is de-registered
139 with Card Services. If it has been released, all local data
140 structures are freed. Otherwise, the structures will be freed
141 when the device is released.
142
143======================================================================*/
144
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200145static void avmcs_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100147 avmcs_release(link);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100148 kfree(link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149} /* avmcs_detach */
150
151/*======================================================================
152
153 avmcs_config() is scheduled to run after a CARD_INSERTION event
154 is received, to configure the PCMCIA socket, and to make the
155 ethernet device available to the system.
156
157======================================================================*/
158
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200159static int get_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 cisparse_t *parse)
161{
162 int i = pcmcia_get_tuple_data(handle, tuple);
163 if (i != CS_SUCCESS) return i;
164 return pcmcia_parse_tuple(handle, tuple, parse);
165}
166
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200167static int first_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 cisparse_t *parse)
169{
170 int i = pcmcia_get_first_tuple(handle, tuple);
171 if (i != CS_SUCCESS) return i;
172 return get_tuple(handle, tuple, parse);
173}
174
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200175static int next_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 cisparse_t *parse)
177{
178 int i = pcmcia_get_next_tuple(handle, tuple);
179 if (i != CS_SUCCESS) return i;
180 return get_tuple(handle, tuple, parse);
181}
182
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200183static int avmcs_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 tuple_t tuple;
186 cisparse_t parse;
187 cistpl_cftable_entry_t *cf = &parse.cftable_entry;
188 local_info_t *dev;
189 int i;
190 u_char buf[64];
191 char devname[128];
192 int cardtype;
193 int (*addcard)(unsigned int port, unsigned irq);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 dev = link->priv;
196
197 /*
198 This reads the card's CONFIG tuple to find its configuration
199 registers.
200 */
201 do {
202 tuple.DesiredTuple = CISTPL_CONFIG;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200203 i = pcmcia_get_first_tuple(link, &tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (i != CS_SUCCESS) break;
205 tuple.TupleData = buf;
206 tuple.TupleDataMax = 64;
207 tuple.TupleOffset = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200208 i = pcmcia_get_tuple_data(link, &tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (i != CS_SUCCESS) break;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200210 i = pcmcia_parse_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (i != CS_SUCCESS) break;
212 link->conf.ConfigBase = parse.config.base;
213 } while (0);
214 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200215 cs_error(link, ParseTuple, i);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200216 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 devname[0] = 0;
Dominik Brodowskia9606fd2006-06-04 18:06:13 +0200221 if (link->prod_id[1])
222 strlcpy(devname, link->prod_id[1], sizeof(devname));
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /*
225 * find IO port
226 */
227 tuple.TupleData = (cisdata_t *)buf;
228 tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
229 tuple.Attributes = 0;
230 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200231 i = first_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 while (i == CS_SUCCESS) {
233 if (cf->io.nwin > 0) {
234 link->conf.ConfigIndex = cf->index;
235 link->io.BasePort1 = cf->io.win[0].base;
236 link->io.NumPorts1 = cf->io.win[0].len;
237 link->io.NumPorts2 = 0;
238 printk(KERN_INFO "avm_cs: testing i/o %#x-%#x\n",
239 link->io.BasePort1,
240 link->io.BasePort1+link->io.NumPorts1-1);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200241 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (i == CS_SUCCESS) goto found_port;
243 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200244 i = next_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246
247found_port:
248 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200249 cs_error(link, RequestIO, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251 }
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /*
254 * allocate an interrupt line
255 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200256 i = pcmcia_request_irq(link, &link->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200258 cs_error(link, RequestIRQ, i);
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100259 /* undo */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200260 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
262 }
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
265 * configure the PCMCIA socket
266 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200267 i = pcmcia_request_configuration(link, &link->conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200269 cs_error(link, RequestConfiguration, i);
270 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 break;
272 }
273
274 } while (0);
275
276 /* At this point, the dev_node_t structure(s) should be
277 initialized and arranged in a linked list at link->dev. */
278
279 if (devname[0]) {
280 char *s = strrchr(devname, ' ');
281 if (!s)
282 s = devname;
283 else s++;
284 strcpy(dev->node.dev_name, s);
285 if (strcmp("M1", s) == 0) {
286 cardtype = AVM_CARDTYPE_M1;
287 } else if (strcmp("M2", s) == 0) {
288 cardtype = AVM_CARDTYPE_M2;
289 } else {
290 cardtype = AVM_CARDTYPE_B1;
291 }
292 } else {
293 strcpy(dev->node.dev_name, "b1");
294 cardtype = AVM_CARDTYPE_B1;
295 }
296
297 dev->node.major = 64;
298 dev->node.minor = 0;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100299 link->dev_node = &dev->node;
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* If any step failed, release any partially configured state */
302 if (i != 0) {
303 avmcs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200304 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306
307
308 switch (cardtype) {
309 case AVM_CARDTYPE_M1: addcard = b1pcmcia_addcard_m1; break;
310 case AVM_CARDTYPE_M2: addcard = b1pcmcia_addcard_m2; break;
311 default:
312 case AVM_CARDTYPE_B1: addcard = b1pcmcia_addcard_b1; break;
313 }
314 if ((i = (*addcard)(link->io.BasePort1, link->irq.AssignedIRQ)) < 0) {
315 printk(KERN_ERR "avm_cs: failed to add AVM-%s-Controller at i/o %#x, irq %d\n",
316 dev->node.dev_name, link->io.BasePort1, link->irq.AssignedIRQ);
317 avmcs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200318 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320 dev->node.minor = i;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323} /* avmcs_config */
324
325/*======================================================================
326
327 After a card is removed, avmcs_release() will unregister the net
328 device, and release the PCMCIA configuration. If the device is
329 still open, this will be postponed until it is closed.
330
331======================================================================*/
332
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200333static void avmcs_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100335 b1pcmcia_delcard(link->io.BasePort1, link->irq.AssignedIRQ);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200336 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337} /* avmcs_release */
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700340static struct pcmcia_device_id avmcs_ids[] = {
341 PCMCIA_DEVICE_PROD_ID12("AVM", "ISDN-Controller B1", 0x95d42008, 0x845dc335),
342 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M1", 0x95d42008, 0x81e10430),
343 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M2", 0x95d42008, 0x18e8558a),
344 PCMCIA_DEVICE_NULL
345};
346MODULE_DEVICE_TABLE(pcmcia, avmcs_ids);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static struct pcmcia_driver avmcs_driver = {
349 .owner = THIS_MODULE,
350 .drv = {
351 .name = "avm_cs",
352 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200353 .probe = avmcs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100354 .remove = avmcs_detach,
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700355 .id_table = avmcs_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
358static int __init avmcs_init(void)
359{
360 return pcmcia_register_driver(&avmcs_driver);
361}
362
363static void __exit avmcs_exit(void)
364{
365 pcmcia_unregister_driver(&avmcs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368module_init(avmcs_init);
369module_exit(avmcs_exit);