2 * linux/drivers/net/wireless/libertas/if_spi.c
4 * Driver for Marvell SPI WLAN cards.
6 * Copyright 2008 Analog Devices Inc.
9 * Andrey Yurovsky <andrey@cozybit.com>
10 * Colin McCabe <colin@cozybit.com>
12 * Inspired by if_sdio.c, Copyright 2007-2008 Pierre Ossman
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/hardirq.h>
23 #include <linux/interrupt.h>
24 #include <linux/moduleparam.h>
25 #include <linux/firmware.h>
26 #include <linux/jiffies.h>
27 #include <linux/list.h>
28 #include <linux/netdevice.h>
29 #include <linux/slab.h>
30 #include <linux/spi/libertas_spi.h>
31 #include <linux/spi/spi.h>
39 struct if_spi_packet
{
40 struct list_head list
;
42 u8 buffer
[0] __attribute__((aligned(4)));
46 struct spi_device
*spi
;
47 struct lbs_private
*priv
;
48 struct libertas_spi_platform_data
*pdata
;
50 /* The card ID and card revision, as reported by the hardware. */
54 /* The last time that we initiated an SPU operation */
55 unsigned long prev_xfer_time
;
58 unsigned long spu_port_delay
;
59 unsigned long spu_reg_delay
;
61 /* Handles all SPI communication (except for FW load) */
62 struct workqueue_struct
*workqueue
;
63 struct work_struct packet_work
;
64 struct work_struct resume_work
;
66 u8 cmd_buffer
[IF_SPI_CMD_BUF_SIZE
];
68 /* A buffer of incoming packets from libertas core.
69 * Since we can't sleep in hw_host_to_card, we have to buffer
71 struct list_head cmd_packet_list
;
72 struct list_head data_packet_list
;
74 /* Protects cmd_packet_list and data_packet_list */
75 spinlock_t buffer_lock
;
77 /* True is card suspended */
81 static void free_if_spi_card(struct if_spi_card
*card
)
83 struct list_head
*cursor
, *next
;
84 struct if_spi_packet
*packet
;
86 list_for_each_safe(cursor
, next
, &card
->cmd_packet_list
) {
87 packet
= container_of(cursor
, struct if_spi_packet
, list
);
88 list_del(&packet
->list
);
91 list_for_each_safe(cursor
, next
, &card
->data_packet_list
) {
92 packet
= container_of(cursor
, struct if_spi_packet
, list
);
93 list_del(&packet
->list
);
96 spi_set_drvdata(card
->spi
, NULL
);
100 #define MODEL_8385 0x04
101 #define MODEL_8686 0x0b
102 #define MODEL_8688 0x10
104 static const struct lbs_fw_table fw_table
[] = {
105 { MODEL_8385
, "libertas/gspi8385_helper.bin", "libertas/gspi8385.bin" },
106 { MODEL_8385
, "libertas/gspi8385_hlp.bin", "libertas/gspi8385.bin" },
107 { MODEL_8686
, "libertas/gspi8686_v9_helper.bin", "libertas/gspi8686_v9.bin" },
108 { MODEL_8686
, "libertas/gspi8686_hlp.bin", "libertas/gspi8686.bin" },
109 { MODEL_8688
, "libertas/gspi8688_helper.bin", "libertas/gspi8688.bin" },
112 MODULE_FIRMWARE("libertas/gspi8385_helper.bin");
113 MODULE_FIRMWARE("libertas/gspi8385_hlp.bin");
114 MODULE_FIRMWARE("libertas/gspi8385.bin");
115 MODULE_FIRMWARE("libertas/gspi8686_v9_helper.bin");
116 MODULE_FIRMWARE("libertas/gspi8686_v9.bin");
117 MODULE_FIRMWARE("libertas/gspi8686_hlp.bin");
118 MODULE_FIRMWARE("libertas/gspi8686.bin");
119 MODULE_FIRMWARE("libertas/gspi8688_helper.bin");
120 MODULE_FIRMWARE("libertas/gspi8688.bin");
124 * SPI Interface Unit Routines
126 * The SPU sits between the host and the WLAN module.
127 * All communication with the firmware is through SPU transactions.
129 * First we have to put a SPU register name on the bus. Then we can
130 * either read from or write to that register.
134 static void spu_transaction_init(struct if_spi_card
*card
)
136 if (!time_after(jiffies
, card
->prev_xfer_time
+ 1)) {
137 /* Unfortunately, the SPU requires a delay between successive
138 * transactions. If our last transaction was more than a jiffy
139 * ago, we have obviously already delayed enough.
140 * If not, we have to busy-wait to be on the safe side. */
145 static void spu_transaction_finish(struct if_spi_card
*card
)
147 card
->prev_xfer_time
= jiffies
;
151 * Write out a byte buffer to an SPI register,
152 * using a series of 16-bit transfers.
154 static int spu_write(struct if_spi_card
*card
, u16 reg
, const u8
*buf
, int len
)
157 __le16 reg_out
= cpu_to_le16(reg
| IF_SPI_WRITE_OPERATION_MASK
);
158 struct spi_message m
;
159 struct spi_transfer reg_trans
;
160 struct spi_transfer data_trans
;
162 spi_message_init(&m
);
163 memset(®_trans
, 0, sizeof(reg_trans
));
164 memset(&data_trans
, 0, sizeof(data_trans
));
166 /* You must give an even number of bytes to the SPU, even if it
167 * doesn't care about the last one. */
170 spu_transaction_init(card
);
172 /* write SPU register index */
173 reg_trans
.tx_buf
= ®_out
;
174 reg_trans
.len
= sizeof(reg_out
);
176 data_trans
.tx_buf
= buf
;
177 data_trans
.len
= len
;
179 spi_message_add_tail(®_trans
, &m
);
180 spi_message_add_tail(&data_trans
, &m
);
182 err
= spi_sync(card
->spi
, &m
);
183 spu_transaction_finish(card
);
187 static inline int spu_write_u16(struct if_spi_card
*card
, u16 reg
, u16 val
)
191 buff
= cpu_to_le16(val
);
192 return spu_write(card
, reg
, (u8
*)&buff
, sizeof(u16
));
195 static inline int spu_reg_is_port_reg(u16 reg
)
198 case IF_SPI_IO_RDWRPORT_REG
:
199 case IF_SPI_CMD_RDWRPORT_REG
:
200 case IF_SPI_DATA_RDWRPORT_REG
:
207 static int spu_read(struct if_spi_card
*card
, u16 reg
, u8
*buf
, int len
)
211 __le16 reg_out
= cpu_to_le16(reg
| IF_SPI_READ_OPERATION_MASK
);
212 struct spi_message m
;
213 struct spi_transfer reg_trans
;
214 struct spi_transfer dummy_trans
;
215 struct spi_transfer data_trans
;
218 * You must take an even number of bytes from the SPU, even if you
219 * don't care about the last one.
223 spu_transaction_init(card
);
225 spi_message_init(&m
);
226 memset(®_trans
, 0, sizeof(reg_trans
));
227 memset(&dummy_trans
, 0, sizeof(dummy_trans
));
228 memset(&data_trans
, 0, sizeof(data_trans
));
230 /* write SPU register index */
231 reg_trans
.tx_buf
= ®_out
;
232 reg_trans
.len
= sizeof(reg_out
);
233 spi_message_add_tail(®_trans
, &m
);
235 delay
= spu_reg_is_port_reg(reg
) ? card
->spu_port_delay
:
237 if (card
->use_dummy_writes
) {
238 /* Clock in dummy cycles while the SPU fills the FIFO */
239 dummy_trans
.len
= delay
/ 8;
240 spi_message_add_tail(&dummy_trans
, &m
);
242 /* Busy-wait while the SPU fills the FIFO */
243 reg_trans
.delay_usecs
=
244 DIV_ROUND_UP((100 + (delay
* 10)), 1000);
248 data_trans
.rx_buf
= buf
;
249 data_trans
.len
= len
;
250 spi_message_add_tail(&data_trans
, &m
);
252 err
= spi_sync(card
->spi
, &m
);
253 spu_transaction_finish(card
);
257 /* Read 16 bits from an SPI register */
258 static inline int spu_read_u16(struct if_spi_card
*card
, u16 reg
, u16
*val
)
263 ret
= spu_read(card
, reg
, (u8
*)&buf
, sizeof(buf
));
265 *val
= le16_to_cpup(&buf
);
270 * Read 32 bits from an SPI register.
271 * The low 16 bits are read first.
273 static int spu_read_u32(struct if_spi_card
*card
, u16 reg
, u32
*val
)
278 err
= spu_read(card
, reg
, (u8
*)&buf
, sizeof(buf
));
280 *val
= le32_to_cpup(&buf
);
285 * Keep reading 16 bits from an SPI register until you get the correct result.
287 * If mask = 0, the correct result is any non-zero number.
288 * If mask != 0, the correct result is any number where
289 * number & target_mask == target
291 * Returns -ETIMEDOUT if a second passes without the correct result.
293 static int spu_wait_for_u16(struct if_spi_card
*card
, u16 reg
,
294 u16 target_mask
, u16 target
)
297 unsigned long timeout
= jiffies
+ 5*HZ
;
300 err
= spu_read_u16(card
, reg
, &val
);
304 if ((val
& target_mask
) == target
)
311 if (time_after(jiffies
, timeout
)) {
312 pr_err("%s: timeout with val=%02x, target_mask=%02x, target=%02x\n",
313 __func__
, val
, target_mask
, target
);
320 * Read 16 bits from an SPI register until you receive a specific value.
321 * Returns -ETIMEDOUT if a 4 tries pass without success.
323 static int spu_wait_for_u32(struct if_spi_card
*card
, u32 reg
, u32 target
)
326 for (try = 0; try < 4; ++try) {
328 err
= spu_read_u32(card
, reg
, &val
);
338 static int spu_set_interrupt_mode(struct if_spi_card
*card
,
339 int suppress_host_int
,
345 * We can suppress a host interrupt by clearing the appropriate
346 * bit in the "host interrupt status mask" register
348 if (suppress_host_int
) {
349 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_MASK_REG
, 0);
353 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_MASK_REG
,
354 IF_SPI_HISM_TX_DOWNLOAD_RDY
|
355 IF_SPI_HISM_RX_UPLOAD_RDY
|
356 IF_SPI_HISM_CMD_DOWNLOAD_RDY
|
357 IF_SPI_HISM_CARDEVENT
|
358 IF_SPI_HISM_CMD_UPLOAD_RDY
);
364 * If auto-interrupts are on, the completion of certain transactions
365 * will trigger an interrupt automatically. If auto-interrupts
366 * are off, we need to set the "Card Interrupt Cause" register to
367 * trigger a card interrupt.
370 err
= spu_write_u16(card
, IF_SPI_HOST_INT_CTRL_REG
,
371 IF_SPI_HICT_TX_DOWNLOAD_OVER_AUTO
|
372 IF_SPI_HICT_RX_UPLOAD_OVER_AUTO
|
373 IF_SPI_HICT_CMD_DOWNLOAD_OVER_AUTO
|
374 IF_SPI_HICT_CMD_UPLOAD_OVER_AUTO
);
378 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_MASK_REG
, 0);
385 static int spu_get_chip_revision(struct if_spi_card
*card
,
386 u16
*card_id
, u8
*card_rev
)
390 err
= spu_read_u32(card
, IF_SPI_DEVICEID_CTRL_REG
, &dev_ctrl
);
393 *card_id
= IF_SPI_DEVICEID_CTRL_REG_TO_CARD_ID(dev_ctrl
);
394 *card_rev
= IF_SPI_DEVICEID_CTRL_REG_TO_CARD_REV(dev_ctrl
);
398 static int spu_set_bus_mode(struct if_spi_card
*card
, u16 mode
)
403 err
= spu_write_u16(card
, IF_SPI_SPU_BUS_MODE_REG
, mode
);
406 /* Check that we were able to read back what we just wrote. */
407 err
= spu_read_u16(card
, IF_SPI_SPU_BUS_MODE_REG
, &rval
);
410 if ((rval
& 0xF) != mode
) {
411 pr_err("Can't read bus mode register\n");
417 static int spu_init(struct if_spi_card
*card
, int use_dummy_writes
)
423 * We have to start up in timed delay mode so that we can safely
424 * read the Delay Read Register.
426 card
->use_dummy_writes
= 0;
427 err
= spu_set_bus_mode(card
,
428 IF_SPI_BUS_MODE_SPI_CLOCK_PHASE_RISING
|
429 IF_SPI_BUS_MODE_DELAY_METHOD_TIMED
|
430 IF_SPI_BUS_MODE_16_BIT_ADDRESS_16_BIT_DATA
);
433 card
->spu_port_delay
= 1000;
434 card
->spu_reg_delay
= 1000;
435 err
= spu_read_u32(card
, IF_SPI_DELAY_READ_REG
, &delay
);
438 card
->spu_port_delay
= delay
& 0x0000ffff;
439 card
->spu_reg_delay
= (delay
& 0xffff0000) >> 16;
441 /* If dummy clock delay mode has been requested, switch to it now */
442 if (use_dummy_writes
) {
443 card
->use_dummy_writes
= 1;
444 err
= spu_set_bus_mode(card
,
445 IF_SPI_BUS_MODE_SPI_CLOCK_PHASE_RISING
|
446 IF_SPI_BUS_MODE_DELAY_METHOD_DUMMY_CLOCK
|
447 IF_SPI_BUS_MODE_16_BIT_ADDRESS_16_BIT_DATA
);
452 lbs_deb_spi("Initialized SPU unit. "
453 "spu_port_delay=0x%04lx, spu_reg_delay=0x%04lx\n",
454 card
->spu_port_delay
, card
->spu_reg_delay
);
462 static int if_spi_prog_helper_firmware(struct if_spi_card
*card
,
463 const struct firmware
*firmware
)
468 u8 temp
[HELPER_FW_LOAD_CHUNK_SZ
];
470 lbs_deb_enter(LBS_DEB_SPI
);
472 err
= spu_set_interrupt_mode(card
, 1, 0);
476 bytes_remaining
= firmware
->size
;
479 /* Load helper firmware image */
480 while (bytes_remaining
> 0) {
482 * Scratch pad 1 should contain the number of bytes we
483 * want to download to the firmware
485 err
= spu_write_u16(card
, IF_SPI_SCRATCH_1_REG
,
486 HELPER_FW_LOAD_CHUNK_SZ
);
490 err
= spu_wait_for_u16(card
, IF_SPI_HOST_INT_STATUS_REG
,
491 IF_SPI_HIST_CMD_DOWNLOAD_RDY
,
492 IF_SPI_HIST_CMD_DOWNLOAD_RDY
);
497 * Feed the data into the command read/write port reg
498 * in chunks of 64 bytes
500 memset(temp
, 0, sizeof(temp
));
502 min(bytes_remaining
, HELPER_FW_LOAD_CHUNK_SZ
));
504 err
= spu_write(card
, IF_SPI_CMD_RDWRPORT_REG
,
505 temp
, HELPER_FW_LOAD_CHUNK_SZ
);
509 /* Interrupt the boot code */
510 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_REG
, 0);
513 err
= spu_write_u16(card
, IF_SPI_CARD_INT_CAUSE_REG
,
514 IF_SPI_CIC_CMD_DOWNLOAD_OVER
);
517 bytes_remaining
-= HELPER_FW_LOAD_CHUNK_SZ
;
518 fw
+= HELPER_FW_LOAD_CHUNK_SZ
;
522 * Once the helper / single stage firmware download is complete,
523 * write 0 to scratch pad 1 and interrupt the
524 * bootloader. This completes the helper download.
526 err
= spu_write_u16(card
, IF_SPI_SCRATCH_1_REG
, FIRMWARE_DNLD_OK
);
529 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_REG
, 0);
532 err
= spu_write_u16(card
, IF_SPI_CARD_INT_CAUSE_REG
,
533 IF_SPI_CIC_CMD_DOWNLOAD_OVER
);
536 lbs_deb_spi("waiting for helper to boot...\n");
540 pr_err("failed to load helper firmware (err=%d)\n", err
);
541 lbs_deb_leave_args(LBS_DEB_SPI
, "err %d", err
);
546 * Returns the length of the next packet the firmware expects us to send.
547 * Sets crc_err if the previous transfer had a CRC error.
549 static int if_spi_prog_main_firmware_check_len(struct if_spi_card
*card
,
556 * wait until the host interrupt status register indicates
557 * that we are ready to download
559 err
= spu_wait_for_u16(card
, IF_SPI_HOST_INT_STATUS_REG
,
560 IF_SPI_HIST_CMD_DOWNLOAD_RDY
,
561 IF_SPI_HIST_CMD_DOWNLOAD_RDY
);
563 pr_err("timed out waiting for host_int_status\n");
567 /* Ask the device how many bytes of firmware it wants. */
568 err
= spu_read_u16(card
, IF_SPI_SCRATCH_1_REG
, &len
);
572 if (len
> IF_SPI_CMD_BUF_SIZE
) {
573 pr_err("firmware load device requested a larger transfer than we are prepared to handle (len = %d)\n",
578 lbs_deb_spi("%s: crc error\n", __func__
);
587 static int if_spi_prog_main_firmware(struct if_spi_card
*card
,
588 const struct firmware
*firmware
)
590 struct lbs_private
*priv
= card
->priv
;
592 int bytes
, crc_err
= 0, err
= 0;
596 lbs_deb_enter(LBS_DEB_SPI
);
598 err
= spu_set_interrupt_mode(card
, 1, 0);
602 err
= spu_wait_for_u16(card
, IF_SPI_SCRATCH_1_REG
, 0, 0);
604 netdev_err(priv
->dev
,
605 "%s: timed out waiting for initial scratch reg = 0\n",
612 bytes
= firmware
->size
;
614 while ((len
= if_spi_prog_main_firmware_check_len(card
, &crc_err
))) {
621 * If there are no more bytes left, we would normally
622 * expect to have terminated with len = 0
624 netdev_err(priv
->dev
,
625 "Firmware load wants more bytes than we have to offer.\n");
629 /* Previous transfer failed. */
630 if (++num_crc_errs
> MAX_MAIN_FW_LOAD_CRC_ERR
) {
631 pr_err("Too many CRC errors encountered in firmware load.\n");
636 /* Previous transfer succeeded. Advance counters. */
641 memset(card
->cmd_buffer
, 0, len
);
642 memcpy(card
->cmd_buffer
, fw
, bytes
);
644 memcpy(card
->cmd_buffer
, fw
, len
);
646 err
= spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_REG
, 0);
649 err
= spu_write(card
, IF_SPI_CMD_RDWRPORT_REG
,
650 card
->cmd_buffer
, len
);
653 err
= spu_write_u16(card
, IF_SPI_CARD_INT_CAUSE_REG
,
654 IF_SPI_CIC_CMD_DOWNLOAD_OVER
);
659 if (bytes
> prev_len
) {
660 pr_err("firmware load wants fewer bytes than we have to offer\n");
663 /* Confirm firmware download */
664 err
= spu_wait_for_u32(card
, IF_SPI_SCRATCH_4_REG
,
665 SUCCESSFUL_FW_DOWNLOAD_MAGIC
);
667 pr_err("failed to confirm the firmware download\n");
673 pr_err("failed to load firmware (err=%d)\n", err
);
674 lbs_deb_leave_args(LBS_DEB_SPI
, "err %d", err
);
679 * SPI Transfer Thread
681 * The SPI worker handles all SPI transfers, so there is no need for a lock.
684 /* Move a command from the card to the host */
685 static int if_spi_c2h_cmd(struct if_spi_card
*card
)
687 struct lbs_private
*priv
= card
->priv
;
694 * We need a buffer big enough to handle whatever people send to
697 BUILD_BUG_ON(IF_SPI_CMD_BUF_SIZE
< LBS_CMD_BUFFER_SIZE
);
698 BUILD_BUG_ON(IF_SPI_CMD_BUF_SIZE
< LBS_UPLD_SIZE
);
701 * It's just annoying if the buffer size isn't a multiple of 4, because
702 * then we might have len < IF_SPI_CMD_BUF_SIZE but
703 * ALIGN(len, 4) > IF_SPI_CMD_BUF_SIZE
705 BUILD_BUG_ON(IF_SPI_CMD_BUF_SIZE
% 4 != 0);
707 lbs_deb_enter(LBS_DEB_SPI
);
709 /* How many bytes are there to read? */
710 err
= spu_read_u16(card
, IF_SPI_SCRATCH_2_REG
, &len
);
714 netdev_err(priv
->dev
, "%s: error: card has no data for host\n",
718 } else if (len
> IF_SPI_CMD_BUF_SIZE
) {
719 netdev_err(priv
->dev
,
720 "%s: error: response packet too large: %d bytes, but maximum is %d\n",
721 __func__
, len
, IF_SPI_CMD_BUF_SIZE
);
726 /* Read the data from the WLAN module into our command buffer */
727 err
= spu_read(card
, IF_SPI_CMD_RDWRPORT_REG
,
728 card
->cmd_buffer
, ALIGN(len
, 4));
732 spin_lock_irqsave(&priv
->driver_lock
, flags
);
733 i
= (priv
->resp_idx
== 0) ? 1 : 0;
734 BUG_ON(priv
->resp_len
[i
]);
735 priv
->resp_len
[i
] = len
;
736 memcpy(priv
->resp_buf
[i
], card
->cmd_buffer
, len
);
737 lbs_notify_command_response(priv
, i
);
738 spin_unlock_irqrestore(&priv
->driver_lock
, flags
);
742 netdev_err(priv
->dev
, "%s: err=%d\n", __func__
, err
);
743 lbs_deb_leave(LBS_DEB_SPI
);
747 /* Move data from the card to the host */
748 static int if_spi_c2h_data(struct if_spi_card
*card
)
750 struct lbs_private
*priv
= card
->priv
;
756 lbs_deb_enter(LBS_DEB_SPI
);
758 /* How many bytes are there to read? */
759 err
= spu_read_u16(card
, IF_SPI_SCRATCH_1_REG
, &len
);
763 netdev_err(priv
->dev
, "%s: error: card has no data for host\n",
767 } else if (len
> MRVDRV_ETH_RX_PACKET_BUFFER_SIZE
) {
768 netdev_err(priv
->dev
,
769 "%s: error: card has %d bytes of data, but our maximum skb size is %zu\n",
770 __func__
, len
, MRVDRV_ETH_RX_PACKET_BUFFER_SIZE
);
775 /* TODO: should we allocate a smaller skb if we have less data? */
776 skb
= dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE
);
781 skb_reserve(skb
, IPFIELD_ALIGN_OFFSET
);
782 data
= skb_put(skb
, len
);
784 /* Read the data from the WLAN module into our skb... */
785 err
= spu_read(card
, IF_SPI_DATA_RDWRPORT_REG
, data
, ALIGN(len
, 4));
789 /* pass the SKB to libertas */
790 err
= lbs_process_rxed_packet(card
->priv
, skb
);
801 netdev_err(priv
->dev
, "%s: err=%d\n", __func__
, err
);
802 lbs_deb_leave(LBS_DEB_SPI
);
806 /* Move data or a command from the host to the card. */
807 static void if_spi_h2c(struct if_spi_card
*card
,
808 struct if_spi_packet
*packet
, int type
)
810 struct lbs_private
*priv
= card
->priv
;
812 u16 int_type
, port_reg
;
816 int_type
= IF_SPI_CIC_TX_DOWNLOAD_OVER
;
817 port_reg
= IF_SPI_DATA_RDWRPORT_REG
;
820 int_type
= IF_SPI_CIC_CMD_DOWNLOAD_OVER
;
821 port_reg
= IF_SPI_CMD_RDWRPORT_REG
;
824 netdev_err(priv
->dev
, "can't transfer buffer of type %d\n",
830 /* Write the data to the card */
831 err
= spu_write(card
, port_reg
, packet
->buffer
, packet
->blen
);
839 netdev_err(priv
->dev
, "%s: error %d\n", __func__
, err
);
842 /* Inform the host about a card event */
843 static void if_spi_e2h(struct if_spi_card
*card
)
847 struct lbs_private
*priv
= card
->priv
;
849 err
= spu_read_u32(card
, IF_SPI_SCRATCH_3_REG
, &cause
);
853 /* re-enable the card event interrupt */
854 spu_write_u16(card
, IF_SPI_HOST_INT_STATUS_REG
,
855 ~IF_SPI_HICU_CARD_EVENT
);
857 /* generate a card interrupt */
858 spu_write_u16(card
, IF_SPI_CARD_INT_CAUSE_REG
, IF_SPI_CIC_HOST_EVENT
);
860 lbs_queue_event(priv
, cause
& 0xff);
863 netdev_err(priv
->dev
, "%s: error %d\n", __func__
, err
);
866 static void if_spi_host_to_card_worker(struct work_struct
*work
)
869 struct if_spi_card
*card
;
872 struct if_spi_packet
*packet
;
873 struct lbs_private
*priv
;
875 card
= container_of(work
, struct if_spi_card
, packet_work
);
878 lbs_deb_enter(LBS_DEB_SPI
);
881 * Read the host interrupt status register to see what we
884 err
= spu_read_u16(card
, IF_SPI_HOST_INT_STATUS_REG
,
887 netdev_err(priv
->dev
, "I/O error\n");
891 if (hiStatus
& IF_SPI_HIST_CMD_UPLOAD_RDY
) {
892 err
= if_spi_c2h_cmd(card
);
896 if (hiStatus
& IF_SPI_HIST_RX_UPLOAD_RDY
) {
897 err
= if_spi_c2h_data(card
);
903 * workaround: in PS mode, the card does not set the Command
904 * Download Ready bit, but it sets TX Download Ready.
906 if (hiStatus
& IF_SPI_HIST_CMD_DOWNLOAD_RDY
||
907 (card
->priv
->psstate
!= PS_STATE_FULL_POWER
&&
908 (hiStatus
& IF_SPI_HIST_TX_DOWNLOAD_RDY
))) {
910 * This means two things. First of all,
911 * if there was a previous command sent, the card has
912 * successfully received it.
913 * Secondly, it is now ready to download another
916 lbs_host_to_card_done(card
->priv
);
918 /* Do we have any command packets from the host to send? */
920 spin_lock_irqsave(&card
->buffer_lock
, flags
);
921 if (!list_empty(&card
->cmd_packet_list
)) {
922 packet
= (struct if_spi_packet
*)(card
->
923 cmd_packet_list
.next
);
924 list_del(&packet
->list
);
926 spin_unlock_irqrestore(&card
->buffer_lock
, flags
);
929 if_spi_h2c(card
, packet
, MVMS_CMD
);
931 if (hiStatus
& IF_SPI_HIST_TX_DOWNLOAD_RDY
) {
932 /* Do we have any data packets from the host to send? */
934 spin_lock_irqsave(&card
->buffer_lock
, flags
);
935 if (!list_empty(&card
->data_packet_list
)) {
936 packet
= (struct if_spi_packet
*)(card
->
937 data_packet_list
.next
);
938 list_del(&packet
->list
);
940 spin_unlock_irqrestore(&card
->buffer_lock
, flags
);
943 if_spi_h2c(card
, packet
, MVMS_DAT
);
945 if (hiStatus
& IF_SPI_HIST_CARD_EVENT
)
950 netdev_err(priv
->dev
, "%s: got error %d\n", __func__
, err
);
952 lbs_deb_leave(LBS_DEB_SPI
);
958 * Called from Libertas to transfer some data to the WLAN device
959 * We can't sleep here.
961 static int if_spi_host_to_card(struct lbs_private
*priv
,
962 u8 type
, u8
*buf
, u16 nb
)
966 struct if_spi_card
*card
= priv
->card
;
967 struct if_spi_packet
*packet
;
970 lbs_deb_enter_args(LBS_DEB_SPI
, "type %d, bytes %d", type
, nb
);
973 netdev_err(priv
->dev
, "%s: invalid size requested: %d\n",
979 packet
= kzalloc(sizeof(struct if_spi_packet
) + blen
, GFP_ATOMIC
);
985 memcpy(packet
->buffer
, buf
, nb
);
986 memset(packet
->buffer
+ nb
, 0, blen
- nb
);
990 priv
->dnld_sent
= DNLD_CMD_SENT
;
991 spin_lock_irqsave(&card
->buffer_lock
, flags
);
992 list_add_tail(&packet
->list
, &card
->cmd_packet_list
);
993 spin_unlock_irqrestore(&card
->buffer_lock
, flags
);
996 priv
->dnld_sent
= DNLD_DATA_SENT
;
997 spin_lock_irqsave(&card
->buffer_lock
, flags
);
998 list_add_tail(&packet
->list
, &card
->data_packet_list
);
999 spin_unlock_irqrestore(&card
->buffer_lock
, flags
);
1002 netdev_err(priv
->dev
, "can't transfer buffer of type %d\n",
1008 /* Queue spi xfer work */
1009 queue_work(card
->workqueue
, &card
->packet_work
);
1011 lbs_deb_leave_args(LBS_DEB_SPI
, "err=%d", err
);
1018 * Service incoming interrupts from the WLAN device. We can't sleep here, so
1019 * don't try to talk on the SPI bus, just queue the SPI xfer work.
1021 static irqreturn_t
if_spi_host_interrupt(int irq
, void *dev_id
)
1023 struct if_spi_card
*card
= dev_id
;
1025 queue_work(card
->workqueue
, &card
->packet_work
);
1034 static int if_spi_init_card(struct if_spi_card
*card
)
1036 struct lbs_private
*priv
= card
->priv
;
1039 const struct firmware
*helper
= NULL
;
1040 const struct firmware
*mainfw
= NULL
;
1042 lbs_deb_enter(LBS_DEB_SPI
);
1044 err
= spu_init(card
, card
->pdata
->use_dummy_writes
);
1047 err
= spu_get_chip_revision(card
, &card
->card_id
, &card
->card_rev
);
1051 err
= spu_read_u32(card
, IF_SPI_SCRATCH_4_REG
, &scratch
);
1054 if (scratch
== SUCCESSFUL_FW_DOWNLOAD_MAGIC
)
1055 lbs_deb_spi("Firmware is already loaded for "
1056 "Marvell WLAN 802.11 adapter\n");
1058 /* Check if we support this card */
1059 for (i
= 0; i
< ARRAY_SIZE(fw_table
); i
++) {
1060 if (card
->card_id
== fw_table
[i
].model
)
1063 if (i
== ARRAY_SIZE(fw_table
)) {
1064 netdev_err(priv
->dev
, "Unsupported chip_id: 0x%02x\n",
1070 err
= lbs_get_firmware(&card
->spi
->dev
, NULL
, NULL
,
1071 card
->card_id
, &fw_table
[0], &helper
,
1074 netdev_err(priv
->dev
, "failed to find firmware (%d)\n",
1079 lbs_deb_spi("Initializing FW for Marvell WLAN 802.11 adapter "
1080 "(chip_id = 0x%04x, chip_rev = 0x%02x) "
1081 "attached to SPI bus_num %d, chip_select %d. "
1082 "spi->max_speed_hz=%d\n",
1083 card
->card_id
, card
->card_rev
,
1084 card
->spi
->master
->bus_num
,
1085 card
->spi
->chip_select
,
1086 card
->spi
->max_speed_hz
);
1087 err
= if_spi_prog_helper_firmware(card
, helper
);
1090 err
= if_spi_prog_main_firmware(card
, mainfw
);
1093 lbs_deb_spi("loaded FW for Marvell WLAN 802.11 adapter\n");
1096 err
= spu_set_interrupt_mode(card
, 0, 1);
1102 release_firmware(helper
);
1104 release_firmware(mainfw
);
1106 lbs_deb_leave_args(LBS_DEB_SPI
, "err %d\n", err
);
1111 static void if_spi_resume_worker(struct work_struct
*work
)
1113 struct if_spi_card
*card
;
1115 card
= container_of(work
, struct if_spi_card
, resume_work
);
1117 if (card
->suspended
) {
1118 if (card
->pdata
->setup
)
1119 card
->pdata
->setup(card
->spi
);
1122 if_spi_init_card(card
);
1124 enable_irq(card
->spi
->irq
);
1126 /* And resume it ... */
1127 lbs_resume(card
->priv
);
1129 card
->suspended
= 0;
1133 static int __devinit
if_spi_probe(struct spi_device
*spi
)
1135 struct if_spi_card
*card
;
1136 struct lbs_private
*priv
= NULL
;
1137 struct libertas_spi_platform_data
*pdata
= spi
->dev
.platform_data
;
1140 lbs_deb_enter(LBS_DEB_SPI
);
1148 err
= pdata
->setup(spi
);
1153 /* Allocate card structure to represent this specific device */
1154 card
= kzalloc(sizeof(struct if_spi_card
), GFP_KERNEL
);
1159 spi_set_drvdata(spi
, card
);
1160 card
->pdata
= pdata
;
1162 card
->prev_xfer_time
= jiffies
;
1164 INIT_LIST_HEAD(&card
->cmd_packet_list
);
1165 INIT_LIST_HEAD(&card
->data_packet_list
);
1166 spin_lock_init(&card
->buffer_lock
);
1168 /* Initialize the SPI Interface Unit */
1171 err
= if_spi_init_card(card
);
1176 * Register our card with libertas.
1177 * This will call alloc_etherdev.
1179 priv
= lbs_add_card(card
, &spi
->dev
);
1185 priv
->setup_fw_on_resume
= 1;
1187 priv
->hw_host_to_card
= if_spi_host_to_card
;
1188 priv
->enter_deep_sleep
= NULL
;
1189 priv
->exit_deep_sleep
= NULL
;
1190 priv
->reset_deep_sleep_wakeup
= NULL
;
1193 /* Initialize interrupt handling stuff. */
1194 card
->workqueue
= create_workqueue("libertas_spi");
1195 INIT_WORK(&card
->packet_work
, if_spi_host_to_card_worker
);
1196 INIT_WORK(&card
->resume_work
, if_spi_resume_worker
);
1198 err
= request_irq(spi
->irq
, if_spi_host_interrupt
,
1199 IRQF_TRIGGER_FALLING
, "libertas_spi", card
);
1201 pr_err("can't get host irq line-- request_irq failed\n");
1202 goto terminate_workqueue
;
1207 * This will call register_netdev, and we'll start
1208 * getting interrupts...
1210 err
= lbs_start_card(priv
);
1214 lbs_deb_spi("Finished initializing WLAN module.\n");
1216 /* successful exit */
1220 free_irq(spi
->irq
, card
);
1221 terminate_workqueue
:
1222 flush_workqueue(card
->workqueue
);
1223 destroy_workqueue(card
->workqueue
);
1224 lbs_remove_card(priv
); /* will call free_netdev */
1226 free_if_spi_card(card
);
1228 if (pdata
->teardown
)
1229 pdata
->teardown(spi
);
1231 lbs_deb_leave_args(LBS_DEB_SPI
, "err %d\n", err
);
1235 static int __devexit
libertas_spi_remove(struct spi_device
*spi
)
1237 struct if_spi_card
*card
= spi_get_drvdata(spi
);
1238 struct lbs_private
*priv
= card
->priv
;
1240 lbs_deb_spi("libertas_spi_remove\n");
1241 lbs_deb_enter(LBS_DEB_SPI
);
1243 cancel_work_sync(&card
->resume_work
);
1245 lbs_stop_card(priv
);
1246 lbs_remove_card(priv
); /* will call free_netdev */
1248 free_irq(spi
->irq
, card
);
1249 flush_workqueue(card
->workqueue
);
1250 destroy_workqueue(card
->workqueue
);
1251 if (card
->pdata
->teardown
)
1252 card
->pdata
->teardown(spi
);
1253 free_if_spi_card(card
);
1254 lbs_deb_leave(LBS_DEB_SPI
);
1258 static int if_spi_suspend(struct device
*dev
)
1260 struct spi_device
*spi
= to_spi_device(dev
);
1261 struct if_spi_card
*card
= spi_get_drvdata(spi
);
1263 if (!card
->suspended
) {
1264 lbs_suspend(card
->priv
);
1265 flush_workqueue(card
->workqueue
);
1266 disable_irq(spi
->irq
);
1268 if (card
->pdata
->teardown
)
1269 card
->pdata
->teardown(spi
);
1270 card
->suspended
= 1;
1276 static int if_spi_resume(struct device
*dev
)
1278 struct spi_device
*spi
= to_spi_device(dev
);
1279 struct if_spi_card
*card
= spi_get_drvdata(spi
);
1281 /* Schedule delayed work */
1282 schedule_work(&card
->resume_work
);
1287 static const struct dev_pm_ops if_spi_pm_ops
= {
1288 .suspend
= if_spi_suspend
,
1289 .resume
= if_spi_resume
,
1292 static struct spi_driver libertas_spi_driver
= {
1293 .probe
= if_spi_probe
,
1294 .remove
= __devexit_p(libertas_spi_remove
),
1296 .name
= "libertas_spi",
1297 .bus
= &spi_bus_type
,
1298 .owner
= THIS_MODULE
,
1299 .pm
= &if_spi_pm_ops
,
1307 static int __init
if_spi_init_module(void)
1310 lbs_deb_enter(LBS_DEB_SPI
);
1311 printk(KERN_INFO
"libertas_spi: Libertas SPI driver\n");
1312 ret
= spi_register_driver(&libertas_spi_driver
);
1313 lbs_deb_leave(LBS_DEB_SPI
);
1317 static void __exit
if_spi_exit_module(void)
1319 lbs_deb_enter(LBS_DEB_SPI
);
1320 spi_unregister_driver(&libertas_spi_driver
);
1321 lbs_deb_leave(LBS_DEB_SPI
);
1324 module_init(if_spi_init_module
);
1325 module_exit(if_spi_exit_module
);
1327 MODULE_DESCRIPTION("Libertas SPI WLAN Driver");
1328 MODULE_AUTHOR("Andrey Yurovsky <andrey@cozybit.com>, "
1329 "Colin McCabe <colin@cozybit.com>");
1330 MODULE_LICENSE("GPL");
1331 MODULE_ALIAS("spi:libertas_spi");