blob: 6020c19b1bdbb5b85fe5decad7f722d7f7a338cc [file] [log] [blame]
Holger Schurig27590d02007-10-03 17:25:41 -07001/*
2
3 Driver for the Marvell 8385 based compact flash WLAN cards.
4
5 (C) 2007 by Holger Schurig <hs4233@mail.mn-solutions.de>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21
22*/
23
24#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Holger Schurig27590d02007-10-03 17:25:41 -070026#include <linux/delay.h>
27#include <linux/moduleparam.h>
28#include <linux/firmware.h>
29#include <linux/netdevice.h>
30
Holger Schurig27590d02007-10-03 17:25:41 -070031#include <pcmcia/cistpl.h>
32#include <pcmcia/ds.h>
33
34#include <linux/io.h>
35
36#define DRV_NAME "libertas_cs"
37
38#include "decl.h"
39#include "defs.h"
40#include "dev.h"
41
42
43/********************************************************************/
44/* Module stuff */
45/********************************************************************/
46
47MODULE_AUTHOR("Holger Schurig <hs4233@mail.mn-solutions.de>");
48MODULE_DESCRIPTION("Driver for Marvell 83xx compact flash WLAN cards");
49MODULE_LICENSE("GPL");
Ben Hutchingsa974a4b2009-11-07 22:00:03 +000050MODULE_FIRMWARE("libertas_cs_helper.fw");
Holger Schurig27590d02007-10-03 17:25:41 -070051
52
53
54/********************************************************************/
55/* Data structures */
56/********************************************************************/
57
58struct if_cs_card {
59 struct pcmcia_device *p_dev;
Holger Schurig69f90322007-11-23 15:43:44 +010060 struct lbs_private *priv;
Holger Schurig27590d02007-10-03 17:25:41 -070061 void __iomem *iobase;
Marek Vasut9d453682009-08-21 04:08:16 +020062 bool align_regs;
Holger Schurig27590d02007-10-03 17:25:41 -070063};
64
65
66
67/********************************************************************/
68/* Hardware access */
69/********************************************************************/
70
71/* This define enables wrapper functions which allow you
72 to dump all register accesses. You normally won't this,
73 except for development */
74/* #define DEBUG_IO */
75
76#ifdef DEBUG_IO
77static int debug_output = 0;
78#else
79/* This way the compiler optimizes the printk's away */
80#define debug_output 0
81#endif
82
83static inline unsigned int if_cs_read8(struct if_cs_card *card, uint reg)
84{
85 unsigned int val = ioread8(card->iobase + reg);
86 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020087 printk(KERN_INFO "inb %08x<%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070088 return val;
89}
90static inline unsigned int if_cs_read16(struct if_cs_card *card, uint reg)
91{
92 unsigned int val = ioread16(card->iobase + reg);
93 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020094 printk(KERN_INFO "inw %08x<%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070095 return val;
96}
97static inline void if_cs_read16_rep(
98 struct if_cs_card *card,
99 uint reg,
100 void *buf,
101 unsigned long count)
102{
103 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200104 printk(KERN_INFO "insw %08x<(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700105 reg, count);
106 ioread16_rep(card->iobase + reg, buf, count);
107}
108
109static inline void if_cs_write8(struct if_cs_card *card, uint reg, u8 val)
110{
111 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200112 printk(KERN_INFO "outb %08x>%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700113 iowrite8(val, card->iobase + reg);
114}
115
116static inline void if_cs_write16(struct if_cs_card *card, uint reg, u16 val)
117{
118 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200119 printk(KERN_INFO "outw %08x>%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700120 iowrite16(val, card->iobase + reg);
121}
122
123static inline void if_cs_write16_rep(
124 struct if_cs_card *card,
125 uint reg,
David Woodhouse6dfff892008-05-23 18:37:51 +0100126 const void *buf,
Holger Schurig27590d02007-10-03 17:25:41 -0700127 unsigned long count)
128{
129 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200130 printk(KERN_INFO "outsw %08x>(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700131 reg, count);
132 iowrite16_rep(card->iobase + reg, buf, count);
133}
134
135
136/*
137 * I know that polling/delaying is frowned upon. However, this procedure
138 * with polling is needed while downloading the firmware. At this stage,
139 * the hardware does unfortunately not create any interrupts.
140 *
141 * Fortunately, this function is never used once the firmware is in
142 * the card. :-)
143 *
144 * As a reference, see the "Firmware Specification v5.1", page 18
145 * and 19. I did not follow their suggested timing to the word,
146 * but this works nice & fast anyway.
147 */
148static int if_cs_poll_while_fw_download(struct if_cs_card *card, uint addr, u8 reg)
149{
150 int i;
151
Holger Schurig93416c82008-05-23 10:18:26 +0200152 for (i = 0; i < 100000; i++) {
Holger Schurig27590d02007-10-03 17:25:41 -0700153 u8 val = if_cs_read8(card, addr);
154 if (val == reg)
Dan Williams1fac36e2009-01-23 11:55:33 -0500155 return 0;
Holger Schurig93416c82008-05-23 10:18:26 +0200156 udelay(5);
Holger Schurig27590d02007-10-03 17:25:41 -0700157 }
158 return -ETIME;
159}
160
161
162
Holger Schurig53143252008-06-05 13:07:04 +0200163/*
164 * First the bitmasks for the host/card interrupt/status registers:
165 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200166#define IF_CS_BIT_TX 0x0001
167#define IF_CS_BIT_RX 0x0002
168#define IF_CS_BIT_COMMAND 0x0004
169#define IF_CS_BIT_RESP 0x0008
170#define IF_CS_BIT_EVENT 0x0010
171#define IF_CS_BIT_MASK 0x001f
Holger Schurig27590d02007-10-03 17:25:41 -0700172
Holger Schurig53143252008-06-05 13:07:04 +0200173
174
175/*
176 * It's not really clear to me what the host status register is for. It
177 * needs to be set almost in union with "host int cause". The following
178 * bits from above are used:
179 *
180 * IF_CS_BIT_TX driver downloaded a data packet
181 * IF_CS_BIT_RX driver got a data packet
182 * IF_CS_BIT_COMMAND driver downloaded a command
183 * IF_CS_BIT_RESP not used (has some meaning with powerdown)
184 * IF_CS_BIT_EVENT driver read a host event
185 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200186#define IF_CS_HOST_STATUS 0x00000000
Holger Schurig27590d02007-10-03 17:25:41 -0700187
Holger Schurig53143252008-06-05 13:07:04 +0200188/*
189 * With the host int cause register can the host (that is, Linux) cause
190 * an interrupt in the firmware, to tell the firmware about those events:
191 *
192 * IF_CS_BIT_TX a data packet has been downloaded
193 * IF_CS_BIT_RX a received data packet has retrieved
194 * IF_CS_BIT_COMMAND a firmware block or a command has been downloaded
195 * IF_CS_BIT_RESP not used (has some meaning with powerdown)
196 * IF_CS_BIT_EVENT a host event (link lost etc) has been retrieved
197 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200198#define IF_CS_HOST_INT_CAUSE 0x00000002
Holger Schurig27590d02007-10-03 17:25:41 -0700199
Holger Schurig53143252008-06-05 13:07:04 +0200200/*
201 * The host int mask register is used to enable/disable interrupt. However,
202 * I have the suspicion that disabled interrupts are lost.
203 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200204#define IF_CS_HOST_INT_MASK 0x00000004
Holger Schurig27590d02007-10-03 17:25:41 -0700205
Holger Schurig53143252008-06-05 13:07:04 +0200206/*
207 * Used to send or receive data packets:
208 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200209#define IF_CS_WRITE 0x00000016
210#define IF_CS_WRITE_LEN 0x00000014
Holger Schurig78cf0742008-06-02 09:25:05 +0200211#define IF_CS_READ 0x00000010
212#define IF_CS_READ_LEN 0x00000024
Holger Schurig27590d02007-10-03 17:25:41 -0700213
Holger Schurig53143252008-06-05 13:07:04 +0200214/*
215 * Used to send commands (and to send firmware block) and to
216 * receive command responses:
217 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200218#define IF_CS_CMD 0x0000001A
219#define IF_CS_CMD_LEN 0x00000018
220#define IF_CS_RESP 0x00000012
221#define IF_CS_RESP_LEN 0x00000030
Holger Schurig27590d02007-10-03 17:25:41 -0700222
Holger Schurig53143252008-06-05 13:07:04 +0200223/*
224 * The card status registers shows what the card/firmware actually
225 * accepts:
226 *
227 * IF_CS_BIT_TX you may send a data packet
228 * IF_CS_BIT_RX you may retrieve a data packet
229 * IF_CS_BIT_COMMAND you may send a command
230 * IF_CS_BIT_RESP you may retrieve a command response
231 * IF_CS_BIT_EVENT the card has a event for use (link lost, snr low etc)
232 *
233 * When reading this register several times, you will get back the same
234 * results --- with one exception: the IF_CS_BIT_EVENT clear itself
235 * automatically.
236 *
237 * Not that we don't rely on BIT_RX,_BIT_RESP or BIT_EVENT because
238 * we handle this via the card int cause register.
239 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200240#define IF_CS_CARD_STATUS 0x00000020
241#define IF_CS_CARD_STATUS_MASK 0x7f00
Holger Schurig27590d02007-10-03 17:25:41 -0700242
Holger Schurig53143252008-06-05 13:07:04 +0200243/*
244 * The card int cause register is used by the card/firmware to notify us
245 * about the following events:
246 *
247 * IF_CS_BIT_TX a data packet has successfully been sentx
248 * IF_CS_BIT_RX a data packet has been received and can be retrieved
249 * IF_CS_BIT_COMMAND not used
250 * IF_CS_BIT_RESP the firmware has a command response for us
251 * IF_CS_BIT_EVENT the card has a event for use (link lost, snr low etc)
252 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200253#define IF_CS_CARD_INT_CAUSE 0x00000022
Holger Schurig27590d02007-10-03 17:25:41 -0700254
Holger Schurig53143252008-06-05 13:07:04 +0200255/*
256 * This is used to for handshaking with the card's bootloader/helper image
257 * to synchronize downloading of firmware blocks.
258 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200259#define IF_CS_SQ_READ_LOW 0x00000028
260#define IF_CS_SQ_HELPER_OK 0x10
Holger Schurig27590d02007-10-03 17:25:41 -0700261
Holger Schurig53143252008-06-05 13:07:04 +0200262/*
263 * The scratch register tells us ...
264 *
265 * IF_CS_SCRATCH_BOOT_OK the bootloader runs
266 * IF_CS_SCRATCH_HELPER_OK the helper firmware already runs
267 */
Holger Schurig27590d02007-10-03 17:25:41 -0700268#define IF_CS_SCRATCH 0x0000003F
Holger Schurig53143252008-06-05 13:07:04 +0200269#define IF_CS_SCRATCH_BOOT_OK 0x00
270#define IF_CS_SCRATCH_HELPER_OK 0x5a
Holger Schurig27590d02007-10-03 17:25:41 -0700271
Holger Schurig4c555232008-06-05 13:08:35 +0200272/*
273 * Used to detect ancient chips:
274 */
275#define IF_CS_PRODUCT_ID 0x0000001C
276#define IF_CS_CF8385_B1_REV 0x12
Marek Vasutdc7d2432009-03-24 21:33:43 +0100277#define IF_CS_CF8381_B3_REV 0x04
Marek Vasut9d453682009-08-21 04:08:16 +0200278#define IF_CS_CF8305_B1_REV 0x03
Holger Schurig4c555232008-06-05 13:08:35 +0200279
Marek Vasutdc7d2432009-03-24 21:33:43 +0100280/*
281 * Used to detect other cards than CF8385 since their revisions of silicon
282 * doesn't match those from CF8385, eg. CF8381 B3 works with this driver.
283 */
Marek Vasut9d453682009-08-21 04:08:16 +0200284#define CF8305_MANFID 0x02db
285#define CF8305_CARDID 0x8103
Marek Vasutdc7d2432009-03-24 21:33:43 +0100286#define CF8381_MANFID 0x02db
287#define CF8381_CARDID 0x6064
288#define CF8385_MANFID 0x02df
289#define CF8385_CARDID 0x8103
290
Marek Vasut9d453682009-08-21 04:08:16 +0200291static inline int if_cs_hw_is_cf8305(struct pcmcia_device *p_dev)
292{
293 return (p_dev->manf_id == CF8305_MANFID &&
294 p_dev->card_id == CF8305_CARDID);
295}
296
Marek Vasutdc7d2432009-03-24 21:33:43 +0100297static inline int if_cs_hw_is_cf8381(struct pcmcia_device *p_dev)
298{
299 return (p_dev->manf_id == CF8381_MANFID &&
300 p_dev->card_id == CF8381_CARDID);
301}
302
303static inline int if_cs_hw_is_cf8385(struct pcmcia_device *p_dev)
304{
305 return (p_dev->manf_id == CF8385_MANFID &&
306 p_dev->card_id == CF8385_CARDID);
307}
Holger Schurig27590d02007-10-03 17:25:41 -0700308
309/********************************************************************/
Holger Schurig43d01c52008-05-26 12:50:23 +0200310/* I/O and interrupt handling */
Holger Schurig27590d02007-10-03 17:25:41 -0700311/********************************************************************/
312
Holger Schurig43d01c52008-05-26 12:50:23 +0200313static inline void if_cs_enable_ints(struct if_cs_card *card)
314{
315 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200316 if_cs_write16(card, IF_CS_HOST_INT_MASK, 0);
Holger Schurig43d01c52008-05-26 12:50:23 +0200317}
318
319static inline void if_cs_disable_ints(struct if_cs_card *card)
320{
321 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200322 if_cs_write16(card, IF_CS_HOST_INT_MASK, IF_CS_BIT_MASK);
Holger Schurig43d01c52008-05-26 12:50:23 +0200323}
324
Holger Schurig27590d02007-10-03 17:25:41 -0700325/*
326 * Called from if_cs_host_to_card to send a command to the hardware
327 */
Holger Schurig69f90322007-11-23 15:43:44 +0100328static int if_cs_send_cmd(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700329{
330 struct if_cs_card *card = (struct if_cs_card *)priv->card;
331 int ret = -1;
332 int loops = 0;
333
334 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200335 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700336
337 /* Is hardware ready? */
338 while (1) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200339 u16 status = if_cs_read16(card, IF_CS_CARD_STATUS);
340 if (status & IF_CS_BIT_COMMAND)
Holger Schurig27590d02007-10-03 17:25:41 -0700341 break;
342 if (++loops > 100) {
343 lbs_pr_err("card not ready for commands\n");
344 goto done;
345 }
346 mdelay(1);
347 }
348
Holger Schuriga78a8322008-06-05 13:09:50 +0200349 if_cs_write16(card, IF_CS_CMD_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700350
Holger Schuriga78a8322008-06-05 13:09:50 +0200351 if_cs_write16_rep(card, IF_CS_CMD, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700352 /* Are we supposed to transfer an odd amount of bytes? */
353 if (nb & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200354 if_cs_write8(card, IF_CS_CMD, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700355
356 /* "Assert the download over interrupt command in the Host
357 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200358 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700359
360 /* "Assert the download over interrupt command in the Card
361 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200362 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700363 ret = 0;
364
365done:
Holger Schurig43d01c52008-05-26 12:50:23 +0200366 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700367 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
368 return ret;
369}
370
Holger Schurig27590d02007-10-03 17:25:41 -0700371/*
372 * Called from if_cs_host_to_card to send a data to the hardware
373 */
Holger Schurig69f90322007-11-23 15:43:44 +0100374static void if_cs_send_data(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700375{
376 struct if_cs_card *card = (struct if_cs_card *)priv->card;
Holger Schurig43d01c52008-05-26 12:50:23 +0200377 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700378
379 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200380 if_cs_disable_ints(card);
381
Holger Schurig78cf0742008-06-02 09:25:05 +0200382 status = if_cs_read16(card, IF_CS_CARD_STATUS);
383 BUG_ON((status & IF_CS_BIT_TX) == 0);
Holger Schurig27590d02007-10-03 17:25:41 -0700384
Holger Schuriga78a8322008-06-05 13:09:50 +0200385 if_cs_write16(card, IF_CS_WRITE_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700386
387 /* write even number of bytes, then odd byte if necessary */
Holger Schuriga78a8322008-06-05 13:09:50 +0200388 if_cs_write16_rep(card, IF_CS_WRITE, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700389 if (nb & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200390 if_cs_write8(card, IF_CS_WRITE, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700391
Holger Schurig78cf0742008-06-02 09:25:05 +0200392 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_TX);
393 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_TX);
Holger Schurig43d01c52008-05-26 12:50:23 +0200394 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700395
396 lbs_deb_leave(LBS_DEB_CS);
397}
398
Holger Schurig27590d02007-10-03 17:25:41 -0700399/*
400 * Get the command result out of the card.
401 */
Holger Schurig69f90322007-11-23 15:43:44 +0100402static int if_cs_receive_cmdres(struct lbs_private *priv, u8 *data, u32 *len)
Holger Schurig27590d02007-10-03 17:25:41 -0700403{
Holger Schurig7919b892008-04-01 14:50:43 +0200404 unsigned long flags;
Holger Schurig27590d02007-10-03 17:25:41 -0700405 int ret = -1;
Holger Schurig78cf0742008-06-02 09:25:05 +0200406 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700407
408 lbs_deb_enter(LBS_DEB_CS);
409
410 /* is hardware ready? */
Holger Schurig78cf0742008-06-02 09:25:05 +0200411 status = if_cs_read16(priv->card, IF_CS_CARD_STATUS);
412 if ((status & IF_CS_BIT_RESP) == 0) {
413 lbs_pr_err("no cmd response in card\n");
414 *len = 0;
Holger Schurig27590d02007-10-03 17:25:41 -0700415 goto out;
416 }
417
Holger Schuriga78a8322008-06-05 13:09:50 +0200418 *len = if_cs_read16(priv->card, IF_CS_RESP_LEN);
Dan Williamsddac4522007-12-11 13:49:39 -0500419 if ((*len == 0) || (*len > LBS_CMD_BUFFER_SIZE)) {
Holger Schurig27590d02007-10-03 17:25:41 -0700420 lbs_pr_err("card cmd buffer has invalid # of bytes (%d)\n", *len);
421 goto out;
422 }
423
424 /* read even number of bytes, then odd byte if necessary */
Holger Schuriga78a8322008-06-05 13:09:50 +0200425 if_cs_read16_rep(priv->card, IF_CS_RESP, data, *len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700426 if (*len & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200427 data[*len-1] = if_cs_read8(priv->card, IF_CS_RESP);
Holger Schurig27590d02007-10-03 17:25:41 -0700428
Holger Schurig09d4fad2007-12-06 13:50:30 +0100429 /* This is a workaround for a firmware that reports too much
430 * bytes */
431 *len -= 8;
Holger Schurig27590d02007-10-03 17:25:41 -0700432 ret = 0;
Holger Schurig7919b892008-04-01 14:50:43 +0200433
434 /* Clear this flag again */
435 spin_lock_irqsave(&priv->driver_lock, flags);
436 priv->dnld_sent = DNLD_RES_RECEIVED;
437 spin_unlock_irqrestore(&priv->driver_lock, flags);
438
Holger Schurig27590d02007-10-03 17:25:41 -0700439out:
440 lbs_deb_leave_args(LBS_DEB_CS, "ret %d, len %d", ret, *len);
441 return ret;
442}
443
Holger Schurig69f90322007-11-23 15:43:44 +0100444static struct sk_buff *if_cs_receive_data(struct lbs_private *priv)
Holger Schurig27590d02007-10-03 17:25:41 -0700445{
446 struct sk_buff *skb = NULL;
447 u16 len;
448 u8 *data;
449
450 lbs_deb_enter(LBS_DEB_CS);
451
Holger Schurig78cf0742008-06-02 09:25:05 +0200452 len = if_cs_read16(priv->card, IF_CS_READ_LEN);
Holger Schurig27590d02007-10-03 17:25:41 -0700453 if (len == 0 || len > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE) {
454 lbs_pr_err("card data buffer has invalid # of bytes (%d)\n", len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000455 priv->dev->stats.rx_dropped++;
Holger Schurig27590d02007-10-03 17:25:41 -0700456 goto dat_err;
457 }
458
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400459 skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700460 if (!skb)
461 goto out;
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400462 skb_put(skb, len);
463 skb_reserve(skb, 2);/* 16 byte align */
464 data = skb->data;
Holger Schurig27590d02007-10-03 17:25:41 -0700465
466 /* read even number of bytes, then odd byte if necessary */
Holger Schurig78cf0742008-06-02 09:25:05 +0200467 if_cs_read16_rep(priv->card, IF_CS_READ, data, len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700468 if (len & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200469 data[len-1] = if_cs_read8(priv->card, IF_CS_READ);
Holger Schurig27590d02007-10-03 17:25:41 -0700470
471dat_err:
Holger Schurig78cf0742008-06-02 09:25:05 +0200472 if_cs_write16(priv->card, IF_CS_HOST_STATUS, IF_CS_BIT_RX);
473 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_RX);
Holger Schurig27590d02007-10-03 17:25:41 -0700474
475out:
476 lbs_deb_leave_args(LBS_DEB_CS, "ret %p", skb);
477 return skb;
478}
479
Holger Schurig7919b892008-04-01 14:50:43 +0200480static irqreturn_t if_cs_interrupt(int irq, void *data)
481{
482 struct if_cs_card *card = data;
483 struct lbs_private *priv = card->priv;
484 u16 cause;
485
486 lbs_deb_enter(LBS_DEB_CS);
487
Holger Schurig43d01c52008-05-26 12:50:23 +0200488 /* Ask card interrupt cause register if there is something for us */
Holger Schurig78cf0742008-06-02 09:25:05 +0200489 cause = if_cs_read16(card, IF_CS_CARD_INT_CAUSE);
Holger Schurig30735562008-06-05 13:06:15 +0200490 lbs_deb_cs("cause 0x%04x\n", cause);
491
Holger Schurig7919b892008-04-01 14:50:43 +0200492 if (cause == 0) {
493 /* Not for us */
494 return IRQ_NONE;
495 }
496
497 if (cause == 0xffff) {
498 /* Read in junk, the card has probably been removed */
499 card->priv->surpriseremoved = 1;
500 return IRQ_HANDLED;
501 }
502
Holger Schurig78cf0742008-06-02 09:25:05 +0200503 if (cause & IF_CS_BIT_RX) {
Holger Schurig7919b892008-04-01 14:50:43 +0200504 struct sk_buff *skb;
505 lbs_deb_cs("rx packet\n");
506 skb = if_cs_receive_data(priv);
507 if (skb)
508 lbs_process_rxed_packet(priv, skb);
509 }
510
Holger Schurig78cf0742008-06-02 09:25:05 +0200511 if (cause & IF_CS_BIT_TX) {
Holger Schurig43d01c52008-05-26 12:50:23 +0200512 lbs_deb_cs("tx done\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200513 lbs_host_to_card_done(priv);
514 }
515
Holger Schurig78cf0742008-06-02 09:25:05 +0200516 if (cause & IF_CS_BIT_RESP) {
Holger Schurig7919b892008-04-01 14:50:43 +0200517 unsigned long flags;
518 u8 i;
519
Holger Schurig43d01c52008-05-26 12:50:23 +0200520 lbs_deb_cs("cmd resp\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200521 spin_lock_irqsave(&priv->driver_lock, flags);
522 i = (priv->resp_idx == 0) ? 1 : 0;
523 spin_unlock_irqrestore(&priv->driver_lock, flags);
524
525 BUG_ON(priv->resp_len[i]);
526 if_cs_receive_cmdres(priv, priv->resp_buf[i],
527 &priv->resp_len[i]);
528
529 spin_lock_irqsave(&priv->driver_lock, flags);
530 lbs_notify_command_response(priv, i);
531 spin_unlock_irqrestore(&priv->driver_lock, flags);
532 }
533
Holger Schurig78cf0742008-06-02 09:25:05 +0200534 if (cause & IF_CS_BIT_EVENT) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200535 u16 status = if_cs_read16(priv->card, IF_CS_CARD_STATUS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200536 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE,
537 IF_CS_BIT_EVENT);
Holger Schuriga78a8322008-06-05 13:09:50 +0200538 lbs_queue_event(priv, (status & IF_CS_CARD_STATUS_MASK) >> 8);
Holger Schurig7919b892008-04-01 14:50:43 +0200539 }
540
Holger Schurig30735562008-06-05 13:06:15 +0200541 /* Clear interrupt cause */
542 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, cause & IF_CS_BIT_MASK);
543
Holger Schurig43d01c52008-05-26 12:50:23 +0200544 lbs_deb_leave(LBS_DEB_CS);
Holger Schurig7919b892008-04-01 14:50:43 +0200545 return IRQ_HANDLED;
546}
547
548
549
550
551/********************************************************************/
Holger Schurig27590d02007-10-03 17:25:41 -0700552/* Firmware */
553/********************************************************************/
554
555/*
556 * Tries to program the helper firmware.
557 *
558 * Return 0 on success
559 */
560static int if_cs_prog_helper(struct if_cs_card *card)
561{
562 int ret = 0;
563 int sent = 0;
564 u8 scratch;
565 const struct firmware *fw;
566
567 lbs_deb_enter(LBS_DEB_CS);
568
Marek Vasut9d453682009-08-21 04:08:16 +0200569 /*
570 * This is the only place where an unaligned register access happens on
571 * the CF8305 card, therefore for the sake of speed of the driver, we do
572 * the alignment correction here.
573 */
574 if (card->align_regs)
575 scratch = if_cs_read16(card, IF_CS_SCRATCH) >> 8;
576 else
577 scratch = if_cs_read8(card, IF_CS_SCRATCH);
Holger Schurig27590d02007-10-03 17:25:41 -0700578
579 /* "If the value is 0x5a, the firmware is already
580 * downloaded successfully"
581 */
Holger Schurig53143252008-06-05 13:07:04 +0200582 if (scratch == IF_CS_SCRATCH_HELPER_OK)
Holger Schurig27590d02007-10-03 17:25:41 -0700583 goto done;
584
585 /* "If the value is != 00, it is invalid value of register */
Holger Schurig53143252008-06-05 13:07:04 +0200586 if (scratch != IF_CS_SCRATCH_BOOT_OK) {
Holger Schurig27590d02007-10-03 17:25:41 -0700587 ret = -ENODEV;
588 goto done;
589 }
590
591 /* TODO: make firmware file configurable */
592 ret = request_firmware(&fw, "libertas_cs_helper.fw",
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100593 &card->p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700594 if (ret) {
595 lbs_pr_err("can't load helper firmware\n");
596 ret = -ENODEV;
597 goto done;
598 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700599 lbs_deb_cs("helper size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700600
601 /* "Set the 5 bytes of the helper image to 0" */
602 /* Not needed, this contains an ARM branch instruction */
603
604 for (;;) {
605 /* "the number of bytes to send is 256" */
606 int count = 256;
607 int remain = fw->size - sent;
608
609 if (remain < count)
610 count = remain;
Holger Schurig27590d02007-10-03 17:25:41 -0700611
612 /* "write the number of bytes to be sent to the I/O Command
613 * write length register" */
Holger Schuriga78a8322008-06-05 13:09:50 +0200614 if_cs_write16(card, IF_CS_CMD_LEN, count);
Holger Schurig27590d02007-10-03 17:25:41 -0700615
616 /* "write this to I/O Command port register as 16 bit writes */
617 if (count)
Holger Schuriga78a8322008-06-05 13:09:50 +0200618 if_cs_write16_rep(card, IF_CS_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700619 &fw->data[sent],
620 count >> 1);
621
622 /* "Assert the download over interrupt command in the Host
623 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200624 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700625
626 /* "Assert the download over interrupt command in the Card
627 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200628 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700629
630 /* "The host polls the Card Status register ... for 50 ms before
631 declaring a failure */
Holger Schurig78cf0742008-06-02 09:25:05 +0200632 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
633 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700634 if (ret < 0) {
635 lbs_pr_err("can't download helper at 0x%x, ret %d\n",
636 sent, ret);
Adrian Bunk9a520282008-08-28 01:05:08 +0300637 goto err_release;
Holger Schurig27590d02007-10-03 17:25:41 -0700638 }
639
640 if (count == 0)
641 break;
642
643 sent += count;
644 }
645
Adrian Bunk9a520282008-08-28 01:05:08 +0300646err_release:
Holger Schurig27590d02007-10-03 17:25:41 -0700647 release_firmware(fw);
Holger Schurig27590d02007-10-03 17:25:41 -0700648done:
649 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
650 return ret;
651}
652
653
654static int if_cs_prog_real(struct if_cs_card *card)
655{
656 const struct firmware *fw;
657 int ret = 0;
658 int retry = 0;
659 int len = 0;
660 int sent;
661
662 lbs_deb_enter(LBS_DEB_CS);
663
664 /* TODO: make firmware file configurable */
665 ret = request_firmware(&fw, "libertas_cs.fw",
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100666 &card->p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700667 if (ret) {
668 lbs_pr_err("can't load firmware\n");
669 ret = -ENODEV;
670 goto done;
671 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700672 lbs_deb_cs("fw size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700673
Holger Schuriga78a8322008-06-05 13:09:50 +0200674 ret = if_cs_poll_while_fw_download(card, IF_CS_SQ_READ_LOW,
675 IF_CS_SQ_HELPER_OK);
Holger Schurig27590d02007-10-03 17:25:41 -0700676 if (ret < 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700677 lbs_pr_err("helper firmware doesn't answer\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700678 goto err_release;
679 }
680
681 for (sent = 0; sent < fw->size; sent += len) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200682 len = if_cs_read16(card, IF_CS_SQ_READ_LOW);
Holger Schurig27590d02007-10-03 17:25:41 -0700683 if (len & 1) {
684 retry++;
685 lbs_pr_info("odd, need to retry this firmware block\n");
686 } else {
687 retry = 0;
688 }
689
690 if (retry > 20) {
691 lbs_pr_err("could not download firmware\n");
692 ret = -ENODEV;
693 goto err_release;
694 }
695 if (retry) {
696 sent -= len;
697 }
698
699
Holger Schuriga78a8322008-06-05 13:09:50 +0200700 if_cs_write16(card, IF_CS_CMD_LEN, len);
Holger Schurig27590d02007-10-03 17:25:41 -0700701
Holger Schuriga78a8322008-06-05 13:09:50 +0200702 if_cs_write16_rep(card, IF_CS_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700703 &fw->data[sent],
704 (len+1) >> 1);
Holger Schurig78cf0742008-06-02 09:25:05 +0200705 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
706 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700707
Holger Schurig78cf0742008-06-02 09:25:05 +0200708 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
709 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700710 if (ret < 0) {
711 lbs_pr_err("can't download firmware at 0x%x\n", sent);
712 goto err_release;
713 }
714 }
715
716 ret = if_cs_poll_while_fw_download(card, IF_CS_SCRATCH, 0x5a);
Adrian Bunk9a520282008-08-28 01:05:08 +0300717 if (ret < 0)
Holger Schurig27590d02007-10-03 17:25:41 -0700718 lbs_pr_err("firmware download failed\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700719
720err_release:
721 release_firmware(fw);
722
723done:
724 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
725 return ret;
726}
727
728
729
730/********************************************************************/
731/* Callback functions for libertas.ko */
732/********************************************************************/
733
Holger Schurig27590d02007-10-03 17:25:41 -0700734/* Send commands or data packets to the card */
Holger Schurig69f90322007-11-23 15:43:44 +0100735static int if_cs_host_to_card(struct lbs_private *priv,
736 u8 type,
737 u8 *buf,
738 u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700739{
740 int ret = -1;
741
742 lbs_deb_enter_args(LBS_DEB_CS, "type %d, bytes %d", type, nb);
743
744 switch (type) {
745 case MVMS_DAT:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400746 priv->dnld_sent = DNLD_DATA_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700747 if_cs_send_data(priv, buf, nb);
748 ret = 0;
749 break;
750 case MVMS_CMD:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400751 priv->dnld_sent = DNLD_CMD_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700752 ret = if_cs_send_cmd(priv, buf, nb);
753 break;
754 default:
Harvey Harrisonc94c93d2008-07-28 23:01:34 -0700755 lbs_pr_err("%s: unsupported type %d\n", __func__, type);
Holger Schurig27590d02007-10-03 17:25:41 -0700756 }
757
758 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
759 return ret;
760}
761
762
Holger Schurig27590d02007-10-03 17:25:41 -0700763/********************************************************************/
764/* Card Services */
765/********************************************************************/
766
767/*
768 * After a card is removed, if_cs_release() will unregister the
769 * device, and release the PCMCIA configuration. If the device is
770 * still open, this will be postponed until it is closed.
771 */
772static void if_cs_release(struct pcmcia_device *p_dev)
773{
774 struct if_cs_card *card = p_dev->priv;
775
776 lbs_deb_enter(LBS_DEB_CS);
777
Dominik Brodowskieb141202010-03-07 12:21:16 +0100778 free_irq(p_dev->irq, card);
Holger Schurigfdfb92e2008-01-25 14:15:48 +0100779 pcmcia_disable_device(p_dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700780 if (card->iobase)
781 ioport_unmap(card->iobase);
782
783 lbs_deb_leave(LBS_DEB_CS);
784}
785
786
787/*
788 * This creates an "instance" of the driver, allocating local data
789 * structures for one device. The device is registered with Card
790 * Services.
791 *
792 * The dev_link structure is initialized, but we don't actually
793 * configure the card at this point -- we wait until we receive a card
794 * insertion event.
795 */
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200796
797static int if_cs_ioprobe(struct pcmcia_device *p_dev,
798 cistpl_cftable_entry_t *cfg,
799 cistpl_cftable_entry_t *dflt,
800 unsigned int vcc,
801 void *priv_data)
802{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200803 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
804 p_dev->resource[0]->start = cfg->io.win[0].base;
805 p_dev->resource[0]->end = cfg->io.win[0].len;
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200806
807 /* Do we need to allocate an interrupt? */
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200808 p_dev->config_flags |= CONF_ENABLE_IRQ;
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200809
810 /* IO window settings */
811 if (cfg->io.nwin != 1) {
812 lbs_pr_err("wrong CIS (check number of IO windows)\n");
813 return -ENODEV;
814 }
815
816 /* This reserves IO space but doesn't actually enable it */
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200817 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200818}
819
Holger Schurig27590d02007-10-03 17:25:41 -0700820static int if_cs_probe(struct pcmcia_device *p_dev)
821{
822 int ret = -ENOMEM;
Marek Vasutdc7d2432009-03-24 21:33:43 +0100823 unsigned int prod_id;
Holger Schurig69f90322007-11-23 15:43:44 +0100824 struct lbs_private *priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700825 struct if_cs_card *card;
Holger Schurig27590d02007-10-03 17:25:41 -0700826
827 lbs_deb_enter(LBS_DEB_CS);
828
829 card = kzalloc(sizeof(struct if_cs_card), GFP_KERNEL);
830 if (!card) {
831 lbs_pr_err("error in kzalloc\n");
832 goto out;
833 }
834 card->p_dev = p_dev;
835 p_dev->priv = card;
836
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200837 if (pcmcia_loop_config(p_dev, if_cs_ioprobe, NULL)) {
838 lbs_pr_err("error in pcmcia_loop_config\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700839 goto out1;
840 }
841
Holger Schurig27590d02007-10-03 17:25:41 -0700842 /*
843 * Allocate an interrupt line. Note that this does not assign
844 * a handler to the interrupt, unless the 'Handler' member of
845 * the irq structure is initialized.
846 */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100847 if (!p_dev->irq)
848 goto out1;
Holger Schurig27590d02007-10-03 17:25:41 -0700849
850 /* Initialize io access */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200851 card->iobase = ioport_map(p_dev->resource[0]->start,
852 resource_size(p_dev->resource[0]));
Holger Schurig27590d02007-10-03 17:25:41 -0700853 if (!card->iobase) {
854 lbs_pr_err("error in ioport_map\n");
855 ret = -EIO;
856 goto out1;
857 }
858
859 /*
860 * This actually configures the PCMCIA socket -- setting up
861 * the I/O windows and the interrupt mapping, and putting the
862 * card and host interface into "Memory and IO" mode.
863 */
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200864 ret = pcmcia_enable_device(p_dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700865 if (ret) {
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200866 lbs_pr_err("error in pcmcia_enable_device\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700867 goto out2;
868 }
869
870 /* Finally, report what we've done */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200871 lbs_deb_cs("irq %d, io %pR", p_dev->irq, p_dev->resource[0]);
Holger Schurig27590d02007-10-03 17:25:41 -0700872
Marek Vasut9d453682009-08-21 04:08:16 +0200873 /*
874 * Most of the libertas cards can do unaligned register access, but some
875 * weird ones can not. That's especially true for the CF8305 card.
876 */
877 card->align_regs = 0;
878
Holger Schurig4c555232008-06-05 13:08:35 +0200879 /* Check if we have a current silicon */
Marek Vasutdc7d2432009-03-24 21:33:43 +0100880 prod_id = if_cs_read8(card, IF_CS_PRODUCT_ID);
Marek Vasut9d453682009-08-21 04:08:16 +0200881 if (if_cs_hw_is_cf8305(p_dev)) {
882 card->align_regs = 1;
883 if (prod_id < IF_CS_CF8305_B1_REV) {
884 lbs_pr_err("old chips like 8305 rev B3 "
885 "aren't supported\n");
886 ret = -ENODEV;
887 goto out2;
888 }
889 }
890
Marek Vasutdc7d2432009-03-24 21:33:43 +0100891 if (if_cs_hw_is_cf8381(p_dev) && prod_id < IF_CS_CF8381_B3_REV) {
892 lbs_pr_err("old chips like 8381 rev B3 aren't supported\n");
893 ret = -ENODEV;
894 goto out2;
895 }
896
897 if (if_cs_hw_is_cf8385(p_dev) && prod_id < IF_CS_CF8385_B1_REV) {
Holger Schurig4c555232008-06-05 13:08:35 +0200898 lbs_pr_err("old chips like 8385 rev B1 aren't supported\n");
899 ret = -ENODEV;
900 goto out2;
901 }
Holger Schurig27590d02007-10-03 17:25:41 -0700902
903 /* Load the firmware early, before calling into libertas.ko */
904 ret = if_cs_prog_helper(card);
Marek Vasut9d453682009-08-21 04:08:16 +0200905 if (ret == 0 && !if_cs_hw_is_cf8305(p_dev))
Holger Schurig27590d02007-10-03 17:25:41 -0700906 ret = if_cs_prog_real(card);
907 if (ret)
908 goto out2;
909
910 /* Make this card known to the libertas driver */
Holger Schurig10078322007-11-15 18:05:47 -0500911 priv = lbs_add_card(card, &p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700912 if (!priv) {
913 ret = -ENOMEM;
914 goto out2;
915 }
916
Holger Schurig7919b892008-04-01 14:50:43 +0200917 /* Finish setting up fields in lbs_private */
Dan Williams954ee162007-08-20 11:43:25 -0400918 card->priv = priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700919 priv->card = card;
Holger Schurig7919b892008-04-01 14:50:43 +0200920 priv->hw_host_to_card = if_cs_host_to_card;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700921 priv->enter_deep_sleep = NULL;
922 priv->exit_deep_sleep = NULL;
923 priv->reset_deep_sleep_wakeup = NULL;
David Woodhouseaa21c002007-12-08 20:04:36 +0000924 priv->fw_ready = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400925
Holger Schurig27590d02007-10-03 17:25:41 -0700926 /* Now actually get the IRQ */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100927 ret = request_irq(p_dev->irq, if_cs_interrupt,
Holger Schurig27590d02007-10-03 17:25:41 -0700928 IRQF_SHARED, DRV_NAME, card);
929 if (ret) {
930 lbs_pr_err("error in request_irq\n");
931 goto out3;
932 }
933
Holger Schurig4ef31702007-10-09 10:41:57 +0200934 /* Clear any interrupt cause that happend while sending
935 * firmware/initializing card */
Holger Schurig78cf0742008-06-02 09:25:05 +0200936 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, IF_CS_BIT_MASK);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400937 if_cs_enable_ints(card);
938
Holger Schurig27590d02007-10-03 17:25:41 -0700939 /* And finally bring the card up */
Holger Schurig10078322007-11-15 18:05:47 -0500940 if (lbs_start_card(priv) != 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700941 lbs_pr_err("could not activate card\n");
942 goto out3;
943 }
944
945 ret = 0;
946 goto out;
947
948out3:
Holger Schurig10078322007-11-15 18:05:47 -0500949 lbs_remove_card(priv);
Holger Schurig27590d02007-10-03 17:25:41 -0700950out2:
951 ioport_unmap(card->iobase);
952out1:
953 pcmcia_disable_device(p_dev);
954out:
955 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
956 return ret;
957}
958
959
960/*
961 * This deletes a driver "instance". The device is de-registered with
962 * Card Services. If it has been released, all local data structures
963 * are freed. Otherwise, the structures will be freed when the device
964 * is released.
965 */
966static void if_cs_detach(struct pcmcia_device *p_dev)
967{
968 struct if_cs_card *card = p_dev->priv;
969
970 lbs_deb_enter(LBS_DEB_CS);
971
Holger Schurig10078322007-11-15 18:05:47 -0500972 lbs_stop_card(card->priv);
973 lbs_remove_card(card->priv);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400974 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700975 if_cs_release(p_dev);
976 kfree(card);
977
978 lbs_deb_leave(LBS_DEB_CS);
979}
980
981
982
983/********************************************************************/
984/* Module initialization */
985/********************************************************************/
986
987static struct pcmcia_device_id if_cs_ids[] = {
Marek Vasut9d453682009-08-21 04:08:16 +0200988 PCMCIA_DEVICE_MANF_CARD(CF8305_MANFID, CF8305_CARDID),
Marek Vasutdc7d2432009-03-24 21:33:43 +0100989 PCMCIA_DEVICE_MANF_CARD(CF8381_MANFID, CF8381_CARDID),
990 PCMCIA_DEVICE_MANF_CARD(CF8385_MANFID, CF8385_CARDID),
Holger Schurig27590d02007-10-03 17:25:41 -0700991 PCMCIA_DEVICE_NULL,
992};
993MODULE_DEVICE_TABLE(pcmcia, if_cs_ids);
994
995
Holger Schurig10078322007-11-15 18:05:47 -0500996static struct pcmcia_driver lbs_driver = {
Holger Schurig27590d02007-10-03 17:25:41 -0700997 .owner = THIS_MODULE,
998 .drv = {
999 .name = DRV_NAME,
1000 },
1001 .probe = if_cs_probe,
1002 .remove = if_cs_detach,
1003 .id_table = if_cs_ids,
1004};
1005
1006
1007static int __init if_cs_init(void)
1008{
1009 int ret;
1010
1011 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -05001012 ret = pcmcia_register_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -07001013 lbs_deb_leave(LBS_DEB_CS);
1014 return ret;
1015}
1016
1017
1018static void __exit if_cs_exit(void)
1019{
1020 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -05001021 pcmcia_unregister_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -07001022 lbs_deb_leave(LBS_DEB_CS);
1023}
1024
1025
1026module_init(if_cs_init);
1027module_exit(if_cs_exit);