blob: b5d0cd4c411a3493eddbd2fc8793c05d0e19a88a [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>
25#include <linux/delay.h>
26#include <linux/moduleparam.h>
27#include <linux/firmware.h>
28#include <linux/netdevice.h>
29
30#include <pcmcia/cs_types.h>
31#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");
51
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;
62};
63
64
65
66/********************************************************************/
67/* Hardware access */
68/********************************************************************/
69
70/* This define enables wrapper functions which allow you
71 to dump all register accesses. You normally won't this,
72 except for development */
73/* #define DEBUG_IO */
74
75#ifdef DEBUG_IO
76static int debug_output = 0;
77#else
78/* This way the compiler optimizes the printk's away */
79#define debug_output 0
80#endif
81
82static inline unsigned int if_cs_read8(struct if_cs_card *card, uint reg)
83{
84 unsigned int val = ioread8(card->iobase + reg);
85 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020086 printk(KERN_INFO "inb %08x<%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070087 return val;
88}
89static inline unsigned int if_cs_read16(struct if_cs_card *card, uint reg)
90{
91 unsigned int val = ioread16(card->iobase + reg);
92 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +020093 printk(KERN_INFO "inw %08x<%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -070094 return val;
95}
96static inline void if_cs_read16_rep(
97 struct if_cs_card *card,
98 uint reg,
99 void *buf,
100 unsigned long count)
101{
102 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200103 printk(KERN_INFO "insw %08x<(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700104 reg, count);
105 ioread16_rep(card->iobase + reg, buf, count);
106}
107
108static inline void if_cs_write8(struct if_cs_card *card, uint reg, u8 val)
109{
110 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200111 printk(KERN_INFO "outb %08x>%02x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700112 iowrite8(val, card->iobase + reg);
113}
114
115static inline void if_cs_write16(struct if_cs_card *card, uint reg, u16 val)
116{
117 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200118 printk(KERN_INFO "outw %08x>%04x\n", reg, val);
Holger Schurig27590d02007-10-03 17:25:41 -0700119 iowrite16(val, card->iobase + reg);
120}
121
122static inline void if_cs_write16_rep(
123 struct if_cs_card *card,
124 uint reg,
125 void *buf,
126 unsigned long count)
127{
128 if (debug_output)
Holger Schurig7919b892008-04-01 14:50:43 +0200129 printk(KERN_INFO "outsw %08x>(0x%lx words)\n",
Holger Schurig27590d02007-10-03 17:25:41 -0700130 reg, count);
131 iowrite16_rep(card->iobase + reg, buf, count);
132}
133
134
135/*
136 * I know that polling/delaying is frowned upon. However, this procedure
137 * with polling is needed while downloading the firmware. At this stage,
138 * the hardware does unfortunately not create any interrupts.
139 *
140 * Fortunately, this function is never used once the firmware is in
141 * the card. :-)
142 *
143 * As a reference, see the "Firmware Specification v5.1", page 18
144 * and 19. I did not follow their suggested timing to the word,
145 * but this works nice & fast anyway.
146 */
147static int if_cs_poll_while_fw_download(struct if_cs_card *card, uint addr, u8 reg)
148{
149 int i;
150
Holger Schurig93416c82008-05-23 10:18:26 +0200151 for (i = 0; i < 100000; i++) {
Holger Schurig27590d02007-10-03 17:25:41 -0700152 u8 val = if_cs_read8(card, addr);
153 if (val == reg)
154 return i;
Holger Schurig93416c82008-05-23 10:18:26 +0200155 udelay(5);
Holger Schurig27590d02007-10-03 17:25:41 -0700156 }
157 return -ETIME;
158}
159
160
161
Holger Schurig78cf0742008-06-02 09:25:05 +0200162/* First the bitmasks for the host/card interrupt/status registers: */
163#define IF_CS_BIT_TX 0x0001
164#define IF_CS_BIT_RX 0x0002
165#define IF_CS_BIT_COMMAND 0x0004
166#define IF_CS_BIT_RESP 0x0008
167#define IF_CS_BIT_EVENT 0x0010
168#define IF_CS_BIT_MASK 0x001f
Holger Schurig27590d02007-10-03 17:25:41 -0700169
Holger Schurig78cf0742008-06-02 09:25:05 +0200170/* And now the individual registers and assorted masks */
171#define IF_CS_HOST_STATUS 0x00000000
Holger Schurig27590d02007-10-03 17:25:41 -0700172
Holger Schurig78cf0742008-06-02 09:25:05 +0200173#define IF_CS_HOST_INT_CAUSE 0x00000002
Holger Schurig27590d02007-10-03 17:25:41 -0700174
Holger Schurig78cf0742008-06-02 09:25:05 +0200175#define IF_CS_HOST_INT_MASK 0x00000004
Holger Schurig27590d02007-10-03 17:25:41 -0700176
Holger Schurig78cf0742008-06-02 09:25:05 +0200177#define IF_CS_HOST_WRITE 0x00000016
178#define IF_CS_HOST_WRITE_LEN 0x00000014
Holger Schurig27590d02007-10-03 17:25:41 -0700179
Holger Schurig78cf0742008-06-02 09:25:05 +0200180#define IF_CS_HOST_CMD 0x0000001A
181#define IF_CS_HOST_CMD_LEN 0x00000018
Holger Schurig27590d02007-10-03 17:25:41 -0700182
Holger Schurig78cf0742008-06-02 09:25:05 +0200183#define IF_CS_READ 0x00000010
184#define IF_CS_READ_LEN 0x00000024
Holger Schurig27590d02007-10-03 17:25:41 -0700185
Holger Schurig78cf0742008-06-02 09:25:05 +0200186#define IF_CS_CARD_CMD 0x00000012
187#define IF_CS_CARD_CMD_LEN 0x00000030
Holger Schurig27590d02007-10-03 17:25:41 -0700188
Holger Schurig78cf0742008-06-02 09:25:05 +0200189#define IF_CS_CARD_STATUS 0x00000020
190#define IF_CS_CARD_STATUS_MASK 0x7f00
Holger Schurig27590d02007-10-03 17:25:41 -0700191
Holger Schurig78cf0742008-06-02 09:25:05 +0200192#define IF_CS_CARD_INT_CAUSE 0x00000022
Holger Schurig27590d02007-10-03 17:25:41 -0700193
Holger Schurig78cf0742008-06-02 09:25:05 +0200194#define IF_CS_CARD_SQ_READ_LOW 0x00000028
195#define IF_CS_CARD_SQ_HELPER_OK 0x10
Holger Schurig27590d02007-10-03 17:25:41 -0700196
197#define IF_CS_SCRATCH 0x0000003F
198
199
200
201/********************************************************************/
Holger Schurig43d01c52008-05-26 12:50:23 +0200202/* I/O and interrupt handling */
Holger Schurig27590d02007-10-03 17:25:41 -0700203/********************************************************************/
204
Holger Schurig43d01c52008-05-26 12:50:23 +0200205static inline void if_cs_enable_ints(struct if_cs_card *card)
206{
207 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200208 if_cs_write16(card, IF_CS_HOST_INT_MASK, 0);
Holger Schurig43d01c52008-05-26 12:50:23 +0200209}
210
211static inline void if_cs_disable_ints(struct if_cs_card *card)
212{
213 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig78cf0742008-06-02 09:25:05 +0200214 if_cs_write16(card, IF_CS_HOST_INT_MASK, IF_CS_BIT_MASK);
Holger Schurig43d01c52008-05-26 12:50:23 +0200215}
216
Holger Schurig27590d02007-10-03 17:25:41 -0700217/*
218 * Called from if_cs_host_to_card to send a command to the hardware
219 */
Holger Schurig69f90322007-11-23 15:43:44 +0100220static int if_cs_send_cmd(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700221{
222 struct if_cs_card *card = (struct if_cs_card *)priv->card;
223 int ret = -1;
224 int loops = 0;
225
226 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200227 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700228
229 /* Is hardware ready? */
230 while (1) {
Holger Schurig78cf0742008-06-02 09:25:05 +0200231 u16 val = if_cs_read16(card, IF_CS_CARD_STATUS);
232 if (val & IF_CS_BIT_COMMAND)
Holger Schurig27590d02007-10-03 17:25:41 -0700233 break;
234 if (++loops > 100) {
235 lbs_pr_err("card not ready for commands\n");
236 goto done;
237 }
238 mdelay(1);
239 }
240
Holger Schurig78cf0742008-06-02 09:25:05 +0200241 if_cs_write16(card, IF_CS_HOST_CMD_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700242
Holger Schurig78cf0742008-06-02 09:25:05 +0200243 if_cs_write16_rep(card, IF_CS_HOST_CMD, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700244 /* Are we supposed to transfer an odd amount of bytes? */
245 if (nb & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200246 if_cs_write8(card, IF_CS_HOST_CMD, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700247
248 /* "Assert the download over interrupt command in the Host
249 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200250 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700251
252 /* "Assert the download over interrupt command in the Card
253 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200254 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700255 ret = 0;
256
257done:
Holger Schurig43d01c52008-05-26 12:50:23 +0200258 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700259 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
260 return ret;
261}
262
Holger Schurig27590d02007-10-03 17:25:41 -0700263/*
264 * Called from if_cs_host_to_card to send a data to the hardware
265 */
Holger Schurig69f90322007-11-23 15:43:44 +0100266static void if_cs_send_data(struct lbs_private *priv, u8 *buf, u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700267{
268 struct if_cs_card *card = (struct if_cs_card *)priv->card;
Holger Schurig43d01c52008-05-26 12:50:23 +0200269 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700270
271 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig43d01c52008-05-26 12:50:23 +0200272 if_cs_disable_ints(card);
273
Holger Schurig78cf0742008-06-02 09:25:05 +0200274 status = if_cs_read16(card, IF_CS_CARD_STATUS);
275 BUG_ON((status & IF_CS_BIT_TX) == 0);
Holger Schurig27590d02007-10-03 17:25:41 -0700276
Holger Schurig78cf0742008-06-02 09:25:05 +0200277 if_cs_write16(card, IF_CS_HOST_WRITE_LEN, nb);
Holger Schurig27590d02007-10-03 17:25:41 -0700278
279 /* write even number of bytes, then odd byte if necessary */
Holger Schurig78cf0742008-06-02 09:25:05 +0200280 if_cs_write16_rep(card, IF_CS_HOST_WRITE, buf, nb / 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700281 if (nb & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200282 if_cs_write8(card, IF_CS_HOST_WRITE, buf[nb-1]);
Holger Schurig27590d02007-10-03 17:25:41 -0700283
Holger Schurig78cf0742008-06-02 09:25:05 +0200284 if_cs_write16(card, IF_CS_HOST_STATUS, IF_CS_BIT_TX);
285 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_TX);
Holger Schurig43d01c52008-05-26 12:50:23 +0200286 if_cs_enable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700287
288 lbs_deb_leave(LBS_DEB_CS);
289}
290
Holger Schurig27590d02007-10-03 17:25:41 -0700291/*
292 * Get the command result out of the card.
293 */
Holger Schurig69f90322007-11-23 15:43:44 +0100294static int if_cs_receive_cmdres(struct lbs_private *priv, u8 *data, u32 *len)
Holger Schurig27590d02007-10-03 17:25:41 -0700295{
Holger Schurig7919b892008-04-01 14:50:43 +0200296 unsigned long flags;
Holger Schurig27590d02007-10-03 17:25:41 -0700297 int ret = -1;
Holger Schurig78cf0742008-06-02 09:25:05 +0200298 u16 status;
Holger Schurig27590d02007-10-03 17:25:41 -0700299
300 lbs_deb_enter(LBS_DEB_CS);
301
302 /* is hardware ready? */
Holger Schurig78cf0742008-06-02 09:25:05 +0200303 status = if_cs_read16(priv->card, IF_CS_CARD_STATUS);
304 if ((status & IF_CS_BIT_RESP) == 0) {
305 lbs_pr_err("no cmd response in card\n");
306 *len = 0;
Holger Schurig27590d02007-10-03 17:25:41 -0700307 goto out;
308 }
309
Holger Schurig78cf0742008-06-02 09:25:05 +0200310 *len = if_cs_read16(priv->card, IF_CS_CARD_CMD_LEN);
Dan Williamsddac4522007-12-11 13:49:39 -0500311 if ((*len == 0) || (*len > LBS_CMD_BUFFER_SIZE)) {
Holger Schurig27590d02007-10-03 17:25:41 -0700312 lbs_pr_err("card cmd buffer has invalid # of bytes (%d)\n", *len);
313 goto out;
314 }
315
316 /* read even number of bytes, then odd byte if necessary */
Holger Schurig78cf0742008-06-02 09:25:05 +0200317 if_cs_read16_rep(priv->card, IF_CS_CARD_CMD, data, *len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700318 if (*len & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200319 data[*len-1] = if_cs_read8(priv->card, IF_CS_CARD_CMD);
Holger Schurig27590d02007-10-03 17:25:41 -0700320
Holger Schurig09d4fad2007-12-06 13:50:30 +0100321 /* This is a workaround for a firmware that reports too much
322 * bytes */
323 *len -= 8;
Holger Schurig27590d02007-10-03 17:25:41 -0700324 ret = 0;
Holger Schurig7919b892008-04-01 14:50:43 +0200325
326 /* Clear this flag again */
327 spin_lock_irqsave(&priv->driver_lock, flags);
328 priv->dnld_sent = DNLD_RES_RECEIVED;
329 spin_unlock_irqrestore(&priv->driver_lock, flags);
330
Holger Schurig27590d02007-10-03 17:25:41 -0700331out:
332 lbs_deb_leave_args(LBS_DEB_CS, "ret %d, len %d", ret, *len);
333 return ret;
334}
335
Holger Schurig69f90322007-11-23 15:43:44 +0100336static struct sk_buff *if_cs_receive_data(struct lbs_private *priv)
Holger Schurig27590d02007-10-03 17:25:41 -0700337{
338 struct sk_buff *skb = NULL;
339 u16 len;
340 u8 *data;
341
342 lbs_deb_enter(LBS_DEB_CS);
343
Holger Schurig78cf0742008-06-02 09:25:05 +0200344 len = if_cs_read16(priv->card, IF_CS_READ_LEN);
Holger Schurig27590d02007-10-03 17:25:41 -0700345 if (len == 0 || len > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE) {
346 lbs_pr_err("card data buffer has invalid # of bytes (%d)\n", len);
347 priv->stats.rx_dropped++;
Holger Schurig27590d02007-10-03 17:25:41 -0700348 goto dat_err;
349 }
350
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400351 skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + 2);
Holger Schurig27590d02007-10-03 17:25:41 -0700352 if (!skb)
353 goto out;
Vladimir Davydovf31ce76b2007-09-06 21:41:02 -0400354 skb_put(skb, len);
355 skb_reserve(skb, 2);/* 16 byte align */
356 data = skb->data;
Holger Schurig27590d02007-10-03 17:25:41 -0700357
358 /* read even number of bytes, then odd byte if necessary */
Holger Schurig78cf0742008-06-02 09:25:05 +0200359 if_cs_read16_rep(priv->card, IF_CS_READ, data, len/sizeof(u16));
Holger Schurig27590d02007-10-03 17:25:41 -0700360 if (len & 1)
Holger Schurig78cf0742008-06-02 09:25:05 +0200361 data[len-1] = if_cs_read8(priv->card, IF_CS_READ);
Holger Schurig27590d02007-10-03 17:25:41 -0700362
363dat_err:
Holger Schurig78cf0742008-06-02 09:25:05 +0200364 if_cs_write16(priv->card, IF_CS_HOST_STATUS, IF_CS_BIT_RX);
365 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_RX);
Holger Schurig27590d02007-10-03 17:25:41 -0700366
367out:
368 lbs_deb_leave_args(LBS_DEB_CS, "ret %p", skb);
369 return skb;
370}
371
Holger Schurig7919b892008-04-01 14:50:43 +0200372static irqreturn_t if_cs_interrupt(int irq, void *data)
373{
374 struct if_cs_card *card = data;
375 struct lbs_private *priv = card->priv;
376 u16 cause;
377
378 lbs_deb_enter(LBS_DEB_CS);
379
Holger Schurig43d01c52008-05-26 12:50:23 +0200380 /* Ask card interrupt cause register if there is something for us */
Holger Schurig78cf0742008-06-02 09:25:05 +0200381 cause = if_cs_read16(card, IF_CS_CARD_INT_CAUSE);
Holger Schurig30735562008-06-05 13:06:15 +0200382 lbs_deb_cs("cause 0x%04x\n", cause);
383
Holger Schurig7919b892008-04-01 14:50:43 +0200384 if (cause == 0) {
385 /* Not for us */
386 return IRQ_NONE;
387 }
388
389 if (cause == 0xffff) {
390 /* Read in junk, the card has probably been removed */
391 card->priv->surpriseremoved = 1;
392 return IRQ_HANDLED;
393 }
394
Holger Schurig78cf0742008-06-02 09:25:05 +0200395 if (cause & IF_CS_BIT_RX) {
Holger Schurig7919b892008-04-01 14:50:43 +0200396 struct sk_buff *skb;
397 lbs_deb_cs("rx packet\n");
398 skb = if_cs_receive_data(priv);
399 if (skb)
400 lbs_process_rxed_packet(priv, skb);
401 }
402
Holger Schurig78cf0742008-06-02 09:25:05 +0200403 if (cause & IF_CS_BIT_TX) {
Holger Schurig43d01c52008-05-26 12:50:23 +0200404 lbs_deb_cs("tx done\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200405 lbs_host_to_card_done(priv);
406 }
407
Holger Schurig78cf0742008-06-02 09:25:05 +0200408 if (cause & IF_CS_BIT_RESP) {
Holger Schurig7919b892008-04-01 14:50:43 +0200409 unsigned long flags;
410 u8 i;
411
Holger Schurig43d01c52008-05-26 12:50:23 +0200412 lbs_deb_cs("cmd resp\n");
Holger Schurig7919b892008-04-01 14:50:43 +0200413 spin_lock_irqsave(&priv->driver_lock, flags);
414 i = (priv->resp_idx == 0) ? 1 : 0;
415 spin_unlock_irqrestore(&priv->driver_lock, flags);
416
417 BUG_ON(priv->resp_len[i]);
418 if_cs_receive_cmdres(priv, priv->resp_buf[i],
419 &priv->resp_len[i]);
420
421 spin_lock_irqsave(&priv->driver_lock, flags);
422 lbs_notify_command_response(priv, i);
423 spin_unlock_irqrestore(&priv->driver_lock, flags);
424 }
425
Holger Schurig78cf0742008-06-02 09:25:05 +0200426 if (cause & IF_CS_BIT_EVENT) {
427 u16 event = if_cs_read16(priv->card, IF_CS_CARD_STATUS)
428 & IF_CS_CARD_STATUS_MASK;
429 if_cs_write16(priv->card, IF_CS_HOST_INT_CAUSE,
430 IF_CS_BIT_EVENT);
Holger Schurig43d01c52008-05-26 12:50:23 +0200431 lbs_deb_cs("host event 0x%04x\n", event);
Holger Schurig7919b892008-04-01 14:50:43 +0200432 lbs_queue_event(priv, event >> 8 & 0xff);
433 }
434
Holger Schurig30735562008-06-05 13:06:15 +0200435 /* Clear interrupt cause */
436 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, cause & IF_CS_BIT_MASK);
437
Holger Schurig43d01c52008-05-26 12:50:23 +0200438 lbs_deb_leave(LBS_DEB_CS);
Holger Schurig7919b892008-04-01 14:50:43 +0200439 return IRQ_HANDLED;
440}
441
442
443
444
445/********************************************************************/
Holger Schurig27590d02007-10-03 17:25:41 -0700446/* Firmware */
447/********************************************************************/
448
449/*
450 * Tries to program the helper firmware.
451 *
452 * Return 0 on success
453 */
454static int if_cs_prog_helper(struct if_cs_card *card)
455{
456 int ret = 0;
457 int sent = 0;
458 u8 scratch;
459 const struct firmware *fw;
460
461 lbs_deb_enter(LBS_DEB_CS);
462
463 scratch = if_cs_read8(card, IF_CS_SCRATCH);
464
465 /* "If the value is 0x5a, the firmware is already
466 * downloaded successfully"
467 */
468 if (scratch == 0x5a)
469 goto done;
470
471 /* "If the value is != 00, it is invalid value of register */
472 if (scratch != 0x00) {
473 ret = -ENODEV;
474 goto done;
475 }
476
477 /* TODO: make firmware file configurable */
478 ret = request_firmware(&fw, "libertas_cs_helper.fw",
479 &handle_to_dev(card->p_dev));
480 if (ret) {
481 lbs_pr_err("can't load helper firmware\n");
482 ret = -ENODEV;
483 goto done;
484 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700485 lbs_deb_cs("helper size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700486
487 /* "Set the 5 bytes of the helper image to 0" */
488 /* Not needed, this contains an ARM branch instruction */
489
490 for (;;) {
491 /* "the number of bytes to send is 256" */
492 int count = 256;
493 int remain = fw->size - sent;
494
495 if (remain < count)
496 count = remain;
Holger Schurig27590d02007-10-03 17:25:41 -0700497
498 /* "write the number of bytes to be sent to the I/O Command
499 * write length register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200500 if_cs_write16(card, IF_CS_HOST_CMD_LEN, count);
Holger Schurig27590d02007-10-03 17:25:41 -0700501
502 /* "write this to I/O Command port register as 16 bit writes */
503 if (count)
Holger Schurig78cf0742008-06-02 09:25:05 +0200504 if_cs_write16_rep(card, IF_CS_HOST_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700505 &fw->data[sent],
506 count >> 1);
507
508 /* "Assert the download over interrupt command in the Host
509 * status register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200510 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700511
512 /* "Assert the download over interrupt command in the Card
513 * interrupt case register" */
Holger Schurig78cf0742008-06-02 09:25:05 +0200514 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700515
516 /* "The host polls the Card Status register ... for 50 ms before
517 declaring a failure */
Holger Schurig78cf0742008-06-02 09:25:05 +0200518 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
519 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700520 if (ret < 0) {
521 lbs_pr_err("can't download helper at 0x%x, ret %d\n",
522 sent, ret);
523 goto done;
524 }
525
526 if (count == 0)
527 break;
528
529 sent += count;
530 }
531
532 release_firmware(fw);
533 ret = 0;
534
535done:
536 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
537 return ret;
538}
539
540
541static int if_cs_prog_real(struct if_cs_card *card)
542{
543 const struct firmware *fw;
544 int ret = 0;
545 int retry = 0;
546 int len = 0;
547 int sent;
548
549 lbs_deb_enter(LBS_DEB_CS);
550
551 /* TODO: make firmware file configurable */
552 ret = request_firmware(&fw, "libertas_cs.fw",
553 &handle_to_dev(card->p_dev));
554 if (ret) {
555 lbs_pr_err("can't load firmware\n");
556 ret = -ENODEV;
557 goto done;
558 }
Andrew Morton4ecd41b2007-08-21 02:15:45 -0700559 lbs_deb_cs("fw size %td\n", fw->size);
Holger Schurig27590d02007-10-03 17:25:41 -0700560
Holger Schurig78cf0742008-06-02 09:25:05 +0200561 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_SQ_READ_LOW,
562 IF_CS_CARD_SQ_HELPER_OK);
Holger Schurig27590d02007-10-03 17:25:41 -0700563 if (ret < 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700564 lbs_pr_err("helper firmware doesn't answer\n");
Holger Schurig27590d02007-10-03 17:25:41 -0700565 goto err_release;
566 }
567
568 for (sent = 0; sent < fw->size; sent += len) {
Holger Schurig78cf0742008-06-02 09:25:05 +0200569 len = if_cs_read16(card, IF_CS_CARD_SQ_READ_LOW);
Holger Schurig27590d02007-10-03 17:25:41 -0700570 if (len & 1) {
571 retry++;
572 lbs_pr_info("odd, need to retry this firmware block\n");
573 } else {
574 retry = 0;
575 }
576
577 if (retry > 20) {
578 lbs_pr_err("could not download firmware\n");
579 ret = -ENODEV;
580 goto err_release;
581 }
582 if (retry) {
583 sent -= len;
584 }
585
586
Holger Schurig78cf0742008-06-02 09:25:05 +0200587 if_cs_write16(card, IF_CS_HOST_CMD_LEN, len);
Holger Schurig27590d02007-10-03 17:25:41 -0700588
Holger Schurig78cf0742008-06-02 09:25:05 +0200589 if_cs_write16_rep(card, IF_CS_HOST_CMD,
Holger Schurig27590d02007-10-03 17:25:41 -0700590 &fw->data[sent],
591 (len+1) >> 1);
Holger Schurig78cf0742008-06-02 09:25:05 +0200592 if_cs_write8(card, IF_CS_HOST_STATUS, IF_CS_BIT_COMMAND);
593 if_cs_write16(card, IF_CS_HOST_INT_CAUSE, IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700594
Holger Schurig78cf0742008-06-02 09:25:05 +0200595 ret = if_cs_poll_while_fw_download(card, IF_CS_CARD_STATUS,
596 IF_CS_BIT_COMMAND);
Holger Schurig27590d02007-10-03 17:25:41 -0700597 if (ret < 0) {
598 lbs_pr_err("can't download firmware at 0x%x\n", sent);
599 goto err_release;
600 }
601 }
602
603 ret = if_cs_poll_while_fw_download(card, IF_CS_SCRATCH, 0x5a);
604 if (ret < 0) {
605 lbs_pr_err("firmware download failed\n");
606 goto err_release;
607 }
608
609 ret = 0;
610 goto done;
611
612
613err_release:
614 release_firmware(fw);
615
616done:
617 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
618 return ret;
619}
620
621
622
623/********************************************************************/
624/* Callback functions for libertas.ko */
625/********************************************************************/
626
Holger Schurig27590d02007-10-03 17:25:41 -0700627/* Send commands or data packets to the card */
Holger Schurig69f90322007-11-23 15:43:44 +0100628static int if_cs_host_to_card(struct lbs_private *priv,
629 u8 type,
630 u8 *buf,
631 u16 nb)
Holger Schurig27590d02007-10-03 17:25:41 -0700632{
633 int ret = -1;
634
635 lbs_deb_enter_args(LBS_DEB_CS, "type %d, bytes %d", type, nb);
636
637 switch (type) {
638 case MVMS_DAT:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400639 priv->dnld_sent = DNLD_DATA_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700640 if_cs_send_data(priv, buf, nb);
641 ret = 0;
642 break;
643 case MVMS_CMD:
Ryan Mallon6f05cbe2007-09-06 21:30:32 -0400644 priv->dnld_sent = DNLD_CMD_SENT;
Holger Schurig27590d02007-10-03 17:25:41 -0700645 ret = if_cs_send_cmd(priv, buf, nb);
646 break;
647 default:
648 lbs_pr_err("%s: unsupported type %d\n", __FUNCTION__, type);
649 }
650
651 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
652 return ret;
653}
654
655
Holger Schurig27590d02007-10-03 17:25:41 -0700656/********************************************************************/
657/* Card Services */
658/********************************************************************/
659
660/*
661 * After a card is removed, if_cs_release() will unregister the
662 * device, and release the PCMCIA configuration. If the device is
663 * still open, this will be postponed until it is closed.
664 */
665static void if_cs_release(struct pcmcia_device *p_dev)
666{
667 struct if_cs_card *card = p_dev->priv;
668
669 lbs_deb_enter(LBS_DEB_CS);
670
Holger Schurig27590d02007-10-03 17:25:41 -0700671 free_irq(p_dev->irq.AssignedIRQ, card);
Holger Schurigfdfb92e2008-01-25 14:15:48 +0100672 pcmcia_disable_device(p_dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700673 if (card->iobase)
674 ioport_unmap(card->iobase);
675
676 lbs_deb_leave(LBS_DEB_CS);
677}
678
679
680/*
681 * This creates an "instance" of the driver, allocating local data
682 * structures for one device. The device is registered with Card
683 * Services.
684 *
685 * The dev_link structure is initialized, but we don't actually
686 * configure the card at this point -- we wait until we receive a card
687 * insertion event.
688 */
689static int if_cs_probe(struct pcmcia_device *p_dev)
690{
691 int ret = -ENOMEM;
Holger Schurig69f90322007-11-23 15:43:44 +0100692 struct lbs_private *priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700693 struct if_cs_card *card;
694 /* CIS parsing */
695 tuple_t tuple;
696 cisparse_t parse;
697 cistpl_cftable_entry_t *cfg = &parse.cftable_entry;
698 cistpl_io_t *io = &cfg->io;
699 u_char buf[64];
700
701 lbs_deb_enter(LBS_DEB_CS);
702
703 card = kzalloc(sizeof(struct if_cs_card), GFP_KERNEL);
704 if (!card) {
705 lbs_pr_err("error in kzalloc\n");
706 goto out;
707 }
708 card->p_dev = p_dev;
709 p_dev->priv = card;
710
711 p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING;
712 p_dev->irq.Handler = NULL;
713 p_dev->irq.IRQInfo1 = IRQ_INFO2_VALID | IRQ_LEVEL_ID;
714
715 p_dev->conf.Attributes = 0;
716 p_dev->conf.IntType = INT_MEMORY_AND_IO;
717
718 tuple.Attributes = 0;
719 tuple.TupleData = buf;
720 tuple.TupleDataMax = sizeof(buf);
721 tuple.TupleOffset = 0;
722
723 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
724 if ((ret = pcmcia_get_first_tuple(p_dev, &tuple)) != 0 ||
725 (ret = pcmcia_get_tuple_data(p_dev, &tuple)) != 0 ||
726 (ret = pcmcia_parse_tuple(p_dev, &tuple, &parse)) != 0)
727 {
728 lbs_pr_err("error in pcmcia_get_first_tuple etc\n");
729 goto out1;
730 }
731
732 p_dev->conf.ConfigIndex = cfg->index;
733
734 /* Do we need to allocate an interrupt? */
735 if (cfg->irq.IRQInfo1) {
736 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
737 }
738
739 /* IO window settings */
740 if (cfg->io.nwin != 1) {
741 lbs_pr_err("wrong CIS (check number of IO windows)\n");
742 ret = -ENODEV;
743 goto out1;
744 }
745 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
746 p_dev->io.BasePort1 = io->win[0].base;
747 p_dev->io.NumPorts1 = io->win[0].len;
748
749 /* This reserves IO space but doesn't actually enable it */
750 ret = pcmcia_request_io(p_dev, &p_dev->io);
751 if (ret) {
752 lbs_pr_err("error in pcmcia_request_io\n");
753 goto out1;
754 }
755
756 /*
757 * Allocate an interrupt line. Note that this does not assign
758 * a handler to the interrupt, unless the 'Handler' member of
759 * the irq structure is initialized.
760 */
761 if (p_dev->conf.Attributes & CONF_ENABLE_IRQ) {
762 ret = pcmcia_request_irq(p_dev, &p_dev->irq);
763 if (ret) {
764 lbs_pr_err("error in pcmcia_request_irq\n");
765 goto out1;
766 }
767 }
768
769 /* Initialize io access */
770 card->iobase = ioport_map(p_dev->io.BasePort1, p_dev->io.NumPorts1);
771 if (!card->iobase) {
772 lbs_pr_err("error in ioport_map\n");
773 ret = -EIO;
774 goto out1;
775 }
776
777 /*
778 * This actually configures the PCMCIA socket -- setting up
779 * the I/O windows and the interrupt mapping, and putting the
780 * card and host interface into "Memory and IO" mode.
781 */
782 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
783 if (ret) {
784 lbs_pr_err("error in pcmcia_request_configuration\n");
785 goto out2;
786 }
787
788 /* Finally, report what we've done */
789 lbs_deb_cs("irq %d, io 0x%04x-0x%04x\n",
790 p_dev->irq.AssignedIRQ, p_dev->io.BasePort1,
791 p_dev->io.BasePort1 + p_dev->io.NumPorts1 - 1);
792
Holger Schurig27590d02007-10-03 17:25:41 -0700793
794 /* Load the firmware early, before calling into libertas.ko */
795 ret = if_cs_prog_helper(card);
796 if (ret == 0)
797 ret = if_cs_prog_real(card);
798 if (ret)
799 goto out2;
800
801 /* Make this card known to the libertas driver */
Holger Schurig10078322007-11-15 18:05:47 -0500802 priv = lbs_add_card(card, &p_dev->dev);
Holger Schurig27590d02007-10-03 17:25:41 -0700803 if (!priv) {
804 ret = -ENOMEM;
805 goto out2;
806 }
807
Holger Schurig7919b892008-04-01 14:50:43 +0200808 /* Finish setting up fields in lbs_private */
Dan Williams954ee162007-08-20 11:43:25 -0400809 card->priv = priv;
Holger Schurig27590d02007-10-03 17:25:41 -0700810 priv->card = card;
Holger Schurig7919b892008-04-01 14:50:43 +0200811 priv->hw_host_to_card = if_cs_host_to_card;
David Woodhouseaa21c002007-12-08 20:04:36 +0000812 priv->fw_ready = 1;
Dan Williams954ee162007-08-20 11:43:25 -0400813
Holger Schurig27590d02007-10-03 17:25:41 -0700814 /* Now actually get the IRQ */
815 ret = request_irq(p_dev->irq.AssignedIRQ, if_cs_interrupt,
816 IRQF_SHARED, DRV_NAME, card);
817 if (ret) {
818 lbs_pr_err("error in request_irq\n");
819 goto out3;
820 }
821
Holger Schurig4ef31702007-10-09 10:41:57 +0200822 /* Clear any interrupt cause that happend while sending
823 * firmware/initializing card */
Holger Schurig78cf0742008-06-02 09:25:05 +0200824 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, IF_CS_BIT_MASK);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400825 if_cs_enable_ints(card);
826
Holger Schurig27590d02007-10-03 17:25:41 -0700827 /* And finally bring the card up */
Holger Schurig10078322007-11-15 18:05:47 -0500828 if (lbs_start_card(priv) != 0) {
Holger Schurig27590d02007-10-03 17:25:41 -0700829 lbs_pr_err("could not activate card\n");
830 goto out3;
831 }
832
Holger Schurigd4ff0ef2008-03-19 14:25:18 +0100833 /* The firmware for the CF card supports powersave */
834 priv->ps_supported = 1;
835
Holger Schurig27590d02007-10-03 17:25:41 -0700836 ret = 0;
837 goto out;
838
839out3:
Holger Schurig10078322007-11-15 18:05:47 -0500840 lbs_remove_card(priv);
Holger Schurig27590d02007-10-03 17:25:41 -0700841out2:
842 ioport_unmap(card->iobase);
843out1:
844 pcmcia_disable_device(p_dev);
845out:
846 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
847 return ret;
848}
849
850
851/*
852 * This deletes a driver "instance". The device is de-registered with
853 * Card Services. If it has been released, all local data structures
854 * are freed. Otherwise, the structures will be freed when the device
855 * is released.
856 */
857static void if_cs_detach(struct pcmcia_device *p_dev)
858{
859 struct if_cs_card *card = p_dev->priv;
860
861 lbs_deb_enter(LBS_DEB_CS);
862
Holger Schurig10078322007-11-15 18:05:47 -0500863 lbs_stop_card(card->priv);
864 lbs_remove_card(card->priv);
Ryan Mallon28de0b32007-09-06 21:32:42 -0400865 if_cs_disable_ints(card);
Holger Schurig27590d02007-10-03 17:25:41 -0700866 if_cs_release(p_dev);
867 kfree(card);
868
869 lbs_deb_leave(LBS_DEB_CS);
870}
871
872
873
874/********************************************************************/
875/* Module initialization */
876/********************************************************************/
877
878static struct pcmcia_device_id if_cs_ids[] = {
879 PCMCIA_DEVICE_MANF_CARD(0x02df, 0x8103),
880 PCMCIA_DEVICE_NULL,
881};
882MODULE_DEVICE_TABLE(pcmcia, if_cs_ids);
883
884
Holger Schurig10078322007-11-15 18:05:47 -0500885static struct pcmcia_driver lbs_driver = {
Holger Schurig27590d02007-10-03 17:25:41 -0700886 .owner = THIS_MODULE,
887 .drv = {
888 .name = DRV_NAME,
889 },
890 .probe = if_cs_probe,
891 .remove = if_cs_detach,
892 .id_table = if_cs_ids,
893};
894
895
896static int __init if_cs_init(void)
897{
898 int ret;
899
900 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -0500901 ret = pcmcia_register_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -0700902 lbs_deb_leave(LBS_DEB_CS);
903 return ret;
904}
905
906
907static void __exit if_cs_exit(void)
908{
909 lbs_deb_enter(LBS_DEB_CS);
Holger Schurig10078322007-11-15 18:05:47 -0500910 pcmcia_unregister_driver(&lbs_driver);
Holger Schurig27590d02007-10-03 17:25:41 -0700911 lbs_deb_leave(LBS_DEB_CS);
912}
913
914
915module_init(if_cs_init);
916module_exit(if_cs_exit);