Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Driver for 802.11b cards using RAM-loadable Symbol firmware, such as |
Pavel Roskin | 4ebe2eb | 2006-04-07 04:10:32 -0400 | [diff] [blame] | 3 | * Symbol Wireless Networker LA4137, CompactFlash cards by Socket |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 4 | * Communications and Intel PRO/Wireless 2011B. |
| 5 | * |
| 6 | * The driver implements Symbol firmware download. The rest is handled |
David Kilroy | 47445cb | 2009-02-04 23:05:48 +0000 | [diff] [blame] | 7 | * in hermes.c and main.c. |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 8 | * |
| 9 | * Utilities for downloading the Symbol firmware are available at |
| 10 | * http://sourceforge.net/projects/orinoco/ |
| 11 | * |
| 12 | * Copyright (C) 2002-2005 Pavel Roskin <proski@gnu.org> |
| 13 | * Portions based on orinoco_cs.c: |
| 14 | * Copyright (C) David Gibson, Linuxcare Australia |
| 15 | * Portions based on Spectrum24tDnld.c from original spectrum24 driver: |
| 16 | * Copyright (C) Symbol Technologies. |
| 17 | * |
David Kilroy | 47445cb | 2009-02-04 23:05:48 +0000 | [diff] [blame] | 18 | * See copyright notice in file main.c. |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #define DRIVER_NAME "spectrum_cs" |
| 22 | #define PFX DRIVER_NAME ": " |
| 23 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 24 | #include <linux/module.h> |
| 25 | #include <linux/kernel.h> |
| 26 | #include <linux/init.h> |
Pavel Roskin | ef846bf | 2005-09-23 04:18:07 -0400 | [diff] [blame] | 27 | #include <linux/delay.h> |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 28 | #include <pcmcia/cs_types.h> |
| 29 | #include <pcmcia/cs.h> |
| 30 | #include <pcmcia/cistpl.h> |
| 31 | #include <pcmcia/cisreg.h> |
| 32 | #include <pcmcia/ds.h> |
| 33 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 34 | #include "orinoco.h" |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 35 | |
| 36 | /********************************************************************/ |
| 37 | /* Module stuff */ |
| 38 | /********************************************************************/ |
| 39 | |
| 40 | MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>"); |
| 41 | MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader"); |
| 42 | MODULE_LICENSE("Dual MPL/GPL"); |
| 43 | |
| 44 | /* Module parameters */ |
| 45 | |
| 46 | /* Some D-Link cards have buggy CIS. They do work at 5v properly, but |
| 47 | * don't have any CIS entry for it. This workaround it... */ |
| 48 | static int ignore_cis_vcc; /* = 0 */ |
| 49 | module_param(ignore_cis_vcc, int, 0); |
| 50 | MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket"); |
| 51 | |
| 52 | /********************************************************************/ |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 53 | /* Data structures */ |
| 54 | /********************************************************************/ |
| 55 | |
| 56 | /* PCMCIA specific device information (goes in the card field of |
| 57 | * struct orinoco_private */ |
| 58 | struct orinoco_pccard { |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 59 | struct pcmcia_device *p_dev; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 60 | dev_node_t node; |
| 61 | }; |
| 62 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 63 | /********************************************************************/ |
| 64 | /* Function prototypes */ |
| 65 | /********************************************************************/ |
| 66 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 67 | static int spectrum_cs_config(struct pcmcia_device *link); |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 68 | static void spectrum_cs_release(struct pcmcia_device *link); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 69 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 70 | /* Constants for the CISREG_CCSR register */ |
| 71 | #define HCR_RUN 0x07 /* run firmware after reset */ |
| 72 | #define HCR_IDLE 0x0E /* don't run firmware after reset */ |
| 73 | #define HCR_MEM16 0x10 /* memory width bit, should be preserved */ |
| 74 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 75 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 76 | /* |
| 77 | * Reset the card using configuration registers COR and CCSR. |
| 78 | * If IDLE is 1, stop the firmware, so that it can be safely rewritten. |
| 79 | */ |
| 80 | static int |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 81 | spectrum_reset(struct pcmcia_device *link, int idle) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 82 | { |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 83 | int ret; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 84 | conf_reg_t reg; |
| 85 | u_int save_cor; |
| 86 | |
| 87 | /* Doing it if hardware is gone is guaranteed crash */ |
Richard Purdie | c5ab964 | 2006-08-22 18:55:44 +0100 | [diff] [blame] | 88 | if (!pcmcia_dev_present(link)) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 89 | return -ENODEV; |
| 90 | |
| 91 | /* Save original COR value */ |
| 92 | reg.Function = 0; |
| 93 | reg.Action = CS_READ; |
| 94 | reg.Offset = CISREG_COR; |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 95 | ret = pcmcia_access_configuration_register(link, ®); |
| 96 | if (ret) |
| 97 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 98 | save_cor = reg.Value; |
| 99 | |
| 100 | /* Soft-Reset card */ |
| 101 | reg.Action = CS_WRITE; |
| 102 | reg.Offset = CISREG_COR; |
| 103 | reg.Value = (save_cor | COR_SOFT_RESET); |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 104 | ret = pcmcia_access_configuration_register(link, ®); |
| 105 | if (ret) |
| 106 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 107 | udelay(1000); |
| 108 | |
| 109 | /* Read CCSR */ |
| 110 | reg.Action = CS_READ; |
| 111 | reg.Offset = CISREG_CCSR; |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 112 | ret = pcmcia_access_configuration_register(link, ®); |
| 113 | if (ret) |
| 114 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * Start or stop the firmware. Memory width bit should be |
| 118 | * preserved from the value we've just read. |
| 119 | */ |
| 120 | reg.Action = CS_WRITE; |
| 121 | reg.Offset = CISREG_CCSR; |
| 122 | reg.Value = (idle ? HCR_IDLE : HCR_RUN) | (reg.Value & HCR_MEM16); |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 123 | ret = pcmcia_access_configuration_register(link, ®); |
| 124 | if (ret) |
| 125 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 126 | udelay(1000); |
| 127 | |
| 128 | /* Restore original COR configuration index */ |
| 129 | reg.Action = CS_WRITE; |
| 130 | reg.Offset = CISREG_COR; |
| 131 | reg.Value = (save_cor & ~COR_SOFT_RESET); |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 132 | ret = pcmcia_access_configuration_register(link, ®); |
| 133 | if (ret) |
| 134 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 135 | udelay(1000); |
| 136 | return 0; |
| 137 | |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 138 | failed: |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 139 | return -ENODEV; |
| 140 | } |
| 141 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 142 | /********************************************************************/ |
| 143 | /* Device methods */ |
| 144 | /********************************************************************/ |
| 145 | |
| 146 | static int |
| 147 | spectrum_cs_hard_reset(struct orinoco_private *priv) |
| 148 | { |
| 149 | struct orinoco_pccard *card = priv->card; |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 150 | struct pcmcia_device *link = card->p_dev; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 151 | |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 152 | /* Soft reset using COR and HCR */ |
| 153 | spectrum_reset(link, 0); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 158 | static int |
| 159 | spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle) |
| 160 | { |
| 161 | struct orinoco_pccard *card = priv->card; |
| 162 | struct pcmcia_device *link = card->p_dev; |
| 163 | |
| 164 | return spectrum_reset(link, idle); |
| 165 | } |
| 166 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 167 | /********************************************************************/ |
| 168 | /* PCMCIA stuff */ |
| 169 | /********************************************************************/ |
| 170 | |
| 171 | /* |
| 172 | * This creates an "instance" of the driver, allocating local data |
| 173 | * structures for one device. The device is registered with Card |
| 174 | * Services. |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 175 | * |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 176 | * The dev_link structure is initialized, but we don't actually |
| 177 | * configure the card at this point -- we wait until we receive a card |
| 178 | * insertion event. */ |
Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 179 | static int |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 180 | spectrum_cs_probe(struct pcmcia_device *link) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 181 | { |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 182 | struct orinoco_private *priv; |
| 183 | struct orinoco_pccard *card; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 184 | |
Dominik Brodowski | dd2e5a1 | 2009-11-03 10:27:34 +0100 | [diff] [blame] | 185 | priv = alloc_orinocodev(sizeof(*card), &link->dev, |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 186 | spectrum_cs_hard_reset, |
| 187 | spectrum_cs_stop_firmware); |
| 188 | if (!priv) |
Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 189 | return -ENOMEM; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 190 | card = priv->card; |
| 191 | |
| 192 | /* Link both structures together */ |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 193 | card->p_dev = link; |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 194 | link->priv = priv; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 195 | |
| 196 | /* Interrupt setup */ |
Dominik Brodowski | 5fa9167 | 2009-11-08 17:24:46 +0100 | [diff] [blame] | 197 | link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 198 | link->irq.Handler = orinoco_interrupt; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 199 | |
| 200 | /* General socket configuration defaults can go here. In this |
| 201 | * client, we assume very little, and rely on the CIS for |
| 202 | * almost everything. In most clients, many details (i.e., |
| 203 | * number, sizes, and attributes of IO windows) are fixed by |
| 204 | * the nature of the device, and can be hard-wired here. */ |
| 205 | link->conf.Attributes = 0; |
| 206 | link->conf.IntType = INT_MEMORY_AND_IO; |
| 207 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 208 | return spectrum_cs_config(link); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 209 | } /* spectrum_cs_attach */ |
| 210 | |
| 211 | /* |
| 212 | * This deletes a driver "instance". The device is de-registered with |
| 213 | * Card Services. If it has been released, all local data structures |
| 214 | * are freed. Otherwise, the structures will be freed when the device |
| 215 | * is released. |
| 216 | */ |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 217 | static void spectrum_cs_detach(struct pcmcia_device *link) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 218 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 219 | struct orinoco_private *priv = link->priv; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 220 | |
Pavel Roskin | e4f4f98 | 2006-05-01 02:13:24 -0400 | [diff] [blame] | 221 | if (link->dev_node) |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 222 | orinoco_if_del(priv); |
Pavel Roskin | e4f4f98 | 2006-05-01 02:13:24 -0400 | [diff] [blame] | 223 | |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 224 | spectrum_cs_release(link); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 225 | |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 226 | free_orinocodev(priv); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 227 | } /* spectrum_cs_detach */ |
| 228 | |
| 229 | /* |
| 230 | * spectrum_cs_config() is scheduled to run after a CARD_INSERTION |
| 231 | * event is received, to configure the PCMCIA socket, and to make the |
| 232 | * device available to the system. |
| 233 | */ |
| 234 | |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 235 | static int spectrum_cs_config_check(struct pcmcia_device *p_dev, |
| 236 | cistpl_cftable_entry_t *cfg, |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 237 | cistpl_cftable_entry_t *dflt, |
Dominik Brodowski | ad913c1 | 2008-08-02 16:12:00 +0200 | [diff] [blame] | 238 | unsigned int vcc, |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 239 | void *priv_data) |
| 240 | { |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 241 | if (cfg->index == 0) |
| 242 | goto next_entry; |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 243 | |
| 244 | /* Use power settings for Vcc and Vpp if present */ |
| 245 | /* Note that the CIS values need to be rescaled */ |
| 246 | if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) { |
Dominik Brodowski | ad913c1 | 2008-08-02 16:12:00 +0200 | [diff] [blame] | 247 | if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) { |
David Kilroy | 62d714e | 2008-12-09 23:05:38 +0000 | [diff] [blame] | 248 | DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n", |
| 249 | __func__, vcc, |
| 250 | cfg->vcc.param[CISTPL_POWER_VNOM] / 10000); |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 251 | if (!ignore_cis_vcc) |
| 252 | goto next_entry; |
| 253 | } |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 254 | } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) { |
Dominik Brodowski | ad913c1 | 2008-08-02 16:12:00 +0200 | [diff] [blame] | 255 | if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) { |
David Kilroy | 62d714e | 2008-12-09 23:05:38 +0000 | [diff] [blame] | 256 | DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n", |
| 257 | __func__, vcc, |
| 258 | dflt->vcc.param[CISTPL_POWER_VNOM] / 10000); |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 259 | if (!ignore_cis_vcc) |
| 260 | goto next_entry; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) |
| 265 | p_dev->conf.Vpp = |
| 266 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 267 | else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM)) |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 268 | p_dev->conf.Vpp = |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 269 | dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 270 | |
| 271 | /* Do we need to allocate an interrupt? */ |
| 272 | p_dev->conf.Attributes |= CONF_ENABLE_IRQ; |
| 273 | |
| 274 | /* IO window settings */ |
| 275 | p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0; |
Dominik Brodowski | 8e2fc39 | 2008-08-02 15:30:31 +0200 | [diff] [blame] | 276 | if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) { |
| 277 | cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io; |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 278 | p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO; |
| 279 | if (!(io->flags & CISTPL_IO_8BIT)) |
| 280 | p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16; |
| 281 | if (!(io->flags & CISTPL_IO_16BIT)) |
| 282 | p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8; |
| 283 | p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK; |
| 284 | p_dev->io.BasePort1 = io->win[0].base; |
| 285 | p_dev->io.NumPorts1 = io->win[0].len; |
| 286 | if (io->nwin > 1) { |
| 287 | p_dev->io.Attributes2 = p_dev->io.Attributes1; |
| 288 | p_dev->io.BasePort2 = io->win[1].base; |
| 289 | p_dev->io.NumPorts2 = io->win[1].len; |
| 290 | } |
| 291 | |
| 292 | /* This reserves IO space but doesn't actually enable it */ |
| 293 | if (pcmcia_request_io(p_dev, &p_dev->io) != 0) |
| 294 | goto next_entry; |
| 295 | } |
| 296 | return 0; |
| 297 | |
| 298 | next_entry: |
| 299 | pcmcia_disable_device(p_dev); |
| 300 | return -ENODEV; |
| 301 | }; |
| 302 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 303 | static int |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 304 | spectrum_cs_config(struct pcmcia_device *link) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 305 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 306 | struct orinoco_private *priv = link->priv; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 307 | struct orinoco_pccard *card = priv->card; |
| 308 | hermes_t *hw = &priv->hw; |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 309 | int ret; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 310 | void __iomem *mem; |
| 311 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 312 | /* |
| 313 | * In this loop, we scan the CIS for configuration table |
| 314 | * entries, each of which describes a valid card |
| 315 | * configuration, including voltage, IO window, memory window, |
| 316 | * and interrupt settings. |
| 317 | * |
| 318 | * We make no assumptions about the card to be configured: we |
| 319 | * use just the information available in the CIS. In an ideal |
| 320 | * world, this would work for any PCMCIA card, but it requires |
| 321 | * a complete and accurate CIS. In practice, a driver usually |
| 322 | * "knows" most of these things without consulting the CIS, |
| 323 | * and most client drivers will only use the CIS to fill in |
| 324 | * implementation-defined details. |
| 325 | */ |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 326 | ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL); |
| 327 | if (ret) { |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 328 | if (!ignore_cis_vcc) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 329 | printk(KERN_ERR PFX "GetNextTuple(): No matching " |
| 330 | "CIS configuration. Maybe you need the " |
| 331 | "ignore_cis_vcc=1 parameter.\n"); |
Dominik Brodowski | b54bf94 | 2008-08-02 14:28:43 +0200 | [diff] [blame] | 332 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | /* |
| 336 | * Allocate an interrupt line. Note that this does not assign |
| 337 | * a handler to the interrupt, unless the 'Handler' member of |
| 338 | * the irq structure is initialized. |
| 339 | */ |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 340 | ret = pcmcia_request_irq(link, &link->irq); |
| 341 | if (ret) |
| 342 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 343 | |
| 344 | /* We initialize the hermes structure before completing PCMCIA |
| 345 | * configuration just in case the interrupt handler gets |
| 346 | * called. */ |
| 347 | mem = ioport_map(link->io.BasePort1, link->io.NumPorts1); |
| 348 | if (!mem) |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 349 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 350 | |
| 351 | hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING); |
David Kilroy | 07cefe7 | 2010-05-01 14:05:43 +0100 | [diff] [blame] | 352 | hw->eeprom_pda = true; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * This actually configures the PCMCIA socket -- setting up |
| 356 | * the I/O windows and the interrupt mapping, and putting the |
| 357 | * card and host interface into "Memory and IO" mode. |
| 358 | */ |
Dominik Brodowski | 2caff14 | 2009-10-24 15:53:36 +0200 | [diff] [blame] | 359 | ret = pcmcia_request_configuration(link, &link->conf); |
| 360 | if (ret) |
| 361 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 362 | |
| 363 | /* Ok, we have the configuration, prepare to register the netdev */ |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 364 | card->node.major = card->node.minor = 0; |
| 365 | |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 366 | /* Reset card */ |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 367 | if (spectrum_cs_hard_reset(priv) != 0) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 368 | goto failed; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 369 | |
David Kilroy | 8e63826 | 2009-06-18 23:21:24 +0100 | [diff] [blame] | 370 | /* Initialise the main driver */ |
| 371 | if (orinoco_init(priv) != 0) { |
| 372 | printk(KERN_ERR PFX "orinoco_init() failed\n"); |
| 373 | goto failed; |
| 374 | } |
| 375 | |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 376 | /* Register an interface with the stack */ |
| 377 | if (orinoco_if_add(priv, link->io.BasePort1, |
David Kilroy | 593ef09 | 2010-05-01 14:05:39 +0100 | [diff] [blame] | 378 | link->irq.AssignedIRQ, NULL) != 0) { |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 379 | printk(KERN_ERR PFX "orinoco_if_add() failed\n"); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 380 | goto failed; |
| 381 | } |
| 382 | |
| 383 | /* At this point, the dev_node_t structure(s) needs to be |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 384 | * initialized and arranged in a linked list at link->dev_node. */ |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 385 | strcpy(card->node.dev_name, priv->ndev->name); |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 386 | link->dev_node = &card->node; /* link->dev_node being non-NULL is also |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 387 | * used to indicate that the |
| 388 | * net_device has been registered */ |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 389 | return 0; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 390 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 391 | failed: |
| 392 | spectrum_cs_release(link); |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 393 | return -ENODEV; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 394 | } /* spectrum_cs_config */ |
| 395 | |
| 396 | /* |
| 397 | * After a card is removed, spectrum_cs_release() will unregister the |
| 398 | * device, and release the PCMCIA configuration. If the device is |
| 399 | * still open, this will be postponed until it is closed. |
| 400 | */ |
| 401 | static void |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 402 | spectrum_cs_release(struct pcmcia_device *link) |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 403 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 404 | struct orinoco_private *priv = link->priv; |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 405 | unsigned long flags; |
| 406 | |
| 407 | /* We're committed to taking the device away now, so mark the |
| 408 | * hardware as unavailable */ |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 409 | priv->hw.ops->lock_irqsave(&priv->lock, &flags); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 410 | priv->hw_unavailable++; |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 411 | priv->hw.ops->unlock_irqrestore(&priv->lock, &flags); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 412 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 413 | pcmcia_disable_device(link); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 414 | if (priv->hw.iobase) |
| 415 | ioport_unmap(priv->hw.iobase); |
| 416 | } /* spectrum_cs_release */ |
| 417 | |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 418 | |
| 419 | static int |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 420 | spectrum_cs_suspend(struct pcmcia_device *link) |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 421 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 422 | struct orinoco_private *priv = link->priv; |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 423 | int err = 0; |
| 424 | |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 425 | /* Mark the device as stopped, to block IO until later */ |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 426 | orinoco_down(priv); |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 427 | |
Pavel Roskin | 6cbaa33 | 2006-05-01 02:13:28 -0400 | [diff] [blame] | 428 | return err; |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | static int |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 432 | spectrum_cs_resume(struct pcmcia_device *link) |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 433 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 434 | struct orinoco_private *priv = link->priv; |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 435 | int err = orinoco_up(priv); |
David Kilroy | ac7cafd | 2008-11-22 10:37:27 +0000 | [diff] [blame] | 436 | |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 437 | return err; |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 438 | } |
| 439 | |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 440 | |
| 441 | /********************************************************************/ |
| 442 | /* Module initialization */ |
| 443 | /********************************************************************/ |
| 444 | |
| 445 | /* Can't be declared "const" or the whole __initdata section will |
| 446 | * become const */ |
| 447 | static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION |
| 448 | " (Pavel Roskin <proski@gnu.org>," |
| 449 | " David Gibson <hermes@gibson.dropbear.id.au>, et al)"; |
| 450 | |
| 451 | static struct pcmcia_device_id spectrum_cs_ids[] = { |
Pavel Roskin | 4ebe2eb | 2006-04-07 04:10:32 -0400 | [diff] [blame] | 452 | PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */ |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 453 | PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */ |
Pavel Roskin | 9c8a11d | 2005-09-16 02:18:31 -0400 | [diff] [blame] | 454 | PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */ |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 455 | PCMCIA_DEVICE_NULL, |
| 456 | }; |
| 457 | MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids); |
| 458 | |
| 459 | static struct pcmcia_driver orinoco_driver = { |
| 460 | .owner = THIS_MODULE, |
| 461 | .drv = { |
| 462 | .name = DRIVER_NAME, |
| 463 | }, |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 464 | .probe = spectrum_cs_probe, |
Dominik Brodowski | cc3b486 | 2005-11-14 21:23:14 +0100 | [diff] [blame] | 465 | .remove = spectrum_cs_detach, |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 466 | .suspend = spectrum_cs_suspend, |
| 467 | .resume = spectrum_cs_resume, |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 468 | .id_table = spectrum_cs_ids, |
| 469 | }; |
| 470 | |
| 471 | static int __init |
| 472 | init_spectrum_cs(void) |
| 473 | { |
| 474 | printk(KERN_DEBUG "%s\n", version); |
| 475 | |
| 476 | return pcmcia_register_driver(&orinoco_driver); |
| 477 | } |
| 478 | |
| 479 | static void __exit |
| 480 | exit_spectrum_cs(void) |
| 481 | { |
| 482 | pcmcia_unregister_driver(&orinoco_driver); |
Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | module_init(init_spectrum_cs); |
| 486 | module_exit(exit_spectrum_cs); |