blob: 75b1eaa65e152514a29857d1b8f6c445b8ed28a0 [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;
Kalle Valo32a07e42011-10-30 21:15:57 +020048 bool scatter_enabled;
49
Kalle Valobdcd8172011-07-18 00:22:30 +030050 bool is_disabled;
51 atomic_t irq_handling;
52 const struct sdio_device_id *id;
53 struct work_struct wr_async_work;
54 struct list_head wr_asyncq;
55 spinlock_t wr_async_lock;
56};
57
58#define CMD53_ARG_READ 0
59#define CMD53_ARG_WRITE 1
60#define CMD53_ARG_BLOCK_BASIS 1
61#define CMD53_ARG_FIXED_ADDRESS 0
62#define CMD53_ARG_INCR_ADDRESS 1
63
64static inline struct ath6kl_sdio *ath6kl_sdio_priv(struct ath6kl *ar)
65{
66 return ar->hif_priv;
67}
68
69/*
70 * Macro to check if DMA buffer is WORD-aligned and DMA-able.
71 * Most host controllers assume the buffer is DMA'able and will
72 * bug-check otherwise (i.e. buffers on the stack). virt_addr_valid
73 * check fails on stack memory.
74 */
75static inline bool buf_needs_bounce(u8 *buf)
76{
77 return ((unsigned long) buf & 0x3) || !virt_addr_valid(buf);
78}
79
80static void ath6kl_sdio_set_mbox_info(struct ath6kl *ar)
81{
82 struct ath6kl_mbox_info *mbox_info = &ar->mbox_info;
83
84 /* EP1 has an extended range */
85 mbox_info->htc_addr = HIF_MBOX_BASE_ADDR;
86 mbox_info->htc_ext_addr = HIF_MBOX0_EXT_BASE_ADDR;
87 mbox_info->htc_ext_sz = HIF_MBOX0_EXT_WIDTH;
88 mbox_info->block_size = HIF_MBOX_BLOCK_SIZE;
89 mbox_info->gmbox_addr = HIF_GMBOX_BASE_ADDR;
90 mbox_info->gmbox_sz = HIF_GMBOX_WIDTH;
91}
92
93static inline void ath6kl_sdio_set_cmd53_arg(u32 *arg, u8 rw, u8 func,
94 u8 mode, u8 opcode, u32 addr,
95 u16 blksz)
96{
97 *arg = (((rw & 1) << 31) |
98 ((func & 0x7) << 28) |
99 ((mode & 1) << 27) |
100 ((opcode & 1) << 26) |
101 ((addr & 0x1FFFF) << 9) |
102 (blksz & 0x1FF));
103}
104
105static inline void ath6kl_sdio_set_cmd52_arg(u32 *arg, u8 write, u8 raw,
106 unsigned int address,
107 unsigned char val)
108{
109 const u8 func = 0;
110
111 *arg = ((write & 1) << 31) |
112 ((func & 0x7) << 28) |
113 ((raw & 1) << 27) |
114 (1 << 26) |
115 ((address & 0x1FFFF) << 9) |
116 (1 << 8) |
117 (val & 0xFF);
118}
119
120static int ath6kl_sdio_func0_cmd52_wr_byte(struct mmc_card *card,
121 unsigned int address,
122 unsigned char byte)
123{
124 struct mmc_command io_cmd;
125
126 memset(&io_cmd, 0, sizeof(io_cmd));
127 ath6kl_sdio_set_cmd52_arg(&io_cmd.arg, 1, 0, address, byte);
128 io_cmd.opcode = SD_IO_RW_DIRECT;
129 io_cmd.flags = MMC_RSP_R5 | MMC_CMD_AC;
130
131 return mmc_wait_for_cmd(card->host, &io_cmd, 0);
132}
133
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530134static int ath6kl_sdio_io(struct sdio_func *func, u32 request, u32 addr,
135 u8 *buf, u32 len)
136{
137 int ret = 0;
138
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530139 sdio_claim_host(func);
140
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530141 if (request & HIF_WRITE) {
Kalle Valof7325b82011-09-27 14:30:58 +0300142 /* FIXME: looks like ugly workaround for something */
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530143 if (addr >= HIF_MBOX_BASE_ADDR &&
144 addr <= HIF_MBOX_END_ADDR)
145 addr += (HIF_MBOX_WIDTH - len);
146
Kalle Valof7325b82011-09-27 14:30:58 +0300147 /* FIXME: this also looks like ugly workaround */
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530148 if (addr == HIF_MBOX0_EXT_BASE_ADDR)
149 addr += HIF_MBOX0_EXT_WIDTH - len;
150
151 if (request & HIF_FIXED_ADDRESS)
152 ret = sdio_writesb(func, addr, buf, len);
153 else
154 ret = sdio_memcpy_toio(func, addr, buf, len);
155 } else {
156 if (request & HIF_FIXED_ADDRESS)
157 ret = sdio_readsb(func, buf, addr, len);
158 else
159 ret = sdio_memcpy_fromio(func, buf, addr, len);
160 }
161
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530162 sdio_release_host(func);
163
Kalle Valof7325b82011-09-27 14:30:58 +0300164 ath6kl_dbg(ATH6KL_DBG_SDIO, "%s addr 0x%x%s buf 0x%p len %d\n",
165 request & HIF_WRITE ? "wr" : "rd", addr,
166 request & HIF_FIXED_ADDRESS ? " (fixed)" : "", buf, len);
167 ath6kl_dbg_dump(ATH6KL_DBG_SDIO_DUMP, NULL, "sdio ", buf, len);
168
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530169 return ret;
170}
171
Kalle Valobdcd8172011-07-18 00:22:30 +0300172static struct bus_request *ath6kl_sdio_alloc_busreq(struct ath6kl_sdio *ar_sdio)
173{
174 struct bus_request *bus_req;
Kalle Valobdcd8172011-07-18 00:22:30 +0300175
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530176 spin_lock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300177
178 if (list_empty(&ar_sdio->bus_req_freeq)) {
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530179 spin_unlock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300180 return NULL;
181 }
182
183 bus_req = list_first_entry(&ar_sdio->bus_req_freeq,
184 struct bus_request, list);
185 list_del(&bus_req->list);
186
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530187 spin_unlock_bh(&ar_sdio->lock);
Kalle Valof7325b82011-09-27 14:30:58 +0300188 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%s: bus request 0x%p\n",
189 __func__, bus_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300190
191 return bus_req;
192}
193
194static void ath6kl_sdio_free_bus_req(struct ath6kl_sdio *ar_sdio,
195 struct bus_request *bus_req)
196{
Kalle Valof7325b82011-09-27 14:30:58 +0300197 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%s: bus request 0x%p\n",
198 __func__, bus_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300199
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530200 spin_lock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300201 list_add_tail(&bus_req->list, &ar_sdio->bus_req_freeq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530202 spin_unlock_bh(&ar_sdio->lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300203}
204
205static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req,
Kalle Valobdcd8172011-07-18 00:22:30 +0300206 struct mmc_data *data)
207{
208 struct scatterlist *sg;
209 int i;
210
211 data->blksz = HIF_MBOX_BLOCK_SIZE;
212 data->blocks = scat_req->len / HIF_MBOX_BLOCK_SIZE;
213
214 ath6kl_dbg(ATH6KL_DBG_SCATTER,
215 "hif-scatter: (%s) addr: 0x%X, (block len: %d, block count: %d) , (tot:%d,sg:%d)\n",
216 (scat_req->req & HIF_WRITE) ? "WR" : "RD", scat_req->addr,
217 data->blksz, data->blocks, scat_req->len,
218 scat_req->scat_entries);
219
220 data->flags = (scat_req->req & HIF_WRITE) ? MMC_DATA_WRITE :
221 MMC_DATA_READ;
222
223 /* fill SG entries */
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530224 sg = scat_req->sgentries;
Kalle Valobdcd8172011-07-18 00:22:30 +0300225 sg_init_table(sg, scat_req->scat_entries);
226
227 /* assemble SG list */
228 for (i = 0; i < scat_req->scat_entries; i++, sg++) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300229 ath6kl_dbg(ATH6KL_DBG_SCATTER, "%d: addr:0x%p, len:%d\n",
230 i, scat_req->scat_list[i].buf,
231 scat_req->scat_list[i].len);
232
233 sg_set_buf(sg, scat_req->scat_list[i].buf,
234 scat_req->scat_list[i].len);
235 }
236
237 /* set scatter-gather table for request */
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530238 data->sg = scat_req->sgentries;
Kalle Valobdcd8172011-07-18 00:22:30 +0300239 data->sg_len = scat_req->scat_entries;
240}
241
242static int ath6kl_sdio_scat_rw(struct ath6kl_sdio *ar_sdio,
243 struct bus_request *req)
244{
245 struct mmc_request mmc_req;
246 struct mmc_command cmd;
247 struct mmc_data data;
248 struct hif_scatter_req *scat_req;
249 u8 opcode, rw;
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530250 int status, len;
Kalle Valobdcd8172011-07-18 00:22:30 +0300251
252 scat_req = req->scat_req;
253
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530254 if (scat_req->virt_scat) {
255 len = scat_req->len;
256 if (scat_req->req & HIF_BLOCK_BASIS)
257 len = round_down(len, HIF_MBOX_BLOCK_SIZE);
258
259 status = ath6kl_sdio_io(ar_sdio->func, scat_req->req,
260 scat_req->addr, scat_req->virt_dma_buf,
261 len);
262 goto scat_complete;
263 }
264
Kalle Valobdcd8172011-07-18 00:22:30 +0300265 memset(&mmc_req, 0, sizeof(struct mmc_request));
266 memset(&cmd, 0, sizeof(struct mmc_command));
267 memset(&data, 0, sizeof(struct mmc_data));
268
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530269 ath6kl_sdio_setup_scat_data(scat_req, &data);
Kalle Valobdcd8172011-07-18 00:22:30 +0300270
271 opcode = (scat_req->req & HIF_FIXED_ADDRESS) ?
272 CMD53_ARG_FIXED_ADDRESS : CMD53_ARG_INCR_ADDRESS;
273
274 rw = (scat_req->req & HIF_WRITE) ? CMD53_ARG_WRITE : CMD53_ARG_READ;
275
276 /* Fixup the address so that the last byte will fall on MBOX EOM */
277 if (scat_req->req & HIF_WRITE) {
278 if (scat_req->addr == HIF_MBOX_BASE_ADDR)
279 scat_req->addr += HIF_MBOX_WIDTH - scat_req->len;
280 else
281 /* Uses extended address range */
282 scat_req->addr += HIF_MBOX0_EXT_WIDTH - scat_req->len;
283 }
284
285 /* set command argument */
286 ath6kl_sdio_set_cmd53_arg(&cmd.arg, rw, ar_sdio->func->num,
287 CMD53_ARG_BLOCK_BASIS, opcode, scat_req->addr,
288 data.blocks);
289
290 cmd.opcode = SD_IO_RW_EXTENDED;
291 cmd.flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_ADTC;
292
293 mmc_req.cmd = &cmd;
294 mmc_req.data = &data;
295
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530296 sdio_claim_host(ar_sdio->func);
297
Kalle Valobdcd8172011-07-18 00:22:30 +0300298 mmc_set_data_timeout(&data, ar_sdio->func->card);
299 /* synchronous call to process request */
300 mmc_wait_for_req(ar_sdio->func->card->host, &mmc_req);
301
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530302 sdio_release_host(ar_sdio->func);
303
Kalle Valobdcd8172011-07-18 00:22:30 +0300304 status = cmd.error ? cmd.error : data.error;
Vasanthakumar Thiagarajan348a8fb2011-07-16 20:29:17 +0530305
306scat_complete:
Kalle Valobdcd8172011-07-18 00:22:30 +0300307 scat_req->status = status;
308
309 if (scat_req->status)
310 ath6kl_err("Scatter write request failed:%d\n",
311 scat_req->status);
312
313 if (scat_req->req & HIF_ASYNCHRONOUS)
Vasanthakumar Thiagarajane041c7f2011-07-16 20:29:09 +0530314 scat_req->complete(ar_sdio->ar->htc_target, scat_req);
Kalle Valobdcd8172011-07-18 00:22:30 +0300315
316 return status;
317}
318
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530319static int ath6kl_sdio_alloc_prep_scat_req(struct ath6kl_sdio *ar_sdio,
320 int n_scat_entry, int n_scat_req,
321 bool virt_scat)
322{
323 struct hif_scatter_req *s_req;
324 struct bus_request *bus_req;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530325 int i, scat_req_sz, scat_list_sz, sg_sz, buf_sz;
326 u8 *virt_buf;
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530327
328 scat_list_sz = (n_scat_entry - 1) * sizeof(struct hif_scatter_item);
329 scat_req_sz = sizeof(*s_req) + scat_list_sz;
330
331 if (!virt_scat)
332 sg_sz = sizeof(struct scatterlist) * n_scat_entry;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530333 else
334 buf_sz = 2 * L1_CACHE_BYTES +
335 ATH6KL_MAX_TRANSFER_SIZE_PER_SCATTER;
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530336
337 for (i = 0; i < n_scat_req; i++) {
338 /* allocate the scatter request */
339 s_req = kzalloc(scat_req_sz, GFP_KERNEL);
340 if (!s_req)
341 return -ENOMEM;
342
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530343 if (virt_scat) {
344 virt_buf = kzalloc(buf_sz, GFP_KERNEL);
345 if (!virt_buf) {
346 kfree(s_req);
347 return -ENOMEM;
348 }
349
350 s_req->virt_dma_buf =
351 (u8 *)L1_CACHE_ALIGN((unsigned long)virt_buf);
352 } else {
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530353 /* allocate sglist */
354 s_req->sgentries = kzalloc(sg_sz, GFP_KERNEL);
355
356 if (!s_req->sgentries) {
357 kfree(s_req);
358 return -ENOMEM;
359 }
360 }
361
362 /* allocate a bus request for this scatter request */
363 bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
364 if (!bus_req) {
365 kfree(s_req->sgentries);
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530366 kfree(s_req->virt_dma_buf);
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530367 kfree(s_req);
368 return -ENOMEM;
369 }
370
371 /* assign the scatter request to this bus request */
372 bus_req->scat_req = s_req;
373 s_req->busrequest = bus_req;
374
Vasanthakumar Thiagarajan4a005c32011-07-16 20:29:15 +0530375 s_req->virt_scat = virt_scat;
376
Vasanthakumar Thiagarajan3df505a2011-07-16 20:29:10 +0530377 /* add it to the scatter pool */
378 hif_scatter_req_add(ar_sdio->ar, s_req);
379 }
380
381 return 0;
382}
383
Kalle Valobdcd8172011-07-18 00:22:30 +0300384static int ath6kl_sdio_read_write_sync(struct ath6kl *ar, u32 addr, u8 *buf,
385 u32 len, u32 request)
386{
387 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
388 u8 *tbuf = NULL;
389 int ret;
390 bool bounced = false;
391
392 if (request & HIF_BLOCK_BASIS)
393 len = round_down(len, HIF_MBOX_BLOCK_SIZE);
394
395 if (buf_needs_bounce(buf)) {
396 if (!ar_sdio->dma_buffer)
397 return -ENOMEM;
398 tbuf = ar_sdio->dma_buffer;
399 memcpy(tbuf, buf, len);
400 bounced = true;
401 } else
402 tbuf = buf;
403
Vasanthakumar Thiagarajanda220692011-07-16 20:29:16 +0530404 ret = ath6kl_sdio_io(ar_sdio->func, request, addr, tbuf, len);
405 if ((request & HIF_READ) && bounced)
406 memcpy(buf, tbuf, len);
Kalle Valobdcd8172011-07-18 00:22:30 +0300407
408 return ret;
409}
410
411static void __ath6kl_sdio_write_async(struct ath6kl_sdio *ar_sdio,
412 struct bus_request *req)
413{
414 if (req->scat_req)
415 ath6kl_sdio_scat_rw(ar_sdio, req);
416 else {
417 void *context;
418 int status;
419
420 status = ath6kl_sdio_read_write_sync(ar_sdio->ar, req->address,
421 req->buffer, req->length,
422 req->request);
423 context = req->packet;
424 ath6kl_sdio_free_bus_req(ar_sdio, req);
Kalle Valo8e8ddb22011-10-05 12:23:33 +0300425 ath6kl_hif_rw_comp_handler(context, status);
Kalle Valobdcd8172011-07-18 00:22:30 +0300426 }
427}
428
429static void ath6kl_sdio_write_async_work(struct work_struct *work)
430{
431 struct ath6kl_sdio *ar_sdio;
Kalle Valobdcd8172011-07-18 00:22:30 +0300432 struct bus_request *req, *tmp_req;
433
434 ar_sdio = container_of(work, struct ath6kl_sdio, wr_async_work);
Kalle Valobdcd8172011-07-18 00:22:30 +0300435
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530436 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300437 list_for_each_entry_safe(req, tmp_req, &ar_sdio->wr_asyncq, list) {
438 list_del(&req->list);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530439 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300440 __ath6kl_sdio_write_async(ar_sdio, req);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530441 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300442 }
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530443 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300444}
445
446static void ath6kl_sdio_irq_handler(struct sdio_func *func)
447{
448 int status;
449 struct ath6kl_sdio *ar_sdio;
450
Kalle Valof7325b82011-09-27 14:30:58 +0300451 ath6kl_dbg(ATH6KL_DBG_SDIO, "irq\n");
452
Kalle Valobdcd8172011-07-18 00:22:30 +0300453 ar_sdio = sdio_get_drvdata(func);
454 atomic_set(&ar_sdio->irq_handling, 1);
455
456 /*
457 * Release the host during interrups so we can pick it back up when
458 * we process commands.
459 */
460 sdio_release_host(ar_sdio->func);
461
Kalle Valo8e8ddb22011-10-05 12:23:33 +0300462 status = ath6kl_hif_intr_bh_handler(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300463 sdio_claim_host(ar_sdio->func);
464 atomic_set(&ar_sdio->irq_handling, 0);
465 WARN_ON(status && status != -ECANCELED);
466}
467
Kalle Valob2e75692011-10-27 18:48:14 +0300468static int ath6kl_sdio_power_on(struct ath6kl *ar)
Kalle Valobdcd8172011-07-18 00:22:30 +0300469{
Kalle Valob2e75692011-10-27 18:48:14 +0300470 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300471 struct sdio_func *func = ar_sdio->func;
472 int ret = 0;
473
474 if (!ar_sdio->is_disabled)
475 return 0;
476
Kalle Valo3ef987b2011-10-24 12:18:07 +0300477 ath6kl_dbg(ATH6KL_DBG_BOOT, "sdio power on\n");
478
Kalle Valobdcd8172011-07-18 00:22:30 +0300479 sdio_claim_host(func);
480
481 ret = sdio_enable_func(func);
482 if (ret) {
483 ath6kl_err("Unable to enable sdio func: %d)\n", ret);
484 sdio_release_host(func);
485 return ret;
486 }
487
488 sdio_release_host(func);
489
490 /*
491 * Wait for hardware to initialise. It should take a lot less than
492 * 10 ms but let's be conservative here.
493 */
494 msleep(10);
495
496 ar_sdio->is_disabled = false;
497
498 return ret;
499}
500
Kalle Valob2e75692011-10-27 18:48:14 +0300501static int ath6kl_sdio_power_off(struct ath6kl *ar)
Kalle Valobdcd8172011-07-18 00:22:30 +0300502{
Kalle Valob2e75692011-10-27 18:48:14 +0300503 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300504 int ret;
505
506 if (ar_sdio->is_disabled)
507 return 0;
508
Kalle Valo3ef987b2011-10-24 12:18:07 +0300509 ath6kl_dbg(ATH6KL_DBG_BOOT, "sdio power off\n");
510
Kalle Valobdcd8172011-07-18 00:22:30 +0300511 /* Disable the card */
512 sdio_claim_host(ar_sdio->func);
513 ret = sdio_disable_func(ar_sdio->func);
514 sdio_release_host(ar_sdio->func);
515
516 if (ret)
517 return ret;
518
519 ar_sdio->is_disabled = true;
520
521 return ret;
522}
523
524static int ath6kl_sdio_write_async(struct ath6kl *ar, u32 address, u8 *buffer,
525 u32 length, u32 request,
526 struct htc_packet *packet)
527{
528 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
529 struct bus_request *bus_req;
Kalle Valobdcd8172011-07-18 00:22:30 +0300530
531 bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
532
533 if (!bus_req)
534 return -ENOMEM;
535
536 bus_req->address = address;
537 bus_req->buffer = buffer;
538 bus_req->length = length;
539 bus_req->request = request;
540 bus_req->packet = packet;
541
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530542 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300543 list_add_tail(&bus_req->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530544 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300545 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
546
547 return 0;
548}
549
550static void ath6kl_sdio_irq_enable(struct ath6kl *ar)
551{
552 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
553 int ret;
554
555 sdio_claim_host(ar_sdio->func);
556
557 /* Register the isr */
558 ret = sdio_claim_irq(ar_sdio->func, ath6kl_sdio_irq_handler);
559 if (ret)
560 ath6kl_err("Failed to claim sdio irq: %d\n", ret);
561
562 sdio_release_host(ar_sdio->func);
563}
564
565static void ath6kl_sdio_irq_disable(struct ath6kl *ar)
566{
567 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
568 int ret;
569
570 sdio_claim_host(ar_sdio->func);
571
572 /* Mask our function IRQ */
573 while (atomic_read(&ar_sdio->irq_handling)) {
574 sdio_release_host(ar_sdio->func);
575 schedule_timeout(HZ / 10);
576 sdio_claim_host(ar_sdio->func);
577 }
578
579 ret = sdio_release_irq(ar_sdio->func);
580 if (ret)
581 ath6kl_err("Failed to release sdio irq: %d\n", ret);
582
583 sdio_release_host(ar_sdio->func);
584}
585
586static struct hif_scatter_req *ath6kl_sdio_scatter_req_get(struct ath6kl *ar)
587{
588 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
589 struct hif_scatter_req *node = NULL;
Kalle Valobdcd8172011-07-18 00:22:30 +0300590
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530591 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300592
593 if (!list_empty(&ar_sdio->scat_req)) {
594 node = list_first_entry(&ar_sdio->scat_req,
595 struct hif_scatter_req, list);
596 list_del(&node->list);
597 }
598
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530599 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300600
601 return node;
602}
603
604static void ath6kl_sdio_scatter_req_add(struct ath6kl *ar,
605 struct hif_scatter_req *s_req)
606{
607 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300608
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530609 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300610
611 list_add_tail(&s_req->list, &ar_sdio->scat_req);
612
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530613 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300614
615}
616
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530617/* scatter gather read write request */
618static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar,
619 struct hif_scatter_req *scat_req)
620{
621 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530622 u32 request = scat_req->req;
623 int status = 0;
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530624
625 if (!scat_req->len)
626 return -EINVAL;
627
628 ath6kl_dbg(ATH6KL_DBG_SCATTER,
629 "hif-scatter: total len: %d scatter entries: %d\n",
630 scat_req->len, scat_req->scat_entries);
631
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530632 if (request & HIF_SYNCHRONOUS)
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530633 status = ath6kl_sdio_scat_rw(ar_sdio, scat_req->busrequest);
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530634 else {
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530635 spin_lock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530636 list_add_tail(&scat_req->busrequest->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530637 spin_unlock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530638 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
639 }
640
641 return status;
642}
643
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530644/* clean up scatter support */
645static void ath6kl_sdio_cleanup_scatter(struct ath6kl *ar)
646{
647 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
648 struct hif_scatter_req *s_req, *tmp_req;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530649
650 /* empty the free list */
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530651 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530652 list_for_each_entry_safe(s_req, tmp_req, &ar_sdio->scat_req, list) {
653 list_del(&s_req->list);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530654 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530655
Kalle Valo32a07e42011-10-30 21:15:57 +0200656 /*
657 * FIXME: should we also call completion handler with
658 * ath6kl_hif_rw_comp_handler() with status -ECANCELED so
659 * that the packet is properly freed?
660 */
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530661 if (s_req->busrequest)
662 ath6kl_sdio_free_bus_req(ar_sdio, s_req->busrequest);
663 kfree(s_req->virt_dma_buf);
664 kfree(s_req->sgentries);
665 kfree(s_req);
666
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530667 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530668 }
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530669 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530670}
671
672/* setup of HIF scatter resources */
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530673static int ath6kl_sdio_enable_scatter(struct ath6kl *ar)
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530674{
675 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530676 struct htc_target *target = ar->htc_target;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530677 int ret;
678 bool virt_scat = false;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530679
Kalle Valo32a07e42011-10-30 21:15:57 +0200680 if (ar_sdio->scatter_enabled)
681 return 0;
682
683 ar_sdio->scatter_enabled = true;
684
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530685 /* check if host supports scatter and it meets our requirements */
686 if (ar_sdio->func->card->host->max_segs < MAX_SCATTER_ENTRIES_PER_REQ) {
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530687 ath6kl_err("host only supports scatter of :%d entries, need: %d\n",
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530688 ar_sdio->func->card->host->max_segs,
689 MAX_SCATTER_ENTRIES_PER_REQ);
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530690 virt_scat = true;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530691 }
692
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530693 if (!virt_scat) {
694 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
695 MAX_SCATTER_ENTRIES_PER_REQ,
696 MAX_SCATTER_REQUESTS, virt_scat);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530697
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530698 if (!ret) {
Kalle Valo3ef987b2011-10-24 12:18:07 +0300699 ath6kl_dbg(ATH6KL_DBG_BOOT,
700 "hif-scatter enabled requests %d entries %d\n",
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530701 MAX_SCATTER_REQUESTS,
702 MAX_SCATTER_ENTRIES_PER_REQ);
703
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530704 target->max_scat_entries = MAX_SCATTER_ENTRIES_PER_REQ;
705 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530706 MAX_SCATTER_REQ_TRANSFER_SIZE;
707 } else {
708 ath6kl_sdio_cleanup_scatter(ar);
709 ath6kl_warn("hif scatter resource setup failed, trying virtual scatter method\n");
710 }
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530711 }
712
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530713 if (virt_scat || ret) {
714 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
715 ATH6KL_SCATTER_ENTRIES_PER_REQ,
716 ATH6KL_SCATTER_REQS, virt_scat);
717
718 if (ret) {
719 ath6kl_err("failed to alloc virtual scatter resources !\n");
720 ath6kl_sdio_cleanup_scatter(ar);
721 return ret;
722 }
723
Kalle Valo3ef987b2011-10-24 12:18:07 +0300724 ath6kl_dbg(ATH6KL_DBG_BOOT,
725 "virtual scatter enabled requests %d entries %d\n",
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530726 ATH6KL_SCATTER_REQS, ATH6KL_SCATTER_ENTRIES_PER_REQ);
727
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530728 target->max_scat_entries = ATH6KL_SCATTER_ENTRIES_PER_REQ;
729 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530730 ATH6KL_MAX_TRANSFER_SIZE_PER_SCATTER;
731 }
732
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530733 return 0;
734}
735
Kalle Valoabcb3442011-07-22 08:26:20 +0300736static int ath6kl_sdio_suspend(struct ath6kl *ar)
737{
738 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
739 struct sdio_func *func = ar_sdio->func;
740 mmc_pm_flag_t flags;
741 int ret;
742
743 flags = sdio_get_host_pm_caps(func);
744
Sam Leffler17380852011-10-13 13:20:32 +0300745 if (!(flags & MMC_PM_KEEP_POWER)) {
Kalle Valoabcb3442011-07-22 08:26:20 +0300746 /* as host doesn't support keep power we need to bail out */
Kalle Valof7325b82011-09-27 14:30:58 +0300747 ath6kl_dbg(ATH6KL_DBG_SDIO,
748 "func %d doesn't support MMC_PM_KEEP_POWER\n",
749 func->num);
Kalle Valoabcb3442011-07-22 08:26:20 +0300750 return -EINVAL;
Sam Leffler17380852011-10-13 13:20:32 +0300751 }
Kalle Valoabcb3442011-07-22 08:26:20 +0300752
753 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
754 if (ret) {
755 printk(KERN_ERR "ath6kl: set sdio pm flags failed: %d\n",
756 ret);
757 return ret;
758 }
759
Kalle Valo52d81a62011-11-01 08:44:21 +0200760 ath6kl_cfg80211_suspend(ar, ATH6KL_CFG_SUSPEND_DEEPSLEEP);
Kalle Valoabcb3442011-07-22 08:26:20 +0300761
762 return 0;
763}
764
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300765static int ath6kl_sdio_resume(struct ath6kl *ar)
766{
Kalle Valo52d81a62011-11-01 08:44:21 +0200767 ath6kl_cfg80211_resume(ar);
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300768
769 return 0;
770}
771
Kalle Valo32a07e42011-10-30 21:15:57 +0200772static void ath6kl_sdio_stop(struct ath6kl *ar)
773{
774 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
775 struct bus_request *req, *tmp_req;
776 void *context;
777
778 /* FIXME: make sure that wq is not queued again */
779
780 cancel_work_sync(&ar_sdio->wr_async_work);
781
782 spin_lock_bh(&ar_sdio->wr_async_lock);
783
784 list_for_each_entry_safe(req, tmp_req, &ar_sdio->wr_asyncq, list) {
785 list_del(&req->list);
786
787 if (req->scat_req) {
788 /* this is a scatter gather request */
789 req->scat_req->status = -ECANCELED;
790 req->scat_req->complete(ar_sdio->ar->htc_target,
791 req->scat_req);
792 } else {
793 context = req->packet;
794 ath6kl_sdio_free_bus_req(ar_sdio, req);
795 ath6kl_hif_rw_comp_handler(context, -ECANCELED);
796 }
797 }
798
799 spin_unlock_bh(&ar_sdio->wr_async_lock);
800
801 WARN_ON(get_queue_depth(&ar_sdio->scat_req) != 4);
802}
803
Kalle Valobdcd8172011-07-18 00:22:30 +0300804static const struct ath6kl_hif_ops ath6kl_sdio_ops = {
805 .read_write_sync = ath6kl_sdio_read_write_sync,
806 .write_async = ath6kl_sdio_write_async,
807 .irq_enable = ath6kl_sdio_irq_enable,
808 .irq_disable = ath6kl_sdio_irq_disable,
809 .scatter_req_get = ath6kl_sdio_scatter_req_get,
810 .scatter_req_add = ath6kl_sdio_scatter_req_add,
811 .enable_scatter = ath6kl_sdio_enable_scatter,
Vasanthakumar Thiagarajanf74a7362011-07-16 20:29:05 +0530812 .scat_req_rw = ath6kl_sdio_async_rw_scatter,
Kalle Valobdcd8172011-07-18 00:22:30 +0300813 .cleanup_scatter = ath6kl_sdio_cleanup_scatter,
Kalle Valoabcb3442011-07-22 08:26:20 +0300814 .suspend = ath6kl_sdio_suspend,
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300815 .resume = ath6kl_sdio_resume,
Kalle Valob2e75692011-10-27 18:48:14 +0300816 .power_on = ath6kl_sdio_power_on,
817 .power_off = ath6kl_sdio_power_off,
Kalle Valo32a07e42011-10-30 21:15:57 +0200818 .stop = ath6kl_sdio_stop,
Kalle Valobdcd8172011-07-18 00:22:30 +0300819};
820
821static int ath6kl_sdio_probe(struct sdio_func *func,
822 const struct sdio_device_id *id)
823{
824 int ret;
825 struct ath6kl_sdio *ar_sdio;
826 struct ath6kl *ar;
827 int count;
828
Kalle Valo3ef987b2011-10-24 12:18:07 +0300829 ath6kl_dbg(ATH6KL_DBG_BOOT,
830 "sdio new func %d vendor 0x%x device 0x%x block 0x%x/0x%x\n",
Kalle Valof7325b82011-09-27 14:30:58 +0300831 func->num, func->vendor, func->device,
832 func->max_blksize, func->cur_blksize);
Kalle Valobdcd8172011-07-18 00:22:30 +0300833
834 ar_sdio = kzalloc(sizeof(struct ath6kl_sdio), GFP_KERNEL);
835 if (!ar_sdio)
836 return -ENOMEM;
837
838 ar_sdio->dma_buffer = kzalloc(HIF_DMA_BUFFER_SIZE, GFP_KERNEL);
839 if (!ar_sdio->dma_buffer) {
840 ret = -ENOMEM;
841 goto err_hif;
842 }
843
844 ar_sdio->func = func;
845 sdio_set_drvdata(func, ar_sdio);
846
847 ar_sdio->id = id;
848 ar_sdio->is_disabled = true;
849
850 spin_lock_init(&ar_sdio->lock);
851 spin_lock_init(&ar_sdio->scat_lock);
852 spin_lock_init(&ar_sdio->wr_async_lock);
853
854 INIT_LIST_HEAD(&ar_sdio->scat_req);
855 INIT_LIST_HEAD(&ar_sdio->bus_req_freeq);
856 INIT_LIST_HEAD(&ar_sdio->wr_asyncq);
857
858 INIT_WORK(&ar_sdio->wr_async_work, ath6kl_sdio_write_async_work);
859
860 for (count = 0; count < BUS_REQUEST_MAX_NUM; count++)
861 ath6kl_sdio_free_bus_req(ar_sdio, &ar_sdio->bus_req[count]);
862
863 ar = ath6kl_core_alloc(&ar_sdio->func->dev);
864 if (!ar) {
865 ath6kl_err("Failed to alloc ath6kl core\n");
866 ret = -ENOMEM;
867 goto err_dma;
868 }
869
870 ar_sdio->ar = ar;
871 ar->hif_priv = ar_sdio;
872 ar->hif_ops = &ath6kl_sdio_ops;
873
874 ath6kl_sdio_set_mbox_info(ar);
875
876 sdio_claim_host(func);
877
878 if ((ar_sdio->id->device & MANUFACTURER_ID_ATH6KL_BASE_MASK) >=
879 MANUFACTURER_ID_AR6003_BASE) {
880 /* enable 4-bit ASYNC interrupt on AR6003 or later */
881 ret = ath6kl_sdio_func0_cmd52_wr_byte(func->card,
882 CCCR_SDIO_IRQ_MODE_REG,
883 SDIO_IRQ_MODE_ASYNC_4BIT_IRQ);
884 if (ret) {
885 ath6kl_err("Failed to enable 4-bit async irq mode %d\n",
886 ret);
887 sdio_release_host(func);
Vasanthakumar Thiagarajan8dafb702011-10-25 19:33:58 +0530888 goto err_core_alloc;
Kalle Valobdcd8172011-07-18 00:22:30 +0300889 }
890
Kalle Valo3ef987b2011-10-24 12:18:07 +0300891 ath6kl_dbg(ATH6KL_DBG_BOOT, "4-bit async irq mode enabled\n");
Kalle Valobdcd8172011-07-18 00:22:30 +0300892 }
893
894 /* give us some time to enable, in ms */
895 func->enable_timeout = 100;
896
897 sdio_release_host(func);
898
Kalle Valobdcd8172011-07-18 00:22:30 +0300899 sdio_claim_host(func);
900
901 ret = sdio_set_block_size(func, HIF_MBOX_BLOCK_SIZE);
902 if (ret) {
903 ath6kl_err("Set sdio block size %d failed: %d)\n",
904 HIF_MBOX_BLOCK_SIZE, ret);
905 sdio_release_host(func);
Kalle Valob2e75692011-10-27 18:48:14 +0300906 goto err_hif;
Kalle Valobdcd8172011-07-18 00:22:30 +0300907 }
908
909 sdio_release_host(func);
910
911 ret = ath6kl_core_init(ar);
912 if (ret) {
913 ath6kl_err("Failed to init ath6kl core\n");
Kalle Valob2e75692011-10-27 18:48:14 +0300914 goto err_hif;
Kalle Valobdcd8172011-07-18 00:22:30 +0300915 }
916
917 return ret;
918
Vasanthakumar Thiagarajan8dafb702011-10-25 19:33:58 +0530919err_core_alloc:
920 ath6kl_core_free(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300921err_dma:
922 kfree(ar_sdio->dma_buffer);
923err_hif:
924 kfree(ar_sdio);
925
926 return ret;
927}
928
929static void ath6kl_sdio_remove(struct sdio_func *func)
930{
931 struct ath6kl_sdio *ar_sdio;
932
Kalle Valo3ef987b2011-10-24 12:18:07 +0300933 ath6kl_dbg(ATH6KL_DBG_BOOT,
934 "sdio removed func %d vendor 0x%x device 0x%x\n",
Kalle Valof7325b82011-09-27 14:30:58 +0300935 func->num, func->vendor, func->device);
936
Kalle Valobdcd8172011-07-18 00:22:30 +0300937 ar_sdio = sdio_get_drvdata(func);
938
939 ath6kl_stop_txrx(ar_sdio->ar);
940 cancel_work_sync(&ar_sdio->wr_async_work);
941
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +0530942 ath6kl_core_cleanup(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300943
Kalle Valobdcd8172011-07-18 00:22:30 +0300944 kfree(ar_sdio->dma_buffer);
945 kfree(ar_sdio);
946}
947
948static const struct sdio_device_id ath6kl_sdio_devices[] = {
949 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x0))},
950 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x1))},
951 {},
952};
953
954MODULE_DEVICE_TABLE(sdio, ath6kl_sdio_devices);
955
956static struct sdio_driver ath6kl_sdio_driver = {
Kalle Valocd4b8b82011-10-28 16:23:26 +0300957 .name = "ath6kl",
Kalle Valobdcd8172011-07-18 00:22:30 +0300958 .id_table = ath6kl_sdio_devices,
959 .probe = ath6kl_sdio_probe,
960 .remove = ath6kl_sdio_remove,
961};
962
963static int __init ath6kl_sdio_init(void)
964{
965 int ret;
966
967 ret = sdio_register_driver(&ath6kl_sdio_driver);
968 if (ret)
969 ath6kl_err("sdio driver registration failed: %d\n", ret);
970
971 return ret;
972}
973
974static void __exit ath6kl_sdio_exit(void)
975{
976 sdio_unregister_driver(&ath6kl_sdio_driver);
977}
978
979module_init(ath6kl_sdio_init);
980module_exit(ath6kl_sdio_exit);
981
982MODULE_AUTHOR("Atheros Communications, Inc.");
983MODULE_DESCRIPTION("Driver support for Atheros AR600x SDIO devices");
984MODULE_LICENSE("Dual BSD/GPL");
985
986MODULE_FIRMWARE(AR6003_REV2_OTP_FILE);
987MODULE_FIRMWARE(AR6003_REV2_FIRMWARE_FILE);
988MODULE_FIRMWARE(AR6003_REV2_PATCH_FILE);
989MODULE_FIRMWARE(AR6003_REV2_BOARD_DATA_FILE);
990MODULE_FIRMWARE(AR6003_REV2_DEFAULT_BOARD_DATA_FILE);
991MODULE_FIRMWARE(AR6003_REV3_OTP_FILE);
992MODULE_FIRMWARE(AR6003_REV3_FIRMWARE_FILE);
993MODULE_FIRMWARE(AR6003_REV3_PATCH_FILE);
994MODULE_FIRMWARE(AR6003_REV3_BOARD_DATA_FILE);
995MODULE_FIRMWARE(AR6003_REV3_DEFAULT_BOARD_DATA_FILE);