| 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 | 
|  | 7 | * in hermes.c and orinoco.c. | 
|  | 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 | * | 
|  | 18 | * See copyright notice in file orinoco.c. | 
|  | 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 | 65853b1 | 2005-09-16 02:15:13 -0400 | [diff] [blame] | 28 | #include <linux/firmware.h> | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 29 | #include <pcmcia/cs_types.h> | 
|  | 30 | #include <pcmcia/cs.h> | 
|  | 31 | #include <pcmcia/cistpl.h> | 
|  | 32 | #include <pcmcia/cisreg.h> | 
|  | 33 | #include <pcmcia/ds.h> | 
|  | 34 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 35 | #include "orinoco.h" | 
|  | 36 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 37 | static const char primary_fw_name[] = "symbol_sp24t_prim_fw"; | 
|  | 38 | static const char secondary_fw_name[] = "symbol_sp24t_sec_fw"; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 39 |  | 
|  | 40 | /********************************************************************/ | 
|  | 41 | /* Module stuff							    */ | 
|  | 42 | /********************************************************************/ | 
|  | 43 |  | 
|  | 44 | MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>"); | 
|  | 45 | MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader"); | 
|  | 46 | MODULE_LICENSE("Dual MPL/GPL"); | 
|  | 47 |  | 
|  | 48 | /* Module parameters */ | 
|  | 49 |  | 
|  | 50 | /* Some D-Link cards have buggy CIS. They do work at 5v properly, but | 
|  | 51 | * don't have any CIS entry for it. This workaround it... */ | 
|  | 52 | static int ignore_cis_vcc; /* = 0 */ | 
|  | 53 | module_param(ignore_cis_vcc, int, 0); | 
|  | 54 | MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket"); | 
|  | 55 |  | 
|  | 56 | /********************************************************************/ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 57 | /* Data structures						    */ | 
|  | 58 | /********************************************************************/ | 
|  | 59 |  | 
|  | 60 | /* PCMCIA specific device information (goes in the card field of | 
|  | 61 | * struct orinoco_private */ | 
|  | 62 | struct orinoco_pccard { | 
| Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 63 | struct pcmcia_device	*p_dev; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 64 | dev_node_t node; | 
|  | 65 | }; | 
|  | 66 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 67 | /********************************************************************/ | 
|  | 68 | /* Function prototypes						    */ | 
|  | 69 | /********************************************************************/ | 
|  | 70 |  | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 71 | static int spectrum_cs_config(struct pcmcia_device *link); | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 72 | static void spectrum_cs_release(struct pcmcia_device *link); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 73 |  | 
|  | 74 | /********************************************************************/ | 
|  | 75 | /* Firmware downloader						    */ | 
|  | 76 | /********************************************************************/ | 
|  | 77 |  | 
|  | 78 | /* Position of PDA in the adapter memory */ | 
|  | 79 | #define EEPROM_ADDR	0x3000 | 
|  | 80 | #define EEPROM_LEN	0x200 | 
|  | 81 | #define PDA_OFFSET	0x100 | 
|  | 82 |  | 
|  | 83 | #define PDA_ADDR	(EEPROM_ADDR + PDA_OFFSET) | 
|  | 84 | #define PDA_WORDS	((EEPROM_LEN - PDA_OFFSET) / 2) | 
|  | 85 |  | 
|  | 86 | /* Constants for the CISREG_CCSR register */ | 
|  | 87 | #define HCR_RUN		0x07	/* run firmware after reset */ | 
|  | 88 | #define HCR_IDLE	0x0E	/* don't run firmware after reset */ | 
|  | 89 | #define HCR_MEM16	0x10	/* memory width bit, should be preserved */ | 
|  | 90 |  | 
|  | 91 | /* | 
|  | 92 | * AUX port access.  To unlock the AUX port write the access keys to the | 
|  | 93 | * PARAM0-2 registers, then write HERMES_AUX_ENABLE to the HERMES_CONTROL | 
|  | 94 | * register.  Then read it and make sure it's HERMES_AUX_ENABLED. | 
|  | 95 | */ | 
|  | 96 | #define HERMES_AUX_ENABLE	0x8000	/* Enable auxiliary port access */ | 
|  | 97 | #define HERMES_AUX_DISABLE	0x4000	/* Disable to auxiliary port access */ | 
|  | 98 | #define HERMES_AUX_ENABLED	0xC000	/* Auxiliary port is open */ | 
|  | 99 |  | 
|  | 100 | #define HERMES_AUX_PW0	0xFE01 | 
|  | 101 | #define HERMES_AUX_PW1	0xDC23 | 
|  | 102 | #define HERMES_AUX_PW2	0xBA45 | 
|  | 103 |  | 
|  | 104 | /* End markers */ | 
|  | 105 | #define PDI_END		0x00000000	/* End of PDA */ | 
|  | 106 | #define BLOCK_END	0xFFFFFFFF	/* Last image block */ | 
|  | 107 | #define TEXT_END	0x1A		/* End of text header */ | 
|  | 108 |  | 
|  | 109 | /* | 
|  | 110 | * The following structures have little-endian fields denoted by | 
|  | 111 | * the leading underscore.  Don't access them directly - use inline | 
|  | 112 | * functions defined below. | 
|  | 113 | */ | 
|  | 114 |  | 
|  | 115 | /* | 
|  | 116 | * The binary image to be downloaded consists of series of data blocks. | 
|  | 117 | * Each block has the following structure. | 
|  | 118 | */ | 
|  | 119 | struct dblock { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 120 | __le32 addr;		/* adapter address where to write the block */ | 
|  | 121 | __le16 len;		/* length of the data only, in bytes */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 122 | char data[0];		/* data to be written */ | 
|  | 123 | } __attribute__ ((packed)); | 
|  | 124 |  | 
|  | 125 | /* | 
|  | 126 | * Plug Data References are located in in the image after the last data | 
|  | 127 | * block.  They refer to areas in the adapter memory where the plug data | 
|  | 128 | * items with matching ID should be written. | 
|  | 129 | */ | 
|  | 130 | struct pdr { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 131 | __le32 id;		/* record ID */ | 
|  | 132 | __le32 addr;		/* adapter address where to write the data */ | 
|  | 133 | __le32 len;		/* expected length of the data, in bytes */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 134 | char next[0];		/* next PDR starts here */ | 
|  | 135 | } __attribute__ ((packed)); | 
|  | 136 |  | 
|  | 137 |  | 
|  | 138 | /* | 
|  | 139 | * Plug Data Items are located in the EEPROM read from the adapter by | 
|  | 140 | * primary firmware.  They refer to the device-specific data that should | 
|  | 141 | * be plugged into the secondary firmware. | 
|  | 142 | */ | 
|  | 143 | struct pdi { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 144 | __le16 len;		/* length of ID and data, in words */ | 
|  | 145 | __le16 id;		/* record ID */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 146 | char data[0];		/* plug data */ | 
| Alexey Dobriyan | 53b3531 | 2006-03-24 03:16:13 -0800 | [diff] [blame] | 147 | } __attribute__ ((packed)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 148 |  | 
|  | 149 |  | 
|  | 150 | /* Functions for access to little-endian data */ | 
|  | 151 | static inline u32 | 
|  | 152 | dblock_addr(const struct dblock *blk) | 
|  | 153 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 154 | return le32_to_cpu(blk->addr); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 155 | } | 
|  | 156 |  | 
|  | 157 | static inline u32 | 
|  | 158 | dblock_len(const struct dblock *blk) | 
|  | 159 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 160 | return le16_to_cpu(blk->len); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 161 | } | 
|  | 162 |  | 
|  | 163 | static inline u32 | 
|  | 164 | pdr_id(const struct pdr *pdr) | 
|  | 165 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 166 | return le32_to_cpu(pdr->id); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 167 | } | 
|  | 168 |  | 
|  | 169 | static inline u32 | 
|  | 170 | pdr_addr(const struct pdr *pdr) | 
|  | 171 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 172 | return le32_to_cpu(pdr->addr); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 173 | } | 
|  | 174 |  | 
|  | 175 | static inline u32 | 
|  | 176 | pdr_len(const struct pdr *pdr) | 
|  | 177 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 178 | return le32_to_cpu(pdr->len); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 179 | } | 
|  | 180 |  | 
|  | 181 | static inline u32 | 
|  | 182 | pdi_id(const struct pdi *pdi) | 
|  | 183 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 184 | return le16_to_cpu(pdi->id); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 185 | } | 
|  | 186 |  | 
|  | 187 | /* Return length of the data only, in bytes */ | 
|  | 188 | static inline u32 | 
|  | 189 | pdi_len(const struct pdi *pdi) | 
|  | 190 | { | 
| Pavel Roskin | 7eeae2f | 2006-04-07 04:10:24 -0400 | [diff] [blame] | 191 | return 2 * (le16_to_cpu(pdi->len) - 1); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 192 | } | 
|  | 193 |  | 
|  | 194 |  | 
|  | 195 | /* Set address of the auxiliary port */ | 
|  | 196 | static inline void | 
|  | 197 | spectrum_aux_setaddr(hermes_t *hw, u32 addr) | 
|  | 198 | { | 
|  | 199 | hermes_write_reg(hw, HERMES_AUXPAGE, (u16) (addr >> 7)); | 
|  | 200 | hermes_write_reg(hw, HERMES_AUXOFFSET, (u16) (addr & 0x7F)); | 
|  | 201 | } | 
|  | 202 |  | 
|  | 203 |  | 
|  | 204 | /* Open access to the auxiliary port */ | 
|  | 205 | static int | 
|  | 206 | spectrum_aux_open(hermes_t *hw) | 
|  | 207 | { | 
|  | 208 | int i; | 
|  | 209 |  | 
|  | 210 | /* Already open? */ | 
|  | 211 | if (hermes_read_reg(hw, HERMES_CONTROL) == HERMES_AUX_ENABLED) | 
|  | 212 | return 0; | 
|  | 213 |  | 
|  | 214 | hermes_write_reg(hw, HERMES_PARAM0, HERMES_AUX_PW0); | 
|  | 215 | hermes_write_reg(hw, HERMES_PARAM1, HERMES_AUX_PW1); | 
|  | 216 | hermes_write_reg(hw, HERMES_PARAM2, HERMES_AUX_PW2); | 
|  | 217 | hermes_write_reg(hw, HERMES_CONTROL, HERMES_AUX_ENABLE); | 
|  | 218 |  | 
|  | 219 | for (i = 0; i < 20; i++) { | 
|  | 220 | udelay(10); | 
|  | 221 | if (hermes_read_reg(hw, HERMES_CONTROL) == | 
|  | 222 | HERMES_AUX_ENABLED) | 
|  | 223 | return 0; | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | return -EBUSY; | 
|  | 227 | } | 
|  | 228 |  | 
|  | 229 |  | 
|  | 230 | #define CS_CHECK(fn, ret) \ | 
|  | 231 | do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0) | 
|  | 232 |  | 
|  | 233 | /* | 
|  | 234 | * Reset the card using configuration registers COR and CCSR. | 
|  | 235 | * If IDLE is 1, stop the firmware, so that it can be safely rewritten. | 
|  | 236 | */ | 
|  | 237 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 238 | spectrum_reset(struct pcmcia_device *link, int idle) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 239 | { | 
|  | 240 | int last_ret, last_fn; | 
|  | 241 | conf_reg_t reg; | 
|  | 242 | u_int save_cor; | 
|  | 243 |  | 
|  | 244 | /* Doing it if hardware is gone is guaranteed crash */ | 
| Richard Purdie | c5ab964 | 2006-08-22 18:55:44 +0100 | [diff] [blame] | 245 | if (!pcmcia_dev_present(link)) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 246 | return -ENODEV; | 
|  | 247 |  | 
|  | 248 | /* Save original COR value */ | 
|  | 249 | reg.Function = 0; | 
|  | 250 | reg.Action = CS_READ; | 
|  | 251 | reg.Offset = CISREG_COR; | 
|  | 252 | CS_CHECK(AccessConfigurationRegister, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 253 | pcmcia_access_configuration_register(link, ®)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 254 | save_cor = reg.Value; | 
|  | 255 |  | 
|  | 256 | /* Soft-Reset card */ | 
|  | 257 | reg.Action = CS_WRITE; | 
|  | 258 | reg.Offset = CISREG_COR; | 
|  | 259 | reg.Value = (save_cor | COR_SOFT_RESET); | 
|  | 260 | CS_CHECK(AccessConfigurationRegister, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 261 | pcmcia_access_configuration_register(link, ®)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 262 | udelay(1000); | 
|  | 263 |  | 
|  | 264 | /* Read CCSR */ | 
|  | 265 | reg.Action = CS_READ; | 
|  | 266 | reg.Offset = CISREG_CCSR; | 
|  | 267 | CS_CHECK(AccessConfigurationRegister, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 268 | pcmcia_access_configuration_register(link, ®)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 269 |  | 
|  | 270 | /* | 
|  | 271 | * Start or stop the firmware.  Memory width bit should be | 
|  | 272 | * preserved from the value we've just read. | 
|  | 273 | */ | 
|  | 274 | reg.Action = CS_WRITE; | 
|  | 275 | reg.Offset = CISREG_CCSR; | 
|  | 276 | reg.Value = (idle ? HCR_IDLE : HCR_RUN) | (reg.Value & HCR_MEM16); | 
|  | 277 | CS_CHECK(AccessConfigurationRegister, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 278 | pcmcia_access_configuration_register(link, ®)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 279 | udelay(1000); | 
|  | 280 |  | 
|  | 281 | /* Restore original COR configuration index */ | 
|  | 282 | reg.Action = CS_WRITE; | 
|  | 283 | reg.Offset = CISREG_COR; | 
|  | 284 | reg.Value = (save_cor & ~COR_SOFT_RESET); | 
|  | 285 | CS_CHECK(AccessConfigurationRegister, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 286 | pcmcia_access_configuration_register(link, ®)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 287 | udelay(1000); | 
|  | 288 | return 0; | 
|  | 289 |  | 
|  | 290 | cs_failed: | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 291 | cs_error(link, last_fn, last_ret); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 292 | return -ENODEV; | 
|  | 293 | } | 
|  | 294 |  | 
|  | 295 |  | 
|  | 296 | /* | 
|  | 297 | * Scan PDR for the record with the specified RECORD_ID. | 
|  | 298 | * If it's not found, return NULL. | 
|  | 299 | */ | 
|  | 300 | static struct pdr * | 
|  | 301 | spectrum_find_pdr(struct pdr *first_pdr, u32 record_id) | 
|  | 302 | { | 
|  | 303 | struct pdr *pdr = first_pdr; | 
|  | 304 |  | 
|  | 305 | while (pdr_id(pdr) != PDI_END) { | 
|  | 306 | /* | 
|  | 307 | * PDR area is currently not terminated by PDI_END. | 
|  | 308 | * It's followed by CRC records, which have the type | 
|  | 309 | * field where PDR has length.  The type can be 0 or 1. | 
|  | 310 | */ | 
|  | 311 | if (pdr_len(pdr) < 2) | 
|  | 312 | return NULL; | 
|  | 313 |  | 
|  | 314 | /* If the record ID matches, we are done */ | 
|  | 315 | if (pdr_id(pdr) == record_id) | 
|  | 316 | return pdr; | 
|  | 317 |  | 
|  | 318 | pdr = (struct pdr *) pdr->next; | 
|  | 319 | } | 
|  | 320 | return NULL; | 
|  | 321 | } | 
|  | 322 |  | 
|  | 323 |  | 
|  | 324 | /* Process one Plug Data Item - find corresponding PDR and plug it */ | 
|  | 325 | static int | 
|  | 326 | spectrum_plug_pdi(hermes_t *hw, struct pdr *first_pdr, struct pdi *pdi) | 
|  | 327 | { | 
|  | 328 | struct pdr *pdr; | 
|  | 329 |  | 
|  | 330 | /* Find the PDI corresponding to this PDR */ | 
|  | 331 | pdr = spectrum_find_pdr(first_pdr, pdi_id(pdi)); | 
|  | 332 |  | 
|  | 333 | /* No match is found, safe to ignore */ | 
|  | 334 | if (!pdr) | 
|  | 335 | return 0; | 
|  | 336 |  | 
|  | 337 | /* Lengths of the data in PDI and PDR must match */ | 
|  | 338 | if (pdi_len(pdi) != pdr_len(pdr)) | 
|  | 339 | return -EINVAL; | 
|  | 340 |  | 
|  | 341 | /* do the actual plugging */ | 
|  | 342 | spectrum_aux_setaddr(hw, pdr_addr(pdr)); | 
| Pavel Roskin | 6b61626 | 2006-04-07 04:10:39 -0400 | [diff] [blame] | 343 | hermes_write_bytes(hw, HERMES_AUXDATA, pdi->data, pdi_len(pdi)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 344 |  | 
|  | 345 | return 0; | 
|  | 346 | } | 
|  | 347 |  | 
|  | 348 |  | 
|  | 349 | /* Read PDA from the adapter */ | 
|  | 350 | static int | 
| Pavel Roskin | d133ae4 | 2005-09-23 04:18:06 -0400 | [diff] [blame] | 351 | spectrum_read_pda(hermes_t *hw, __le16 *pda, int pda_len) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 352 | { | 
|  | 353 | int ret; | 
|  | 354 | int pda_size; | 
|  | 355 |  | 
|  | 356 | /* Issue command to read EEPROM */ | 
|  | 357 | ret = hermes_docmd_wait(hw, HERMES_CMD_READMIF, 0, NULL); | 
|  | 358 | if (ret) | 
|  | 359 | return ret; | 
|  | 360 |  | 
|  | 361 | /* Open auxiliary port */ | 
|  | 362 | ret = spectrum_aux_open(hw); | 
|  | 363 | if (ret) | 
|  | 364 | return ret; | 
|  | 365 |  | 
|  | 366 | /* read PDA from EEPROM */ | 
|  | 367 | spectrum_aux_setaddr(hw, PDA_ADDR); | 
|  | 368 | hermes_read_words(hw, HERMES_AUXDATA, pda, pda_len / 2); | 
|  | 369 |  | 
|  | 370 | /* Check PDA length */ | 
|  | 371 | pda_size = le16_to_cpu(pda[0]); | 
|  | 372 | if (pda_size > pda_len) | 
|  | 373 | return -EINVAL; | 
|  | 374 |  | 
|  | 375 | return 0; | 
|  | 376 | } | 
|  | 377 |  | 
|  | 378 |  | 
|  | 379 | /* Parse PDA and write the records into the adapter */ | 
|  | 380 | static int | 
|  | 381 | spectrum_apply_pda(hermes_t *hw, const struct dblock *first_block, | 
| Pavel Roskin | d133ae4 | 2005-09-23 04:18:06 -0400 | [diff] [blame] | 382 | __le16 *pda) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 383 | { | 
|  | 384 | int ret; | 
|  | 385 | struct pdi *pdi; | 
|  | 386 | struct pdr *first_pdr; | 
|  | 387 | const struct dblock *blk = first_block; | 
|  | 388 |  | 
|  | 389 | /* Skip all blocks to locate Plug Data References */ | 
|  | 390 | while (dblock_addr(blk) != BLOCK_END) | 
|  | 391 | blk = (struct dblock *) &blk->data[dblock_len(blk)]; | 
|  | 392 |  | 
|  | 393 | first_pdr = (struct pdr *) blk; | 
|  | 394 |  | 
|  | 395 | /* Go through every PDI and plug them into the adapter */ | 
|  | 396 | pdi = (struct pdi *) (pda + 2); | 
|  | 397 | while (pdi_id(pdi) != PDI_END) { | 
|  | 398 | ret = spectrum_plug_pdi(hw, first_pdr, pdi); | 
|  | 399 | if (ret) | 
|  | 400 | return ret; | 
|  | 401 |  | 
|  | 402 | /* Increment to the next PDI */ | 
|  | 403 | pdi = (struct pdi *) &pdi->data[pdi_len(pdi)]; | 
|  | 404 | } | 
|  | 405 | return 0; | 
|  | 406 | } | 
|  | 407 |  | 
|  | 408 |  | 
|  | 409 | /* Load firmware blocks into the adapter */ | 
|  | 410 | static int | 
|  | 411 | spectrum_load_blocks(hermes_t *hw, const struct dblock *first_block) | 
|  | 412 | { | 
|  | 413 | const struct dblock *blk; | 
|  | 414 | u32 blkaddr; | 
|  | 415 | u32 blklen; | 
|  | 416 |  | 
|  | 417 | blk = first_block; | 
|  | 418 | blkaddr = dblock_addr(blk); | 
|  | 419 | blklen = dblock_len(blk); | 
|  | 420 |  | 
|  | 421 | while (dblock_addr(blk) != BLOCK_END) { | 
|  | 422 | spectrum_aux_setaddr(hw, blkaddr); | 
| Pavel Roskin | 6b61626 | 2006-04-07 04:10:39 -0400 | [diff] [blame] | 423 | hermes_write_bytes(hw, HERMES_AUXDATA, blk->data, | 
|  | 424 | blklen); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 425 |  | 
|  | 426 | blk = (struct dblock *) &blk->data[blklen]; | 
|  | 427 | blkaddr = dblock_addr(blk); | 
|  | 428 | blklen = dblock_len(blk); | 
|  | 429 | } | 
|  | 430 | return 0; | 
|  | 431 | } | 
|  | 432 |  | 
|  | 433 |  | 
|  | 434 | /* | 
|  | 435 | * Process a firmware image - stop the card, load the firmware, reset | 
|  | 436 | * the card and make sure it responds.  For the secondary firmware take | 
|  | 437 | * care of the PDA - read it and then write it on top of the firmware. | 
|  | 438 | */ | 
|  | 439 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 440 | spectrum_dl_image(hermes_t *hw, struct pcmcia_device *link, | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 441 | const unsigned char *image, int secondary) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 442 | { | 
|  | 443 | int ret; | 
|  | 444 | const unsigned char *ptr; | 
|  | 445 | const struct dblock *first_block; | 
|  | 446 |  | 
|  | 447 | /* Plug Data Area (PDA) */ | 
| Pavel Roskin | d133ae4 | 2005-09-23 04:18:06 -0400 | [diff] [blame] | 448 | __le16 pda[PDA_WORDS]; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 449 |  | 
|  | 450 | /* Binary block begins after the 0x1A marker */ | 
|  | 451 | ptr = image; | 
|  | 452 | while (*ptr++ != TEXT_END); | 
|  | 453 | first_block = (const struct dblock *) ptr; | 
|  | 454 |  | 
|  | 455 | /* Read the PDA */ | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 456 | if (secondary) { | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 457 | ret = spectrum_read_pda(hw, pda, sizeof(pda)); | 
|  | 458 | if (ret) | 
|  | 459 | return ret; | 
|  | 460 | } | 
|  | 461 |  | 
|  | 462 | /* Stop the firmware, so that it can be safely rewritten */ | 
|  | 463 | ret = spectrum_reset(link, 1); | 
|  | 464 | if (ret) | 
|  | 465 | return ret; | 
|  | 466 |  | 
|  | 467 | /* Program the adapter with new firmware */ | 
|  | 468 | ret = spectrum_load_blocks(hw, first_block); | 
|  | 469 | if (ret) | 
|  | 470 | return ret; | 
|  | 471 |  | 
|  | 472 | /* Write the PDA to the adapter */ | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 473 | if (secondary) { | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 474 | ret = spectrum_apply_pda(hw, first_block, pda); | 
|  | 475 | if (ret) | 
|  | 476 | return ret; | 
|  | 477 | } | 
|  | 478 |  | 
|  | 479 | /* Run the firmware */ | 
|  | 480 | ret = spectrum_reset(link, 0); | 
|  | 481 | if (ret) | 
|  | 482 | return ret; | 
|  | 483 |  | 
|  | 484 | /* Reset hermes chip and make sure it responds */ | 
|  | 485 | ret = hermes_init(hw); | 
|  | 486 |  | 
|  | 487 | /* hermes_reset() should return 0 with the secondary firmware */ | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 488 | if (secondary && ret != 0) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 489 | return -ENODEV; | 
|  | 490 |  | 
|  | 491 | /* And this should work with any firmware */ | 
|  | 492 | if (!hermes_present(hw)) | 
|  | 493 | return -ENODEV; | 
|  | 494 |  | 
|  | 495 | return 0; | 
|  | 496 | } | 
|  | 497 |  | 
|  | 498 |  | 
|  | 499 | /* | 
|  | 500 | * Download the firmware into the card, this also does a PCMCIA soft | 
|  | 501 | * reset on the card, to make sure it's in a sane state. | 
|  | 502 | */ | 
|  | 503 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 504 | spectrum_dl_firmware(hermes_t *hw, struct pcmcia_device *link) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 505 | { | 
|  | 506 | int ret; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 507 | const struct firmware *fw_entry; | 
|  | 508 |  | 
|  | 509 | if (request_firmware(&fw_entry, primary_fw_name, | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 510 | &handle_to_dev(link)) != 0) { | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 511 | printk(KERN_ERR PFX "Cannot find firmware: %s\n", | 
|  | 512 | primary_fw_name); | 
|  | 513 | return -ENOENT; | 
|  | 514 | } | 
|  | 515 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 516 | /* Load primary firmware */ | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 517 | ret = spectrum_dl_image(hw, link, fw_entry->data, 0); | 
|  | 518 | release_firmware(fw_entry); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 519 | if (ret) { | 
|  | 520 | printk(KERN_ERR PFX "Primary firmware download failed\n"); | 
|  | 521 | return ret; | 
|  | 522 | } | 
|  | 523 |  | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 524 | if (request_firmware(&fw_entry, secondary_fw_name, | 
|  | 525 | &handle_to_dev(link)) != 0) { | 
|  | 526 | printk(KERN_ERR PFX "Cannot find firmware: %s\n", | 
|  | 527 | secondary_fw_name); | 
|  | 528 | return -ENOENT; | 
|  | 529 | } | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 530 |  | 
| Magnus Damm | 73ca66b | 2006-07-10 04:44:09 -0700 | [diff] [blame] | 531 | /* Load secondary firmware */ | 
|  | 532 | ret = spectrum_dl_image(hw, link, fw_entry->data, 1); | 
|  | 533 | release_firmware(fw_entry); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 534 | if (ret) { | 
|  | 535 | printk(KERN_ERR PFX "Secondary firmware download failed\n"); | 
|  | 536 | } | 
|  | 537 |  | 
|  | 538 | return ret; | 
|  | 539 | } | 
|  | 540 |  | 
|  | 541 | /********************************************************************/ | 
|  | 542 | /* Device methods     						    */ | 
|  | 543 | /********************************************************************/ | 
|  | 544 |  | 
|  | 545 | static int | 
|  | 546 | spectrum_cs_hard_reset(struct orinoco_private *priv) | 
|  | 547 | { | 
|  | 548 | struct orinoco_pccard *card = priv->card; | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 549 | struct pcmcia_device *link = card->p_dev; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 550 | int err; | 
|  | 551 |  | 
|  | 552 | if (!hermes_present(&priv->hw)) { | 
|  | 553 | /* The firmware needs to be reloaded */ | 
| Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 554 | if (spectrum_dl_firmware(&priv->hw, link) != 0) { | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 555 | printk(KERN_ERR PFX "Firmware download failed\n"); | 
|  | 556 | err = -ENODEV; | 
|  | 557 | } | 
|  | 558 | } else { | 
|  | 559 | /* Soft reset using COR and HCR */ | 
|  | 560 | spectrum_reset(link, 0); | 
|  | 561 | } | 
|  | 562 |  | 
|  | 563 | return 0; | 
|  | 564 | } | 
|  | 565 |  | 
|  | 566 | /********************************************************************/ | 
|  | 567 | /* PCMCIA stuff     						    */ | 
|  | 568 | /********************************************************************/ | 
|  | 569 |  | 
|  | 570 | /* | 
|  | 571 | * This creates an "instance" of the driver, allocating local data | 
|  | 572 | * structures for one device.  The device is registered with Card | 
|  | 573 | * Services. | 
|  | 574 | * | 
|  | 575 | * The dev_link structure is initialized, but we don't actually | 
|  | 576 | * configure the card at this point -- we wait until we receive a card | 
|  | 577 | * insertion event.  */ | 
| Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 578 | static int | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 579 | spectrum_cs_probe(struct pcmcia_device *link) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 580 | { | 
|  | 581 | struct net_device *dev; | 
|  | 582 | struct orinoco_private *priv; | 
|  | 583 | struct orinoco_pccard *card; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 584 |  | 
|  | 585 | dev = alloc_orinocodev(sizeof(*card), spectrum_cs_hard_reset); | 
|  | 586 | if (! dev) | 
| Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 587 | return -ENOMEM; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 588 | priv = netdev_priv(dev); | 
|  | 589 | card = priv->card; | 
|  | 590 |  | 
|  | 591 | /* Link both structures together */ | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 592 | card->p_dev = link; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 593 | link->priv = dev; | 
|  | 594 |  | 
|  | 595 | /* Interrupt setup */ | 
|  | 596 | link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT; | 
|  | 597 | link->irq.IRQInfo1 = IRQ_LEVEL_ID; | 
|  | 598 | link->irq.Handler = orinoco_interrupt; | 
|  | 599 | link->irq.Instance = dev; | 
|  | 600 |  | 
|  | 601 | /* General socket configuration defaults can go here.  In this | 
|  | 602 | * client, we assume very little, and rely on the CIS for | 
|  | 603 | * almost everything.  In most clients, many details (i.e., | 
|  | 604 | * number, sizes, and attributes of IO windows) are fixed by | 
|  | 605 | * the nature of the device, and can be hard-wired here. */ | 
|  | 606 | link->conf.Attributes = 0; | 
|  | 607 | link->conf.IntType = INT_MEMORY_AND_IO; | 
|  | 608 |  | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 609 | return spectrum_cs_config(link); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 610 | }				/* spectrum_cs_attach */ | 
|  | 611 |  | 
|  | 612 | /* | 
|  | 613 | * This deletes a driver "instance".  The device is de-registered with | 
|  | 614 | * Card Services.  If it has been released, all local data structures | 
|  | 615 | * are freed.  Otherwise, the structures will be freed when the device | 
|  | 616 | * is released. | 
|  | 617 | */ | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 618 | static void spectrum_cs_detach(struct pcmcia_device *link) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 619 | { | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 620 | struct net_device *dev = link->priv; | 
|  | 621 |  | 
| Pavel Roskin | e4f4f98 | 2006-05-01 02:13:24 -0400 | [diff] [blame] | 622 | if (link->dev_node) | 
|  | 623 | unregister_netdev(dev); | 
|  | 624 |  | 
| Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 625 | spectrum_cs_release(link); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 626 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 627 | free_orinocodev(dev); | 
|  | 628 | }				/* spectrum_cs_detach */ | 
|  | 629 |  | 
|  | 630 | /* | 
|  | 631 | * spectrum_cs_config() is scheduled to run after a CARD_INSERTION | 
|  | 632 | * event is received, to configure the PCMCIA socket, and to make the | 
|  | 633 | * device available to the system. | 
|  | 634 | */ | 
|  | 635 |  | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 636 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 637 | spectrum_cs_config(struct pcmcia_device *link) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 638 | { | 
|  | 639 | struct net_device *dev = link->priv; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 640 | struct orinoco_private *priv = netdev_priv(dev); | 
|  | 641 | struct orinoco_pccard *card = priv->card; | 
|  | 642 | hermes_t *hw = &priv->hw; | 
|  | 643 | int last_fn, last_ret; | 
|  | 644 | u_char buf[64]; | 
|  | 645 | config_info_t conf; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 646 | tuple_t tuple; | 
|  | 647 | cisparse_t parse; | 
|  | 648 | void __iomem *mem; | 
|  | 649 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 650 | /* | 
|  | 651 | * This reads the card's CONFIG tuple to find its | 
|  | 652 | * configuration registers. | 
|  | 653 | */ | 
|  | 654 | tuple.DesiredTuple = CISTPL_CONFIG; | 
|  | 655 | tuple.Attributes = 0; | 
|  | 656 | tuple.TupleData = buf; | 
|  | 657 | tuple.TupleDataMax = sizeof(buf); | 
|  | 658 | tuple.TupleOffset = 0; | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 659 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple)); | 
|  | 660 | CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple)); | 
|  | 661 | CS_CHECK(ParseTuple, pcmcia_parse_tuple(link, &tuple, &parse)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 662 | link->conf.ConfigBase = parse.config.base; | 
|  | 663 | link->conf.Present = parse.config.rmask[0]; | 
|  | 664 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 665 | /* Look up the current Vcc */ | 
|  | 666 | CS_CHECK(GetConfigurationInfo, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 667 | pcmcia_get_configuration_info(link, &conf)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 668 |  | 
|  | 669 | /* | 
|  | 670 | * In this loop, we scan the CIS for configuration table | 
|  | 671 | * entries, each of which describes a valid card | 
|  | 672 | * configuration, including voltage, IO window, memory window, | 
|  | 673 | * and interrupt settings. | 
|  | 674 | * | 
|  | 675 | * We make no assumptions about the card to be configured: we | 
|  | 676 | * use just the information available in the CIS.  In an ideal | 
|  | 677 | * world, this would work for any PCMCIA card, but it requires | 
|  | 678 | * a complete and accurate CIS.  In practice, a driver usually | 
|  | 679 | * "knows" most of these things without consulting the CIS, | 
|  | 680 | * and most client drivers will only use the CIS to fill in | 
|  | 681 | * implementation-defined details. | 
|  | 682 | */ | 
|  | 683 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 684 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 685 | while (1) { | 
|  | 686 | cistpl_cftable_entry_t *cfg = &(parse.cftable_entry); | 
|  | 687 | cistpl_cftable_entry_t dflt = { .index = 0 }; | 
|  | 688 |  | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 689 | if ( (pcmcia_get_tuple_data(link, &tuple) != 0) | 
|  | 690 | || (pcmcia_parse_tuple(link, &tuple, &parse) != 0)) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 691 | goto next_entry; | 
|  | 692 |  | 
|  | 693 | if (cfg->flags & CISTPL_CFTABLE_DEFAULT) | 
|  | 694 | dflt = *cfg; | 
|  | 695 | if (cfg->index == 0) | 
|  | 696 | goto next_entry; | 
|  | 697 | link->conf.ConfigIndex = cfg->index; | 
|  | 698 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 699 | /* Use power settings for Vcc and Vpp if present */ | 
|  | 700 | /* Note that the CIS values need to be rescaled */ | 
|  | 701 | if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) { | 
|  | 702 | if (conf.Vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) { | 
|  | 703 | DEBUG(2, "spectrum_cs_config: Vcc mismatch (conf.Vcc = %d, CIS = %d)\n",  conf.Vcc, cfg->vcc.param[CISTPL_POWER_VNOM] / 10000); | 
|  | 704 | if (!ignore_cis_vcc) | 
|  | 705 | goto next_entry; | 
|  | 706 | } | 
|  | 707 | } else if (dflt.vcc.present & (1 << CISTPL_POWER_VNOM)) { | 
|  | 708 | if (conf.Vcc != dflt.vcc.param[CISTPL_POWER_VNOM] / 10000) { | 
|  | 709 | DEBUG(2, "spectrum_cs_config: Vcc mismatch (conf.Vcc = %d, CIS = %d)\n",  conf.Vcc, dflt.vcc.param[CISTPL_POWER_VNOM] / 10000); | 
|  | 710 | if(!ignore_cis_vcc) | 
|  | 711 | goto next_entry; | 
|  | 712 | } | 
|  | 713 | } | 
|  | 714 |  | 
|  | 715 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) | 
| Dominik Brodowski | 70294b4 | 2006-01-15 12:43:16 +0100 | [diff] [blame] | 716 | link->conf.Vpp = | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 717 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; | 
|  | 718 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) | 
| Dominik Brodowski | 70294b4 | 2006-01-15 12:43:16 +0100 | [diff] [blame] | 719 | link->conf.Vpp = | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 720 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; | 
|  | 721 |  | 
|  | 722 | /* Do we need to allocate an interrupt? */ | 
|  | 723 | link->conf.Attributes |= CONF_ENABLE_IRQ; | 
|  | 724 |  | 
|  | 725 | /* IO window settings */ | 
|  | 726 | link->io.NumPorts1 = link->io.NumPorts2 = 0; | 
|  | 727 | if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) { | 
|  | 728 | cistpl_io_t *io = | 
|  | 729 | (cfg->io.nwin) ? &cfg->io : &dflt.io; | 
|  | 730 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO; | 
|  | 731 | if (!(io->flags & CISTPL_IO_8BIT)) | 
|  | 732 | link->io.Attributes1 = | 
|  | 733 | IO_DATA_PATH_WIDTH_16; | 
|  | 734 | if (!(io->flags & CISTPL_IO_16BIT)) | 
|  | 735 | link->io.Attributes1 = | 
|  | 736 | IO_DATA_PATH_WIDTH_8; | 
|  | 737 | link->io.IOAddrLines = | 
|  | 738 | io->flags & CISTPL_IO_LINES_MASK; | 
|  | 739 | link->io.BasePort1 = io->win[0].base; | 
|  | 740 | link->io.NumPorts1 = io->win[0].len; | 
|  | 741 | if (io->nwin > 1) { | 
|  | 742 | link->io.Attributes2 = | 
|  | 743 | link->io.Attributes1; | 
|  | 744 | link->io.BasePort2 = io->win[1].base; | 
|  | 745 | link->io.NumPorts2 = io->win[1].len; | 
|  | 746 | } | 
|  | 747 |  | 
|  | 748 | /* This reserves IO space but doesn't actually enable it */ | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 749 | if (pcmcia_request_io(link, &link->io) != 0) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 750 | goto next_entry; | 
|  | 751 | } | 
|  | 752 |  | 
|  | 753 |  | 
|  | 754 | /* If we got this far, we're cool! */ | 
|  | 755 |  | 
|  | 756 | break; | 
|  | 757 |  | 
|  | 758 | next_entry: | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 759 | pcmcia_disable_device(link); | 
|  | 760 | last_ret = pcmcia_get_next_tuple(link, &tuple); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 761 | if (last_ret  == CS_NO_MORE_ITEMS) { | 
|  | 762 | printk(KERN_ERR PFX "GetNextTuple(): No matching " | 
|  | 763 | "CIS configuration.  Maybe you need the " | 
|  | 764 | "ignore_cis_vcc=1 parameter.\n"); | 
|  | 765 | goto cs_failed; | 
|  | 766 | } | 
|  | 767 | } | 
|  | 768 |  | 
|  | 769 | /* | 
|  | 770 | * Allocate an interrupt line.  Note that this does not assign | 
|  | 771 | * a handler to the interrupt, unless the 'Handler' member of | 
|  | 772 | * the irq structure is initialized. | 
|  | 773 | */ | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 774 | CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 775 |  | 
|  | 776 | /* We initialize the hermes structure before completing PCMCIA | 
|  | 777 | * configuration just in case the interrupt handler gets | 
|  | 778 | * called. */ | 
|  | 779 | mem = ioport_map(link->io.BasePort1, link->io.NumPorts1); | 
|  | 780 | if (!mem) | 
|  | 781 | goto cs_failed; | 
|  | 782 |  | 
|  | 783 | hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING); | 
|  | 784 |  | 
|  | 785 | /* | 
|  | 786 | * This actually configures the PCMCIA socket -- setting up | 
|  | 787 | * the I/O windows and the interrupt mapping, and putting the | 
|  | 788 | * card and host interface into "Memory and IO" mode. | 
|  | 789 | */ | 
|  | 790 | CS_CHECK(RequestConfiguration, | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 791 | pcmcia_request_configuration(link, &link->conf)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 792 |  | 
|  | 793 | /* Ok, we have the configuration, prepare to register the netdev */ | 
|  | 794 | dev->base_addr = link->io.BasePort1; | 
|  | 795 | dev->irq = link->irq.AssignedIRQ; | 
|  | 796 | SET_MODULE_OWNER(dev); | 
|  | 797 | card->node.major = card->node.minor = 0; | 
|  | 798 |  | 
|  | 799 | /* Reset card and download firmware */ | 
|  | 800 | if (spectrum_cs_hard_reset(priv) != 0) { | 
|  | 801 | goto failed; | 
|  | 802 | } | 
|  | 803 |  | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 804 | SET_NETDEV_DEV(dev, &handle_to_dev(link)); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 805 | /* Tell the stack we exist */ | 
|  | 806 | if (register_netdev(dev) != 0) { | 
|  | 807 | printk(KERN_ERR PFX "register_netdev() failed\n"); | 
|  | 808 | goto failed; | 
|  | 809 | } | 
|  | 810 |  | 
|  | 811 | /* At this point, the dev_node_t structure(s) needs to be | 
| Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 812 | * initialized and arranged in a linked list at link->dev_node. */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 813 | strcpy(card->node.dev_name, dev->name); | 
| Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 814 | link->dev_node = &card->node; /* link->dev_node being non-NULL is also | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 815 | used to indicate that the | 
|  | 816 | net_device has been registered */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 817 |  | 
|  | 818 | /* Finally, report what we've done */ | 
| Pavel Roskin | 9a568da | 2006-05-01 02:13:26 -0400 | [diff] [blame] | 819 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " | 
|  | 820 | "0x%04x-0x%04x\n", dev->name, dev->class_dev.dev->bus_id, | 
|  | 821 | link->irq.AssignedIRQ, link->io.BasePort1, | 
|  | 822 | link->io.BasePort1 + link->io.NumPorts1 - 1); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 823 |  | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 824 | return 0; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 825 |  | 
|  | 826 | cs_failed: | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 827 | cs_error(link, last_fn, last_ret); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 828 |  | 
|  | 829 | failed: | 
|  | 830 | spectrum_cs_release(link); | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 831 | return -ENODEV; | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 832 | }				/* spectrum_cs_config */ | 
|  | 833 |  | 
|  | 834 | /* | 
|  | 835 | * After a card is removed, spectrum_cs_release() will unregister the | 
|  | 836 | * device, and release the PCMCIA configuration.  If the device is | 
|  | 837 | * still open, this will be postponed until it is closed. | 
|  | 838 | */ | 
|  | 839 | static void | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 840 | spectrum_cs_release(struct pcmcia_device *link) | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 841 | { | 
|  | 842 | struct net_device *dev = link->priv; | 
|  | 843 | struct orinoco_private *priv = netdev_priv(dev); | 
|  | 844 | unsigned long flags; | 
|  | 845 |  | 
|  | 846 | /* We're committed to taking the device away now, so mark the | 
|  | 847 | * hardware as unavailable */ | 
|  | 848 | spin_lock_irqsave(&priv->lock, flags); | 
|  | 849 | priv->hw_unavailable++; | 
|  | 850 | spin_unlock_irqrestore(&priv->lock, flags); | 
|  | 851 |  | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 852 | pcmcia_disable_device(link); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 853 | if (priv->hw.iobase) | 
|  | 854 | ioport_unmap(priv->hw.iobase); | 
|  | 855 | }				/* spectrum_cs_release */ | 
|  | 856 |  | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 857 |  | 
|  | 858 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 859 | spectrum_cs_suspend(struct pcmcia_device *link) | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 860 | { | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 861 | struct net_device *dev = link->priv; | 
|  | 862 | struct orinoco_private *priv = netdev_priv(dev); | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 863 | int err = 0; | 
|  | 864 |  | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 865 | /* Mark the device as stopped, to block IO until later */ | 
| Pavel Roskin | 6cbaa33 | 2006-05-01 02:13:28 -0400 | [diff] [blame] | 866 | spin_lock(&priv->lock); | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 867 |  | 
| Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 868 | err = __orinoco_down(dev); | 
|  | 869 | if (err) | 
|  | 870 | printk(KERN_WARNING "%s: Error %d downing interface\n", | 
|  | 871 | dev->name, err); | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 872 |  | 
| Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 873 | netif_device_detach(dev); | 
|  | 874 | priv->hw_unavailable++; | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 875 |  | 
| Pavel Roskin | 6cbaa33 | 2006-05-01 02:13:28 -0400 | [diff] [blame] | 876 | spin_unlock(&priv->lock); | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 877 |  | 
| Pavel Roskin | 6cbaa33 | 2006-05-01 02:13:28 -0400 | [diff] [blame] | 878 | return err; | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 879 | } | 
|  | 880 |  | 
|  | 881 | static int | 
| Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 882 | spectrum_cs_resume(struct pcmcia_device *link) | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 883 | { | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 884 | struct net_device *dev = link->priv; | 
|  | 885 | struct orinoco_private *priv = netdev_priv(dev); | 
|  | 886 |  | 
| Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 887 | netif_device_attach(dev); | 
|  | 888 | priv->hw_unavailable--; | 
|  | 889 | schedule_work(&priv->reset_work); | 
|  | 890 |  | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 891 | return 0; | 
|  | 892 | } | 
|  | 893 |  | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 894 |  | 
|  | 895 | /********************************************************************/ | 
|  | 896 | /* Module initialization					    */ | 
|  | 897 | /********************************************************************/ | 
|  | 898 |  | 
|  | 899 | /* Can't be declared "const" or the whole __initdata section will | 
|  | 900 | * become const */ | 
|  | 901 | static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION | 
|  | 902 | " (Pavel Roskin <proski@gnu.org>," | 
|  | 903 | " David Gibson <hermes@gibson.dropbear.id.au>, et al)"; | 
|  | 904 |  | 
|  | 905 | static struct pcmcia_device_id spectrum_cs_ids[] = { | 
| Pavel Roskin | 4ebe2eb | 2006-04-07 04:10:32 -0400 | [diff] [blame] | 906 | PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */ | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 907 | PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */ | 
| Pavel Roskin | 9c8a11d | 2005-09-16 02:18:31 -0400 | [diff] [blame] | 908 | 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] | 909 | PCMCIA_DEVICE_NULL, | 
|  | 910 | }; | 
|  | 911 | MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids); | 
|  | 912 |  | 
|  | 913 | static struct pcmcia_driver orinoco_driver = { | 
|  | 914 | .owner		= THIS_MODULE, | 
|  | 915 | .drv		= { | 
|  | 916 | .name	= DRIVER_NAME, | 
|  | 917 | }, | 
| Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 918 | .probe		= spectrum_cs_probe, | 
| Dominik Brodowski | cc3b486 | 2005-11-14 21:23:14 +0100 | [diff] [blame] | 919 | .remove		= spectrum_cs_detach, | 
| Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 920 | .suspend	= spectrum_cs_suspend, | 
|  | 921 | .resume		= spectrum_cs_resume, | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 922 | .id_table       = spectrum_cs_ids, | 
|  | 923 | }; | 
|  | 924 |  | 
|  | 925 | static int __init | 
|  | 926 | init_spectrum_cs(void) | 
|  | 927 | { | 
|  | 928 | printk(KERN_DEBUG "%s\n", version); | 
|  | 929 |  | 
|  | 930 | return pcmcia_register_driver(&orinoco_driver); | 
|  | 931 | } | 
|  | 932 |  | 
|  | 933 | static void __exit | 
|  | 934 | exit_spectrum_cs(void) | 
|  | 935 | { | 
|  | 936 | pcmcia_unregister_driver(&orinoco_driver); | 
| Pavel Roskin | 3a48c4c | 2005-09-01 20:10:06 -0400 | [diff] [blame] | 937 | } | 
|  | 938 |  | 
|  | 939 | module_init(init_spectrum_cs); | 
|  | 940 | module_exit(exit_spectrum_cs); |