Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/ptrace.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <asm/io.h> |
| 21 | #include <asm/system.h> |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <pcmcia/cs.h> |
| 24 | #include <pcmcia/cistpl.h> |
| 25 | #include <pcmcia/ds.h> |
| 26 | #include "hisax_cfg.h" |
| 27 | |
| 28 | MODULE_DESCRIPTION("ISDN4Linux: PCMCIA client driver for AVM A1/Fritz!PCMCIA cards"); |
| 29 | MODULE_AUTHOR("Carsten Paeth"); |
| 30 | MODULE_LICENSE("GPL"); |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /*====================================================================*/ |
| 34 | |
| 35 | /* Parameters that can be set with 'insmod' */ |
| 36 | |
| 37 | static int isdnprot = 2; |
| 38 | |
| 39 | module_param(isdnprot, int, 0); |
| 40 | |
| 41 | /*====================================================================*/ |
| 42 | |
| 43 | /* |
| 44 | The event() function is this driver's Card Services event handler. |
| 45 | It will be called by Card Services when an appropriate card status |
| 46 | event is received. The config() and release() entry points are |
| 47 | used to configure or release a socket, in response to card insertion |
| 48 | and ejection events. They are invoked from the skeleton event |
| 49 | handler. |
| 50 | */ |
| 51 | |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 52 | static int avma1cs_config(struct pcmcia_device *link) __devinit ; |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 53 | static void avma1cs_release(struct pcmcia_device *link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | The attach() and detach() entry points are used to create and destroy |
| 57 | "instances" of the driver, where each instance represents everything |
| 58 | needed to manage one actual PCMCIA card. |
| 59 | */ |
| 60 | |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 61 | static void avma1cs_detach(struct pcmcia_device *p_dev) __devexit ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | /*====================================================================== |
| 65 | |
| 66 | avma1cs_attach() creates an "instance" of the driver, allocating |
| 67 | local data structures for one device. The device is registered |
| 68 | with Card Services. |
| 69 | |
| 70 | The dev_link structure is initialized, but we don't actually |
| 71 | configure the card at this point -- we wait until we receive a |
| 72 | card insertion event. |
| 73 | |
| 74 | ======================================================================*/ |
| 75 | |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 76 | static int __devinit avma1cs_probe(struct pcmcia_device *p_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Dominik Brodowski | e773cfe | 2009-10-24 15:50:13 +0200 | [diff] [blame] | 78 | dev_dbg(&p_dev->dev, "avma1cs_attach()\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* The io structure describes IO port mapping */ |
Dominik Brodowski | 90abdc3 | 2010-07-24 17:23:51 +0200 | [diff] [blame^] | 81 | p_dev->resource[0]->end = 16; |
| 82 | p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; |
| 83 | p_dev->resource[1]->end = 16; |
| 84 | p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /* General socket configuration */ |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 87 | p_dev->conf.Attributes = CONF_ENABLE_IRQ; |
| 88 | p_dev->conf.IntType = INT_MEMORY_AND_IO; |
| 89 | p_dev->conf.ConfigIndex = 1; |
| 90 | p_dev->conf.Present = PRESENT_OPTION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 92 | return avma1cs_config(p_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } /* avma1cs_attach */ |
| 94 | |
| 95 | /*====================================================================== |
| 96 | |
| 97 | This deletes a driver "instance". The device is de-registered |
| 98 | with Card Services. If it has been released, all local data |
| 99 | structures are freed. Otherwise, the structures will be freed |
| 100 | when the device is released. |
| 101 | |
| 102 | ======================================================================*/ |
| 103 | |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 104 | static void __devexit avma1cs_detach(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
Dominik Brodowski | e773cfe | 2009-10-24 15:50:13 +0200 | [diff] [blame] | 106 | dev_dbg(&link->dev, "avma1cs_detach(0x%p)\n", link); |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 107 | avma1cs_release(link); |
| 108 | kfree(link->priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } /* avma1cs_detach */ |
| 110 | |
| 111 | /*====================================================================== |
| 112 | |
| 113 | avma1cs_config() is scheduled to run after a CARD_INSERTION event |
| 114 | is received, to configure the PCMCIA socket, and to make the |
| 115 | ethernet device available to the system. |
| 116 | |
| 117 | ======================================================================*/ |
| 118 | |
Dominik Brodowski | 5fcd4da | 2008-07-29 08:38:55 +0200 | [diff] [blame] | 119 | static int avma1cs_configcheck(struct pcmcia_device *p_dev, |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 120 | cistpl_cftable_entry_t *cf, |
| 121 | cistpl_cftable_entry_t *dflt, |
Dominik Brodowski | ad913c1 | 2008-08-02 16:12:00 +0200 | [diff] [blame] | 122 | unsigned int vcc, |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 123 | void *priv_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Dominik Brodowski | 5fcd4da | 2008-07-29 08:38:55 +0200 | [diff] [blame] | 125 | if (cf->io.nwin <= 0) |
| 126 | return -ENODEV; |
| 127 | |
Dominik Brodowski | 90abdc3 | 2010-07-24 17:23:51 +0200 | [diff] [blame^] | 128 | p_dev->resource[0]->start = cf->io.win[0].base; |
| 129 | p_dev->resource[0]->end = cf->io.win[0].len; |
| 130 | p_dev->io_lines = 5; |
| 131 | return pcmcia_request_io(p_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 135 | static int __devinit avma1cs_config(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 137 | int i = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | char devname[128]; |
| 139 | IsdnCard_t icard; |
| 140 | int busy = 0; |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 141 | |
Dominik Brodowski | e773cfe | 2009-10-24 15:50:13 +0200 | [diff] [blame] | 142 | dev_dbg(&link->dev, "avma1cs_config(0x%p)\n", link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Dominik Brodowski | 5fcd4da | 2008-07-29 08:38:55 +0200 | [diff] [blame] | 144 | devname[0] = 0; |
| 145 | if (link->prod_id[1]) |
| 146 | strlcpy(devname, link->prod_id[1], sizeof(devname)); |
| 147 | |
| 148 | if (pcmcia_loop_config(link, avma1cs_configcheck, NULL)) |
| 149 | return -ENODEV; |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* |
| 153 | * allocate an interrupt line |
| 154 | */ |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 155 | if (!link->irq) { |
Dominik Brodowski | 50db3fd | 2006-01-15 10:05:19 +0100 | [diff] [blame] | 156 | /* undo */ |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 157 | pcmcia_disable_device(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | break; |
| 159 | } |
Dominik Brodowski | 50db3fd | 2006-01-15 10:05:19 +0100 | [diff] [blame] | 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | /* |
| 162 | * configure the PCMCIA socket |
| 163 | */ |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 164 | i = pcmcia_request_configuration(link, &link->conf); |
Dominik Brodowski | 4c89e88 | 2008-08-03 10:07:45 +0200 | [diff] [blame] | 165 | if (i != 0) { |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 166 | pcmcia_disable_device(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | break; |
| 168 | } |
| 169 | |
| 170 | } while (0); |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /* If any step failed, release any partially configured state */ |
| 173 | if (i != 0) { |
| 174 | avma1cs_release(link); |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 175 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | printk(KERN_NOTICE "avma1_cs: checking at i/o %#x, irq %d\n", |
Dominik Brodowski | 9a017a9 | 2010-07-24 15:58:54 +0200 | [diff] [blame] | 179 | (unsigned int) link->resource[0]->start, link->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Dominik Brodowski | eb14120 | 2010-03-07 12:21:16 +0100 | [diff] [blame] | 181 | icard.para[0] = link->irq; |
Dominik Brodowski | 9a017a9 | 2010-07-24 15:58:54 +0200 | [diff] [blame] | 182 | icard.para[1] = link->resource[0]->start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | icard.protocol = isdnprot; |
| 184 | icard.typ = ISDN_CTYPE_A1_PCMCIA; |
| 185 | |
| 186 | i = hisax_init_pcmcia(link, &busy, &icard); |
| 187 | if (i < 0) { |
Dominik Brodowski | 9a017a9 | 2010-07-24 15:58:54 +0200 | [diff] [blame] | 188 | printk(KERN_ERR "avma1_cs: failed to initialize AVM A1 " |
| 189 | "PCMCIA %d at i/o %#x\n", i, |
| 190 | (unsigned int) link->resource[0]->start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | avma1cs_release(link); |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 192 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
Dominik Brodowski | b498ada | 2010-03-20 19:43:26 +0100 | [diff] [blame] | 194 | link->priv = (void *) (unsigned long) i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 196 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } /* avma1cs_config */ |
| 198 | |
| 199 | /*====================================================================== |
| 200 | |
| 201 | After a card is removed, avma1cs_release() will unregister the net |
| 202 | device, and release the PCMCIA configuration. If the device is |
| 203 | still open, this will be postponed until it is closed. |
| 204 | |
| 205 | ======================================================================*/ |
| 206 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 207 | static void avma1cs_release(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
Dominik Brodowski | b498ada | 2010-03-20 19:43:26 +0100 | [diff] [blame] | 209 | unsigned long minor = (unsigned long) link->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Dominik Brodowski | e773cfe | 2009-10-24 15:50:13 +0200 | [diff] [blame] | 211 | dev_dbg(&link->dev, "avma1cs_release(0x%p)\n", link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Dominik Brodowski | 5f2a71f | 2006-01-15 09:32:39 +0100 | [diff] [blame] | 213 | /* now unregister function with hisax */ |
Dominik Brodowski | b498ada | 2010-03-20 19:43:26 +0100 | [diff] [blame] | 214 | HiSax_closecard(minor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 216 | pcmcia_disable_device(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } /* avma1cs_release */ |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Dominik Brodowski | c594c12 | 2005-06-27 16:28:34 -0700 | [diff] [blame] | 220 | static struct pcmcia_device_id avma1cs_ids[] = { |
| 221 | PCMCIA_DEVICE_PROD_ID12("AVM", "ISDN A", 0x95d42008, 0xadc9d4bb), |
| 222 | PCMCIA_DEVICE_PROD_ID12("ISDN", "CARD", 0x8d9761c8, 0x01c5aa7b), |
| 223 | PCMCIA_DEVICE_NULL |
| 224 | }; |
| 225 | MODULE_DEVICE_TABLE(pcmcia, avma1cs_ids); |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | static struct pcmcia_driver avma1cs_driver = { |
| 228 | .owner = THIS_MODULE, |
| 229 | .drv = { |
| 230 | .name = "avma1_cs", |
| 231 | }, |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 232 | .probe = avma1cs_probe, |
Henne | a465870 | 2010-03-25 12:05:31 +0000 | [diff] [blame] | 233 | .remove = __devexit_p(avma1cs_detach), |
Dominik Brodowski | c594c12 | 2005-06-27 16:28:34 -0700 | [diff] [blame] | 234 | .id_table = avma1cs_ids, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | }; |
Dominik Brodowski | 8661bb5 | 2006-03-02 00:02:33 +0100 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | /*====================================================================*/ |
| 238 | |
| 239 | static int __init init_avma1_cs(void) |
| 240 | { |
| 241 | return(pcmcia_register_driver(&avma1cs_driver)); |
| 242 | } |
| 243 | |
| 244 | static void __exit exit_avma1_cs(void) |
| 245 | { |
| 246 | pcmcia_unregister_driver(&avma1cs_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | module_init(init_avma1_cs); |
| 250 | module_exit(exit_avma1_cs); |