blob: 5ce0b8b7a7cfd8149cacc5f0b88f327fb567eb2f [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001/*
2 * Copyright (c) 2004-2011 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/mmc/card.h>
18#include <linux/mmc/mmc.h>
19#include <linux/mmc/host.h>
20#include <linux/mmc/sdio_func.h>
21#include <linux/mmc/sdio_ids.h>
22#include <linux/mmc/sdio.h>
23#include <linux/mmc/sd.h>
Kalle Valo2e1cb232011-10-05 12:23:49 +030024#include "hif.h"
Kalle Valobdcd8172011-07-18 00:22:30 +030025#include "hif-ops.h"
26#include "target.h"
27#include "debug.h"
Vivek Natarajan9df337a2011-09-15 20:30:43 +053028#include "cfg80211.h"
Kalle Valobdcd8172011-07-18 00:22:30 +030029
30struct ath6kl_sdio {
31 struct sdio_func *func;
32
33 spinlock_t lock;
34
35 /* free list */
36 struct list_head bus_req_freeq;
37
38 /* available bus requests */
39 struct bus_request bus_req[BUS_REQUEST_MAX_NUM];
40
41 struct ath6kl *ar;
42 u8 *dma_buffer;
43
44 /* scatter request list head */
45 struct list_head scat_req;
46
47 spinlock_t scat_lock;
48 bool is_disabled;
49 atomic_t irq_handling;
50 const struct sdio_device_id *id;
51 struct work_struct wr_async_work;
52 struct list_head wr_asyncq;
53 spinlock_t wr_async_lock;
54};
55
56#define CMD53_ARG_READ 0
57#define CMD53_ARG_WRITE 1
58#define CMD53_ARG_BLOCK_BASIS 1
59#define CMD53_ARG_FIXED_ADDRESS 0
60#define CMD53_ARG_INCR_ADDRESS 1
61
62static inline struct ath6kl_sdio *ath6kl_sdio_priv(struct ath6kl *ar)
63{
64 return ar->hif_priv;
65}
66
67/*
68 * Macro to check if DMA buffer is WORD-aligned and DMA-able.
69 * Most host controllers assume the buffer is DMA'able and will
70 * bug-check otherwise (i.e. buffers on the stack). virt_addr_valid
71 * check fails on stack memory.
72 */
73static inline bool buf_needs_bounce(u8 *buf)
74{
75 return ((unsigned long) buf & 0x3) || !virt_addr_valid(buf);
76}
77
78static void ath6kl_sdio_set_mbox_info(struct ath6kl *ar)
79{
80 struct ath6kl_mbox_info *mbox_info = &ar->mbox_info;
81
82 /* EP1 has an extended range */
83 mbox_info->htc_addr = HIF_MBOX_BASE_ADDR;
84 mbox_info->htc_ext_addr = HIF_MBOX0_EXT_BASE_ADDR;
85 mbox_info->htc_ext_sz = HIF_MBOX0_EXT_WIDTH;
86 mbox_info->block_size = HIF_MBOX_BLOCK_SIZE;
87 mbox_info->gmbox_addr = HIF_GMBOX_BASE_ADDR;
88 mbox_info->gmbox_sz = HIF_GMBOX_WIDTH;
89}
90
91static inline void ath6kl_sdio_set_cmd53_arg(u32 *arg, u8 rw, u8 func,
92 u8 mode, u8 opcode, u32 addr,
93 u16 blksz)
94{
95 *arg = (((rw & 1) << 31) |
96 ((func & 0x7) << 28) |
97 ((mode & 1) << 27) |
98 ((opcode & 1) << 26) |
99 ((addr & 0x1FFFF) << 9) |
100 (blksz & 0x1FF));
101}
102
103static inline void ath6kl_sdio_set_cmd52_arg(u32 *arg, u8 write, u8 raw,
104 unsigned int address,
105 unsigned char val)
106{
107 const u8 func = 0;
108
109 *arg = ((write & 1) << 31) |
110 ((func & 0x7) << 28) |
111 ((raw & 1) << 27) |
112 (1 << 26) |
113 ((address & 0x1FFFF) << 9) |
114 (1 << 8) |
115 (val & 0xFF);
116}
117
118static int ath6kl_sdio_func0_cmd52_wr_byte(struct mmc_card *card,
119 unsigned int address,
120 unsigned char byte)
121{
122 struct mmc_command io_cmd;
123
124 memset(&io_cmd, 0, sizeof(io_cmd));
125 ath6kl_sdio_set_cmd52_arg(&io_cmd.arg, 1, 0, address, byte);
126 io_cmd.opcode = SD_IO_RW_DIRECT;
127 io_cmd.flags = MMC_RSP_R5 | MMC_CMD_AC;
128
129 return mmc_wait_for_cmd(card->host, &io_cmd, 0);
130}
131
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530132static int ath6kl_sdio_io(struct sdio_func *func, u32 request, u32 addr,
133 u8 *buf, u32 len)
134{
135 int ret = 0;
136
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530137 sdio_claim_host(func);
138
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530139 if (request & HIF_WRITE) {
Kalle Valof7325b82011-09-27 14:30:58 +0300140 /* FIXME: looks like ugly workaround for something */
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530141 if (addr >= HIF_MBOX_BASE_ADDR &&
142 addr <= HIF_MBOX_END_ADDR)
143 addr += (HIF_MBOX_WIDTH - len);
144
Kalle Valof7325b82011-09-27 14:30:58 +0300145 /* FIXME: this also looks like ugly workaround */
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530146 if (addr == HIF_MBOX0_EXT_BASE_ADDR)
147 addr += HIF_MBOX0_EXT_WIDTH - len;
148
149 if (request & HIF_FIXED_ADDRESS)
150 ret = sdio_writesb(func, addr, buf, len);
151 else
152 ret = sdio_memcpy_toio(func, addr, buf, len);
153 } else {
154 if (request & HIF_FIXED_ADDRESS)
155 ret = sdio_readsb(func, buf, addr, len);
156 else
157 ret = sdio_memcpy_fromio(func, buf, addr, len);
158 }
159
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530160 sdio_release_host(func);
161
Kalle Valof7325b82011-09-27 14:30:58 +0300162 ath6kl_dbg(ATH6KL_DBG_SDIO, "%s addr 0x%x%s buf 0x%p len %d\n",
163 request & HIF_WRITE ? "wr" : "rd", addr,
164 request & HIF_FIXED_ADDRESS ? " (fixed)" : "", buf, len);
165 ath6kl_dbg_dump(ATH6KL_DBG_SDIO_DUMP, NULL, "sdio ", buf, len);
166
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530167 return ret;
168}
169
Kalle Valobdcd8172011-07-18 00:22:30 +0300170static struct bus_request *ath6kl_sdio_alloc_busreq(struct ath6kl_sdio *ar_sdio)
171{
172 struct bus_request *bus_req;
Kalle Valobdcd8172011-07-18 00:22:30 +0300173
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530174 spin_lock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300175
176 if (list_empty(&ar_sdio->bus_req_freeq)) {
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530177 spin_unlock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300178 return NULL;
179 }
180
181 bus_req = list_first_entry(&ar_sdio->bus_req_freeq,
182 struct bus_request, list);
183 list_del(&bus_req->list);
184
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530185 spin_unlock_bh(&ar_sdio->lock);
Kalle Valof7325b82011-09-27 14:30:58 +0300186 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%s: bus request 0x%p\n",
187 __func__, bus_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300188
189 return bus_req;
190}
191
192static void ath6kl_sdio_free_bus_req(struct ath6kl_sdio *ar_sdio,
193 struct bus_request *bus_req)
194{
Kalle Valof7325b82011-09-27 14:30:58 +0300195 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%s: bus request 0x%p\n",
196 __func__, bus_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300197
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530198 spin_lock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300199 list_add_tail(&bus_req->list, &ar_sdio->bus_req_freeq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530200 spin_unlock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300201}
202
203static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req,
Kalle Valobdcd8172011-07-18 00:22:30 +0300204 struct mmc_data *data)
205{
206 struct scatterlist *sg;
207 int i;
208
209 data->blksz = HIF_MBOX_BLOCK_SIZE;
210 data->blocks = scat_req->len / HIF_MBOX_BLOCK_SIZE;
211
212 ath6kl_dbg(ATH6KL_DBG_SCATTER,
213 "hif-scatter: (%s) addr: 0x%X, (block len: %d, block count: %d) , (tot:%d,sg:%d)\n",
214 (scat_req->req & HIF_WRITE) ? "WR" : "RD", scat_req->addr,
215 data->blksz, data->blocks, scat_req->len,
216 scat_req->scat_entries);
217
218 data->flags = (scat_req->req & HIF_WRITE) ? MMC_DATA_WRITE :
219 MMC_DATA_READ;
220
221 /* fill SG entries */
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530222 sg = scat_req->sgentries;
Kalle Valobdcd8172011-07-18 00:22:30 +0300223 sg_init_table(sg, scat_req->scat_entries);
224
225 /* assemble SG list */
226 for (i = 0; i < scat_req->scat_entries; i++, sg++) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300227 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%d: addr:0x%p, len:%d\n",
228 i, scat_req->scat_list[i].buf,
229 scat_req->scat_list[i].len);
230
231 sg_set_buf(sg, scat_req->scat_list[i].buf,
232 scat_req->scat_list[i].len);
233 }
234
235 /* set scatter-gather table for request */
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530236 data->sg = scat_req->sgentries;
Kalle Valobdcd8172011-07-18 00:22:30 +0300237 data->sg_len = scat_req->scat_entries;
238}
239
240static int ath6kl_sdio_scat_rw(struct ath6kl_sdio *ar_sdio,
241 struct bus_request *req)
242{
243 struct mmc_request mmc_req;
244 struct mmc_command cmd;
245 struct mmc_data data;
246 struct hif_scatter_req *scat_req;
247 u8 opcode, rw;
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530248 int status, len;
Kalle Valobdcd8172011-07-18 00:22:30 +0300249
250 scat_req = req->scat_req;
251
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530252 if (scat_req->virt_scat) {
253 len = scat_req->len;
254 if (scat_req->req & HIF_BLOCK_BASIS)
255 len = round_down(len, HIF_MBOX_BLOCK_SIZE);
256
257 status = ath6kl_sdio_io(ar_sdio->func, scat_req->req,
258 scat_req->addr, scat_req->virt_dma_buf,
259 len);
260 goto scat_complete;
261 }
262
Kalle Valobdcd8172011-07-18 00:22:30 +0300263 memset(&mmc_req, 0, sizeof(struct mmc_request));
264 memset(&cmd, 0, sizeof(struct mmc_command));
265 memset(&data, 0, sizeof(struct mmc_data));
266
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530267 ath6kl_sdio_setup_scat_data(scat_req, &data);
Kalle Valobdcd8172011-07-18 00:22:30 +0300268
269 opcode = (scat_req->req & HIF_FIXED_ADDRESS) ?
270 CMD53_ARG_FIXED_ADDRESS : CMD53_ARG_INCR_ADDRESS;
271
272 rw = (scat_req->req & HIF_WRITE) ? CMD53_ARG_WRITE : CMD53_ARG_READ;
273
274 /* Fixup the address so that the last byte will fall on MBOX EOM */
275 if (scat_req->req & HIF_WRITE) {
276 if (scat_req->addr == HIF_MBOX_BASE_ADDR)
277 scat_req->addr += HIF_MBOX_WIDTH - scat_req->len;
278 else
279 /* Uses extended address range */
280 scat_req->addr += HIF_MBOX0_EXT_WIDTH - scat_req->len;
281 }
282
283 /* set command argument */
284 ath6kl_sdio_set_cmd53_arg(&cmd.arg, rw, ar_sdio->func->num,
285 CMD53_ARG_BLOCK_BASIS, opcode, scat_req->addr,
286 data.blocks);
287
288 cmd.opcode = SD_IO_RW_EXTENDED;
289 cmd.flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_ADTC;
290
291 mmc_req.cmd = &cmd;
292 mmc_req.data = &data;
293
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530294 sdio_claim_host(ar_sdio->func);
295
Kalle Valobdcd8172011-07-18 00:22:30 +0300296 mmc_set_data_timeout(&data, ar_sdio->func->card);
297 /* synchronous call to process request */
298 mmc_wait_for_req(ar_sdio->func->card->host, &mmc_req);
299
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530300 sdio_release_host(ar_sdio->func);
301
Kalle Valobdcd8172011-07-18 00:22:30 +0300302 status = cmd.error ? cmd.error : data.error;
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530303
304scat_complete:
Kalle Valobdcd8172011-07-18 00:22:30 +0300305 scat_req->status = status;
306
307 if (scat_req->status)
308 ath6kl_err("Scatter write request failed:%d\n",
309 scat_req->status);
310
311 if (scat_req->req & HIF_ASYNCHRONOUS)
Vasanthakumar Thiagarajane041c7f2011-07-16 20:29:09 +0530312 scat_req->complete(ar_sdio->ar->htc_target, scat_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300313
314 return status;
315}
316
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530317static int ath6kl_sdio_alloc_prep_scat_req(struct ath6kl_sdio *ar_sdio,
318 int n_scat_entry, int n_scat_req,
319 bool virt_scat)
320{
321 struct hif_scatter_req *s_req;
322 struct bus_request *bus_req;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530323 int i, scat_req_sz, scat_list_sz, sg_sz, buf_sz;
324 u8 *virt_buf;
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530325
326 scat_list_sz = (n_scat_entry - 1) * sizeof(struct hif_scatter_item);
327 scat_req_sz = sizeof(*s_req) + scat_list_sz;
328
329 if (!virt_scat)
330 sg_sz = sizeof(struct scatterlist) * n_scat_entry;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530331 else
332 buf_sz = 2 * L1_CACHE_BYTES +
333 ATH6KL_MAX_TRANSFER_SIZE_PER_SCATTER;
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530334
335 for (i = 0; i < n_scat_req; i++) {
336 /* allocate the scatter request */
337 s_req = kzalloc(scat_req_sz, GFP_KERNEL);
338 if (!s_req)
339 return -ENOMEM;
340
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530341 if (virt_scat) {
342 virt_buf = kzalloc(buf_sz, GFP_KERNEL);
343 if (!virt_buf) {
344 kfree(s_req);
345 return -ENOMEM;
346 }
347
348 s_req->virt_dma_buf =
349 (u8 *)L1_CACHE_ALIGN((unsigned long)virt_buf);
350 } else {
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530351 /* allocate sglist */
352 s_req->sgentries = kzalloc(sg_sz, GFP_KERNEL);
353
354 if (!s_req->sgentries) {
355 kfree(s_req);
356 return -ENOMEM;
357 }
358 }
359
360 /* allocate a bus request for this scatter request */
361 bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
362 if (!bus_req) {
363 kfree(s_req->sgentries);
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530364 kfree(s_req->virt_dma_buf);
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530365 kfree(s_req);
366 return -ENOMEM;
367 }
368
369 /* assign the scatter request to this bus request */
370 bus_req->scat_req = s_req;
371 s_req->busrequest = bus_req;
372
Vasanthakumar Thiagarajan4a005c32011-07-16 20:29:15 +0530373 s_req->virt_scat = virt_scat;
374
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530375 /* add it to the scatter pool */
376 hif_scatter_req_add(ar_sdio->ar, s_req);
377 }
378
379 return 0;
380}
381
Kalle Valobdcd8172011-07-18 00:22:30 +0300382static int ath6kl_sdio_read_write_sync(struct ath6kl *ar, u32 addr, u8 *buf,
383 u32 len, u32 request)
384{
385 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
386 u8 *tbuf = NULL;
387 int ret;
388 bool bounced = false;
389
390 if (request & HIF_BLOCK_BASIS)
391 len = round_down(len, HIF_MBOX_BLOCK_SIZE);
392
393 if (buf_needs_bounce(buf)) {
394 if (!ar_sdio->dma_buffer)
395 return -ENOMEM;
396 tbuf = ar_sdio->dma_buffer;
397 memcpy(tbuf, buf, len);
398 bounced = true;
399 } else
400 tbuf = buf;
401
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530402 ret = ath6kl_sdio_io(ar_sdio->func, request, addr, tbuf, len);
403 if ((request & HIF_READ) && bounced)
404 memcpy(buf, tbuf, len);
Kalle Valobdcd8172011-07-18 00:22:30 +0300405
406 return ret;
407}
408
409static void __ath6kl_sdio_write_async(struct ath6kl_sdio *ar_sdio,
410 struct bus_request *req)
411{
412 if (req->scat_req)
413 ath6kl_sdio_scat_rw(ar_sdio, req);
414 else {
415 void *context;
416 int status;
417
418 status = ath6kl_sdio_read_write_sync(ar_sdio->ar, req->address,
419 req->buffer, req->length,
420 req->request);
421 context = req->packet;
422 ath6kl_sdio_free_bus_req(ar_sdio, req);
Kalle Valo8e8ddb22011-10-05 12:23:33 +0300423 ath6kl_hif_rw_comp_handler(context, status);
Kalle Valobdcd8172011-07-18 00:22:30 +0300424 }
425}
426
427static void ath6kl_sdio_write_async_work(struct work_struct *work)
428{
429 struct ath6kl_sdio *ar_sdio;
Kalle Valobdcd8172011-07-18 00:22:30 +0300430 struct bus_request *req, *tmp_req;
431
432 ar_sdio = container_of(work, struct ath6kl_sdio, wr_async_work);
Kalle Valobdcd8172011-07-18 00:22:30 +0300433
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530434 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300435 list_for_each_entry_safe(req, tmp_req, &ar_sdio->wr_asyncq, list) {
436 list_del(&req->list);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530437 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300438 __ath6kl_sdio_write_async(ar_sdio, req);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530439 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300440 }
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530441 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300442}
443
444static void ath6kl_sdio_irq_handler(struct sdio_func *func)
445{
446 int status;
447 struct ath6kl_sdio *ar_sdio;
448
Kalle Valof7325b82011-09-27 14:30:58 +0300449 ath6kl_dbg(ATH6KL_DBG_SDIO, "irq\n");
450
Kalle Valobdcd8172011-07-18 00:22:30 +0300451 ar_sdio = sdio_get_drvdata(func);
452 atomic_set(&ar_sdio->irq_handling, 1);
453
454 /*
455 * Release the host during interrups so we can pick it back up when
456 * we process commands.
457 */
458 sdio_release_host(ar_sdio->func);
459
Kalle Valo8e8ddb22011-10-05 12:23:33 +0300460 status = ath6kl_hif_intr_bh_handler(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300461 sdio_claim_host(ar_sdio->func);
462 atomic_set(&ar_sdio->irq_handling, 0);
463 WARN_ON(status && status != -ECANCELED);
464}
465
466static int ath6kl_sdio_power_on(struct ath6kl_sdio *ar_sdio)
467{
468 struct sdio_func *func = ar_sdio->func;
469 int ret = 0;
470
471 if (!ar_sdio->is_disabled)
472 return 0;
473
Kalle Valo3ef987b2011-10-24 12:18:07 +0300474 ath6kl_dbg(ATH6KL_DBG_BOOT, "sdio power on\n");
475
Kalle Valobdcd8172011-07-18 00:22:30 +0300476 sdio_claim_host(func);
477
478 ret = sdio_enable_func(func);
479 if (ret) {
480 ath6kl_err("Unable to enable sdio func: %d)\n", ret);
481 sdio_release_host(func);
482 return ret;
483 }
484
485 sdio_release_host(func);
486
487 /*
488 * Wait for hardware to initialise. It should take a lot less than
489 * 10 ms but let's be conservative here.
490 */
491 msleep(10);
492
493 ar_sdio->is_disabled = false;
494
495 return ret;
496}
497
498static int ath6kl_sdio_power_off(struct ath6kl_sdio *ar_sdio)
499{
500 int ret;
501
502 if (ar_sdio->is_disabled)
503 return 0;
504
Kalle Valo3ef987b2011-10-24 12:18:07 +0300505 ath6kl_dbg(ATH6KL_DBG_BOOT, "sdio power off\n");
506
Kalle Valobdcd8172011-07-18 00:22:30 +0300507 /* Disable the card */
508 sdio_claim_host(ar_sdio->func);
509 ret = sdio_disable_func(ar_sdio->func);
510 sdio_release_host(ar_sdio->func);
511
512 if (ret)
513 return ret;
514
515 ar_sdio->is_disabled = true;
516
517 return ret;
518}
519
520static int ath6kl_sdio_write_async(struct ath6kl *ar, u32 address, u8 *buffer,
521 u32 length, u32 request,
522 struct htc_packet *packet)
523{
524 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
525 struct bus_request *bus_req;
Kalle Valobdcd8172011-07-18 00:22:30 +0300526
527 bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
528
529 if (!bus_req)
530 return -ENOMEM;
531
532 bus_req->address = address;
533 bus_req->buffer = buffer;
534 bus_req->length = length;
535 bus_req->request = request;
536 bus_req->packet = packet;
537
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530538 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300539 list_add_tail(&bus_req->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530540 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300541 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
542
543 return 0;
544}
545
546static void ath6kl_sdio_irq_enable(struct ath6kl *ar)
547{
548 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
549 int ret;
550
551 sdio_claim_host(ar_sdio->func);
552
553 /* Register the isr */
554 ret = sdio_claim_irq(ar_sdio->func, ath6kl_sdio_irq_handler);
555 if (ret)
556 ath6kl_err("Failed to claim sdio irq: %d\n", ret);
557
558 sdio_release_host(ar_sdio->func);
559}
560
561static void ath6kl_sdio_irq_disable(struct ath6kl *ar)
562{
563 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
564 int ret;
565
566 sdio_claim_host(ar_sdio->func);
567
568 /* Mask our function IRQ */
569 while (atomic_read(&ar_sdio->irq_handling)) {
570 sdio_release_host(ar_sdio->func);
571 schedule_timeout(HZ / 10);
572 sdio_claim_host(ar_sdio->func);
573 }
574
575 ret = sdio_release_irq(ar_sdio->func);
576 if (ret)
577 ath6kl_err("Failed to release sdio irq: %d\n", ret);
578
579 sdio_release_host(ar_sdio->func);
580}
581
582static struct hif_scatter_req *ath6kl_sdio_scatter_req_get(struct ath6kl *ar)
583{
584 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
585 struct hif_scatter_req *node = NULL;
Kalle Valobdcd8172011-07-18 00:22:30 +0300586
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530587 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300588
589 if (!list_empty(&ar_sdio->scat_req)) {
590 node = list_first_entry(&ar_sdio->scat_req,
591 struct hif_scatter_req, list);
592 list_del(&node->list);
593 }
594
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530595 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300596
597 return node;
598}
599
600static void ath6kl_sdio_scatter_req_add(struct ath6kl *ar,
601 struct hif_scatter_req *s_req)
602{
603 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300604
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530605 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300606
607 list_add_tail(&s_req->list, &ar_sdio->scat_req);
608
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530609 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300610
611}
612
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530613/* scatter gather read write request */
614static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar,
615 struct hif_scatter_req *scat_req)
616{
617 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530618 u32 request = scat_req->req;
619 int status = 0;
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530620
621 if (!scat_req->len)
622 return -EINVAL;
623
624 ath6kl_dbg(ATH6KL_DBG_SCATTER,
625 "hif-scatter: total len: %d scatter entries: %d\n",
626 scat_req->len, scat_req->scat_entries);
627
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530628 if (request & HIF_SYNCHRONOUS)
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530629 status = ath6kl_sdio_scat_rw(ar_sdio, scat_req->busrequest);
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530630 else {
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530631 spin_lock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530632 list_add_tail(&scat_req->busrequest->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530633 spin_unlock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530634 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
635 }
636
637 return status;
638}
639
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530640/* clean up scatter support */
641static void ath6kl_sdio_cleanup_scatter(struct ath6kl *ar)
642{
643 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
644 struct hif_scatter_req *s_req, *tmp_req;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530645
646 /* empty the free list */
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530647 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530648 list_for_each_entry_safe(s_req, tmp_req, &ar_sdio->scat_req, list) {
649 list_del(&s_req->list);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530650 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530651
652 if (s_req->busrequest)
653 ath6kl_sdio_free_bus_req(ar_sdio, s_req->busrequest);
654 kfree(s_req->virt_dma_buf);
655 kfree(s_req->sgentries);
656 kfree(s_req);
657
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530658 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530659 }
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530660 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530661}
662
663/* setup of HIF scatter resources */
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530664static int ath6kl_sdio_enable_scatter(struct ath6kl *ar)
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530665{
666 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530667 struct htc_target *target = ar->htc_target;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530668 int ret;
669 bool virt_scat = false;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530670
671 /* check if host supports scatter and it meets our requirements */
672 if (ar_sdio->func->card->host->max_segs < MAX_SCATTER_ENTRIES_PER_REQ) {
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530673 ath6kl_err("host only supports scatter of :%d entries, need: %d\n",
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530674 ar_sdio->func->card->host->max_segs,
675 MAX_SCATTER_ENTRIES_PER_REQ);
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530676 virt_scat = true;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530677 }
678
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530679 if (!virt_scat) {
680 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
681 MAX_SCATTER_ENTRIES_PER_REQ,
682 MAX_SCATTER_REQUESTS, virt_scat);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530683
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530684 if (!ret) {
Kalle Valo3ef987b2011-10-24 12:18:07 +0300685 ath6kl_dbg(ATH6KL_DBG_BOOT,
686 "hif-scatter enabled requests %d entries %d\n",
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530687 MAX_SCATTER_REQUESTS,
688 MAX_SCATTER_ENTRIES_PER_REQ);
689
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530690 target->max_scat_entries = MAX_SCATTER_ENTRIES_PER_REQ;
691 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530692 MAX_SCATTER_REQ_TRANSFER_SIZE;
693 } else {
694 ath6kl_sdio_cleanup_scatter(ar);
695 ath6kl_warn("hif scatter resource setup failed, trying virtual scatter method\n");
696 }
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530697 }
698
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530699 if (virt_scat || ret) {
700 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
701 ATH6KL_SCATTER_ENTRIES_PER_REQ,
702 ATH6KL_SCATTER_REQS, virt_scat);
703
704 if (ret) {
705 ath6kl_err("failed to alloc virtual scatter resources !\n");
706 ath6kl_sdio_cleanup_scatter(ar);
707 return ret;
708 }
709
Kalle Valo3ef987b2011-10-24 12:18:07 +0300710 ath6kl_dbg(ATH6KL_DBG_BOOT,
711 "virtual scatter enabled requests %d entries %d\n",
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530712 ATH6KL_SCATTER_REQS, ATH6KL_SCATTER_ENTRIES_PER_REQ);
713
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530714 target->max_scat_entries = ATH6KL_SCATTER_ENTRIES_PER_REQ;
715 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530716 ATH6KL_MAX_TRANSFER_SIZE_PER_SCATTER;
717 }
718
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530719 return 0;
720}
721
Kalle Valoabcb3442011-07-22 08:26:20 +0300722static int ath6kl_sdio_suspend(struct ath6kl *ar)
723{
724 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
725 struct sdio_func *func = ar_sdio->func;
726 mmc_pm_flag_t flags;
727 int ret;
728
729 flags = sdio_get_host_pm_caps(func);
730
Sam Leffler17380852011-10-13 13:20:32 +0300731 if (!(flags & MMC_PM_KEEP_POWER)) {
Kalle Valoabcb3442011-07-22 08:26:20 +0300732 /* as host doesn't support keep power we need to bail out */
Kalle Valof7325b82011-09-27 14:30:58 +0300733 ath6kl_dbg(ATH6KL_DBG_SDIO,
734 "func %d doesn't support MMC_PM_KEEP_POWER\n",
735 func->num);
Kalle Valoabcb3442011-07-22 08:26:20 +0300736 return -EINVAL;
Sam Leffler17380852011-10-13 13:20:32 +0300737 }
Kalle Valoabcb3442011-07-22 08:26:20 +0300738
739 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
740 if (ret) {
741 printk(KERN_ERR "ath6kl: set sdio pm flags failed: %d\n",
742 ret);
743 return ret;
744 }
745
746 ath6kl_deep_sleep_enable(ar);
747
748 return 0;
749}
750
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300751static int ath6kl_sdio_resume(struct ath6kl *ar)
752{
753 if (ar->wmi->pwr_mode != ar->wmi->saved_pwr_mode) {
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530754 if (ath6kl_wmi_powermode_cmd(ar->wmi, 0,
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300755 ar->wmi->saved_pwr_mode) != 0)
756 ath6kl_warn("ath6kl_sdio_resume: "
757 "wmi_powermode_cmd failed\n");
758 }
759
760 return 0;
761}
762
Kalle Valobdcd8172011-07-18 00:22:30 +0300763static const struct ath6kl_hif_ops ath6kl_sdio_ops = {
764 .read_write_sync = ath6kl_sdio_read_write_sync,
765 .write_async = ath6kl_sdio_write_async,
766 .irq_enable = ath6kl_sdio_irq_enable,
767 .irq_disable = ath6kl_sdio_irq_disable,
768 .scatter_req_get = ath6kl_sdio_scatter_req_get,
769 .scatter_req_add = ath6kl_sdio_scatter_req_add,
770 .enable_scatter = ath6kl_sdio_enable_scatter,
Vasanthakumar Thiagarajanf74a7362011-07-16 20:29:05 +0530771 .scat_req_rw = ath6kl_sdio_async_rw_scatter,
Kalle Valobdcd8172011-07-18 00:22:30 +0300772 .cleanup_scatter = ath6kl_sdio_cleanup_scatter,
Kalle Valoabcb3442011-07-22 08:26:20 +0300773 .suspend = ath6kl_sdio_suspend,
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300774 .resume = ath6kl_sdio_resume,
Kalle Valobdcd8172011-07-18 00:22:30 +0300775};
776
777static int ath6kl_sdio_probe(struct sdio_func *func,
778 const struct sdio_device_id *id)
779{
780 int ret;
781 struct ath6kl_sdio *ar_sdio;
782 struct ath6kl *ar;
783 int count;
784
Kalle Valo3ef987b2011-10-24 12:18:07 +0300785 ath6kl_dbg(ATH6KL_DBG_BOOT,
786 "sdio new func %d vendor 0x%x device 0x%x block 0x%x/0x%x\n",
Kalle Valof7325b82011-09-27 14:30:58 +0300787 func->num, func->vendor, func->device,
788 func->max_blksize, func->cur_blksize);
Kalle Valobdcd8172011-07-18 00:22:30 +0300789
790 ar_sdio = kzalloc(sizeof(struct ath6kl_sdio), GFP_KERNEL);
791 if (!ar_sdio)
792 return -ENOMEM;
793
794 ar_sdio->dma_buffer = kzalloc(HIF_DMA_BUFFER_SIZE, GFP_KERNEL);
795 if (!ar_sdio->dma_buffer) {
796 ret = -ENOMEM;
797 goto err_hif;
798 }
799
800 ar_sdio->func = func;
801 sdio_set_drvdata(func, ar_sdio);
802
803 ar_sdio->id = id;
804 ar_sdio->is_disabled = true;
805
806 spin_lock_init(&ar_sdio->lock);
807 spin_lock_init(&ar_sdio->scat_lock);
808 spin_lock_init(&ar_sdio->wr_async_lock);
809
810 INIT_LIST_HEAD(&ar_sdio->scat_req);
811 INIT_LIST_HEAD(&ar_sdio->bus_req_freeq);
812 INIT_LIST_HEAD(&ar_sdio->wr_asyncq);
813
814 INIT_WORK(&ar_sdio->wr_async_work, ath6kl_sdio_write_async_work);
815
816 for (count = 0; count < BUS_REQUEST_MAX_NUM; count++)
817 ath6kl_sdio_free_bus_req(ar_sdio, &ar_sdio->bus_req[count]);
818
819 ar = ath6kl_core_alloc(&ar_sdio->func->dev);
820 if (!ar) {
821 ath6kl_err("Failed to alloc ath6kl core\n");
822 ret = -ENOMEM;
823 goto err_dma;
824 }
825
826 ar_sdio->ar = ar;
827 ar->hif_priv = ar_sdio;
828 ar->hif_ops = &ath6kl_sdio_ops;
829
830 ath6kl_sdio_set_mbox_info(ar);
831
832 sdio_claim_host(func);
833
834 if ((ar_sdio->id->device & MANUFACTURER_ID_ATH6KL_BASE_MASK) >=
835 MANUFACTURER_ID_AR6003_BASE) {
836 /* enable 4-bit ASYNC interrupt on AR6003 or later */
837 ret = ath6kl_sdio_func0_cmd52_wr_byte(func->card,
838 CCCR_SDIO_IRQ_MODE_REG,
839 SDIO_IRQ_MODE_ASYNC_4BIT_IRQ);
840 if (ret) {
841 ath6kl_err("Failed to enable 4-bit async irq mode %d\n",
842 ret);
843 sdio_release_host(func);
Vasanthakumar Thiagarajan8dafb702011-10-25 19:33:58 +0530844 goto err_core_alloc;
Kalle Valobdcd8172011-07-18 00:22:30 +0300845 }
846
Kalle Valo3ef987b2011-10-24 12:18:07 +0300847 ath6kl_dbg(ATH6KL_DBG_BOOT, "4-bit async irq mode enabled\n");
Kalle Valobdcd8172011-07-18 00:22:30 +0300848 }
849
850 /* give us some time to enable, in ms */
851 func->enable_timeout = 100;
852
853 sdio_release_host(func);
854
855 ret = ath6kl_sdio_power_on(ar_sdio);
856 if (ret)
Vasanthakumar Thiagarajan8dafb702011-10-25 19:33:58 +0530857 goto err_core_alloc;
Kalle Valobdcd8172011-07-18 00:22:30 +0300858
859 sdio_claim_host(func);
860
861 ret = sdio_set_block_size(func, HIF_MBOX_BLOCK_SIZE);
862 if (ret) {
863 ath6kl_err("Set sdio block size %d failed: %d)\n",
864 HIF_MBOX_BLOCK_SIZE, ret);
865 sdio_release_host(func);
866 goto err_off;
867 }
868
869 sdio_release_host(func);
870
871 ret = ath6kl_core_init(ar);
872 if (ret) {
873 ath6kl_err("Failed to init ath6kl core\n");
874 goto err_off;
875 }
876
877 return ret;
878
879err_off:
880 ath6kl_sdio_power_off(ar_sdio);
Vasanthakumar Thiagarajan8dafb702011-10-25 19:33:58 +0530881err_core_alloc:
882 ath6kl_core_free(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300883err_dma:
884 kfree(ar_sdio->dma_buffer);
885err_hif:
886 kfree(ar_sdio);
887
888 return ret;
889}
890
891static void ath6kl_sdio_remove(struct sdio_func *func)
892{
893 struct ath6kl_sdio *ar_sdio;
894
Kalle Valo3ef987b2011-10-24 12:18:07 +0300895 ath6kl_dbg(ATH6KL_DBG_BOOT,
896 "sdio removed func %d vendor 0x%x device 0x%x\n",
Kalle Valof7325b82011-09-27 14:30:58 +0300897 func->num, func->vendor, func->device);
898
Kalle Valobdcd8172011-07-18 00:22:30 +0300899 ar_sdio = sdio_get_drvdata(func);
900
901 ath6kl_stop_txrx(ar_sdio->ar);
902 cancel_work_sync(&ar_sdio->wr_async_work);
903
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +0530904 ath6kl_core_cleanup(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300905
906 ath6kl_sdio_power_off(ar_sdio);
907
908 kfree(ar_sdio->dma_buffer);
909 kfree(ar_sdio);
910}
911
912static const struct sdio_device_id ath6kl_sdio_devices[] = {
913 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x0))},
914 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x1))},
915 {},
916};
917
918MODULE_DEVICE_TABLE(sdio, ath6kl_sdio_devices);
919
920static struct sdio_driver ath6kl_sdio_driver = {
921 .name = "ath6kl_sdio",
922 .id_table = ath6kl_sdio_devices,
923 .probe = ath6kl_sdio_probe,
924 .remove = ath6kl_sdio_remove,
925};
926
927static int __init ath6kl_sdio_init(void)
928{
929 int ret;
930
931 ret = sdio_register_driver(&ath6kl_sdio_driver);
932 if (ret)
933 ath6kl_err("sdio driver registration failed: %d\n", ret);
934
935 return ret;
936}
937
938static void __exit ath6kl_sdio_exit(void)
939{
940 sdio_unregister_driver(&ath6kl_sdio_driver);
941}
942
943module_init(ath6kl_sdio_init);
944module_exit(ath6kl_sdio_exit);
945
946MODULE_AUTHOR("Atheros Communications, Inc.");
947MODULE_DESCRIPTION("Driver support for Atheros AR600x SDIO devices");
948MODULE_LICENSE("Dual BSD/GPL");
949
950MODULE_FIRMWARE(AR6003_REV2_OTP_FILE);
951MODULE_FIRMWARE(AR6003_REV2_FIRMWARE_FILE);
952MODULE_FIRMWARE(AR6003_REV2_PATCH_FILE);
953MODULE_FIRMWARE(AR6003_REV2_BOARD_DATA_FILE);
954MODULE_FIRMWARE(AR6003_REV2_DEFAULT_BOARD_DATA_FILE);
955MODULE_FIRMWARE(AR6003_REV3_OTP_FILE);
956MODULE_FIRMWARE(AR6003_REV3_FIRMWARE_FILE);
957MODULE_FIRMWARE(AR6003_REV3_PATCH_FILE);
958MODULE_FIRMWARE(AR6003_REV3_BOARD_DATA_FILE);
959MODULE_FIRMWARE(AR6003_REV3_DEFAULT_BOARD_DATA_FILE);