libertas: treat firmware data as const
[linux-2.6.git] / drivers / net / wireless / libertas / if_cs.c
blobd075b448da94b899fe3dd8d40f4cec1bdd13dddf
1 /*
3 Driver for the Marvell 8385 based compact flash WLAN cards.
5 (C) 2007 by Holger Schurig <hs4233@mail.mn-solutions.de>
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.
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.
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.
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>
30 #include <pcmcia/cs_types.h>
31 #include <pcmcia/cs.h>
32 #include <pcmcia/cistpl.h>
33 #include <pcmcia/ds.h>
35 #include <linux/io.h>
37 #define DRV_NAME "libertas_cs"
39 #include "decl.h"
40 #include "defs.h"
41 #include "dev.h"
44 /********************************************************************/
45 /* Module stuff */
46 /********************************************************************/
48 MODULE_AUTHOR("Holger Schurig <hs4233@mail.mn-solutions.de>");
49 MODULE_DESCRIPTION("Driver for Marvell 83xx compact flash WLAN cards");
50 MODULE_LICENSE("GPL");
54 /********************************************************************/
55 /* Data structures */
56 /********************************************************************/
58 struct if_cs_card {
59 struct pcmcia_device *p_dev;
60 struct lbs_private *priv;
61 void __iomem *iobase;
66 /********************************************************************/
67 /* Hardware access */
68 /********************************************************************/
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 */
75 #ifdef DEBUG_IO
76 static int debug_output = 0;
77 #else
78 /* This way the compiler optimizes the printk's away */
79 #define debug_output 0
80 #endif
82 static inline unsigned int if_cs_read8(struct if_cs_card *card, uint reg)
84 unsigned int val = ioread8(card->iobase + reg);
85 if (debug_output)
86 printk(KERN_INFO "inb %08x<%02x\n", reg, val);
87 return val;
89 static inline unsigned int if_cs_read16(struct if_cs_card *card, uint reg)
91 unsigned int val = ioread16(card->iobase + reg);
92 if (debug_output)
93 printk(KERN_INFO "inw %08x<%04x\n", reg, val);
94 return val;
96 static inline void if_cs_read16_rep(
97 struct if_cs_card *card,
98 uint reg,
99 void *buf,
100 unsigned long count)
102 if (debug_output)
103 printk(KERN_INFO "insw %08x<(0x%lx words)\n",
104 reg, count);
105 ioread16_rep(card->iobase + reg, buf, count);
108 static inline void if_cs_write8(struct if_cs_card *card, uint reg, u8 val)
110 if (debug_output)
111 printk(KERN_INFO "outb %08x>%02x\n", reg, val);
112 iowrite8(val, card->iobase + reg);
115 static inline void if_cs_write16(struct if_cs_card *card, uint reg, u16 val)
117 if (debug_output)
118 printk(KERN_INFO "outw %08x>%04x\n", reg, val);
119 iowrite16(val, card->iobase + reg);
122 static inline void if_cs_write16_rep(
123 struct if_cs_card *card,
124 uint reg,
125 const void *buf,
126 unsigned long count)
128 if (debug_output)
129 printk(KERN_INFO "outsw %08x>(0x%lx words)\n",
130 reg, count);
131 iowrite16_rep(card->iobase + reg, buf, count);
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.
140 * Fortunately, this function is never used once the firmware is in
141 * the card. :-)
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.
147 static int if_cs_poll_while_fw_download(struct if_cs_card *card, uint addr, u8 reg)
149 int i;
151 for (i = 0; i < 1000; i++) {
152 u8 val = if_cs_read8(card, addr);
153 if (val == reg)
154 return i;
155 udelay(500);
157 return -ETIME;
162 /* Host control registers and their bit definitions */
164 #define IF_CS_H_STATUS 0x00000000
165 #define IF_CS_H_STATUS_TX_OVER 0x0001
166 #define IF_CS_H_STATUS_RX_OVER 0x0002
167 #define IF_CS_H_STATUS_DNLD_OVER 0x0004
169 #define IF_CS_H_INT_CAUSE 0x00000002
170 #define IF_CS_H_IC_TX_OVER 0x0001
171 #define IF_CS_H_IC_RX_OVER 0x0002
172 #define IF_CS_H_IC_DNLD_OVER 0x0004
173 #define IF_CS_H_IC_POWER_DOWN 0x0008
174 #define IF_CS_H_IC_HOST_EVENT 0x0010
175 #define IF_CS_H_IC_MASK 0x001f
177 #define IF_CS_H_INT_MASK 0x00000004
178 #define IF_CS_H_IM_MASK 0x001f
180 #define IF_CS_H_WRITE_LEN 0x00000014
182 #define IF_CS_H_WRITE 0x00000016
184 #define IF_CS_H_CMD_LEN 0x00000018
186 #define IF_CS_H_CMD 0x0000001A
188 #define IF_CS_C_READ_LEN 0x00000024
190 #define IF_CS_H_READ 0x00000010
192 /* Card control registers and their bit definitions */
194 #define IF_CS_C_STATUS 0x00000020
195 #define IF_CS_C_S_TX_DNLD_RDY 0x0001
196 #define IF_CS_C_S_RX_UPLD_RDY 0x0002
197 #define IF_CS_C_S_CMD_DNLD_RDY 0x0004
198 #define IF_CS_C_S_CMD_UPLD_RDY 0x0008
199 #define IF_CS_C_S_CARDEVENT 0x0010
200 #define IF_CS_C_S_MASK 0x001f
201 #define IF_CS_C_S_STATUS_MASK 0x7f00
203 #define IF_CS_C_INT_CAUSE 0x00000022
204 #define IF_CS_C_IC_MASK 0x001f
206 #define IF_CS_C_SQ_READ_LOW 0x00000028
207 #define IF_CS_C_SQ_HELPER_OK 0x10
209 #define IF_CS_C_CMD_LEN 0x00000030
211 #define IF_CS_C_CMD 0x00000012
213 #define IF_CS_SCRATCH 0x0000003F
217 /********************************************************************/
218 /* I/O */
219 /********************************************************************/
222 * Called from if_cs_host_to_card to send a command to the hardware
224 static int if_cs_send_cmd(struct lbs_private *priv, u8 *buf, u16 nb)
226 struct if_cs_card *card = (struct if_cs_card *)priv->card;
227 int ret = -1;
228 int loops = 0;
230 lbs_deb_enter(LBS_DEB_CS);
232 /* Is hardware ready? */
233 while (1) {
234 u16 val = if_cs_read16(card, IF_CS_C_STATUS);
235 if (val & IF_CS_C_S_CMD_DNLD_RDY)
236 break;
237 if (++loops > 100) {
238 lbs_pr_err("card not ready for commands\n");
239 goto done;
241 mdelay(1);
244 if_cs_write16(card, IF_CS_H_CMD_LEN, nb);
246 if_cs_write16_rep(card, IF_CS_H_CMD, buf, nb / 2);
247 /* Are we supposed to transfer an odd amount of bytes? */
248 if (nb & 1)
249 if_cs_write8(card, IF_CS_H_CMD, buf[nb-1]);
251 /* "Assert the download over interrupt command in the Host
252 * status register" */
253 if_cs_write16(card, IF_CS_H_STATUS, IF_CS_H_STATUS_DNLD_OVER);
255 /* "Assert the download over interrupt command in the Card
256 * interrupt case register" */
257 if_cs_write16(card, IF_CS_H_INT_CAUSE, IF_CS_H_IC_DNLD_OVER);
258 ret = 0;
260 done:
261 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
262 return ret;
267 * Called from if_cs_host_to_card to send a data to the hardware
269 static void if_cs_send_data(struct lbs_private *priv, u8 *buf, u16 nb)
271 struct if_cs_card *card = (struct if_cs_card *)priv->card;
273 lbs_deb_enter(LBS_DEB_CS);
275 if_cs_write16(card, IF_CS_H_WRITE_LEN, nb);
277 /* write even number of bytes, then odd byte if necessary */
278 if_cs_write16_rep(card, IF_CS_H_WRITE, buf, nb / 2);
279 if (nb & 1)
280 if_cs_write8(card, IF_CS_H_WRITE, buf[nb-1]);
282 if_cs_write16(card, IF_CS_H_STATUS, IF_CS_H_STATUS_TX_OVER);
283 if_cs_write16(card, IF_CS_H_INT_CAUSE, IF_CS_H_STATUS_TX_OVER);
285 lbs_deb_leave(LBS_DEB_CS);
290 * Get the command result out of the card.
292 static int if_cs_receive_cmdres(struct lbs_private *priv, u8 *data, u32 *len)
294 unsigned long flags;
295 int ret = -1;
296 u16 val;
298 lbs_deb_enter(LBS_DEB_CS);
300 /* is hardware ready? */
301 val = if_cs_read16(priv->card, IF_CS_C_STATUS);
302 if ((val & IF_CS_C_S_CMD_UPLD_RDY) == 0) {
303 lbs_pr_err("card not ready for CMD\n");
304 goto out;
307 *len = if_cs_read16(priv->card, IF_CS_C_CMD_LEN);
308 if ((*len == 0) || (*len > LBS_CMD_BUFFER_SIZE)) {
309 lbs_pr_err("card cmd buffer has invalid # of bytes (%d)\n", *len);
310 goto out;
313 /* read even number of bytes, then odd byte if necessary */
314 if_cs_read16_rep(priv->card, IF_CS_C_CMD, data, *len/sizeof(u16));
315 if (*len & 1)
316 data[*len-1] = if_cs_read8(priv->card, IF_CS_C_CMD);
318 /* This is a workaround for a firmware that reports too much
319 * bytes */
320 *len -= 8;
321 ret = 0;
323 /* Clear this flag again */
324 spin_lock_irqsave(&priv->driver_lock, flags);
325 priv->dnld_sent = DNLD_RES_RECEIVED;
326 spin_unlock_irqrestore(&priv->driver_lock, flags);
328 out:
329 lbs_deb_leave_args(LBS_DEB_CS, "ret %d, len %d", ret, *len);
330 return ret;
334 static struct sk_buff *if_cs_receive_data(struct lbs_private *priv)
336 struct sk_buff *skb = NULL;
337 u16 len;
338 u8 *data;
340 lbs_deb_enter(LBS_DEB_CS);
342 len = if_cs_read16(priv->card, IF_CS_C_READ_LEN);
343 if (len == 0 || len > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE) {
344 lbs_pr_err("card data buffer has invalid # of bytes (%d)\n", len);
345 priv->stats.rx_dropped++;
346 goto dat_err;
349 skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + 2);
350 if (!skb)
351 goto out;
352 skb_put(skb, len);
353 skb_reserve(skb, 2);/* 16 byte align */
354 data = skb->data;
356 /* read even number of bytes, then odd byte if necessary */
357 if_cs_read16_rep(priv->card, IF_CS_H_READ, data, len/sizeof(u16));
358 if (len & 1)
359 data[len-1] = if_cs_read8(priv->card, IF_CS_H_READ);
361 dat_err:
362 if_cs_write16(priv->card, IF_CS_H_STATUS, IF_CS_H_STATUS_RX_OVER);
363 if_cs_write16(priv->card, IF_CS_H_INT_CAUSE, IF_CS_H_IC_RX_OVER);
365 out:
366 lbs_deb_leave_args(LBS_DEB_CS, "ret %p", skb);
367 return skb;
372 /********************************************************************/
373 /* Interrupts */
374 /********************************************************************/
376 static inline void if_cs_enable_ints(struct if_cs_card *card)
378 lbs_deb_enter(LBS_DEB_CS);
379 if_cs_write16(card, IF_CS_H_INT_MASK, 0);
382 static inline void if_cs_disable_ints(struct if_cs_card *card)
384 lbs_deb_enter(LBS_DEB_CS);
385 if_cs_write16(card, IF_CS_H_INT_MASK, IF_CS_H_IM_MASK);
389 static irqreturn_t if_cs_interrupt(int irq, void *data)
391 struct if_cs_card *card = data;
392 struct lbs_private *priv = card->priv;
393 u16 cause;
395 lbs_deb_enter(LBS_DEB_CS);
397 cause = if_cs_read16(card, IF_CS_C_INT_CAUSE);
398 if_cs_write16(card, IF_CS_C_INT_CAUSE, cause & IF_CS_C_IC_MASK);
400 lbs_deb_cs("cause 0x%04x\n", cause);
401 if (cause == 0) {
402 /* Not for us */
403 return IRQ_NONE;
406 if (cause == 0xffff) {
407 /* Read in junk, the card has probably been removed */
408 card->priv->surpriseremoved = 1;
409 return IRQ_HANDLED;
412 /* TODO: I'm not sure what the best ordering is */
414 cause = if_cs_read16(card, IF_CS_C_STATUS) & IF_CS_C_S_MASK;
416 if (cause & IF_CS_C_S_RX_UPLD_RDY) {
417 struct sk_buff *skb;
418 lbs_deb_cs("rx packet\n");
419 skb = if_cs_receive_data(priv);
420 if (skb)
421 lbs_process_rxed_packet(priv, skb);
424 if (cause & IF_CS_H_IC_TX_OVER) {
425 lbs_deb_cs("tx over\n");
426 lbs_host_to_card_done(priv);
429 if (cause & IF_CS_C_S_CMD_UPLD_RDY) {
430 unsigned long flags;
431 u8 i;
433 lbs_deb_cs("cmd upload ready\n");
434 spin_lock_irqsave(&priv->driver_lock, flags);
435 i = (priv->resp_idx == 0) ? 1 : 0;
436 spin_unlock_irqrestore(&priv->driver_lock, flags);
438 BUG_ON(priv->resp_len[i]);
439 if_cs_receive_cmdres(priv, priv->resp_buf[i],
440 &priv->resp_len[i]);
442 spin_lock_irqsave(&priv->driver_lock, flags);
443 lbs_notify_command_response(priv, i);
444 spin_unlock_irqrestore(&priv->driver_lock, flags);
447 if (cause & IF_CS_H_IC_HOST_EVENT) {
448 u16 event = if_cs_read16(priv->card, IF_CS_C_STATUS)
449 & IF_CS_C_S_STATUS_MASK;
450 if_cs_write16(priv->card, IF_CS_H_INT_CAUSE,
451 IF_CS_H_IC_HOST_EVENT);
452 lbs_deb_cs("eventcause 0x%04x\n", event);
453 lbs_queue_event(priv, event >> 8 & 0xff);
456 return IRQ_HANDLED;
462 /********************************************************************/
463 /* Firmware */
464 /********************************************************************/
467 * Tries to program the helper firmware.
469 * Return 0 on success
471 static int if_cs_prog_helper(struct if_cs_card *card)
473 int ret = 0;
474 int sent = 0;
475 u8 scratch;
476 const struct firmware *fw;
478 lbs_deb_enter(LBS_DEB_CS);
480 scratch = if_cs_read8(card, IF_CS_SCRATCH);
482 /* "If the value is 0x5a, the firmware is already
483 * downloaded successfully"
485 if (scratch == 0x5a)
486 goto done;
488 /* "If the value is != 00, it is invalid value of register */
489 if (scratch != 0x00) {
490 ret = -ENODEV;
491 goto done;
494 /* TODO: make firmware file configurable */
495 ret = request_firmware(&fw, "libertas_cs_helper.fw",
496 &handle_to_dev(card->p_dev));
497 if (ret) {
498 lbs_pr_err("can't load helper firmware\n");
499 ret = -ENODEV;
500 goto done;
502 lbs_deb_cs("helper size %td\n", fw->size);
504 /* "Set the 5 bytes of the helper image to 0" */
505 /* Not needed, this contains an ARM branch instruction */
507 for (;;) {
508 /* "the number of bytes to send is 256" */
509 int count = 256;
510 int remain = fw->size - sent;
512 if (remain < count)
513 count = remain;
515 /* "write the number of bytes to be sent to the I/O Command
516 * write length register" */
517 if_cs_write16(card, IF_CS_H_CMD_LEN, count);
519 /* "write this to I/O Command port register as 16 bit writes */
520 if (count)
521 if_cs_write16_rep(card, IF_CS_H_CMD,
522 &fw->data[sent],
523 count >> 1);
525 /* "Assert the download over interrupt command in the Host
526 * status register" */
527 if_cs_write8(card, IF_CS_H_STATUS, IF_CS_H_STATUS_DNLD_OVER);
529 /* "Assert the download over interrupt command in the Card
530 * interrupt case register" */
531 if_cs_write16(card, IF_CS_H_INT_CAUSE, IF_CS_H_IC_DNLD_OVER);
533 /* "The host polls the Card Status register ... for 50 ms before
534 declaring a failure */
535 ret = if_cs_poll_while_fw_download(card, IF_CS_C_STATUS,
536 IF_CS_C_S_CMD_DNLD_RDY);
537 if (ret < 0) {
538 lbs_pr_err("can't download helper at 0x%x, ret %d\n",
539 sent, ret);
540 goto done;
543 if (count == 0)
544 break;
546 sent += count;
549 release_firmware(fw);
550 ret = 0;
552 done:
553 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
554 return ret;
558 static int if_cs_prog_real(struct if_cs_card *card)
560 const struct firmware *fw;
561 int ret = 0;
562 int retry = 0;
563 int len = 0;
564 int sent;
566 lbs_deb_enter(LBS_DEB_CS);
568 /* TODO: make firmware file configurable */
569 ret = request_firmware(&fw, "libertas_cs.fw",
570 &handle_to_dev(card->p_dev));
571 if (ret) {
572 lbs_pr_err("can't load firmware\n");
573 ret = -ENODEV;
574 goto done;
576 lbs_deb_cs("fw size %td\n", fw->size);
578 ret = if_cs_poll_while_fw_download(card, IF_CS_C_SQ_READ_LOW, IF_CS_C_SQ_HELPER_OK);
579 if (ret < 0) {
580 lbs_pr_err("helper firmware doesn't answer\n");
581 goto err_release;
584 for (sent = 0; sent < fw->size; sent += len) {
585 len = if_cs_read16(card, IF_CS_C_SQ_READ_LOW);
586 if (len & 1) {
587 retry++;
588 lbs_pr_info("odd, need to retry this firmware block\n");
589 } else {
590 retry = 0;
593 if (retry > 20) {
594 lbs_pr_err("could not download firmware\n");
595 ret = -ENODEV;
596 goto err_release;
598 if (retry) {
599 sent -= len;
603 if_cs_write16(card, IF_CS_H_CMD_LEN, len);
605 if_cs_write16_rep(card, IF_CS_H_CMD,
606 &fw->data[sent],
607 (len+1) >> 1);
608 if_cs_write8(card, IF_CS_H_STATUS, IF_CS_H_STATUS_DNLD_OVER);
609 if_cs_write16(card, IF_CS_H_INT_CAUSE, IF_CS_H_IC_DNLD_OVER);
611 ret = if_cs_poll_while_fw_download(card, IF_CS_C_STATUS,
612 IF_CS_C_S_CMD_DNLD_RDY);
613 if (ret < 0) {
614 lbs_pr_err("can't download firmware at 0x%x\n", sent);
615 goto err_release;
619 ret = if_cs_poll_while_fw_download(card, IF_CS_SCRATCH, 0x5a);
620 if (ret < 0) {
621 lbs_pr_err("firmware download failed\n");
622 goto err_release;
625 ret = 0;
626 goto done;
629 err_release:
630 release_firmware(fw);
632 done:
633 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
634 return ret;
639 /********************************************************************/
640 /* Callback functions for libertas.ko */
641 /********************************************************************/
643 /* Send commands or data packets to the card */
644 static int if_cs_host_to_card(struct lbs_private *priv,
645 u8 type,
646 u8 *buf,
647 u16 nb)
649 int ret = -1;
651 lbs_deb_enter_args(LBS_DEB_CS, "type %d, bytes %d", type, nb);
653 switch (type) {
654 case MVMS_DAT:
655 priv->dnld_sent = DNLD_DATA_SENT;
656 if_cs_send_data(priv, buf, nb);
657 ret = 0;
658 break;
659 case MVMS_CMD:
660 priv->dnld_sent = DNLD_CMD_SENT;
661 ret = if_cs_send_cmd(priv, buf, nb);
662 break;
663 default:
664 lbs_pr_err("%s: unsupported type %d\n", __FUNCTION__, type);
667 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
668 return ret;
672 /********************************************************************/
673 /* Card Services */
674 /********************************************************************/
677 * After a card is removed, if_cs_release() will unregister the
678 * device, and release the PCMCIA configuration. If the device is
679 * still open, this will be postponed until it is closed.
681 static void if_cs_release(struct pcmcia_device *p_dev)
683 struct if_cs_card *card = p_dev->priv;
685 lbs_deb_enter(LBS_DEB_CS);
687 free_irq(p_dev->irq.AssignedIRQ, card);
688 pcmcia_disable_device(p_dev);
689 if (card->iobase)
690 ioport_unmap(card->iobase);
692 lbs_deb_leave(LBS_DEB_CS);
697 * This creates an "instance" of the driver, allocating local data
698 * structures for one device. The device is registered with Card
699 * Services.
701 * The dev_link structure is initialized, but we don't actually
702 * configure the card at this point -- we wait until we receive a card
703 * insertion event.
705 static int if_cs_probe(struct pcmcia_device *p_dev)
707 int ret = -ENOMEM;
708 struct lbs_private *priv;
709 struct if_cs_card *card;
710 /* CIS parsing */
711 tuple_t tuple;
712 cisparse_t parse;
713 cistpl_cftable_entry_t *cfg = &parse.cftable_entry;
714 cistpl_io_t *io = &cfg->io;
715 u_char buf[64];
717 lbs_deb_enter(LBS_DEB_CS);
719 card = kzalloc(sizeof(struct if_cs_card), GFP_KERNEL);
720 if (!card) {
721 lbs_pr_err("error in kzalloc\n");
722 goto out;
724 card->p_dev = p_dev;
725 p_dev->priv = card;
727 p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING;
728 p_dev->irq.Handler = NULL;
729 p_dev->irq.IRQInfo1 = IRQ_INFO2_VALID | IRQ_LEVEL_ID;
731 p_dev->conf.Attributes = 0;
732 p_dev->conf.IntType = INT_MEMORY_AND_IO;
734 tuple.Attributes = 0;
735 tuple.TupleData = buf;
736 tuple.TupleDataMax = sizeof(buf);
737 tuple.TupleOffset = 0;
739 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
740 if ((ret = pcmcia_get_first_tuple(p_dev, &tuple)) != 0 ||
741 (ret = pcmcia_get_tuple_data(p_dev, &tuple)) != 0 ||
742 (ret = pcmcia_parse_tuple(p_dev, &tuple, &parse)) != 0)
744 lbs_pr_err("error in pcmcia_get_first_tuple etc\n");
745 goto out1;
748 p_dev->conf.ConfigIndex = cfg->index;
750 /* Do we need to allocate an interrupt? */
751 if (cfg->irq.IRQInfo1) {
752 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
755 /* IO window settings */
756 if (cfg->io.nwin != 1) {
757 lbs_pr_err("wrong CIS (check number of IO windows)\n");
758 ret = -ENODEV;
759 goto out1;
761 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
762 p_dev->io.BasePort1 = io->win[0].base;
763 p_dev->io.NumPorts1 = io->win[0].len;
765 /* This reserves IO space but doesn't actually enable it */
766 ret = pcmcia_request_io(p_dev, &p_dev->io);
767 if (ret) {
768 lbs_pr_err("error in pcmcia_request_io\n");
769 goto out1;
773 * Allocate an interrupt line. Note that this does not assign
774 * a handler to the interrupt, unless the 'Handler' member of
775 * the irq structure is initialized.
777 if (p_dev->conf.Attributes & CONF_ENABLE_IRQ) {
778 ret = pcmcia_request_irq(p_dev, &p_dev->irq);
779 if (ret) {
780 lbs_pr_err("error in pcmcia_request_irq\n");
781 goto out1;
785 /* Initialize io access */
786 card->iobase = ioport_map(p_dev->io.BasePort1, p_dev->io.NumPorts1);
787 if (!card->iobase) {
788 lbs_pr_err("error in ioport_map\n");
789 ret = -EIO;
790 goto out1;
794 * This actually configures the PCMCIA socket -- setting up
795 * the I/O windows and the interrupt mapping, and putting the
796 * card and host interface into "Memory and IO" mode.
798 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
799 if (ret) {
800 lbs_pr_err("error in pcmcia_request_configuration\n");
801 goto out2;
804 /* Finally, report what we've done */
805 lbs_deb_cs("irq %d, io 0x%04x-0x%04x\n",
806 p_dev->irq.AssignedIRQ, p_dev->io.BasePort1,
807 p_dev->io.BasePort1 + p_dev->io.NumPorts1 - 1);
810 /* Load the firmware early, before calling into libertas.ko */
811 ret = if_cs_prog_helper(card);
812 if (ret == 0)
813 ret = if_cs_prog_real(card);
814 if (ret)
815 goto out2;
817 /* Make this card known to the libertas driver */
818 priv = lbs_add_card(card, &p_dev->dev);
819 if (!priv) {
820 ret = -ENOMEM;
821 goto out2;
824 /* Finish setting up fields in lbs_private */
825 card->priv = priv;
826 priv->card = card;
827 priv->hw_host_to_card = if_cs_host_to_card;
828 priv->fw_ready = 1;
830 /* Now actually get the IRQ */
831 ret = request_irq(p_dev->irq.AssignedIRQ, if_cs_interrupt,
832 IRQF_SHARED, DRV_NAME, card);
833 if (ret) {
834 lbs_pr_err("error in request_irq\n");
835 goto out3;
838 /* Clear any interrupt cause that happend while sending
839 * firmware/initializing card */
840 if_cs_write16(card, IF_CS_C_INT_CAUSE, IF_CS_C_IC_MASK);
841 if_cs_enable_ints(card);
843 /* And finally bring the card up */
844 if (lbs_start_card(priv) != 0) {
845 lbs_pr_err("could not activate card\n");
846 goto out3;
849 /* The firmware for the CF card supports powersave */
850 priv->ps_supported = 1;
852 ret = 0;
853 goto out;
855 out3:
856 lbs_remove_card(priv);
857 out2:
858 ioport_unmap(card->iobase);
859 out1:
860 pcmcia_disable_device(p_dev);
861 out:
862 lbs_deb_leave_args(LBS_DEB_CS, "ret %d", ret);
863 return ret;
868 * This deletes a driver "instance". The device is de-registered with
869 * Card Services. If it has been released, all local data structures
870 * are freed. Otherwise, the structures will be freed when the device
871 * is released.
873 static void if_cs_detach(struct pcmcia_device *p_dev)
875 struct if_cs_card *card = p_dev->priv;
877 lbs_deb_enter(LBS_DEB_CS);
879 lbs_stop_card(card->priv);
880 lbs_remove_card(card->priv);
881 if_cs_disable_ints(card);
882 if_cs_release(p_dev);
883 kfree(card);
885 lbs_deb_leave(LBS_DEB_CS);
890 /********************************************************************/
891 /* Module initialization */
892 /********************************************************************/
894 static struct pcmcia_device_id if_cs_ids[] = {
895 PCMCIA_DEVICE_MANF_CARD(0x02df, 0x8103),
896 PCMCIA_DEVICE_NULL,
898 MODULE_DEVICE_TABLE(pcmcia, if_cs_ids);
901 static struct pcmcia_driver lbs_driver = {
902 .owner = THIS_MODULE,
903 .drv = {
904 .name = DRV_NAME,
906 .probe = if_cs_probe,
907 .remove = if_cs_detach,
908 .id_table = if_cs_ids,
912 static int __init if_cs_init(void)
914 int ret;
916 lbs_deb_enter(LBS_DEB_CS);
917 ret = pcmcia_register_driver(&lbs_driver);
918 lbs_deb_leave(LBS_DEB_CS);
919 return ret;
923 static void __exit if_cs_exit(void)
925 lbs_deb_enter(LBS_DEB_CS);
926 pcmcia_unregister_driver(&lbs_driver);
927 lbs_deb_leave(LBS_DEB_CS);
931 module_init(if_cs_init);
932 module_exit(if_cs_exit);