blob: ff6b0e185bc4478deb2b65e402230c961767278e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCMCIA client driver for AVM A1 / Fritz!PCMCIA
3 *
4 * Author Carsten Paeth
5 * Copyright 1998-2001 by Carsten Paeth <calle@calle.in-berlin.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
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/sched.h>
18#include <linux/ptrace.h>
19#include <linux/slab.h>
20#include <linux/string.h>
21#include <asm/io.h>
22#include <asm/system.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <pcmcia/cs_types.h>
25#include <pcmcia/cs.h>
26#include <pcmcia/cistpl.h>
27#include <pcmcia/ds.h>
28#include "hisax_cfg.h"
29
30MODULE_DESCRIPTION("ISDN4Linux: PCMCIA client driver for AVM A1/Fritz!PCMCIA cards");
31MODULE_AUTHOR("Carsten Paeth");
32MODULE_LICENSE("GPL");
33
34/*
35 All the PCMCIA modules use PCMCIA_DEBUG to control debugging. If
36 you do not define PCMCIA_DEBUG at all, all the debug code will be
37 left out. If you compile with PCMCIA_DEBUG=0, the debug code will
38 be present but disabled -- but it can then be enabled for specific
39 modules at load time with a 'pc_debug=#' option to insmod.
40*/
41#ifdef PCMCIA_DEBUG
42static int pc_debug = PCMCIA_DEBUG;
43module_param(pc_debug, int, 0);
44#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args);
45static char *version =
46"avma1_cs.c 1.00 1998/01/23 10:00:00 (Carsten Paeth)";
47#else
48#define DEBUG(n, args...)
49#endif
50
51/*====================================================================*/
52
53/* Parameters that can be set with 'insmod' */
54
55static int isdnprot = 2;
56
57module_param(isdnprot, int, 0);
58
59/*====================================================================*/
60
61/*
62 The event() function is this driver's Card Services event handler.
63 It will be called by Card Services when an appropriate card status
64 event is received. The config() and release() entry points are
65 used to configure or release a socket, in response to card insertion
66 and ejection events. They are invoked from the skeleton event
67 handler.
68*/
69
Dominik Brodowskifba395e2006-03-31 17:21:06 +020070static void avma1cs_config(struct pcmcia_device *link);
71static void avma1cs_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 The attach() and detach() entry points are used to create and destroy
75 "instances" of the driver, where each instance represents everything
76 needed to manage one actual PCMCIA card.
77*/
78
Dominik Brodowskicc3b4862005-11-14 21:23:14 +010079static void avma1cs_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 A linked list of "instances" of the skeleton device. Each actual
84 PCMCIA card corresponds to one device instance, and is described
Dominik Brodowskifba395e2006-03-31 17:21:06 +020085 by one struct pcmcia_device structure (defined in ds.h).
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 You may not want to use a linked list for this -- for example, the
Dominik Brodowskifba395e2006-03-31 17:21:06 +020088 memory card driver uses an array of struct pcmcia_device pointers, where minor
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 device numbers are used to derive the corresponding array index.
90*/
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 A driver needs to provide a dev_node_t structure for each device
94 on a card. In some cases, there is only one device per card (for
95 example, ethernet cards, modems). In other cases, there may be
96 many actual or logical devices (SCSI adapters, memory cards with
97 multiple partitions). The dev_node_t structures need to be kept
Dominik Brodowskifba395e2006-03-31 17:21:06 +020098 in a linked list starting at the 'dev' field of a struct pcmcia_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 structure. We allocate them in the card's private data structure,
100 because they generally can't be allocated dynamically.
101*/
102
103typedef struct local_info_t {
104 dev_node_t node;
105} local_info_t;
106
107/*======================================================================
108
109 avma1cs_attach() creates an "instance" of the driver, allocating
110 local data structures for one device. The device is registered
111 with Card Services.
112
113 The dev_link structure is initialized, but we don't actually
114 configure the card at this point -- we wait until we receive a
115 card insertion event.
116
117======================================================================*/
118
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100119static int avma1cs_attach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 local_info_t *local;
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 DEBUG(0, "avma1cs_attach()\n");
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* Allocate space for private device-specific data */
126 local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
Dominik Brodowskifd238232006-03-05 10:45:09 +0100127 if (!local)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100128 return -ENOMEM;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 memset(local, 0, sizeof(local_info_t));
Dominik Brodowskifd238232006-03-05 10:45:09 +0100131 p_dev->priv = local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* The io structure describes IO port mapping */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100134 p_dev->io.NumPorts1 = 16;
135 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
136 p_dev->io.NumPorts2 = 16;
137 p_dev->io.Attributes2 = IO_DATA_PATH_WIDTH_16;
138 p_dev->io.IOAddrLines = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /* Interrupt setup */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100141 p_dev->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
142 p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Dominik Brodowskifd238232006-03-05 10:45:09 +0100144 p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* General socket configuration */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100147 p_dev->conf.Attributes = CONF_ENABLE_IRQ;
148 p_dev->conf.IntType = INT_MEMORY_AND_IO;
149 p_dev->conf.ConfigIndex = 1;
150 p_dev->conf.Present = PRESENT_OPTION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dominik Brodowskifd238232006-03-05 10:45:09 +0100152 p_dev->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
153 avma1cs_config(p_dev);
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100154
155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156} /* avma1cs_attach */
157
158/*======================================================================
159
160 This deletes a driver "instance". The device is de-registered
161 with Card Services. If it has been released, all local data
162 structures are freed. Otherwise, the structures will be freed
163 when the device is released.
164
165======================================================================*/
166
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200167static void avma1cs_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 DEBUG(0, "avma1cs_detach(0x%p)\n", link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100170
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100171 if (link->state & DEV_CONFIG)
172 avma1cs_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Jesper Juhl3c7208f2005-11-07 01:01:29 -0800174 kfree(link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175} /* avma1cs_detach */
176
177/*======================================================================
178
179 avma1cs_config() is scheduled to run after a CARD_INSERTION event
180 is received, to configure the PCMCIA socket, and to make the
181 ethernet device available to the system.
182
183======================================================================*/
184
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200185static int get_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 cisparse_t *parse)
187{
188 int i = pcmcia_get_tuple_data(handle, tuple);
189 if (i != CS_SUCCESS) return i;
190 return pcmcia_parse_tuple(handle, tuple, parse);
191}
192
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200193static int first_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 cisparse_t *parse)
195{
196 int i = pcmcia_get_first_tuple(handle, tuple);
197 if (i != CS_SUCCESS) return i;
198 return get_tuple(handle, tuple, parse);
199}
200
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200201static int next_tuple(struct pcmcia_device *handle, tuple_t *tuple,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 cisparse_t *parse)
203{
204 int i = pcmcia_get_next_tuple(handle, tuple);
205 if (i != CS_SUCCESS) return i;
206 return get_tuple(handle, tuple, parse);
207}
208
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200209static void avma1cs_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 tuple_t tuple;
212 cisparse_t parse;
213 cistpl_cftable_entry_t *cf = &parse.cftable_entry;
214 local_info_t *dev;
215 int i;
216 u_char buf[64];
217 char devname[128];
218 IsdnCard_t icard;
219 int busy = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 dev = link->priv;
222
223 DEBUG(0, "avma1cs_config(0x%p)\n", link);
224
225 /*
226 This reads the card's CONFIG tuple to find its configuration
227 registers.
228 */
229 do {
230 tuple.DesiredTuple = CISTPL_CONFIG;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200231 i = pcmcia_get_first_tuple(link, &tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (i != CS_SUCCESS) break;
233 tuple.TupleData = buf;
234 tuple.TupleDataMax = 64;
235 tuple.TupleOffset = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200236 i = pcmcia_get_tuple_data(link, &tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (i != CS_SUCCESS) break;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200238 i = pcmcia_parse_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (i != CS_SUCCESS) break;
240 link->conf.ConfigBase = parse.config.base;
241 } while (0);
242 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200243 cs_error(link, ParseTuple, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 link->state &= ~DEV_CONFIG_PENDING;
245 return;
246 }
247
248 /* Configure card */
249 link->state |= DEV_CONFIG;
250
251 do {
252
253 tuple.Attributes = 0;
254 tuple.TupleData = buf;
255 tuple.TupleDataMax = 254;
256 tuple.TupleOffset = 0;
257 tuple.DesiredTuple = CISTPL_VERS_1;
258
259 devname[0] = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200260 if( !first_tuple(link, &tuple, &parse) && parse.version_1.ns > 1 ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 strlcpy(devname,parse.version_1.str + parse.version_1.ofs[1],
262 sizeof(devname));
263 }
264 /*
265 * find IO port
266 */
267 tuple.TupleData = (cisdata_t *)buf;
268 tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
269 tuple.Attributes = 0;
270 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200271 i = first_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 while (i == CS_SUCCESS) {
273 if (cf->io.nwin > 0) {
274 link->conf.ConfigIndex = cf->index;
275 link->io.BasePort1 = cf->io.win[0].base;
276 link->io.NumPorts1 = cf->io.win[0].len;
277 link->io.NumPorts2 = 0;
278 printk(KERN_INFO "avma1_cs: testing i/o %#x-%#x\n",
279 link->io.BasePort1,
280 link->io.BasePort1+link->io.NumPorts1 - 1);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200281 i = pcmcia_request_io(link, &link->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (i == CS_SUCCESS) goto found_port;
283 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200284 i = next_tuple(link, &tuple, &parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287found_port:
288 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200289 cs_error(link, RequestIO, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 }
292
293 /*
294 * allocate an interrupt line
295 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200296 i = pcmcia_request_irq(link, &link->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200298 cs_error(link, RequestIRQ, i);
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100299 /* undo */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200300 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302 }
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * configure the PCMCIA socket
306 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200307 i = pcmcia_request_configuration(link, &link->conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200309 cs_error(link, RequestConfiguration, i);
310 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
312 }
313
314 } while (0);
315
316 /* At this point, the dev_node_t structure(s) should be
317 initialized and arranged in a linked list at link->dev. */
318
319 strcpy(dev->node.dev_name, "A1");
320 dev->node.major = 45;
321 dev->node.minor = 0;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100322 link->dev_node = &dev->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 link->state &= ~DEV_CONFIG_PENDING;
325 /* If any step failed, release any partially configured state */
326 if (i != 0) {
327 avma1cs_release(link);
328 return;
329 }
330
331 printk(KERN_NOTICE "avma1_cs: checking at i/o %#x, irq %d\n",
332 link->io.BasePort1, link->irq.AssignedIRQ);
333
334 icard.para[0] = link->irq.AssignedIRQ;
335 icard.para[1] = link->io.BasePort1;
336 icard.protocol = isdnprot;
337 icard.typ = ISDN_CTYPE_A1_PCMCIA;
338
339 i = hisax_init_pcmcia(link, &busy, &icard);
340 if (i < 0) {
341 printk(KERN_ERR "avma1_cs: failed to initialize AVM A1 PCMCIA %d at i/o %#x\n", i, link->io.BasePort1);
342 avma1cs_release(link);
343 return;
344 }
345 dev->node.minor = i;
346
347} /* avma1cs_config */
348
349/*======================================================================
350
351 After a card is removed, avma1cs_release() will unregister the net
352 device, and release the PCMCIA configuration. If the device is
353 still open, this will be postponed until it is closed.
354
355======================================================================*/
356
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200357static void avma1cs_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100359 local_info_t *local = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100361 DEBUG(0, "avma1cs_release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100363 /* now unregister function with hisax */
364 HiSax_closecard(local->node.minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200366 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367} /* avma1cs_release */
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Dominik Brodowskic594c122005-06-27 16:28:34 -0700370static struct pcmcia_device_id avma1cs_ids[] = {
371 PCMCIA_DEVICE_PROD_ID12("AVM", "ISDN A", 0x95d42008, 0xadc9d4bb),
372 PCMCIA_DEVICE_PROD_ID12("ISDN", "CARD", 0x8d9761c8, 0x01c5aa7b),
373 PCMCIA_DEVICE_NULL
374};
375MODULE_DEVICE_TABLE(pcmcia, avma1cs_ids);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static struct pcmcia_driver avma1cs_driver = {
378 .owner = THIS_MODULE,
379 .drv = {
380 .name = "avma1_cs",
381 },
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100382 .probe = avma1cs_attach,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100383 .remove = avma1cs_detach,
Dominik Brodowskic594c122005-06-27 16:28:34 -0700384 .id_table = avma1cs_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*====================================================================*/
388
389static int __init init_avma1_cs(void)
390{
391 return(pcmcia_register_driver(&avma1cs_driver));
392}
393
394static void __exit exit_avma1_cs(void)
395{
396 pcmcia_unregister_driver(&avma1cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399module_init(init_avma1_cs);
400module_exit(exit_avma1_cs);