blob: 9c298396be50b7fe5d0d6f8c6b102ecef441b3f7 [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/cs.h>
32#include <pcmcia/cistpl.h>
33#include <pcmcia/ds.h>
34
35#include <linux/io.h>
36
37#define DRV_NAME "libertas_cs"
38
39#include "decl.h"
40#include "defs.h"
41#include "dev.h"
42
43
44/********************************************************************/
45/* Module stuff */
46/********************************************************************/
47
48MODULE_AUTHOR("Holger Schurig <hs4233@mail.mn-solutions.de>");
49MODULE_DESCRIPTION("Driver for Marvell 83xx compact flash WLAN cards");
50MODULE_LICENSE("GPL");
Ben Hutchingsa974a4b2009-11-07 22:00:03 +000051MODULE_FIRMWARE("libertas_cs_helper.fw");
Holger Schurig27590d02007-10-03 17:25:41 -070052
53
54
55/********************************************************************/
56/* Data structures */
57/********************************************************************/
58
59struct if_cs_card {
60 struct pcmcia_device *p_dev;
Holger Schurig69f90322007-11-23 15:43:44 +010061 struct lbs_private *priv;
Holger Schurig27590d02007-10-03 17:25:41 -070062 void __iomem *iobase;
Marek Vasut9d453682009-08-21 04:08:16 +020063 bool align_regs;
Holger Schurig27590d02007-10-03 17:25:41 -070064};
65
66
67
68/********************************************************************/
69/* Hardware access */
70/********************************************************************/
71
72/* This define enables wrapper functions which allow you
73 to dump all register accesses. You normally won't this,
74 except for development */
75/* #define DEBUG_IO */
76
77#ifdef DEBUG_IO
78static int debug_output = 0;
79#else
80/* This way the compiler optimizes the printk's away */
81#define debug_output 0
82#endif
83
84static inline unsigned int if_cs_read8(struct if_cs_card *card, uint reg)
85{
86 unsigned int val = ioread8(card->iobase + reg);
87 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020088 printk(KERN_INFO "inb %08x<%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070089 return val;
90}
91static inline unsigned int if_cs_read16(struct if_cs_card *card, uint reg)
92{
93 unsigned int val = ioread16(card->iobase + reg);
94 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020095 printk(KERN_INFO "inw %08x<%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070096 return val;
97}
98static inline void if_cs_read16_rep(
99 struct if_cs_card *card,
100 uint reg,
101 void *buf,
102 unsigned long count)
103{
104 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200105 printk(KERN_INFO "insw %08x<(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700106 reg, count);
107 ioread16_rep(card->iobase + reg, buf, count);
108}
109
110static inline void if_cs_write8(struct if_cs_card *card, uint reg, u8 val)
111{
112 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200113 printk(KERN_INFO "outb %08x>%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700114 iowrite8(val, card->iobase + reg);
115}
116
117static inline void if_cs_write16(struct if_cs_card *card, uint reg, u16 val)
118{
119 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200120 printk(KERN_INFO "outw %08x>%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700121 iowrite16(val, card->iobase + reg);
122}
123
124static inline void if_cs_write16_rep(
125 struct if_cs_card *card,
126 uint reg,
David Woodhouse6dfff892008-05-23 18:37:51 +0100127 const void *buf,
Holger Schurig27590d02007-10-03 17:25:41 -0700128 unsigned long count)
129{
130 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200131 printk(KERN_INFO "outsw %08x>(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700132 reg, count);
133 iowrite16_rep(card->iobase + reg, buf, count);
134}
135
136
137/*
138 * I know that polling/delaying is frowned upon. However, this procedure
139 * with polling is needed while downloading the firmware. At this stage,
140 * the hardware does unfortunately not create any interrupts.
141 *
142 * Fortunately, this function is never used once the firmware is in
143 * the card. :-)
144 *
145 * As a reference, see the "Firmware Specification v5.1", page 18
146 * and 19. I did not follow their suggested timing to the word,
147 * but this works nice & fast anyway.
148 */
149static int if_cs_poll_while_fw_download(struct if_cs_card *card, uint addr, u8 reg)
150{
151 int i;
152
Holger Schurig93416c82008-05-23 10:18:26 +0200153 for (i = 0; i < 100000; i++) {
Holger Schurig27590d02007-10-03 17:25:41 -0700154 u8 val = if_cs_read8(card, addr);
155 if (val == reg)
Dan Williams1fac36e2009-01-23 11:55:33 -0500156 return 0;
Holger Schurig93416c82008-05-23 10:18:26 +0200157 udelay(5);
Holger Schurig27590d02007-10-03 17:25:41 -0700158 }
159 return -ETIME;
160}
161
162
163
Holger Schurig53143252008-06-05 13:07:04 +0200164/*
165 * First the bitmasks for the host/card interrupt/status registers:
166 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200167#define IF_CS_BIT_TX 0x0001
168#define IF_CS_BIT_RX 0x0002
169#define IF_CS_BIT_COMMAND 0x0004
170#define IF_CS_BIT_RESP 0x0008
171#define IF_CS_BIT_EVENT 0x0010
172#define IF_CS_BIT_MASK 0x001f
Holger Schurig27590d02007-10-03 17:25:41 -0700173
Holger Schurig53143252008-06-05 13:07:04 +0200174
175
176/*
177 * It's not really clear to me what the host status register is for. It
178 * needs to be set almost in union with "host int cause". The following
179 * bits from above are used:
180 *
181 * IF_CS_BIT_TX driver downloaded a data packet
182 * IF_CS_BIT_RX driver got a data packet
183 * IF_CS_BIT_COMMAND driver downloaded a command
184 * IF_CS_BIT_RESP not used (has some meaning with powerdown)
185 * IF_CS_BIT_EVENT driver read a host event
186 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200187#define IF_CS_HOST_STATUS 0x00000000
Holger Schurig27590d02007-10-03 17:25:41 -0700188
Holger Schurig53143252008-06-05 13:07:04 +0200189/*
190 * With the host int cause register can the host (that is, Linux) cause
191 * an interrupt in the firmware, to tell the firmware about those events:
192 *
193 * IF_CS_BIT_TX a data packet has been downloaded
194 * IF_CS_BIT_RX a received data packet has retrieved
195 * IF_CS_BIT_COMMAND a firmware block or a command has been downloaded
196 * IF_CS_BIT_RESP not used (has some meaning with powerdown)
197 * IF_CS_BIT_EVENT a host event (link lost etc) has been retrieved
198 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200199#define IF_CS_HOST_INT_CAUSE 0x00000002
Holger Schurig27590d02007-10-03 17:25:41 -0700200
Holger Schurig53143252008-06-05 13:07:04 +0200201/*
202 * The host int mask register is used to enable/disable interrupt. However,
203 * I have the suspicion that disabled interrupts are lost.
204 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200205#define IF_CS_HOST_INT_MASK 0x00000004
Holger Schurig27590d02007-10-03 17:25:41 -0700206
Holger Schurig53143252008-06-05 13:07:04 +0200207/*
208 * Used to send or receive data packets:
209 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200210#define IF_CS_WRITE 0x00000016
211#define IF_CS_WRITE_LEN 0x00000014
Holger Schurig78cf0742008-06-02 09:25:05 +0200212#define IF_CS_READ 0x00000010
213#define IF_CS_READ_LEN 0x00000024
Holger Schurig27590d02007-10-03 17:25:41 -0700214
Holger Schurig53143252008-06-05 13:07:04 +0200215/*
216 * Used to send commands (and to send firmware block) and to
217 * receive command responses:
218 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200219#define IF_CS_CMD 0x0000001A
220#define IF_CS_CMD_LEN 0x00000018
221#define IF_CS_RESP 0x00000012
222#define IF_CS_RESP_LEN 0x00000030
Holger Schurig27590d02007-10-03 17:25:41 -0700223
Holger Schurig53143252008-06-05 13:07:04 +0200224/*
225 * The card status registers shows what the card/firmware actually
226 * accepts:
227 *
228 * IF_CS_BIT_TX you may send a data packet
229 * IF_CS_BIT_RX you may retrieve a data packet
230 * IF_CS_BIT_COMMAND you may send a command
231 * IF_CS_BIT_RESP you may retrieve a command response
232 * IF_CS_BIT_EVENT the card has a event for use (link lost, snr low etc)
233 *
234 * When reading this register several times, you will get back the same
235 * results --- with one exception: the IF_CS_BIT_EVENT clear itself
236 * automatically.
237 *
238 * Not that we don't rely on BIT_RX,_BIT_RESP or BIT_EVENT because
239 * we handle this via the card int cause register.
240 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200241#define IF_CS_CARD_STATUS 0x00000020
242#define IF_CS_CARD_STATUS_MASK 0x7f00
Holger Schurig27590d02007-10-03 17:25:41 -0700243
Holger Schurig53143252008-06-05 13:07:04 +0200244/*
245 * The card int cause register is used by the card/firmware to notify us
246 * about the following events:
247 *
248 * IF_CS_BIT_TX a data packet has successfully been sentx
249 * IF_CS_BIT_RX a data packet has been received and can be retrieved
250 * IF_CS_BIT_COMMAND not used
251 * IF_CS_BIT_RESP the firmware has a command response for us
252 * IF_CS_BIT_EVENT the card has a event for use (link lost, snr low etc)
253 */
Holger Schurig78cf0742008-06-02 09:25:05 +0200254#define IF_CS_CARD_INT_CAUSE 0x00000022
Holger Schurig27590d02007-10-03 17:25:41 -0700255
Holger Schurig53143252008-06-05 13:07:04 +0200256/*
257 * This is used to for handshaking with the card's bootloader/helper image
258 * to synchronize downloading of firmware blocks.
259 */
Holger Schuriga78a8322008-06-05 13:09:50 +0200260#define IF_CS_SQ_READ_LOW 0x00000028
261#define IF_CS_SQ_HELPER_OK 0x10
Holger Schurig27590d02007-10-03 17:25:41 -0700262
Holger Schurig53143252008-06-05 13:07:04 +0200263/*
264 * The scratch register tells us ...
265 *
266 * IF_CS_SCRATCH_BOOT_OK the bootloader runs
267 * IF_CS_SCRATCH_HELPER_OK the helper firmware already runs
268 */
Holger Schurig27590d02007-10-03 17:25:41 -0700269#define IF_CS_SCRATCH 0x0000003F
Holger Schurig53143252008-06-05 13:07:04 +0200270#define IF_CS_SCRATCH_BOOT_OK 0x00
271#define IF_CS_SCRATCH_HELPER_OK 0x5a
Holger Schurig27590d02007-10-03 17:25:41 -0700272
Holger Schurig4c555232008-06-05 13:08:35 +0200273/*
274 * Used to detect ancient chips:
275 */
276#define IF_CS_PRODUCT_ID 0x0000001C
277#define IF_CS_CF8385_B1_REV 0x12
Marek Vasutdc7d2432009-03-24 21:33:43 +0100278#define IF_CS_CF8381_B3_REV 0x04
Marek Vasut9d453682009-08-21 04:08:16 +0200279#define IF_CS_CF8305_B1_REV 0x03
Holger Schurig4c555232008-06-05 13:08:35 +0200280
Marek Vasutdc7d2432009-03-24 21:33:43 +0100281/*
282 * Used to detect other cards than CF8385 since their revisions of silicon
283 * doesn't match those from CF8385, eg. CF8381 B3 works with this driver.
284 */
Marek Vasut9d453682009-08-21 04:08:16 +0200285#define CF8305_MANFID 0x02db
286#define CF8305_CARDID 0x8103
Marek Vasutdc7d2432009-03-24 21:33:43 +0100287#define CF8381_MANFID 0x02db
288#define CF8381_CARDID 0x6064
289#define CF8385_MANFID 0x02df
290#define CF8385_CARDID 0x8103
291
Marek Vasut9d453682009-08-21 04:08:16 +0200292static inline int if_cs_hw_is_cf8305(struct pcmcia_device *p_dev)
293{
294 return (p_dev->manf_id == CF8305_MANFID &&
295 p_dev->card_id == CF8305_CARDID);
296}
297
Marek Vasutdc7d2432009-03-24 21:33:43 +0100298static inline int if_cs_hw_is_cf8381(struct pcmcia_device *p_dev)
299{
300 return (p_dev->manf_id == CF8381_MANFID &&
301 p_dev->card_id == CF8381_CARDID);
302}
303
304static inline int if_cs_hw_is_cf8385(struct pcmcia_device *p_dev)
305{
306 return (p_dev->manf_id == CF8385_MANFID &&
307 p_dev->card_id == CF8385_CARDID);
308}
Holger Schurig27590d02007-10-03 17:25:41 -0700309
310/********************************************************************/
Holger Schurig43d01c52008-05-26 12:50:23 +0200311/* I/O and interrupt handling */
Holger Schurig27590d02007-10-03 17:25:41 -0700312/********************************************************************/
313
Holger Schurig43d01c52008-05-26 12:50:23 +0200314static inline void if_cs_enable_ints(struct if_cs_card *card)
315{
316 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200317 if_cs_write16(card, IF_CS_HOST_INT_MASK, 0);
Holger Schurig43d01c52008-05-26 12:50:23 +0200318}
319
320static inline void if_cs_disable_ints(struct if_cs_card *card)
321{
322 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200323 if_cs_write16(card, IF_CS_HOST_INT_MASK, IF_CS_BIT_MASK);
Holger Schurig43d01c52008-05-26 12:50:23 +0200324}
325
Holger Schurig27590d02007-10-03 17:25:41 -0700326/*
327 * Called from if_cs_host_to_card to send a command to the hardware
328 */
Holger Schurig69f90322007-11-23 15:43:44 +0100329static int if_cs_send_cmd(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700330{
331 struct if_cs_card *card = (struct if_cs_card *)priv->card;
332 int ret = -1;
333 int loops = 0;
334
335 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200336 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700337
338 /* Is hardware ready? */
339 while (1) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200340 u16 status = if_cs_read16(card, IF_CS_CARD_STATUS);
341 if (status & IF_CS_BIT_COMMAND)
Holger Schurig27590d02007-10-03 17:25:41 -0700342 break;
343 if (++loops > 100) {
344 lbs_pr_err("card not ready for commands\n");
345 goto done;
346 }
347 mdelay(1);
348 }
349
Holger Schuriga78a8322008-06-05 13:09:50 +0200350 if_cs_write16(card, IF_CS_CMD_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700351
Holger Schuriga78a8322008-06-05 13:09:50 +0200352 if_cs_write16_rep(card, IF_CS_CMD, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700353 /* Are we supposed to transfer an odd amount of bytes? */
354 if (nb & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200355 if_cs_write8(card, IF_CS_CMD, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700356
357 /* "Assert the download over interrupt command in the Host
358 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200359 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700360
361 /* "Assert the download over interrupt command in the Card
362 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200363 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700364 ret = 0;
365
366done:
Holger Schurig43d01c52008-05-26 12:50:23 +0200367 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700368 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
369 return ret;
370}
371
Holger Schurig27590d02007-10-03 17:25:41 -0700372/*
373 * Called from if_cs_host_to_card to send a data to the hardware
374 */
Holger Schurig69f90322007-11-23 15:43:44 +0100375static void if_cs_send_data(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700376{
377 struct if_cs_card *card = (struct if_cs_card *)priv->card;
Holger Schurig43d01c52008-05-26 12:50:23 +0200378 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700379
380 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200381 if_cs_disable_ints(card);
382
Holger Schurig78cf0742008-06-02 09:25:05 +0200383 status = if_cs_read16(card, IF_CS_CARD_STATUS);
384 BUG_ON((status & IF_CS_BIT_TX) == 0);
Holger Schurig27590d02007-10-03 17:25:41 -0700385
Holger Schuriga78a8322008-06-05 13:09:50 +0200386 if_cs_write16(card, IF_CS_WRITE_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700387
388 /* write even number of bytes, then odd byte if necessary */
Holger Schuriga78a8322008-06-05 13:09:50 +0200389 if_cs_write16_rep(card, IF_CS_WRITE, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700390 if (nb & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200391 if_cs_write8(card, IF_CS_WRITE, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700392
Holger Schurig78cf0742008-06-02 09:25:05 +0200393 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_TX);
394 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_TX);
Holger Schurig43d01c52008-05-26 12:50:23 +0200395 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700396
397 lbs_deb_leave(LBS_DEB_CS);
398}
399
Holger Schurig27590d02007-10-03 17:25:41 -0700400/*
401 * Get the command result out of the card.
402 */
Holger Schurig69f90322007-11-23 15:43:44 +0100403static int if_cs_receive_cmdres(struct lbs_private *priv, u8 *data, u32 *len)
Holger Schurig27590d02007-10-03 17:25:41 -0700404{
Holger Schurig7919b892008-04-01 14:50:43 +0200405 unsigned long flags;
Holger Schurig27590d02007-10-03 17:25:41 -0700406 int ret = -1;
Holger Schurig78cf0742008-06-02 09:25:05 +0200407 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700408
409 lbs_deb_enter(LBS_DEB_CS);
410
411 /* is hardware ready? */
Holger Schurig78cf0742008-06-02 09:25:05 +0200412 status = if_cs_read16(priv->card, IF_CS_CARD_STATUS);
413 if ((status & IF_CS_BIT_RESP) == 0) {
414 lbs_pr_err("no cmd response in card\n");
415 *len = 0;
Holger Schurig27590d02007-10-03 17:25:41 -0700416 goto out;
417 }
418
Holger Schuriga78a8322008-06-05 13:09:50 +0200419 *len = if_cs_read16(priv->card, IF_CS_RESP_LEN);
Dan Williamsddac4522007-12-11 13:49:39 -0500420 if ((*len == 0) || (*len > LBS_CMD_BUFFER_SIZE)) {
Holger Schurig27590d02007-10-03 17:25:41 -0700421 lbs_pr_err("card cmd buffer has invalid # of bytes (%d)\n", *len);
422 goto out;
423 }
424
425 /* read even number of bytes, then odd byte if necessary */
Holger Schuriga78a8322008-06-05 13:09:50 +0200426 if_cs_read16_rep(priv->card, IF_CS_RESP, data, *len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700427 if (*len & 1)
Holger Schuriga78a8322008-06-05 13:09:50 +0200428 data[*len-1] = if_cs_read8(priv->card, IF_CS_RESP);
Holger Schurig27590d02007-10-03 17:25:41 -0700429
Holger Schurig09d4fad2007-12-06 13:50:30 +0100430 /* This is a workaround for a firmware that reports too much
431 * bytes */
432 *len -= 8;
Holger Schurig27590d02007-10-03 17:25:41 -0700433 ret = 0;
Holger Schurig7919b892008-04-01 14:50:43 +0200434
435 /* Clear this flag again */
436 spin_lock_irqsave(&priv->driver_lock, flags);
437 priv->dnld_sent = DNLD_RES_RECEIVED;
438 spin_unlock_irqrestore(&priv->driver_lock, flags);
439
Holger Schurig27590d02007-10-03 17:25:41 -0700440out:
441 lbs_deb_leave_args(LBS_DEB_CS, "ret %d, len %d", ret, *len);
442 return ret;
443}
444
Holger Schurig69f90322007-11-23 15:43:44 +0100445static struct sk_buff *if_cs_receive_data(struct lbs_private *priv)
Holger Schurig27590d02007-10-03 17:25:41 -0700446{
447 struct sk_buff *skb = NULL;
448 u16 len;
449 u8 *data;
450
451 lbs_deb_enter(LBS_DEB_CS);
452
Holger Schurig78cf0742008-06-02 09:25:05 +0200453 len = if_cs_read16(priv->card, IF_CS_READ_LEN);
Holger Schurig27590d02007-10-03 17:25:41 -0700454 if (len == 0 || len > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE) {
455 lbs_pr_err("card data buffer has invalid # of bytes (%d)\n", len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000456 priv->dev->stats.rx_dropped++;
Holger Schurig27590d02007-10-03 17:25:41 -0700457 goto dat_err;
458 }
459
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400460 skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700461 if (!skb)
462 goto out;
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400463 skb_put(skb, len);
464 skb_reserve(skb, 2);/* 16 byte align */
465 data = skb->data;
Holger Schurig27590d02007-10-03 17:25:41 -0700466
467 /* read even number of bytes, then odd byte if necessary */
Holger Schurig78cf0742008-06-02 09:25:05 +0200468 if_cs_read16_rep(priv->card, IF_CS_READ, data, len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700469 if (len & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200470 data[len-1] = if_cs_read8(priv->card, IF_CS_READ);
Holger Schurig27590d02007-10-03 17:25:41 -0700471
472dat_err:
Holger Schurig78cf0742008-06-02 09:25:05 +0200473 if_cs_write16(priv->card, IF_CS_HOST_STATUS, IF_CS_BIT_RX);
474 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_RX);
Holger Schurig27590d02007-10-03 17:25:41 -0700475
476out:
477 lbs_deb_leave_args(LBS_DEB_CS, "ret %p", skb);
478 return skb;
479}
480
Holger Schurig7919b892008-04-01 14:50:43 +0200481static irqreturn_t if_cs_interrupt(int irq, void *data)
482{
483 struct if_cs_card *card = data;
484 struct lbs_private *priv = card->priv;
485 u16 cause;
486
487 lbs_deb_enter(LBS_DEB_CS);
488
Holger Schurig43d01c52008-05-26 12:50:23 +0200489 /* Ask card interrupt cause register if there is something for us */
Holger Schurig78cf0742008-06-02 09:25:05 +0200490 cause = if_cs_read16(card, IF_CS_CARD_INT_CAUSE);
Holger Schurig30735562008-06-05 13:06:15 +0200491 lbs_deb_cs("cause 0x%04x\n", cause);
492
Holger Schurig7919b892008-04-01 14:50:43 +0200493 if (cause == 0) {
494 /* Not for us */
495 return IRQ_NONE;
496 }
497
498 if (cause == 0xffff) {
499 /* Read in junk, the card has probably been removed */
500 card->priv->surpriseremoved = 1;
501 return IRQ_HANDLED;
502 }
503
Holger Schurig78cf0742008-06-02 09:25:05 +0200504 if (cause & IF_CS_BIT_RX) {
Holger Schurig7919b892008-04-01 14:50:43 +0200505 struct sk_buff *skb;
506 lbs_deb_cs("rx packet\n");
507 skb = if_cs_receive_data(priv);
508 if (skb)
509 lbs_process_rxed_packet(priv, skb);
510 }
511
Holger Schurig78cf0742008-06-02 09:25:05 +0200512 if (cause & IF_CS_BIT_TX) {
Holger Schurig43d01c52008-05-26 12:50:23 +0200513 lbs_deb_cs("tx done\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200514 lbs_host_to_card_done(priv);
515 }
516
Holger Schurig78cf0742008-06-02 09:25:05 +0200517 if (cause & IF_CS_BIT_RESP) {
Holger Schurig7919b892008-04-01 14:50:43 +0200518 unsigned long flags;
519 u8 i;
520
Holger Schurig43d01c52008-05-26 12:50:23 +0200521 lbs_deb_cs("cmd resp\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200522 spin_lock_irqsave(&priv->driver_lock, flags);
523 i = (priv->resp_idx == 0) ? 1 : 0;
524 spin_unlock_irqrestore(&priv->driver_lock, flags);
525
526 BUG_ON(priv->resp_len[i]);
527 if_cs_receive_cmdres(priv, priv->resp_buf[i],
528 &priv->resp_len[i]);
529
530 spin_lock_irqsave(&priv->driver_lock, flags);
531 lbs_notify_command_response(priv, i);
532 spin_unlock_irqrestore(&priv->driver_lock, flags);
533 }
534
Holger Schurig78cf0742008-06-02 09:25:05 +0200535 if (cause & IF_CS_BIT_EVENT) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200536 u16 status = if_cs_read16(priv->card, IF_CS_CARD_STATUS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200537 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE,
538 IF_CS_BIT_EVENT);
Holger Schuriga78a8322008-06-05 13:09:50 +0200539 lbs_queue_event(priv, (status & IF_CS_CARD_STATUS_MASK) >> 8);
Holger Schurig7919b892008-04-01 14:50:43 +0200540 }
541
Holger Schurig30735562008-06-05 13:06:15 +0200542 /* Clear interrupt cause */
543 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, cause & IF_CS_BIT_MASK);
544
Holger Schurig43d01c52008-05-26 12:50:23 +0200545 lbs_deb_leave(LBS_DEB_CS);
Holger Schurig7919b892008-04-01 14:50:43 +0200546 return IRQ_HANDLED;
547}
548
549
550
551
552/********************************************************************/
Holger Schurig27590d02007-10-03 17:25:41 -0700553/* Firmware */
554/********************************************************************/
555
556/*
557 * Tries to program the helper firmware.
558 *
559 * Return 0 on success
560 */
561static int if_cs_prog_helper(struct if_cs_card *card)
562{
563 int ret = 0;
564 int sent = 0;
565 u8 scratch;
566 const struct firmware *fw;
567
568 lbs_deb_enter(LBS_DEB_CS);
569
Marek Vasut9d453682009-08-21 04:08:16 +0200570 /*
571 * This is the only place where an unaligned register access happens on
572 * the CF8305 card, therefore for the sake of speed of the driver, we do
573 * the alignment correction here.
574 */
575 if (card->align_regs)
576 scratch = if_cs_read16(card, IF_CS_SCRATCH) >> 8;
577 else
578 scratch = if_cs_read8(card, IF_CS_SCRATCH);
Holger Schurig27590d02007-10-03 17:25:41 -0700579
580 /* "If the value is 0x5a, the firmware is already
581 * downloaded successfully"
582 */
Holger Schurig53143252008-06-05 13:07:04 +0200583 if (scratch == IF_CS_SCRATCH_HELPER_OK)
Holger Schurig27590d02007-10-03 17:25:41 -0700584 goto done;
585
586 /* "If the value is != 00, it is invalid value of register */
Holger Schurig53143252008-06-05 13:07:04 +0200587 if (scratch != IF_CS_SCRATCH_BOOT_OK) {
Holger Schurig27590d02007-10-03 17:25:41 -0700588 ret = -ENODEV;
589 goto done;
590 }
591
592 /* TODO: make firmware file configurable */
593 ret = request_firmware(&fw, "libertas_cs_helper.fw",
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100594 &card->p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700595 if (ret) {
596 lbs_pr_err("can't load helper firmware\n");
597 ret = -ENODEV;
598 goto done;
599 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700600 lbs_deb_cs("helper size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700601
602 /* "Set the 5 bytes of the helper image to 0" */
603 /* Not needed, this contains an ARM branch instruction */
604
605 for (;;) {
606 /* "the number of bytes to send is 256" */
607 int count = 256;
608 int remain = fw->size - sent;
609
610 if (remain < count)
611 count = remain;
Holger Schurig27590d02007-10-03 17:25:41 -0700612
613 /* "write the number of bytes to be sent to the I/O Command
614 * write length register" */
Holger Schuriga78a8322008-06-05 13:09:50 +0200615 if_cs_write16(card, IF_CS_CMD_LEN, count);
Holger Schurig27590d02007-10-03 17:25:41 -0700616
617 /* "write this to I/O Command port register as 16 bit writes */
618 if (count)
Holger Schuriga78a8322008-06-05 13:09:50 +0200619 if_cs_write16_rep(card, IF_CS_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700620 &fw->data[sent],
621 count >> 1);
622
623 /* "Assert the download over interrupt command in the Host
624 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200625 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700626
627 /* "Assert the download over interrupt command in the Card
628 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200629 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700630
631 /* "The host polls the Card Status register ... for 50 ms before
632 declaring a failure */
Holger Schurig78cf0742008-06-02 09:25:05 +0200633 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
634 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700635 if (ret < 0) {
636 lbs_pr_err("can't download helper at 0x%x, ret %d\n",
637 sent, ret);
Adrian Bunk9a520282008-08-28 01:05:08 +0300638 goto err_release;
Holger Schurig27590d02007-10-03 17:25:41 -0700639 }
640
641 if (count == 0)
642 break;
643
644 sent += count;
645 }
646
Adrian Bunk9a520282008-08-28 01:05:08 +0300647err_release:
Holger Schurig27590d02007-10-03 17:25:41 -0700648 release_firmware(fw);
Holger Schurig27590d02007-10-03 17:25:41 -0700649done:
650 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
651 return ret;
652}
653
654
655static int if_cs_prog_real(struct if_cs_card *card)
656{
657 const struct firmware *fw;
658 int ret = 0;
659 int retry = 0;
660 int len = 0;
661 int sent;
662
663 lbs_deb_enter(LBS_DEB_CS);
664
665 /* TODO: make firmware file configurable */
666 ret = request_firmware(&fw, "libertas_cs.fw",
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100667 &card->p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700668 if (ret) {
669 lbs_pr_err("can't load firmware\n");
670 ret = -ENODEV;
671 goto done;
672 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700673 lbs_deb_cs("fw size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700674
Holger Schuriga78a8322008-06-05 13:09:50 +0200675 ret = if_cs_poll_while_fw_download(card, IF_CS_SQ_READ_LOW,
676 IF_CS_SQ_HELPER_OK);
Holger Schurig27590d02007-10-03 17:25:41 -0700677 if (ret < 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700678 lbs_pr_err("helper firmware doesn't answer\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700679 goto err_release;
680 }
681
682 for (sent = 0; sent < fw->size; sent += len) {
Holger Schuriga78a8322008-06-05 13:09:50 +0200683 len = if_cs_read16(card, IF_CS_SQ_READ_LOW);
Holger Schurig27590d02007-10-03 17:25:41 -0700684 if (len & 1) {
685 retry++;
686 lbs_pr_info("odd, need to retry this firmware block\n");
687 } else {
688 retry = 0;
689 }
690
691 if (retry > 20) {
692 lbs_pr_err("could not download firmware\n");
693 ret = -ENODEV;
694 goto err_release;
695 }
696 if (retry) {
697 sent -= len;
698 }
699
700
Holger Schuriga78a8322008-06-05 13:09:50 +0200701 if_cs_write16(card, IF_CS_CMD_LEN, len);
Holger Schurig27590d02007-10-03 17:25:41 -0700702
Holger Schuriga78a8322008-06-05 13:09:50 +0200703 if_cs_write16_rep(card, IF_CS_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700704 &fw->data[sent],
705 (len+1) >> 1);
Holger Schurig78cf0742008-06-02 09:25:05 +0200706 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
707 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700708
Holger Schurig78cf0742008-06-02 09:25:05 +0200709 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
710 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700711 if (ret < 0) {
712 lbs_pr_err("can't download firmware at 0x%x\n", sent);
713 goto err_release;
714 }
715 }
716
717 ret = if_cs_poll_while_fw_download(card, IF_CS_SCRATCH, 0x5a);
Adrian Bunk9a520282008-08-28 01:05:08 +0300718 if (ret < 0)
Holger Schurig27590d02007-10-03 17:25:41 -0700719 lbs_pr_err("firmware download failed\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700720
721err_release:
722 release_firmware(fw);
723
724done:
725 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
726 return ret;
727}
728
729
730
731/********************************************************************/
732/* Callback functions for libertas.ko */
733/********************************************************************/
734
Holger Schurig27590d02007-10-03 17:25:41 -0700735/* Send commands or data packets to the card */
Holger Schurig69f90322007-11-23 15:43:44 +0100736static int if_cs_host_to_card(struct lbs_private *priv,
737 u8 type,
738 u8 *buf,
739 u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700740{
741 int ret = -1;
742
743 lbs_deb_enter_args(LBS_DEB_CS, "type %d, bytes %d", type, nb);
744
745 switch (type) {
746 case MVMS_DAT:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400747 priv->dnld_sent = DNLD_DATA_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700748 if_cs_send_data(priv, buf, nb);
749 ret = 0;
750 break;
751 case MVMS_CMD:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400752 priv->dnld_sent = DNLD_CMD_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700753 ret = if_cs_send_cmd(priv, buf, nb);
754 break;
755 default:
Harvey Harrisonc94c93d2008-07-28 23:01:34 -0700756 lbs_pr_err("%s: unsupported type %d\n", __func__, type);
Holger Schurig27590d02007-10-03 17:25:41 -0700757 }
758
759 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
760 return ret;
761}
762
763
Holger Schurig27590d02007-10-03 17:25:41 -0700764/********************************************************************/
765/* Card Services */
766/********************************************************************/
767
768/*
769 * After a card is removed, if_cs_release() will unregister the
770 * device, and release the PCMCIA configuration. If the device is
771 * still open, this will be postponed until it is closed.
772 */
773static void if_cs_release(struct pcmcia_device *p_dev)
774{
775 struct if_cs_card *card = p_dev->priv;
776
777 lbs_deb_enter(LBS_DEB_CS);
778
Dominik Brodowskieb141202010-03-07 12:21:16 +0100779 free_irq(p_dev->irq, card);
Holger Schurigfdfb92e2008-01-25 14:15:48 +0100780 pcmcia_disable_device(p_dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700781 if (card->iobase)
782 ioport_unmap(card->iobase);
783
784 lbs_deb_leave(LBS_DEB_CS);
785}
786
787
788/*
789 * This creates an "instance" of the driver, allocating local data
790 * structures for one device. The device is registered with Card
791 * Services.
792 *
793 * The dev_link structure is initialized, but we don't actually
794 * configure the card at this point -- we wait until we receive a card
795 * insertion event.
796 */
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200797
798static int if_cs_ioprobe(struct pcmcia_device *p_dev,
799 cistpl_cftable_entry_t *cfg,
800 cistpl_cftable_entry_t *dflt,
801 unsigned int vcc,
802 void *priv_data)
803{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200804 p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
805 p_dev->resource[0]->start = cfg->io.win[0].base;
806 p_dev->resource[0]->end = cfg->io.win[0].len;
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200807
808 /* Do we need to allocate an interrupt? */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100809 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200810
811 /* IO window settings */
812 if (cfg->io.nwin != 1) {
813 lbs_pr_err("wrong CIS (check number of IO windows)\n");
814 return -ENODEV;
815 }
816
817 /* This reserves IO space but doesn't actually enable it */
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200818 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200819}
820
Holger Schurig27590d02007-10-03 17:25:41 -0700821static int if_cs_probe(struct pcmcia_device *p_dev)
822{
823 int ret = -ENOMEM;
Marek Vasutdc7d2432009-03-24 21:33:43 +0100824 unsigned int prod_id;
Holger Schurig69f90322007-11-23 15:43:44 +0100825 struct lbs_private *priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700826 struct if_cs_card *card;
Holger Schurig27590d02007-10-03 17:25:41 -0700827
828 lbs_deb_enter(LBS_DEB_CS);
829
830 card = kzalloc(sizeof(struct if_cs_card), GFP_KERNEL);
831 if (!card) {
832 lbs_pr_err("error in kzalloc\n");
833 goto out;
834 }
835 card->p_dev = p_dev;
836 p_dev->priv = card;
837
Holger Schurig27590d02007-10-03 17:25:41 -0700838 p_dev->conf.Attributes = 0;
839 p_dev->conf.IntType = INT_MEMORY_AND_IO;
840
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200841 if (pcmcia_loop_config(p_dev, if_cs_ioprobe, NULL)) {
842 lbs_pr_err("error in pcmcia_loop_config\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700843 goto out1;
844 }
845
Holger Schurig27590d02007-10-03 17:25:41 -0700846
847 /*
848 * Allocate an interrupt line. Note that this does not assign
849 * a handler to the interrupt, unless the 'Handler' member of
850 * the irq structure is initialized.
851 */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100852 if (!p_dev->irq)
853 goto out1;
Holger Schurig27590d02007-10-03 17:25:41 -0700854
855 /* Initialize io access */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200856 card->iobase = ioport_map(p_dev->resource[0]->start,
857 resource_size(p_dev->resource[0]));
Holger Schurig27590d02007-10-03 17:25:41 -0700858 if (!card->iobase) {
859 lbs_pr_err("error in ioport_map\n");
860 ret = -EIO;
861 goto out1;
862 }
863
864 /*
865 * This actually configures the PCMCIA socket -- setting up
866 * the I/O windows and the interrupt mapping, and putting the
867 * card and host interface into "Memory and IO" mode.
868 */
869 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
870 if (ret) {
871 lbs_pr_err("error in pcmcia_request_configuration\n");
872 goto out2;
873 }
874
875 /* Finally, report what we've done */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200876 lbs_deb_cs("irq %d, io %pR", p_dev->irq, p_dev->resource[0]);
Holger Schurig27590d02007-10-03 17:25:41 -0700877
Marek Vasut9d453682009-08-21 04:08:16 +0200878 /*
879 * Most of the libertas cards can do unaligned register access, but some
880 * weird ones can not. That's especially true for the CF8305 card.
881 */
882 card->align_regs = 0;
883
Holger Schurig4c555232008-06-05 13:08:35 +0200884 /* Check if we have a current silicon */
Marek Vasutdc7d2432009-03-24 21:33:43 +0100885 prod_id = if_cs_read8(card, IF_CS_PRODUCT_ID);
Marek Vasut9d453682009-08-21 04:08:16 +0200886 if (if_cs_hw_is_cf8305(p_dev)) {
887 card->align_regs = 1;
888 if (prod_id < IF_CS_CF8305_B1_REV) {
889 lbs_pr_err("old chips like 8305 rev B3 "
890 "aren't supported\n");
891 ret = -ENODEV;
892 goto out2;
893 }
894 }
895
Marek Vasutdc7d2432009-03-24 21:33:43 +0100896 if (if_cs_hw_is_cf8381(p_dev) && prod_id < IF_CS_CF8381_B3_REV) {
897 lbs_pr_err("old chips like 8381 rev B3 aren't supported\n");
898 ret = -ENODEV;
899 goto out2;
900 }
901
902 if (if_cs_hw_is_cf8385(p_dev) && prod_id < IF_CS_CF8385_B1_REV) {
Holger Schurig4c555232008-06-05 13:08:35 +0200903 lbs_pr_err("old chips like 8385 rev B1 aren't supported\n");
904 ret = -ENODEV;
905 goto out2;
906 }
Holger Schurig27590d02007-10-03 17:25:41 -0700907
908 /* Load the firmware early, before calling into libertas.ko */
909 ret = if_cs_prog_helper(card);
Marek Vasut9d453682009-08-21 04:08:16 +0200910 if (ret == 0 && !if_cs_hw_is_cf8305(p_dev))
Holger Schurig27590d02007-10-03 17:25:41 -0700911 ret = if_cs_prog_real(card);
912 if (ret)
913 goto out2;
914
915 /* Make this card known to the libertas driver */
Holger Schurig10078322007-11-15 18:05:47 -0500916 priv = lbs_add_card(card, &p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700917 if (!priv) {
918 ret = -ENOMEM;
919 goto out2;
920 }
921
Holger Schurig7919b892008-04-01 14:50:43 +0200922 /* Finish setting up fields in lbs_private */
Dan Williams954ee162007-08-20 11:43:25 -0400923 card->priv = priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700924 priv->card = card;
Holger Schurig7919b892008-04-01 14:50:43 +0200925 priv->hw_host_to_card = if_cs_host_to_card;
Amitkumar Karwar49125452009-09-30 20:04:38 -0700926 priv->enter_deep_sleep = NULL;
927 priv->exit_deep_sleep = NULL;
928 priv->reset_deep_sleep_wakeup = NULL;
David Woodhouseaa21c002007-12-08 20:04:36 +0000929 priv->fw_ready = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400930
Holger Schurig27590d02007-10-03 17:25:41 -0700931 /* Now actually get the IRQ */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100932 ret = request_irq(p_dev->irq, if_cs_interrupt,
Holger Schurig27590d02007-10-03 17:25:41 -0700933 IRQF_SHARED, DRV_NAME, card);
934 if (ret) {
935 lbs_pr_err("error in request_irq\n");
936 goto out3;
937 }
938
Holger Schurig4ef31702007-10-09 10:41:57 +0200939 /* Clear any interrupt cause that happend while sending
940 * firmware/initializing card */
Holger Schurig78cf0742008-06-02 09:25:05 +0200941 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, IF_CS_BIT_MASK);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400942 if_cs_enable_ints(card);
943
Holger Schurig27590d02007-10-03 17:25:41 -0700944 /* And finally bring the card up */
Holger Schurig10078322007-11-15 18:05:47 -0500945 if (lbs_start_card(priv) != 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700946 lbs_pr_err("could not activate card\n");
947 goto out3;
948 }
949
950 ret = 0;
951 goto out;
952
953out3:
Holger Schurig10078322007-11-15 18:05:47 -0500954 lbs_remove_card(priv);
Holger Schurig27590d02007-10-03 17:25:41 -0700955out2:
956 ioport_unmap(card->iobase);
957out1:
958 pcmcia_disable_device(p_dev);
959out:
960 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
961 return ret;
962}
963
964
965/*
966 * This deletes a driver "instance". The device is de-registered with
967 * Card Services. If it has been released, all local data structures
968 * are freed. Otherwise, the structures will be freed when the device
969 * is released.
970 */
971static void if_cs_detach(struct pcmcia_device *p_dev)
972{
973 struct if_cs_card *card = p_dev->priv;
974
975 lbs_deb_enter(LBS_DEB_CS);
976
Holger Schurig10078322007-11-15 18:05:47 -0500977 lbs_stop_card(card->priv);
978 lbs_remove_card(card->priv);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400979 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700980 if_cs_release(p_dev);
981 kfree(card);
982
983 lbs_deb_leave(LBS_DEB_CS);
984}
985
986
987
988/********************************************************************/
989/* Module initialization */
990/********************************************************************/
991
992static struct pcmcia_device_id if_cs_ids[] = {
Marek Vasut9d453682009-08-21 04:08:16 +0200993 PCMCIA_DEVICE_MANF_CARD(CF8305_MANFID, CF8305_CARDID),
Marek Vasutdc7d2432009-03-24 21:33:43 +0100994 PCMCIA_DEVICE_MANF_CARD(CF8381_MANFID, CF8381_CARDID),
995 PCMCIA_DEVICE_MANF_CARD(CF8385_MANFID, CF8385_CARDID),
Holger Schurig27590d02007-10-03 17:25:41 -0700996 PCMCIA_DEVICE_NULL,
997};
998MODULE_DEVICE_TABLE(pcmcia, if_cs_ids);
999
1000
Holger Schurig10078322007-11-15 18:05:47 -05001001static struct pcmcia_driver lbs_driver = {
Holger Schurig27590d02007-10-03 17:25:41 -07001002 .owner = THIS_MODULE,
1003 .drv = {
1004 .name = DRV_NAME,
1005 },
1006 .probe = if_cs_probe,
1007 .remove = if_cs_detach,
1008 .id_table = if_cs_ids,
1009};
1010
1011
1012static int __init if_cs_init(void)
1013{
1014 int ret;
1015
1016 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -05001017 ret = pcmcia_register_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -07001018 lbs_deb_leave(LBS_DEB_CS);
1019 return ret;
1020}
1021
1022
1023static void __exit if_cs_exit(void)
1024{
1025 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -05001026 pcmcia_unregister_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -07001027 lbs_deb_leave(LBS_DEB_CS);
1028}
1029
1030
1031module_init(if_cs_init);
1032module_exit(if_cs_exit);