blob: a8d6949338cd0afb17e29d56cbcd0af1146388ac [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ptrace.h>
16#include <linux/slab.h>
17#include <linux/string.h>
18#include <linux/tty.h>
19#include <linux/serial.h>
20#include <linux/major.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/ciscode.h>
28#include <pcmcia/ds.h>
29#include <pcmcia/cisreg.h>
30
31#include <linux/skbuff.h>
32#include <linux/capi.h>
33#include <linux/b1lli.h>
34#include <linux/b1pcmcia.h>
35
36/*====================================================================*/
37
38MODULE_DESCRIPTION("CAPI4Linux: PCMCIA client driver for AVM B1/M1/M2");
39MODULE_AUTHOR("Carsten Paeth");
40MODULE_LICENSE("GPL");
41
42/*====================================================================*/
43
44/*
45 The event() function is this driver's Card Services event handler.
46 It will be called by Card Services when an appropriate card status
47 event is received. The config() and release() entry points are
48 used to configure or release a socket, in response to card insertion
49 and ejection events. They are invoked from the skeleton event
50 handler.
51*/
52
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020053static int avmcs_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020054static void avmcs_release(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 The attach() and detach() entry points are used to create and destroy
58 "instances" of the driver, where each instance represents everything
59 needed to manage one actual PCMCIA card.
60*/
61
Dominik Brodowskicc3b4862005-11-14 21:23:14 +010062static void avmcs_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 A linked list of "instances" of the skeleton device. Each actual
66 PCMCIA card corresponds to one device instance, and is described
Dominik Brodowskifba395e2006-03-31 17:21:06 +020067 by one struct pcmcia_device structure (defined in ds.h).
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 You may not want to use a linked list for this -- for example, the
Dominik Brodowskifba395e2006-03-31 17:21:06 +020070 memory card driver uses an array of struct pcmcia_device pointers, where minor
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 device numbers are used to derive the corresponding array index.
72*/
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 A driver needs to provide a dev_node_t structure for each device
76 on a card. In some cases, there is only one device per card (for
77 example, ethernet cards, modems). In other cases, there may be
78 many actual or logical devices (SCSI adapters, memory cards with
79 multiple partitions). The dev_node_t structures need to be kept
Dominik Brodowskifba395e2006-03-31 17:21:06 +020080 in a linked list starting at the 'dev' field of a struct pcmcia_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 structure. We allocate them in the card's private data structure,
82 because they generally can't be allocated dynamically.
83*/
84
85typedef struct local_info_t {
86 dev_node_t node;
87} local_info_t;
88
89/*======================================================================
90
91 avmcs_attach() creates an "instance" of the driver, allocating
92 local data structures for one device. The device is registered
93 with Card Services.
94
95 The dev_link structure is initialized, but we don't actually
96 configure the card at this point -- we wait until we receive a
97 card insertion event.
98
99======================================================================*/
100
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200101static int avmcs_probe(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 local_info_t *local;
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* The io structure describes IO port mapping */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100106 p_dev->io.NumPorts1 = 16;
107 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
108 p_dev->io.NumPorts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /* Interrupt setup */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100111 p_dev->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
112 p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Dominik Brodowskifd238232006-03-05 10:45:09 +0100114 p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID;
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* General socket configuration */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100117 p_dev->conf.Attributes = CONF_ENABLE_IRQ;
118 p_dev->conf.IntType = INT_MEMORY_AND_IO;
119 p_dev->conf.ConfigIndex = 1;
120 p_dev->conf.Present = PRESENT_OPTION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Allocate space for private device-specific data */
Burman Yan41f96932006-12-08 02:39:35 -0800123 local = kzalloc(sizeof(local_info_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!local)
Dominik Brodowskifd238232006-03-05 10:45:09 +0100125 goto err;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100126 p_dev->priv = local;
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100127
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200128 return avmcs_config(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 err:
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200131 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132} /* avmcs_attach */
133
134/*======================================================================
135
136 This deletes a driver "instance". The device is de-registered
137 with Card Services. If it has been released, all local data
138 structures are freed. Otherwise, the structures will be freed
139 when the device is released.
140
141======================================================================*/
142
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200143static void avmcs_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100145 avmcs_release(link);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100146 kfree(link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147} /* avmcs_detach */
148
149/*======================================================================
150
151 avmcs_config() is scheduled to run after a CARD_INSERTION event
152 is received, to configure the PCMCIA socket, and to make the
153 ethernet device available to the system.
154
155======================================================================*/
156
Dominik Brodowski5fcd4da2008-07-29 08:38:55 +0200157static int avmcs_configcheck(struct pcmcia_device *p_dev,
158 cistpl_cftable_entry_t *cf,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200159 cistpl_cftable_entry_t *dflt,
Dominik Brodowski5fcd4da2008-07-29 08:38:55 +0200160 void *priv_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Dominik Brodowski5fcd4da2008-07-29 08:38:55 +0200162 if (cf->io.nwin <= 0)
163 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Dominik Brodowski5fcd4da2008-07-29 08:38:55 +0200165 p_dev->io.BasePort1 = cf->io.win[0].base;
166 p_dev->io.NumPorts1 = cf->io.win[0].len;
167 p_dev->io.NumPorts2 = 0;
168 printk(KERN_INFO "avm_cs: testing i/o %#x-%#x\n",
169 p_dev->io.BasePort1,
170 p_dev->io.BasePort1+p_dev->io.NumPorts1-1);
171 return pcmcia_request_io(p_dev, &p_dev->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200174static int avmcs_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 local_info_t *dev;
177 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 char devname[128];
179 int cardtype;
180 int (*addcard)(unsigned int port, unsigned irq);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 dev = link->priv;
183
Dominik Brodowski5fcd4da2008-07-29 08:38:55 +0200184 devname[0] = 0;
185 if (link->prod_id[1])
186 strlcpy(devname, link->prod_id[1], sizeof(devname));
187
188 /*
189 * find IO port
190 */
191 if (pcmcia_loop_config(link, avmcs_configcheck, NULL))
192 return -ENODEV;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /*
196 * allocate an interrupt line
197 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200198 i = pcmcia_request_irq(link, &link->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200200 cs_error(link, RequestIRQ, i);
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100201 /* undo */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200202 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 }
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /*
207 * configure the PCMCIA socket
208 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200209 i = pcmcia_request_configuration(link, &link->conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (i != CS_SUCCESS) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200211 cs_error(link, RequestConfiguration, i);
212 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 }
215
216 } while (0);
217
218 /* At this point, the dev_node_t structure(s) should be
219 initialized and arranged in a linked list at link->dev. */
220
221 if (devname[0]) {
222 char *s = strrchr(devname, ' ');
223 if (!s)
224 s = devname;
225 else s++;
226 strcpy(dev->node.dev_name, s);
227 if (strcmp("M1", s) == 0) {
228 cardtype = AVM_CARDTYPE_M1;
229 } else if (strcmp("M2", s) == 0) {
230 cardtype = AVM_CARDTYPE_M2;
231 } else {
232 cardtype = AVM_CARDTYPE_B1;
233 }
234 } else {
235 strcpy(dev->node.dev_name, "b1");
236 cardtype = AVM_CARDTYPE_B1;
237 }
238
239 dev->node.major = 64;
240 dev->node.minor = 0;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100241 link->dev_node = &dev->node;
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* If any step failed, release any partially configured state */
244 if (i != 0) {
245 avmcs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200246 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249
250 switch (cardtype) {
251 case AVM_CARDTYPE_M1: addcard = b1pcmcia_addcard_m1; break;
252 case AVM_CARDTYPE_M2: addcard = b1pcmcia_addcard_m2; break;
253 default:
254 case AVM_CARDTYPE_B1: addcard = b1pcmcia_addcard_b1; break;
255 }
256 if ((i = (*addcard)(link->io.BasePort1, link->irq.AssignedIRQ)) < 0) {
257 printk(KERN_ERR "avm_cs: failed to add AVM-%s-Controller at i/o %#x, irq %d\n",
258 dev->node.dev_name, link->io.BasePort1, link->irq.AssignedIRQ);
259 avmcs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200260 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262 dev->node.minor = i;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265} /* avmcs_config */
266
267/*======================================================================
268
269 After a card is removed, avmcs_release() will unregister the net
270 device, and release the PCMCIA configuration. If the device is
271 still open, this will be postponed until it is closed.
272
273======================================================================*/
274
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200275static void avmcs_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100277 b1pcmcia_delcard(link->io.BasePort1, link->irq.AssignedIRQ);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200278 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279} /* avmcs_release */
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700282static struct pcmcia_device_id avmcs_ids[] = {
283 PCMCIA_DEVICE_PROD_ID12("AVM", "ISDN-Controller B1", 0x95d42008, 0x845dc335),
284 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M1", 0x95d42008, 0x81e10430),
285 PCMCIA_DEVICE_PROD_ID12("AVM", "Mobile ISDN-Controller M2", 0x95d42008, 0x18e8558a),
286 PCMCIA_DEVICE_NULL
287};
288MODULE_DEVICE_TABLE(pcmcia, avmcs_ids);
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290static struct pcmcia_driver avmcs_driver = {
291 .owner = THIS_MODULE,
292 .drv = {
293 .name = "avm_cs",
294 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200295 .probe = avmcs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100296 .remove = avmcs_detach,
Dominik Brodowskia13bcf02005-06-27 16:28:35 -0700297 .id_table = avmcs_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
300static int __init avmcs_init(void)
301{
302 return pcmcia_register_driver(&avmcs_driver);
303}
304
305static void __exit avmcs_exit(void)
306{
307 pcmcia_unregister_driver(&avmcs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310module_init(avmcs_init);
311module_exit(avmcs_exit);