blob: 58e31f6b60e8208c16ee1af1be11dd92b1363fbe [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
474 sdio_claim_host(func);
475
476 ret = sdio_enable_func(func);
477 if (ret) {
478 ath6kl_err("Unable to enable sdio func: %d)\n", ret);
479 sdio_release_host(func);
480 return ret;
481 }
482
483 sdio_release_host(func);
484
485 /*
486 * Wait for hardware to initialise. It should take a lot less than
487 * 10 ms but let's be conservative here.
488 */
489 msleep(10);
490
491 ar_sdio->is_disabled = false;
492
493 return ret;
494}
495
496static int ath6kl_sdio_power_off(struct ath6kl_sdio *ar_sdio)
497{
498 int ret;
499
500 if (ar_sdio->is_disabled)
501 return 0;
502
503 /* Disable the card */
504 sdio_claim_host(ar_sdio->func);
505 ret = sdio_disable_func(ar_sdio->func);
506 sdio_release_host(ar_sdio->func);
507
508 if (ret)
509 return ret;
510
511 ar_sdio->is_disabled = true;
512
513 return ret;
514}
515
516static int ath6kl_sdio_write_async(struct ath6kl *ar, u32 address, u8 *buffer,
517 u32 length, u32 request,
518 struct htc_packet *packet)
519{
520 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
521 struct bus_request *bus_req;
Kalle Valobdcd8172011-07-18 00:22:30 +0300522
523 bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
524
525 if (!bus_req)
526 return -ENOMEM;
527
528 bus_req->address = address;
529 bus_req->buffer = buffer;
530 bus_req->length = length;
531 bus_req->request = request;
532 bus_req->packet = packet;
533
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530534 spin_lock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300535 list_add_tail(&bus_req->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530536 spin_unlock_bh(&ar_sdio->wr_async_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300537 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
538
539 return 0;
540}
541
542static void ath6kl_sdio_irq_enable(struct ath6kl *ar)
543{
544 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
545 int ret;
546
547 sdio_claim_host(ar_sdio->func);
548
549 /* Register the isr */
550 ret = sdio_claim_irq(ar_sdio->func, ath6kl_sdio_irq_handler);
551 if (ret)
552 ath6kl_err("Failed to claim sdio irq: %d\n", ret);
553
554 sdio_release_host(ar_sdio->func);
555}
556
557static void ath6kl_sdio_irq_disable(struct ath6kl *ar)
558{
559 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
560 int ret;
561
562 sdio_claim_host(ar_sdio->func);
563
564 /* Mask our function IRQ */
565 while (atomic_read(&ar_sdio->irq_handling)) {
566 sdio_release_host(ar_sdio->func);
567 schedule_timeout(HZ / 10);
568 sdio_claim_host(ar_sdio->func);
569 }
570
571 ret = sdio_release_irq(ar_sdio->func);
572 if (ret)
573 ath6kl_err("Failed to release sdio irq: %d\n", ret);
574
575 sdio_release_host(ar_sdio->func);
576}
577
578static struct hif_scatter_req *ath6kl_sdio_scatter_req_get(struct ath6kl *ar)
579{
580 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
581 struct hif_scatter_req *node = NULL;
Kalle Valobdcd8172011-07-18 00:22:30 +0300582
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530583 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300584
585 if (!list_empty(&ar_sdio->scat_req)) {
586 node = list_first_entry(&ar_sdio->scat_req,
587 struct hif_scatter_req, list);
588 list_del(&node->list);
589 }
590
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530591 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300592
593 return node;
594}
595
596static void ath6kl_sdio_scatter_req_add(struct ath6kl *ar,
597 struct hif_scatter_req *s_req)
598{
599 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300600
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530601 spin_lock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300602
603 list_add_tail(&s_req->list, &ar_sdio->scat_req);
604
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530605 spin_unlock_bh(&ar_sdio->scat_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300606
607}
608
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530609/* scatter gather read write request */
610static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar,
611 struct hif_scatter_req *scat_req)
612{
613 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530614 u32 request = scat_req->req;
615 int status = 0;
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530616
617 if (!scat_req->len)
618 return -EINVAL;
619
620 ath6kl_dbg(ATH6KL_DBG_SCATTER,
621 "hif-scatter: total len: %d scatter entries: %d\n",
622 scat_req->len, scat_req->scat_entries);
623
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530624 if (request & HIF_SYNCHRONOUS)
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530625 status = ath6kl_sdio_scat_rw(ar_sdio, scat_req->busrequest);
Vasanthakumar Thiagarajan861dd052011-09-30 21:46:59 +0530626 else {
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530627 spin_lock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajand4df7892011-07-16 20:29:07 +0530628 list_add_tail(&scat_req->busrequest->list, &ar_sdio->wr_asyncq);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530629 spin_unlock_bh(&ar_sdio->wr_async_lock);
Vasanthakumar Thiagarajanc630d182011-07-16 20:29:06 +0530630 queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
631 }
632
633 return status;
634}
635
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530636/* clean up scatter support */
637static void ath6kl_sdio_cleanup_scatter(struct ath6kl *ar)
638{
639 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
640 struct hif_scatter_req *s_req, *tmp_req;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530641
642 /* empty the free list */
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530643 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530644 list_for_each_entry_safe(s_req, tmp_req, &ar_sdio->scat_req, list) {
645 list_del(&s_req->list);
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530646 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530647
648 if (s_req->busrequest)
649 ath6kl_sdio_free_bus_req(ar_sdio, s_req->busrequest);
650 kfree(s_req->virt_dma_buf);
651 kfree(s_req->sgentries);
652 kfree(s_req);
653
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530654 spin_lock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530655 }
Vasanthakumar Thiagarajan151bd302011-09-30 19:18:43 +0530656 spin_unlock_bh(&ar_sdio->scat_lock);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530657}
658
659/* setup of HIF scatter resources */
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530660static int ath6kl_sdio_enable_scatter(struct ath6kl *ar)
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530661{
662 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530663 struct htc_target *target = ar->htc_target;
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530664 int ret;
665 bool virt_scat = false;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530666
667 /* check if host supports scatter and it meets our requirements */
668 if (ar_sdio->func->card->host->max_segs < MAX_SCATTER_ENTRIES_PER_REQ) {
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530669 ath6kl_err("host only supports scatter of :%d entries, need: %d\n",
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530670 ar_sdio->func->card->host->max_segs,
671 MAX_SCATTER_ENTRIES_PER_REQ);
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530672 virt_scat = true;
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530673 }
674
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530675 if (!virt_scat) {
676 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
677 MAX_SCATTER_ENTRIES_PER_REQ,
678 MAX_SCATTER_REQUESTS, virt_scat);
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530679
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530680 if (!ret) {
Kalle Valof7325b82011-09-27 14:30:58 +0300681 ath6kl_dbg(ATH6KL_DBG_SCATTER,
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530682 "hif-scatter enabled: max scatter req : %d entries: %d\n",
683 MAX_SCATTER_REQUESTS,
684 MAX_SCATTER_ENTRIES_PER_REQ);
685
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530686 target->max_scat_entries = MAX_SCATTER_ENTRIES_PER_REQ;
687 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530688 MAX_SCATTER_REQ_TRANSFER_SIZE;
689 } else {
690 ath6kl_sdio_cleanup_scatter(ar);
691 ath6kl_warn("hif scatter resource setup failed, trying virtual scatter method\n");
692 }
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530693 }
694
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530695 if (virt_scat || ret) {
696 ret = ath6kl_sdio_alloc_prep_scat_req(ar_sdio,
697 ATH6KL_SCATTER_ENTRIES_PER_REQ,
698 ATH6KL_SCATTER_REQS, virt_scat);
699
700 if (ret) {
701 ath6kl_err("failed to alloc virtual scatter resources !\n");
702 ath6kl_sdio_cleanup_scatter(ar);
703 return ret;
704 }
705
Kalle Valof7325b82011-09-27 14:30:58 +0300706 ath6kl_dbg(ATH6KL_DBG_SCATTER,
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530707 "Vitual scatter enabled, max_scat_req:%d, entries:%d\n",
708 ATH6KL_SCATTER_REQS, ATH6KL_SCATTER_ENTRIES_PER_REQ);
709
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +0530710 target->max_scat_entries = ATH6KL_SCATTER_ENTRIES_PER_REQ;
711 target->max_xfer_szper_scatreq =
Vasanthakumar Thiagarajancfeab102011-07-16 20:29:14 +0530712 ATH6KL_MAX_TRANSFER_SIZE_PER_SCATTER;
713 }
714
Vasanthakumar Thiagarajan18a0f932011-07-16 20:29:13 +0530715 return 0;
716}
717
Kalle Valoabcb3442011-07-22 08:26:20 +0300718static int ath6kl_sdio_suspend(struct ath6kl *ar)
719{
720 struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
721 struct sdio_func *func = ar_sdio->func;
722 mmc_pm_flag_t flags;
723 int ret;
724
725 flags = sdio_get_host_pm_caps(func);
726
Sam Leffler17380852011-10-13 13:20:32 +0300727 if (!(flags & MMC_PM_KEEP_POWER)) {
Kalle Valoabcb3442011-07-22 08:26:20 +0300728 /* as host doesn't support keep power we need to bail out */
Kalle Valof7325b82011-09-27 14:30:58 +0300729 ath6kl_dbg(ATH6KL_DBG_SDIO,
730 "func %d doesn't support MMC_PM_KEEP_POWER\n",
731 func->num);
Kalle Valoabcb3442011-07-22 08:26:20 +0300732 return -EINVAL;
Sam Leffler17380852011-10-13 13:20:32 +0300733 }
Kalle Valoabcb3442011-07-22 08:26:20 +0300734
735 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
736 if (ret) {
737 printk(KERN_ERR "ath6kl: set sdio pm flags failed: %d\n",
738 ret);
739 return ret;
740 }
741
742 ath6kl_deep_sleep_enable(ar);
743
744 return 0;
745}
746
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300747static int ath6kl_sdio_resume(struct ath6kl *ar)
748{
749 if (ar->wmi->pwr_mode != ar->wmi->saved_pwr_mode) {
750 if (ath6kl_wmi_powermode_cmd(ar->wmi,
751 ar->wmi->saved_pwr_mode) != 0)
752 ath6kl_warn("ath6kl_sdio_resume: "
753 "wmi_powermode_cmd failed\n");
754 }
755
756 return 0;
757}
758
Kalle Valobdcd8172011-07-18 00:22:30 +0300759static const struct ath6kl_hif_ops ath6kl_sdio_ops = {
760 .read_write_sync = ath6kl_sdio_read_write_sync,
761 .write_async = ath6kl_sdio_write_async,
762 .irq_enable = ath6kl_sdio_irq_enable,
763 .irq_disable = ath6kl_sdio_irq_disable,
764 .scatter_req_get = ath6kl_sdio_scatter_req_get,
765 .scatter_req_add = ath6kl_sdio_scatter_req_add,
766 .enable_scatter = ath6kl_sdio_enable_scatter,
Vasanthakumar Thiagarajanf74a7362011-07-16 20:29:05 +0530767 .scat_req_rw = ath6kl_sdio_async_rw_scatter,
Kalle Valobdcd8172011-07-18 00:22:30 +0300768 .cleanup_scatter = ath6kl_sdio_cleanup_scatter,
Kalle Valoabcb3442011-07-22 08:26:20 +0300769 .suspend = ath6kl_sdio_suspend,
Chilam Ngaa6cffc2011-10-05 10:12:52 +0300770 .resume = ath6kl_sdio_resume,
Kalle Valobdcd8172011-07-18 00:22:30 +0300771};
772
773static int ath6kl_sdio_probe(struct sdio_func *func,
774 const struct sdio_device_id *id)
775{
776 int ret;
777 struct ath6kl_sdio *ar_sdio;
778 struct ath6kl *ar;
779 int count;
780
Kalle Valof7325b82011-09-27 14:30:58 +0300781 ath6kl_dbg(ATH6KL_DBG_SDIO,
782 "new func %d vendor 0x%x device 0x%x block 0x%x/0x%x\n",
783 func->num, func->vendor, func->device,
784 func->max_blksize, func->cur_blksize);
Kalle Valobdcd8172011-07-18 00:22:30 +0300785
786 ar_sdio = kzalloc(sizeof(struct ath6kl_sdio), GFP_KERNEL);
787 if (!ar_sdio)
788 return -ENOMEM;
789
790 ar_sdio->dma_buffer = kzalloc(HIF_DMA_BUFFER_SIZE, GFP_KERNEL);
791 if (!ar_sdio->dma_buffer) {
792 ret = -ENOMEM;
793 goto err_hif;
794 }
795
796 ar_sdio->func = func;
797 sdio_set_drvdata(func, ar_sdio);
798
799 ar_sdio->id = id;
800 ar_sdio->is_disabled = true;
801
802 spin_lock_init(&ar_sdio->lock);
803 spin_lock_init(&ar_sdio->scat_lock);
804 spin_lock_init(&ar_sdio->wr_async_lock);
805
806 INIT_LIST_HEAD(&ar_sdio->scat_req);
807 INIT_LIST_HEAD(&ar_sdio->bus_req_freeq);
808 INIT_LIST_HEAD(&ar_sdio->wr_asyncq);
809
810 INIT_WORK(&ar_sdio->wr_async_work, ath6kl_sdio_write_async_work);
811
812 for (count = 0; count < BUS_REQUEST_MAX_NUM; count++)
813 ath6kl_sdio_free_bus_req(ar_sdio, &ar_sdio->bus_req[count]);
814
815 ar = ath6kl_core_alloc(&ar_sdio->func->dev);
816 if (!ar) {
817 ath6kl_err("Failed to alloc ath6kl core\n");
818 ret = -ENOMEM;
819 goto err_dma;
820 }
821
822 ar_sdio->ar = ar;
823 ar->hif_priv = ar_sdio;
824 ar->hif_ops = &ath6kl_sdio_ops;
825
826 ath6kl_sdio_set_mbox_info(ar);
827
828 sdio_claim_host(func);
829
830 if ((ar_sdio->id->device & MANUFACTURER_ID_ATH6KL_BASE_MASK) >=
831 MANUFACTURER_ID_AR6003_BASE) {
832 /* enable 4-bit ASYNC interrupt on AR6003 or later */
833 ret = ath6kl_sdio_func0_cmd52_wr_byte(func->card,
834 CCCR_SDIO_IRQ_MODE_REG,
835 SDIO_IRQ_MODE_ASYNC_4BIT_IRQ);
836 if (ret) {
837 ath6kl_err("Failed to enable 4-bit async irq mode %d\n",
838 ret);
839 sdio_release_host(func);
Vivek Natarajan9df337a2011-09-15 20:30:43 +0530840 goto err_cfg80211;
Kalle Valobdcd8172011-07-18 00:22:30 +0300841 }
842
Kalle Valof7325b82011-09-27 14:30:58 +0300843 ath6kl_dbg(ATH6KL_DBG_SDIO, "4-bit async irq mode enabled\n");
Kalle Valobdcd8172011-07-18 00:22:30 +0300844 }
845
846 /* give us some time to enable, in ms */
847 func->enable_timeout = 100;
848
849 sdio_release_host(func);
850
851 ret = ath6kl_sdio_power_on(ar_sdio);
852 if (ret)
Vivek Natarajan9df337a2011-09-15 20:30:43 +0530853 goto err_cfg80211;
Kalle Valobdcd8172011-07-18 00:22:30 +0300854
855 sdio_claim_host(func);
856
857 ret = sdio_set_block_size(func, HIF_MBOX_BLOCK_SIZE);
858 if (ret) {
859 ath6kl_err("Set sdio block size %d failed: %d)\n",
860 HIF_MBOX_BLOCK_SIZE, ret);
861 sdio_release_host(func);
862 goto err_off;
863 }
864
865 sdio_release_host(func);
866
867 ret = ath6kl_core_init(ar);
868 if (ret) {
869 ath6kl_err("Failed to init ath6kl core\n");
870 goto err_off;
871 }
872
873 return ret;
874
875err_off:
876 ath6kl_sdio_power_off(ar_sdio);
Vivek Natarajan9df337a2011-09-15 20:30:43 +0530877err_cfg80211:
878 ath6kl_cfg80211_deinit(ar_sdio->ar);
Kalle Valobdcd8172011-07-18 00:22:30 +0300879err_dma:
880 kfree(ar_sdio->dma_buffer);
881err_hif:
882 kfree(ar_sdio);
883
884 return ret;
885}
886
887static void ath6kl_sdio_remove(struct sdio_func *func)
888{
889 struct ath6kl_sdio *ar_sdio;
890
Kalle Valof7325b82011-09-27 14:30:58 +0300891 ath6kl_dbg(ATH6KL_DBG_SDIO,
892 "removed func %d vendor 0x%x device 0x%x\n",
893 func->num, func->vendor, func->device);
894
Kalle Valobdcd8172011-07-18 00:22:30 +0300895 ar_sdio = sdio_get_drvdata(func);
896
897 ath6kl_stop_txrx(ar_sdio->ar);
898 cancel_work_sync(&ar_sdio->wr_async_work);
899
900 ath6kl_unavail_ev(ar_sdio->ar);
901
902 ath6kl_sdio_power_off(ar_sdio);
903
904 kfree(ar_sdio->dma_buffer);
905 kfree(ar_sdio);
906}
907
908static const struct sdio_device_id ath6kl_sdio_devices[] = {
909 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x0))},
910 {SDIO_DEVICE(MANUFACTURER_CODE, (MANUFACTURER_ID_AR6003_BASE | 0x1))},
911 {},
912};
913
914MODULE_DEVICE_TABLE(sdio, ath6kl_sdio_devices);
915
916static struct sdio_driver ath6kl_sdio_driver = {
917 .name = "ath6kl_sdio",
918 .id_table = ath6kl_sdio_devices,
919 .probe = ath6kl_sdio_probe,
920 .remove = ath6kl_sdio_remove,
921};
922
923static int __init ath6kl_sdio_init(void)
924{
925 int ret;
926
927 ret = sdio_register_driver(&ath6kl_sdio_driver);
928 if (ret)
929 ath6kl_err("sdio driver registration failed: %d\n", ret);
930
931 return ret;
932}
933
934static void __exit ath6kl_sdio_exit(void)
935{
936 sdio_unregister_driver(&ath6kl_sdio_driver);
937}
938
939module_init(ath6kl_sdio_init);
940module_exit(ath6kl_sdio_exit);
941
942MODULE_AUTHOR("Atheros Communications, Inc.");
943MODULE_DESCRIPTION("Driver support for Atheros AR600x SDIO devices");
944MODULE_LICENSE("Dual BSD/GPL");
945
946MODULE_FIRMWARE(AR6003_REV2_OTP_FILE);
947MODULE_FIRMWARE(AR6003_REV2_FIRMWARE_FILE);
948MODULE_FIRMWARE(AR6003_REV2_PATCH_FILE);
949MODULE_FIRMWARE(AR6003_REV2_BOARD_DATA_FILE);
950MODULE_FIRMWARE(AR6003_REV2_DEFAULT_BOARD_DATA_FILE);
951MODULE_FIRMWARE(AR6003_REV3_OTP_FILE);
952MODULE_FIRMWARE(AR6003_REV3_FIRMWARE_FILE);
953MODULE_FIRMWARE(AR6003_REV3_PATCH_FILE);
954MODULE_FIRMWARE(AR6003_REV3_BOARD_DATA_FILE);
955MODULE_FIRMWARE(AR6003_REV3_DEFAULT_BOARD_DATA_FILE);