2 * Copyright (c) 2004-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2012,2017 Qualcomm Atheros, Inc.
4 * Copyright (c) 2016-2017 Erik Stromdahl <erik.stromdahl@gmail.com>
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <linux/module.h>
20 #include <linux/mmc/card.h>
21 #include <linux/mmc/mmc.h>
22 #include <linux/mmc/host.h>
23 #include <linux/mmc/sdio_func.h>
24 #include <linux/mmc/sdio_ids.h>
25 #include <linux/mmc/sdio.h>
26 #include <linux/mmc/sd.h>
27 #include <linux/bitfield.h>
33 #include "targaddrs.h"
37 /* inlined helper functions */
39 static inline int ath10k_sdio_calc_txrx_padded_len(struct ath10k_sdio
*ar_sdio
,
42 return __ALIGN_MASK((len
), ar_sdio
->mbox_info
.block_mask
);
45 static inline enum ath10k_htc_ep_id
pipe_id_to_eid(u8 pipe_id
)
47 return (enum ath10k_htc_ep_id
)pipe_id
;
50 static inline void ath10k_sdio_mbox_free_rx_pkt(struct ath10k_sdio_rx_data
*pkt
)
52 dev_kfree_skb(pkt
->skb
);
56 pkt
->trailer_only
= false;
59 static inline int ath10k_sdio_mbox_alloc_rx_pkt(struct ath10k_sdio_rx_data
*pkt
,
60 size_t act_len
, size_t full_len
,
64 pkt
->skb
= dev_alloc_skb(full_len
);
68 pkt
->act_len
= act_len
;
69 pkt
->alloc_len
= full_len
;
70 pkt
->part_of_bundle
= part_of_bundle
;
71 pkt
->last_in_bundle
= last_in_bundle
;
72 pkt
->trailer_only
= false;
77 static inline bool is_trailer_only_msg(struct ath10k_sdio_rx_data
*pkt
)
79 bool trailer_only
= false;
80 struct ath10k_htc_hdr
*htc_hdr
=
81 (struct ath10k_htc_hdr
*)pkt
->skb
->data
;
82 u16 len
= __le16_to_cpu(htc_hdr
->len
);
84 if (len
== htc_hdr
->trailer_len
)
90 /* sdio/mmc functions */
92 static inline void ath10k_sdio_set_cmd52_arg(u32
*arg
, u8 write
, u8 raw
,
96 *arg
= FIELD_PREP(BIT(31), write
) |
97 FIELD_PREP(BIT(27), raw
) |
98 FIELD_PREP(BIT(26), 1) |
99 FIELD_PREP(GENMASK(25, 9), address
) |
100 FIELD_PREP(BIT(8), 1) |
101 FIELD_PREP(GENMASK(7, 0), val
);
104 static int ath10k_sdio_func0_cmd52_wr_byte(struct mmc_card
*card
,
105 unsigned int address
,
108 struct mmc_command io_cmd
;
110 memset(&io_cmd
, 0, sizeof(io_cmd
));
111 ath10k_sdio_set_cmd52_arg(&io_cmd
.arg
, 1, 0, address
, byte
);
112 io_cmd
.opcode
= SD_IO_RW_DIRECT
;
113 io_cmd
.flags
= MMC_RSP_R5
| MMC_CMD_AC
;
115 return mmc_wait_for_cmd(card
->host
, &io_cmd
, 0);
118 static int ath10k_sdio_func0_cmd52_rd_byte(struct mmc_card
*card
,
119 unsigned int address
,
122 struct mmc_command io_cmd
;
125 memset(&io_cmd
, 0, sizeof(io_cmd
));
126 ath10k_sdio_set_cmd52_arg(&io_cmd
.arg
, 0, 0, address
, 0);
127 io_cmd
.opcode
= SD_IO_RW_DIRECT
;
128 io_cmd
.flags
= MMC_RSP_R5
| MMC_CMD_AC
;
130 ret
= mmc_wait_for_cmd(card
->host
, &io_cmd
, 0);
132 *byte
= io_cmd
.resp
[0];
137 static int ath10k_sdio_config(struct ath10k
*ar
)
139 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
140 struct sdio_func
*func
= ar_sdio
->func
;
141 unsigned char byte
, asyncintdelay
= 2;
144 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "sdio configuration\n");
146 sdio_claim_host(func
);
149 ret
= ath10k_sdio_func0_cmd52_rd_byte(func
->card
,
150 SDIO_CCCR_DRIVE_STRENGTH
,
153 byte
&= ~ATH10K_SDIO_DRIVE_DTSX_MASK
;
154 byte
|= FIELD_PREP(ATH10K_SDIO_DRIVE_DTSX_MASK
,
155 ATH10K_SDIO_DRIVE_DTSX_TYPE_D
);
157 ret
= ath10k_sdio_func0_cmd52_wr_byte(func
->card
,
158 SDIO_CCCR_DRIVE_STRENGTH
,
162 ret
= ath10k_sdio_func0_cmd52_rd_byte(
164 CCCR_SDIO_DRIVER_STRENGTH_ENABLE_ADDR
,
167 byte
|= (CCCR_SDIO_DRIVER_STRENGTH_ENABLE_A
|
168 CCCR_SDIO_DRIVER_STRENGTH_ENABLE_C
|
169 CCCR_SDIO_DRIVER_STRENGTH_ENABLE_D
);
171 ret
= ath10k_sdio_func0_cmd52_wr_byte(func
->card
,
172 CCCR_SDIO_DRIVER_STRENGTH_ENABLE_ADDR
,
175 ath10k_warn(ar
, "failed to enable driver strength: %d\n", ret
);
180 ret
= ath10k_sdio_func0_cmd52_rd_byte(func
->card
,
181 CCCR_SDIO_IRQ_MODE_REG_SDIO3
,
184 byte
|= SDIO_IRQ_MODE_ASYNC_4BIT_IRQ_SDIO3
;
186 ret
= ath10k_sdio_func0_cmd52_wr_byte(func
->card
,
187 CCCR_SDIO_IRQ_MODE_REG_SDIO3
,
190 ath10k_warn(ar
, "failed to enable 4-bit async irq mode: %d\n",
196 ret
= ath10k_sdio_func0_cmd52_rd_byte(func
->card
,
197 CCCR_SDIO_ASYNC_INT_DELAY_ADDRESS
,
200 byte
&= ~CCCR_SDIO_ASYNC_INT_DELAY_MASK
;
201 byte
|= FIELD_PREP(CCCR_SDIO_ASYNC_INT_DELAY_MASK
, asyncintdelay
);
203 ret
= ath10k_sdio_func0_cmd52_wr_byte(func
->card
,
204 CCCR_SDIO_ASYNC_INT_DELAY_ADDRESS
,
207 /* give us some time to enable, in ms */
208 func
->enable_timeout
= 100;
210 ret
= sdio_set_block_size(func
, ar_sdio
->mbox_info
.block_size
);
212 ath10k_warn(ar
, "failed to set sdio block size to %d: %d\n",
213 ar_sdio
->mbox_info
.block_size
, ret
);
218 sdio_release_host(func
);
222 static int ath10k_sdio_write32(struct ath10k
*ar
, u32 addr
, u32 val
)
224 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
225 struct sdio_func
*func
= ar_sdio
->func
;
228 sdio_claim_host(func
);
230 sdio_writel(func
, val
, addr
, &ret
);
232 ath10k_warn(ar
, "failed to write 0x%x to address 0x%x: %d\n",
237 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio write32 addr 0x%x val 0x%x\n",
241 sdio_release_host(func
);
246 static int ath10k_sdio_writesb32(struct ath10k
*ar
, u32 addr
, u32 val
)
248 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
249 struct sdio_func
*func
= ar_sdio
->func
;
253 buf
= kzalloc(sizeof(*buf
), GFP_KERNEL
);
257 *buf
= cpu_to_le32(val
);
259 sdio_claim_host(func
);
261 ret
= sdio_writesb(func
, addr
, buf
, sizeof(*buf
));
263 ath10k_warn(ar
, "failed to write value 0x%x to fixed sb address 0x%x: %d\n",
268 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio writesb32 addr 0x%x val 0x%x\n",
272 sdio_release_host(func
);
279 static int ath10k_sdio_read32(struct ath10k
*ar
, u32 addr
, u32
*val
)
281 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
282 struct sdio_func
*func
= ar_sdio
->func
;
285 sdio_claim_host(func
);
286 *val
= sdio_readl(func
, addr
, &ret
);
288 ath10k_warn(ar
, "failed to read from address 0x%x: %d\n",
293 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio read32 addr 0x%x val 0x%x\n",
297 sdio_release_host(func
);
302 static int ath10k_sdio_read(struct ath10k
*ar
, u32 addr
, void *buf
, size_t len
)
304 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
305 struct sdio_func
*func
= ar_sdio
->func
;
308 sdio_claim_host(func
);
310 ret
= sdio_memcpy_fromio(func
, buf
, addr
, len
);
312 ath10k_warn(ar
, "failed to read from address 0x%x: %d\n",
317 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio read addr 0x%x buf 0x%p len %zu\n",
319 ath10k_dbg_dump(ar
, ATH10K_DBG_SDIO_DUMP
, NULL
, "sdio read ", buf
, len
);
322 sdio_release_host(func
);
327 static int ath10k_sdio_write(struct ath10k
*ar
, u32 addr
, const void *buf
, size_t len
)
329 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
330 struct sdio_func
*func
= ar_sdio
->func
;
333 sdio_claim_host(func
);
335 /* For some reason toio() doesn't have const for the buffer, need
336 * an ugly hack to workaround that.
338 ret
= sdio_memcpy_toio(func
, addr
, (void *)buf
, len
);
340 ath10k_warn(ar
, "failed to write to address 0x%x: %d\n",
345 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio write addr 0x%x buf 0x%p len %zu\n",
347 ath10k_dbg_dump(ar
, ATH10K_DBG_SDIO_DUMP
, NULL
, "sdio write ", buf
, len
);
350 sdio_release_host(func
);
355 static int ath10k_sdio_readsb(struct ath10k
*ar
, u32 addr
, void *buf
, size_t len
)
357 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
358 struct sdio_func
*func
= ar_sdio
->func
;
361 sdio_claim_host(func
);
363 len
= round_down(len
, ar_sdio
->mbox_info
.block_size
);
365 ret
= sdio_readsb(func
, buf
, addr
, len
);
367 ath10k_warn(ar
, "failed to read from fixed (sb) address 0x%x: %d\n",
372 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio readsb addr 0x%x buf 0x%p len %zu\n",
374 ath10k_dbg_dump(ar
, ATH10K_DBG_SDIO_DUMP
, NULL
, "sdio readsb ", buf
, len
);
377 sdio_release_host(func
);
382 /* HIF mbox functions */
384 static int ath10k_sdio_mbox_rx_process_packet(struct ath10k
*ar
,
385 struct ath10k_sdio_rx_data
*pkt
,
389 struct ath10k_htc
*htc
= &ar
->htc
;
390 struct sk_buff
*skb
= pkt
->skb
;
391 struct ath10k_htc_hdr
*htc_hdr
= (struct ath10k_htc_hdr
*)skb
->data
;
392 bool trailer_present
= htc_hdr
->flags
& ATH10K_HTC_FLAG_TRAILER_PRESENT
;
393 enum ath10k_htc_ep_id eid
;
398 payload_len
= le16_to_cpu(htc_hdr
->len
);
400 if (trailer_present
) {
401 trailer
= skb
->data
+ sizeof(*htc_hdr
) +
402 payload_len
- htc_hdr
->trailer_len
;
404 eid
= pipe_id_to_eid(htc_hdr
->eid
);
406 ret
= ath10k_htc_process_trailer(htc
,
408 htc_hdr
->trailer_len
,
415 if (is_trailer_only_msg(pkt
))
416 pkt
->trailer_only
= true;
418 skb_trim(skb
, skb
->len
- htc_hdr
->trailer_len
);
421 skb_pull(skb
, sizeof(*htc_hdr
));
426 static int ath10k_sdio_mbox_rx_process_packets(struct ath10k
*ar
,
430 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
431 struct ath10k_htc
*htc
= &ar
->htc
;
432 struct ath10k_sdio_rx_data
*pkt
;
433 struct ath10k_htc_ep
*ep
;
434 enum ath10k_htc_ep_id id
;
435 int ret
, i
, *n_lookahead_local
;
436 u32
*lookaheads_local
;
438 for (i
= 0; i
< ar_sdio
->n_rx_pkts
; i
++) {
439 lookaheads_local
= lookaheads
;
440 n_lookahead_local
= n_lookahead
;
442 id
= ((struct ath10k_htc_hdr
*)&lookaheads
[i
])->eid
;
444 if (id
>= ATH10K_HTC_EP_COUNT
) {
445 ath10k_warn(ar
, "invalid endpoint in look-ahead: %d\n",
451 ep
= &htc
->endpoint
[id
];
453 if (ep
->service_id
== 0) {
454 ath10k_warn(ar
, "ep %d is not connected\n", id
);
459 pkt
= &ar_sdio
->rx_pkts
[i
];
461 if (pkt
->part_of_bundle
&& !pkt
->last_in_bundle
) {
462 /* Only read lookahead's from RX trailers
463 * for the last packet in a bundle.
465 lookaheads_local
= NULL
;
466 n_lookahead_local
= NULL
;
469 ret
= ath10k_sdio_mbox_rx_process_packet(ar
,
476 if (!pkt
->trailer_only
)
477 ep
->ep_ops
.ep_rx_complete(ar_sdio
->ar
, pkt
->skb
);
481 /* The RX complete handler now owns the skb...*/
489 /* Free all packets that was not passed on to the RX completion
492 for (; i
< ar_sdio
->n_rx_pkts
; i
++)
493 ath10k_sdio_mbox_free_rx_pkt(&ar_sdio
->rx_pkts
[i
]);
498 static int ath10k_sdio_mbox_alloc_pkt_bundle(struct ath10k
*ar
,
499 struct ath10k_sdio_rx_data
*rx_pkts
,
500 struct ath10k_htc_hdr
*htc_hdr
,
501 size_t full_len
, size_t act_len
,
506 *bndl_cnt
= FIELD_GET(ATH10K_HTC_FLAG_BUNDLE_MASK
, htc_hdr
->flags
);
508 if (*bndl_cnt
> HTC_HOST_MAX_MSG_PER_BUNDLE
) {
510 "HTC bundle length %u exceeds maximum %u\n",
511 le16_to_cpu(htc_hdr
->len
),
512 HTC_HOST_MAX_MSG_PER_BUNDLE
);
516 /* Allocate bndl_cnt extra skb's for the bundle.
517 * The package containing the
518 * ATH10K_HTC_FLAG_BUNDLE_MASK flag is not included
519 * in bndl_cnt. The skb for that packet will be
520 * allocated separately.
522 for (i
= 0; i
< *bndl_cnt
; i
++) {
523 ret
= ath10k_sdio_mbox_alloc_rx_pkt(&rx_pkts
[i
],
535 static int ath10k_sdio_mbox_rx_alloc(struct ath10k
*ar
,
536 u32 lookaheads
[], int n_lookaheads
)
538 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
539 struct ath10k_htc_hdr
*htc_hdr
;
540 size_t full_len
, act_len
;
544 if (n_lookaheads
> ATH10K_SDIO_MAX_RX_MSGS
) {
546 "the total number of pkgs to be fetched (%u) exceeds maximum %u\n",
548 ATH10K_SDIO_MAX_RX_MSGS
);
553 for (i
= 0; i
< n_lookaheads
; i
++) {
554 htc_hdr
= (struct ath10k_htc_hdr
*)&lookaheads
[i
];
555 last_in_bundle
= false;
557 if (le16_to_cpu(htc_hdr
->len
) >
558 ATH10K_HTC_MBOX_MAX_PAYLOAD_LENGTH
) {
560 "payload length %d exceeds max htc length: %zu\n",
561 le16_to_cpu(htc_hdr
->len
),
562 ATH10K_HTC_MBOX_MAX_PAYLOAD_LENGTH
);
567 act_len
= le16_to_cpu(htc_hdr
->len
) + sizeof(*htc_hdr
);
568 full_len
= ath10k_sdio_calc_txrx_padded_len(ar_sdio
, act_len
);
570 if (full_len
> ATH10K_SDIO_MAX_BUFFER_SIZE
) {
572 "rx buffer requested with invalid htc_hdr length (%d, 0x%x): %d\n",
573 htc_hdr
->eid
, htc_hdr
->flags
,
574 le16_to_cpu(htc_hdr
->len
));
579 if (htc_hdr
->flags
& ATH10K_HTC_FLAG_BUNDLE_MASK
) {
580 /* HTC header indicates that every packet to follow
581 * has the same padded length so that it can be
582 * optimally fetched as a full bundle.
586 ret
= ath10k_sdio_mbox_alloc_pkt_bundle(ar
,
587 &ar_sdio
->rx_pkts
[i
],
593 n_lookaheads
+= bndl_cnt
;
595 /*Next buffer will be the last in the bundle */
596 last_in_bundle
= true;
599 /* Allocate skb for packet. If the packet had the
600 * ATH10K_HTC_FLAG_BUNDLE_MASK flag set, all bundled
601 * packet skb's have been allocated in the previous step.
603 ret
= ath10k_sdio_mbox_alloc_rx_pkt(&ar_sdio
->rx_pkts
[i
],
610 ar_sdio
->n_rx_pkts
= i
;
615 for (i
= 0; i
< ATH10K_SDIO_MAX_RX_MSGS
; i
++) {
616 if (!ar_sdio
->rx_pkts
[i
].alloc_len
)
618 ath10k_sdio_mbox_free_rx_pkt(&ar_sdio
->rx_pkts
[i
]);
624 static int ath10k_sdio_mbox_rx_packet(struct ath10k
*ar
,
625 struct ath10k_sdio_rx_data
*pkt
)
627 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
628 struct sk_buff
*skb
= pkt
->skb
;
631 ret
= ath10k_sdio_readsb(ar
, ar_sdio
->mbox_info
.htc_addr
,
632 skb
->data
, pkt
->alloc_len
);
635 skb_put(skb
, pkt
->act_len
);
640 static int ath10k_sdio_mbox_rx_fetch(struct ath10k
*ar
)
642 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
645 for (i
= 0; i
< ar_sdio
->n_rx_pkts
; i
++) {
646 ret
= ath10k_sdio_mbox_rx_packet(ar
,
647 &ar_sdio
->rx_pkts
[i
]);
655 /* Free all packets that was not successfully fetched. */
656 for (; i
< ar_sdio
->n_rx_pkts
; i
++)
657 ath10k_sdio_mbox_free_rx_pkt(&ar_sdio
->rx_pkts
[i
]);
662 /* This is the timeout for mailbox processing done in the sdio irq
663 * handler. The timeout is deliberately set quite high since SDIO dump logs
664 * over serial port can/will add a substantial overhead to the processing
667 #define SDIO_MBOX_PROCESSING_TIMEOUT_HZ (20 * HZ)
669 static int ath10k_sdio_mbox_rxmsg_pending_handler(struct ath10k
*ar
,
670 u32 msg_lookahead
, bool *done
)
672 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
673 u32 lookaheads
[ATH10K_SDIO_MAX_RX_MSGS
];
674 int n_lookaheads
= 1;
675 unsigned long timeout
;
680 /* Copy the lookahead obtained from the HTC register table into our
681 * temp array as a start value.
683 lookaheads
[0] = msg_lookahead
;
685 timeout
= jiffies
+ SDIO_MBOX_PROCESSING_TIMEOUT_HZ
;
687 /* Try to allocate as many HTC RX packets indicated by
690 ret
= ath10k_sdio_mbox_rx_alloc(ar
, lookaheads
,
695 if (ar_sdio
->n_rx_pkts
>= 2)
696 /* A recv bundle was detected, force IRQ status
701 ret
= ath10k_sdio_mbox_rx_fetch(ar
);
703 /* Process fetched packets. This will potentially update
704 * n_lookaheads depending on if the packets contain lookahead
708 ret
= ath10k_sdio_mbox_rx_process_packets(ar
,
712 if (!n_lookaheads
|| ret
)
715 /* For SYNCH processing, if we get here, we are running
716 * through the loop again due to updated lookaheads. Set
717 * flag that we should re-check IRQ status registers again
718 * before leaving IRQ processing, this can net better
719 * performance in high throughput situations.
722 } while (time_before(jiffies
, timeout
));
724 if (ret
&& (ret
!= -ECANCELED
))
725 ath10k_warn(ar
, "failed to get pending recv messages: %d\n",
731 static int ath10k_sdio_mbox_proc_dbg_intr(struct ath10k
*ar
)
736 /* TODO: Add firmware crash handling */
737 ath10k_warn(ar
, "firmware crashed\n");
739 /* read counter to clear the interrupt, the debug error interrupt is
742 ret
= ath10k_sdio_read32(ar
, MBOX_COUNT_DEC_ADDRESS
, &val
);
744 ath10k_warn(ar
, "failed to clear debug interrupt: %d\n", ret
);
749 static int ath10k_sdio_mbox_proc_counter_intr(struct ath10k
*ar
)
751 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
752 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
753 u8 counter_int_status
;
756 mutex_lock(&irq_data
->mtx
);
757 counter_int_status
= irq_data
->irq_proc_reg
->counter_int_status
&
758 irq_data
->irq_en_reg
->cntr_int_status_en
;
760 /* NOTE: other modules like GMBOX may use the counter interrupt for
761 * credit flow control on other counters, we only need to check for
762 * the debug assertion counter interrupt.
764 if (counter_int_status
& ATH10K_SDIO_TARGET_DEBUG_INTR_MASK
)
765 ret
= ath10k_sdio_mbox_proc_dbg_intr(ar
);
769 mutex_unlock(&irq_data
->mtx
);
774 static int ath10k_sdio_mbox_proc_err_intr(struct ath10k
*ar
)
776 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
777 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
781 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio error interrupt\n");
783 error_int_status
= irq_data
->irq_proc_reg
->error_int_status
& 0x0F;
784 if (!error_int_status
) {
785 ath10k_warn(ar
, "invalid error interrupt status: 0x%x\n",
790 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
791 "sdio error_int_status 0x%x\n", error_int_status
);
793 if (FIELD_GET(MBOX_ERROR_INT_STATUS_WAKEUP_MASK
,
795 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio interrupt error wakeup\n");
797 if (FIELD_GET(MBOX_ERROR_INT_STATUS_RX_UNDERFLOW_MASK
,
799 ath10k_warn(ar
, "rx underflow interrupt error\n");
801 if (FIELD_GET(MBOX_ERROR_INT_STATUS_TX_OVERFLOW_MASK
,
803 ath10k_warn(ar
, "tx overflow interrupt error\n");
805 /* Clear the interrupt */
806 irq_data
->irq_proc_reg
->error_int_status
&= ~error_int_status
;
808 /* set W1C value to clear the interrupt, this hits the register first */
809 ret
= ath10k_sdio_writesb32(ar
, MBOX_ERROR_INT_STATUS_ADDRESS
,
812 ath10k_warn(ar
, "unable to write to error int status address: %d\n",
820 static int ath10k_sdio_mbox_proc_cpu_intr(struct ath10k
*ar
)
822 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
823 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
827 mutex_lock(&irq_data
->mtx
);
828 cpu_int_status
= irq_data
->irq_proc_reg
->cpu_int_status
&
829 irq_data
->irq_en_reg
->cpu_int_status_en
;
830 if (!cpu_int_status
) {
831 ath10k_warn(ar
, "CPU interrupt status is zero\n");
836 /* Clear the interrupt */
837 irq_data
->irq_proc_reg
->cpu_int_status
&= ~cpu_int_status
;
839 /* Set up the register transfer buffer to hit the register 4 times,
840 * this is done to make the access 4-byte aligned to mitigate issues
841 * with host bus interconnects that restrict bus transfer lengths to
842 * be a multiple of 4-bytes.
844 * Set W1C value to clear the interrupt, this hits the register first.
846 ret
= ath10k_sdio_writesb32(ar
, MBOX_CPU_INT_STATUS_ADDRESS
,
849 ath10k_warn(ar
, "unable to write to cpu interrupt status address: %d\n",
855 mutex_unlock(&irq_data
->mtx
);
859 static int ath10k_sdio_mbox_read_int_status(struct ath10k
*ar
,
863 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
864 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
865 struct ath10k_sdio_irq_proc_regs
*irq_proc_reg
= irq_data
->irq_proc_reg
;
866 struct ath10k_sdio_irq_enable_regs
*irq_en_reg
= irq_data
->irq_en_reg
;
867 u8 htc_mbox
= FIELD_PREP(ATH10K_HTC_MAILBOX_MASK
, 1);
870 mutex_lock(&irq_data
->mtx
);
873 *host_int_status
= 0;
875 /* int_status_en is supposed to be non zero, otherwise interrupts
876 * shouldn't be enabled. There is however a short time frame during
877 * initialization between the irq register and int_status_en init
878 * where this can happen.
879 * We silently ignore this condition.
881 if (!irq_en_reg
->int_status_en
) {
886 /* Read the first sizeof(struct ath10k_irq_proc_registers)
887 * bytes of the HTC register table. This
888 * will yield us the value of different int status
889 * registers and the lookahead registers.
891 ret
= ath10k_sdio_read(ar
, MBOX_HOST_INT_STATUS_ADDRESS
,
892 irq_proc_reg
, sizeof(*irq_proc_reg
));
896 /* Update only those registers that are enabled */
897 *host_int_status
= irq_proc_reg
->host_int_status
&
898 irq_en_reg
->int_status_en
;
900 /* Look at mbox status */
901 if (!(*host_int_status
& htc_mbox
)) {
907 /* Mask out pending mbox value, we use look ahead as
908 * the real flag for mbox processing.
910 *host_int_status
&= ~htc_mbox
;
911 if (irq_proc_reg
->rx_lookahead_valid
& htc_mbox
) {
912 *lookahead
= le32_to_cpu(
913 irq_proc_reg
->rx_lookahead
[ATH10K_HTC_MAILBOX
]);
915 ath10k_warn(ar
, "sdio mbox lookahead is zero\n");
919 mutex_unlock(&irq_data
->mtx
);
923 static int ath10k_sdio_mbox_proc_pending_irqs(struct ath10k
*ar
,
930 /* NOTE: HIF implementation guarantees that the context of this
931 * call allows us to perform SYNCHRONOUS I/O, that is we can block,
932 * sleep or call any API that can block or switch thread/task
933 * contexts. This is a fully schedulable context.
936 ret
= ath10k_sdio_mbox_read_int_status(ar
,
944 if (!host_int_status
&& !lookahead
) {
951 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
952 "sdio pending mailbox msg lookahead 0x%08x\n",
955 ret
= ath10k_sdio_mbox_rxmsg_pending_handler(ar
,
962 /* now, handle the rest of the interrupts */
963 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
964 "sdio host_int_status 0x%x\n", host_int_status
);
966 if (FIELD_GET(MBOX_HOST_INT_STATUS_CPU_MASK
, host_int_status
)) {
968 ret
= ath10k_sdio_mbox_proc_cpu_intr(ar
);
973 if (FIELD_GET(MBOX_HOST_INT_STATUS_ERROR_MASK
, host_int_status
)) {
974 /* Error Interrupt */
975 ret
= ath10k_sdio_mbox_proc_err_intr(ar
);
980 if (FIELD_GET(MBOX_HOST_INT_STATUS_COUNTER_MASK
, host_int_status
))
981 /* Counter Interrupt */
982 ret
= ath10k_sdio_mbox_proc_counter_intr(ar
);
987 /* An optimization to bypass reading the IRQ status registers
988 * unecessarily which can re-wake the target, if upper layers
989 * determine that we are in a low-throughput mode, we can rely on
990 * taking another interrupt rather than re-checking the status
991 * registers which can re-wake the target.
993 * NOTE : for host interfaces that makes use of detecting pending
994 * mbox messages at hif can not use this optimization due to
995 * possible side effects, SPI requires the host to drain all
996 * messages from the mailbox before exiting the ISR routine.
999 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
1000 "sdio pending irqs done %d status %d",
1006 static void ath10k_sdio_set_mbox_info(struct ath10k
*ar
)
1008 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1009 struct ath10k_mbox_info
*mbox_info
= &ar_sdio
->mbox_info
;
1010 u16 device
= ar_sdio
->func
->device
, dev_id_base
, dev_id_chiprev
;
1012 mbox_info
->htc_addr
= ATH10K_HIF_MBOX_BASE_ADDR
;
1013 mbox_info
->block_size
= ATH10K_HIF_MBOX_BLOCK_SIZE
;
1014 mbox_info
->block_mask
= ATH10K_HIF_MBOX_BLOCK_SIZE
- 1;
1015 mbox_info
->gmbox_addr
= ATH10K_HIF_GMBOX_BASE_ADDR
;
1016 mbox_info
->gmbox_sz
= ATH10K_HIF_GMBOX_WIDTH
;
1018 mbox_info
->ext_info
[0].htc_ext_addr
= ATH10K_HIF_MBOX0_EXT_BASE_ADDR
;
1020 dev_id_base
= FIELD_GET(QCA_MANUFACTURER_ID_BASE
, device
);
1021 dev_id_chiprev
= FIELD_GET(QCA_MANUFACTURER_ID_REV_MASK
, device
);
1022 switch (dev_id_base
) {
1023 case QCA_MANUFACTURER_ID_AR6005_BASE
:
1024 if (dev_id_chiprev
< 4)
1025 mbox_info
->ext_info
[0].htc_ext_sz
=
1026 ATH10K_HIF_MBOX0_EXT_WIDTH
;
1028 /* from QCA6174 2.0(0x504), the width has been extended
1031 mbox_info
->ext_info
[0].htc_ext_sz
=
1032 ATH10K_HIF_MBOX0_EXT_WIDTH_ROME_2_0
;
1034 case QCA_MANUFACTURER_ID_QCA9377_BASE
:
1035 mbox_info
->ext_info
[0].htc_ext_sz
=
1036 ATH10K_HIF_MBOX0_EXT_WIDTH_ROME_2_0
;
1039 mbox_info
->ext_info
[0].htc_ext_sz
=
1040 ATH10K_HIF_MBOX0_EXT_WIDTH
;
1043 mbox_info
->ext_info
[1].htc_ext_addr
=
1044 mbox_info
->ext_info
[0].htc_ext_addr
+
1045 mbox_info
->ext_info
[0].htc_ext_sz
+
1046 ATH10K_HIF_MBOX_DUMMY_SPACE_SIZE
;
1047 mbox_info
->ext_info
[1].htc_ext_sz
= ATH10K_HIF_MBOX1_EXT_WIDTH
;
1052 static int ath10k_sdio_bmi_credits(struct ath10k
*ar
)
1054 u32 addr
, cmd_credits
;
1055 unsigned long timeout
;
1058 /* Read the counter register to get the command credits */
1059 addr
= MBOX_COUNT_DEC_ADDRESS
+ ATH10K_HIF_MBOX_NUM_MAX
* 4;
1060 timeout
= jiffies
+ BMI_COMMUNICATION_TIMEOUT_HZ
;
1063 while (time_before(jiffies
, timeout
) && !cmd_credits
) {
1064 /* Hit the credit counter with a 4-byte access, the first byte
1065 * read will hit the counter and cause a decrement, while the
1066 * remaining 3 bytes has no effect. The rationale behind this
1067 * is to make all HIF accesses 4-byte aligned.
1069 ret
= ath10k_sdio_read32(ar
, addr
, &cmd_credits
);
1072 "unable to decrement the command credit count register: %d\n",
1077 /* The counter is only 8 bits.
1078 * Ignore anything in the upper 3 bytes
1080 cmd_credits
&= 0xFF;
1084 ath10k_warn(ar
, "bmi communication timeout\n");
1091 static int ath10k_sdio_bmi_get_rx_lookahead(struct ath10k
*ar
)
1093 unsigned long timeout
;
1097 timeout
= jiffies
+ BMI_COMMUNICATION_TIMEOUT_HZ
;
1100 while ((time_before(jiffies
, timeout
)) && !rx_word
) {
1101 ret
= ath10k_sdio_read32(ar
,
1102 MBOX_HOST_INT_STATUS_ADDRESS
,
1105 ath10k_warn(ar
, "unable to read RX_LOOKAHEAD_VALID: %d\n", ret
);
1109 /* all we really want is one bit */
1114 ath10k_warn(ar
, "bmi_recv_buf FIFO empty\n");
1121 static int ath10k_sdio_bmi_exchange_msg(struct ath10k
*ar
,
1122 void *req
, u32 req_len
,
1123 void *resp
, u32
*resp_len
)
1125 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1130 ret
= ath10k_sdio_bmi_credits(ar
);
1134 addr
= ar_sdio
->mbox_info
.htc_addr
;
1136 memcpy(ar_sdio
->bmi_buf
, req
, req_len
);
1137 ret
= ath10k_sdio_write(ar
, addr
, ar_sdio
->bmi_buf
, req_len
);
1140 "unable to send the bmi data to the device: %d\n",
1146 if (!resp
|| !resp_len
)
1147 /* No response expected */
1150 /* During normal bootup, small reads may be required.
1151 * Rather than issue an HIF Read and then wait as the Target
1152 * adds successive bytes to the FIFO, we wait here until
1153 * we know that response data is available.
1155 * This allows us to cleanly timeout on an unexpected
1156 * Target failure rather than risk problems at the HIF level.
1157 * In particular, this avoids SDIO timeouts and possibly garbage
1158 * data on some host controllers. And on an interconnect
1159 * such as Compact Flash (as well as some SDIO masters) which
1160 * does not provide any indication on data timeout, it avoids
1161 * a potential hang or garbage response.
1163 * Synchronization is more difficult for reads larger than the
1164 * size of the MBOX FIFO (128B), because the Target is unable
1165 * to push the 129th byte of data until AFTER the Host posts an
1166 * HIF Read and removes some FIFO data. So for large reads the
1167 * Host proceeds to post an HIF Read BEFORE all the data is
1168 * actually available to read. Fortunately, large BMI reads do
1169 * not occur in practice -- they're supported for debug/development.
1171 * So Host/Target BMI synchronization is divided into these cases:
1172 * CASE 1: length < 4
1175 * CASE 2: 4 <= length <= 128
1176 * Wait for first 4 bytes to be in FIFO
1177 * If CONSERVATIVE_BMI_READ is enabled, also wait for
1178 * a BMI command credit, which indicates that the ENTIRE
1179 * response is available in the the FIFO
1181 * CASE 3: length > 128
1182 * Wait for the first 4 bytes to be in FIFO
1184 * For most uses, a small timeout should be sufficient and we will
1185 * usually see a response quickly; but there may be some unusual
1186 * (debug) cases of BMI_EXECUTE where we want an larger timeout.
1187 * For now, we use an unbounded busy loop while waiting for
1190 * If BMI_EXECUTE ever needs to support longer-latency execution,
1191 * especially in production, this code needs to be enhanced to sleep
1192 * and yield. Also note that BMI_COMMUNICATION_TIMEOUT is currently
1193 * a function of Host processor speed.
1195 ret
= ath10k_sdio_bmi_get_rx_lookahead(ar
);
1199 /* We always read from the start of the mbox address */
1200 addr
= ar_sdio
->mbox_info
.htc_addr
;
1201 ret
= ath10k_sdio_read(ar
, addr
, ar_sdio
->bmi_buf
, *resp_len
);
1204 "unable to read the bmi data from the device: %d\n",
1209 memcpy(resp
, ar_sdio
->bmi_buf
, *resp_len
);
1214 /* sdio async handling functions */
1216 static struct ath10k_sdio_bus_request
1217 *ath10k_sdio_alloc_busreq(struct ath10k
*ar
)
1219 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1220 struct ath10k_sdio_bus_request
*bus_req
;
1222 spin_lock_bh(&ar_sdio
->lock
);
1224 if (list_empty(&ar_sdio
->bus_req_freeq
)) {
1229 bus_req
= list_first_entry(&ar_sdio
->bus_req_freeq
,
1230 struct ath10k_sdio_bus_request
, list
);
1231 list_del(&bus_req
->list
);
1234 spin_unlock_bh(&ar_sdio
->lock
);
1238 static void ath10k_sdio_free_bus_req(struct ath10k
*ar
,
1239 struct ath10k_sdio_bus_request
*bus_req
)
1241 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1243 memset(bus_req
, 0, sizeof(*bus_req
));
1245 spin_lock_bh(&ar_sdio
->lock
);
1246 list_add_tail(&bus_req
->list
, &ar_sdio
->bus_req_freeq
);
1247 spin_unlock_bh(&ar_sdio
->lock
);
1250 static void __ath10k_sdio_write_async(struct ath10k
*ar
,
1251 struct ath10k_sdio_bus_request
*req
)
1253 struct ath10k_htc_ep
*ep
;
1254 struct sk_buff
*skb
;
1258 ret
= ath10k_sdio_write(ar
, req
->address
, skb
->data
, skb
->len
);
1260 ath10k_warn(ar
, "failed to write skb to 0x%x asynchronously: %d",
1264 ep
= &ar
->htc
.endpoint
[req
->eid
];
1265 ath10k_htc_notify_tx_completion(ep
, skb
);
1266 } else if (req
->comp
) {
1267 complete(req
->comp
);
1270 ath10k_sdio_free_bus_req(ar
, req
);
1273 static void ath10k_sdio_write_async_work(struct work_struct
*work
)
1275 struct ath10k_sdio
*ar_sdio
= container_of(work
, struct ath10k_sdio
,
1277 struct ath10k
*ar
= ar_sdio
->ar
;
1278 struct ath10k_sdio_bus_request
*req
, *tmp_req
;
1280 spin_lock_bh(&ar_sdio
->wr_async_lock
);
1282 list_for_each_entry_safe(req
, tmp_req
, &ar_sdio
->wr_asyncq
, list
) {
1283 list_del(&req
->list
);
1284 spin_unlock_bh(&ar_sdio
->wr_async_lock
);
1285 __ath10k_sdio_write_async(ar
, req
);
1286 spin_lock_bh(&ar_sdio
->wr_async_lock
);
1289 spin_unlock_bh(&ar_sdio
->wr_async_lock
);
1292 static int ath10k_sdio_prep_async_req(struct ath10k
*ar
, u32 addr
,
1293 struct sk_buff
*skb
,
1294 struct completion
*comp
,
1295 bool htc_msg
, enum ath10k_htc_ep_id eid
)
1297 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1298 struct ath10k_sdio_bus_request
*bus_req
;
1300 /* Allocate a bus request for the message and queue it on the
1303 bus_req
= ath10k_sdio_alloc_busreq(ar
);
1306 "unable to allocate bus request for async request\n");
1312 bus_req
->address
= addr
;
1313 bus_req
->htc_msg
= htc_msg
;
1314 bus_req
->comp
= comp
;
1316 spin_lock_bh(&ar_sdio
->wr_async_lock
);
1317 list_add_tail(&bus_req
->list
, &ar_sdio
->wr_asyncq
);
1318 spin_unlock_bh(&ar_sdio
->wr_async_lock
);
1325 static void ath10k_sdio_irq_handler(struct sdio_func
*func
)
1327 struct ath10k_sdio
*ar_sdio
= sdio_get_drvdata(func
);
1328 struct ath10k
*ar
= ar_sdio
->ar
;
1329 unsigned long timeout
;
1333 /* Release the host during interrupts so we can pick it back up when
1334 * we process commands.
1336 sdio_release_host(ar_sdio
->func
);
1338 timeout
= jiffies
+ ATH10K_SDIO_HIF_COMMUNICATION_TIMEOUT_HZ
;
1340 ret
= ath10k_sdio_mbox_proc_pending_irqs(ar
, &done
);
1343 } while (time_before(jiffies
, timeout
) && !done
);
1345 sdio_claim_host(ar_sdio
->func
);
1347 if (ret
&& ret
!= -ECANCELED
)
1348 ath10k_warn(ar
, "failed to process pending SDIO interrupts: %d\n",
1352 /* sdio HIF functions */
1354 static int ath10k_sdio_hif_disable_intrs(struct ath10k
*ar
)
1356 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1357 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
1358 struct ath10k_sdio_irq_enable_regs
*regs
= irq_data
->irq_en_reg
;
1361 mutex_lock(&irq_data
->mtx
);
1363 memset(regs
, 0, sizeof(*regs
));
1364 ret
= ath10k_sdio_write(ar
, MBOX_INT_STATUS_ENABLE_ADDRESS
,
1365 ®s
->int_status_en
, sizeof(*regs
));
1367 ath10k_warn(ar
, "unable to disable sdio interrupts: %d\n", ret
);
1369 mutex_unlock(&irq_data
->mtx
);
1374 static int ath10k_sdio_hif_power_up(struct ath10k
*ar
)
1376 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1377 struct sdio_func
*func
= ar_sdio
->func
;
1380 if (!ar_sdio
->is_disabled
)
1383 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "sdio power on\n");
1385 sdio_claim_host(func
);
1387 ret
= sdio_enable_func(func
);
1389 ath10k_warn(ar
, "unable to enable sdio function: %d)\n", ret
);
1390 sdio_release_host(func
);
1394 sdio_release_host(func
);
1396 /* Wait for hardware to initialise. It should take a lot less than
1397 * 20 ms but let's be conservative here.
1401 ar_sdio
->is_disabled
= false;
1403 ret
= ath10k_sdio_hif_disable_intrs(ar
);
1410 static void ath10k_sdio_hif_power_down(struct ath10k
*ar
)
1412 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1415 if (ar_sdio
->is_disabled
)
1418 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "sdio power off\n");
1420 /* Disable the card */
1421 sdio_claim_host(ar_sdio
->func
);
1422 ret
= sdio_disable_func(ar_sdio
->func
);
1423 sdio_release_host(ar_sdio
->func
);
1426 ath10k_warn(ar
, "unable to disable sdio function: %d\n", ret
);
1428 ar_sdio
->is_disabled
= true;
1431 static int ath10k_sdio_hif_tx_sg(struct ath10k
*ar
, u8 pipe_id
,
1432 struct ath10k_hif_sg_item
*items
, int n_items
)
1434 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1435 enum ath10k_htc_ep_id eid
;
1436 struct sk_buff
*skb
;
1439 eid
= pipe_id_to_eid(pipe_id
);
1441 for (i
= 0; i
< n_items
; i
++) {
1445 skb
= items
[i
].transfer_context
;
1446 padded_len
= ath10k_sdio_calc_txrx_padded_len(ar_sdio
,
1448 skb_trim(skb
, padded_len
);
1450 /* Write TX data to the end of the mbox address space */
1451 address
= ar_sdio
->mbox_addr
[eid
] + ar_sdio
->mbox_size
[eid
] -
1453 ret
= ath10k_sdio_prep_async_req(ar
, address
, skb
,
1459 queue_work(ar_sdio
->workqueue
, &ar_sdio
->wr_async_work
);
1464 static int ath10k_sdio_hif_enable_intrs(struct ath10k
*ar
)
1466 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1467 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
1468 struct ath10k_sdio_irq_enable_regs
*regs
= irq_data
->irq_en_reg
;
1471 mutex_lock(&irq_data
->mtx
);
1473 /* Enable all but CPU interrupts */
1474 regs
->int_status_en
= FIELD_PREP(MBOX_INT_STATUS_ENABLE_ERROR_MASK
, 1) |
1475 FIELD_PREP(MBOX_INT_STATUS_ENABLE_CPU_MASK
, 1) |
1476 FIELD_PREP(MBOX_INT_STATUS_ENABLE_COUNTER_MASK
, 1);
1478 /* NOTE: There are some cases where HIF can do detection of
1479 * pending mbox messages which is disabled now.
1481 regs
->int_status_en
|=
1482 FIELD_PREP(MBOX_INT_STATUS_ENABLE_MBOX_DATA_MASK
, 1);
1484 /* Set up the CPU Interrupt status Register */
1485 regs
->cpu_int_status_en
= 0;
1487 /* Set up the Error Interrupt status Register */
1488 regs
->err_int_status_en
=
1489 FIELD_PREP(MBOX_ERROR_STATUS_ENABLE_RX_UNDERFLOW_MASK
, 1) |
1490 FIELD_PREP(MBOX_ERROR_STATUS_ENABLE_TX_OVERFLOW_MASK
, 1);
1492 /* Enable Counter interrupt status register to get fatal errors for
1495 regs
->cntr_int_status_en
=
1496 FIELD_PREP(MBOX_COUNTER_INT_STATUS_ENABLE_BIT_MASK
,
1497 ATH10K_SDIO_TARGET_DEBUG_INTR_MASK
);
1499 ret
= ath10k_sdio_write(ar
, MBOX_INT_STATUS_ENABLE_ADDRESS
,
1500 ®s
->int_status_en
, sizeof(*regs
));
1503 "failed to update mbox interrupt status register : %d\n",
1506 mutex_unlock(&irq_data
->mtx
);
1510 static int ath10k_sdio_hif_set_mbox_sleep(struct ath10k
*ar
, bool enable_sleep
)
1515 ret
= ath10k_sdio_read32(ar
, ATH10K_FIFO_TIMEOUT_AND_CHIP_CONTROL
, &val
);
1517 ath10k_warn(ar
, "failed to read fifo/chip control register: %d\n",
1523 val
&= ATH10K_FIFO_TIMEOUT_AND_CHIP_CONTROL_DISABLE_SLEEP_OFF
;
1525 val
|= ATH10K_FIFO_TIMEOUT_AND_CHIP_CONTROL_DISABLE_SLEEP_ON
;
1527 ret
= ath10k_sdio_write32(ar
, ATH10K_FIFO_TIMEOUT_AND_CHIP_CONTROL
, val
);
1529 ath10k_warn(ar
, "failed to write to FIFO_TIMEOUT_AND_CHIP_CONTROL: %d",
1537 /* HIF diagnostics */
1539 static int ath10k_sdio_hif_diag_read(struct ath10k
*ar
, u32 address
, void *buf
,
1544 /* set window register to start read cycle */
1545 ret
= ath10k_sdio_write32(ar
, MBOX_WINDOW_READ_ADDR_ADDRESS
, address
);
1547 ath10k_warn(ar
, "failed to set mbox window read address: %d", ret
);
1552 ret
= ath10k_sdio_read(ar
, MBOX_WINDOW_DATA_ADDRESS
, buf
, buf_len
);
1554 ath10k_warn(ar
, "failed to read from mbox window data address: %d\n",
1562 static int ath10k_sdio_hif_diag_read32(struct ath10k
*ar
, u32 address
,
1568 val
= kzalloc(sizeof(*val
), GFP_KERNEL
);
1572 ret
= ath10k_sdio_hif_diag_read(ar
, address
, val
, sizeof(*val
));
1576 *value
= __le32_to_cpu(*val
);
1584 static int ath10k_sdio_hif_diag_write_mem(struct ath10k
*ar
, u32 address
,
1585 const void *data
, int nbytes
)
1589 /* set write data */
1590 ret
= ath10k_sdio_write(ar
, MBOX_WINDOW_DATA_ADDRESS
, data
, nbytes
);
1593 "failed to write 0x%p to mbox window data address: %d\n",
1598 /* set window register, which starts the write cycle */
1599 ret
= ath10k_sdio_write32(ar
, MBOX_WINDOW_WRITE_ADDR_ADDRESS
, address
);
1601 ath10k_warn(ar
, "failed to set mbox window write address: %d", ret
);
1608 /* HIF start/stop */
1610 static int ath10k_sdio_hif_start(struct ath10k
*ar
)
1612 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1616 /* Sleep 20 ms before HIF interrupts are disabled.
1617 * This will give target plenty of time to process the BMI done
1618 * request before interrupts are disabled.
1621 ret
= ath10k_sdio_hif_disable_intrs(ar
);
1625 /* eid 0 always uses the lower part of the extended mailbox address
1626 * space (ext_info[0].htc_ext_addr).
1628 ar_sdio
->mbox_addr
[0] = ar_sdio
->mbox_info
.ext_info
[0].htc_ext_addr
;
1629 ar_sdio
->mbox_size
[0] = ar_sdio
->mbox_info
.ext_info
[0].htc_ext_sz
;
1631 sdio_claim_host(ar_sdio
->func
);
1633 /* Register the isr */
1634 ret
= sdio_claim_irq(ar_sdio
->func
, ath10k_sdio_irq_handler
);
1636 ath10k_warn(ar
, "failed to claim sdio interrupt: %d\n", ret
);
1637 sdio_release_host(ar_sdio
->func
);
1641 sdio_release_host(ar_sdio
->func
);
1643 ret
= ath10k_sdio_hif_enable_intrs(ar
);
1645 ath10k_warn(ar
, "failed to enable sdio interrupts: %d\n", ret
);
1647 addr
= host_interest_item_address(HI_ITEM(hi_acs_flags
));
1649 ret
= ath10k_sdio_hif_diag_read32(ar
, addr
, &val
);
1651 ath10k_warn(ar
, "unable to read hi_acs_flags address: %d\n", ret
);
1655 if (val
& HI_ACS_FLAGS_SDIO_SWAP_MAILBOX_FW_ACK
) {
1656 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
1657 "sdio mailbox swap service enabled\n");
1658 ar_sdio
->swap_mbox
= true;
1661 /* Enable sleep and then disable it again */
1662 ret
= ath10k_sdio_hif_set_mbox_sleep(ar
, true);
1666 /* Wait for 20ms for the written value to take effect */
1669 ret
= ath10k_sdio_hif_set_mbox_sleep(ar
, false);
1676 #define SDIO_IRQ_DISABLE_TIMEOUT_HZ (3 * HZ)
1678 static void ath10k_sdio_irq_disable(struct ath10k
*ar
)
1680 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1681 struct ath10k_sdio_irq_data
*irq_data
= &ar_sdio
->irq_data
;
1682 struct ath10k_sdio_irq_enable_regs
*regs
= irq_data
->irq_en_reg
;
1683 struct sk_buff
*skb
;
1684 struct completion irqs_disabled_comp
;
1687 skb
= dev_alloc_skb(sizeof(*regs
));
1691 mutex_lock(&irq_data
->mtx
);
1693 memset(regs
, 0, sizeof(*regs
)); /* disable all interrupts */
1694 memcpy(skb
->data
, regs
, sizeof(*regs
));
1695 skb_put(skb
, sizeof(*regs
));
1697 mutex_unlock(&irq_data
->mtx
);
1699 init_completion(&irqs_disabled_comp
);
1700 ret
= ath10k_sdio_prep_async_req(ar
, MBOX_INT_STATUS_ENABLE_ADDRESS
,
1701 skb
, &irqs_disabled_comp
, false, 0);
1705 queue_work(ar_sdio
->workqueue
, &ar_sdio
->wr_async_work
);
1707 /* Wait for the completion of the IRQ disable request.
1708 * If there is a timeout we will try to disable irq's anyway.
1710 ret
= wait_for_completion_timeout(&irqs_disabled_comp
,
1711 SDIO_IRQ_DISABLE_TIMEOUT_HZ
);
1713 ath10k_warn(ar
, "sdio irq disable request timed out\n");
1715 sdio_claim_host(ar_sdio
->func
);
1717 ret
= sdio_release_irq(ar_sdio
->func
);
1719 ath10k_warn(ar
, "failed to release sdio interrupt: %d\n", ret
);
1721 sdio_release_host(ar_sdio
->func
);
1727 static void ath10k_sdio_hif_stop(struct ath10k
*ar
)
1729 struct ath10k_sdio_bus_request
*req
, *tmp_req
;
1730 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1732 ath10k_sdio_irq_disable(ar
);
1734 cancel_work_sync(&ar_sdio
->wr_async_work
);
1736 spin_lock_bh(&ar_sdio
->wr_async_lock
);
1738 /* Free all bus requests that have not been handled */
1739 list_for_each_entry_safe(req
, tmp_req
, &ar_sdio
->wr_asyncq
, list
) {
1740 struct ath10k_htc_ep
*ep
;
1742 list_del(&req
->list
);
1745 ep
= &ar
->htc
.endpoint
[req
->eid
];
1746 ath10k_htc_notify_tx_completion(ep
, req
->skb
);
1747 } else if (req
->skb
) {
1748 kfree_skb(req
->skb
);
1750 ath10k_sdio_free_bus_req(ar
, req
);
1753 spin_unlock_bh(&ar_sdio
->wr_async_lock
);
1758 static int ath10k_sdio_hif_suspend(struct ath10k
*ar
)
1763 static int ath10k_sdio_hif_resume(struct ath10k
*ar
)
1765 switch (ar
->state
) {
1766 case ATH10K_STATE_OFF
:
1767 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
1768 "sdio resume configuring sdio\n");
1770 /* need to set sdio settings after power is cut from sdio */
1771 ath10k_sdio_config(ar
);
1774 case ATH10K_STATE_ON
:
1783 static int ath10k_sdio_hif_map_service_to_pipe(struct ath10k
*ar
,
1785 u8
*ul_pipe
, u8
*dl_pipe
)
1787 struct ath10k_sdio
*ar_sdio
= ath10k_sdio_priv(ar
);
1788 struct ath10k_htc
*htc
= &ar
->htc
;
1789 u32 htt_addr
, wmi_addr
, htt_mbox_size
, wmi_mbox_size
;
1790 enum ath10k_htc_ep_id eid
;
1791 bool ep_found
= false;
1794 /* For sdio, we are interested in the mapping between eid
1795 * and pipeid rather than service_id to pipe_id.
1796 * First we find out which eid has been allocated to the
1799 for (i
= 0; i
< ATH10K_HTC_EP_COUNT
; i
++) {
1800 if (htc
->endpoint
[i
].service_id
== service_id
) {
1801 eid
= htc
->endpoint
[i
].eid
;
1810 /* Then we create the simplest mapping possible between pipeid
1813 *ul_pipe
= *dl_pipe
= (u8
)eid
;
1815 /* Normally, HTT will use the upper part of the extended
1816 * mailbox address space (ext_info[1].htc_ext_addr) and WMI ctrl
1817 * the lower part (ext_info[0].htc_ext_addr).
1818 * If fw wants swapping of mailbox addresses, the opposite is true.
1820 if (ar_sdio
->swap_mbox
) {
1821 htt_addr
= ar_sdio
->mbox_info
.ext_info
[0].htc_ext_addr
;
1822 wmi_addr
= ar_sdio
->mbox_info
.ext_info
[1].htc_ext_addr
;
1823 htt_mbox_size
= ar_sdio
->mbox_info
.ext_info
[0].htc_ext_sz
;
1824 wmi_mbox_size
= ar_sdio
->mbox_info
.ext_info
[1].htc_ext_sz
;
1826 htt_addr
= ar_sdio
->mbox_info
.ext_info
[1].htc_ext_addr
;
1827 wmi_addr
= ar_sdio
->mbox_info
.ext_info
[0].htc_ext_addr
;
1828 htt_mbox_size
= ar_sdio
->mbox_info
.ext_info
[1].htc_ext_sz
;
1829 wmi_mbox_size
= ar_sdio
->mbox_info
.ext_info
[0].htc_ext_sz
;
1832 switch (service_id
) {
1833 case ATH10K_HTC_SVC_ID_RSVD_CTRL
:
1834 /* HTC ctrl ep mbox address has already been setup in
1835 * ath10k_sdio_hif_start
1838 case ATH10K_HTC_SVC_ID_WMI_CONTROL
:
1839 ar_sdio
->mbox_addr
[eid
] = wmi_addr
;
1840 ar_sdio
->mbox_size
[eid
] = wmi_mbox_size
;
1841 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
1842 "sdio wmi ctrl mbox_addr 0x%x mbox_size %d\n",
1843 ar_sdio
->mbox_addr
[eid
], ar_sdio
->mbox_size
[eid
]);
1845 case ATH10K_HTC_SVC_ID_HTT_DATA_MSG
:
1846 ar_sdio
->mbox_addr
[eid
] = htt_addr
;
1847 ar_sdio
->mbox_size
[eid
] = htt_mbox_size
;
1848 ath10k_dbg(ar
, ATH10K_DBG_SDIO
,
1849 "sdio htt data mbox_addr 0x%x mbox_size %d\n",
1850 ar_sdio
->mbox_addr
[eid
], ar_sdio
->mbox_size
[eid
]);
1853 ath10k_warn(ar
, "unsupported HTC service id: %d\n",
1861 static void ath10k_sdio_hif_get_default_pipe(struct ath10k
*ar
,
1862 u8
*ul_pipe
, u8
*dl_pipe
)
1864 ath10k_dbg(ar
, ATH10K_DBG_SDIO
, "sdio hif get default pipe\n");
1866 /* HTC ctrl ep (SVC id 1) always has eid (and pipe_id in our
1873 /* This op is currently only used by htc_wait_target if the HTC ready
1874 * message times out. It is not applicable for SDIO since there is nothing
1875 * we can do if the HTC ready message does not arrive in time.
1876 * TODO: Make this op non mandatory by introducing a NULL check in the
1879 static void ath10k_sdio_hif_send_complete_check(struct ath10k
*ar
,
1884 static const struct ath10k_hif_ops ath10k_sdio_hif_ops
= {
1885 .tx_sg
= ath10k_sdio_hif_tx_sg
,
1886 .diag_read
= ath10k_sdio_hif_diag_read
,
1887 .diag_write
= ath10k_sdio_hif_diag_write_mem
,
1888 .exchange_bmi_msg
= ath10k_sdio_bmi_exchange_msg
,
1889 .start
= ath10k_sdio_hif_start
,
1890 .stop
= ath10k_sdio_hif_stop
,
1891 .map_service_to_pipe
= ath10k_sdio_hif_map_service_to_pipe
,
1892 .get_default_pipe
= ath10k_sdio_hif_get_default_pipe
,
1893 .send_complete_check
= ath10k_sdio_hif_send_complete_check
,
1894 .power_up
= ath10k_sdio_hif_power_up
,
1895 .power_down
= ath10k_sdio_hif_power_down
,
1897 .suspend
= ath10k_sdio_hif_suspend
,
1898 .resume
= ath10k_sdio_hif_resume
,
1902 #ifdef CONFIG_PM_SLEEP
1904 /* Empty handlers so that mmc subsystem doesn't remove us entirely during
1905 * suspend. We instead follow cfg80211 suspend/resume handlers.
1907 static int ath10k_sdio_pm_suspend(struct device
*device
)
1912 static int ath10k_sdio_pm_resume(struct device
*device
)
1917 static SIMPLE_DEV_PM_OPS(ath10k_sdio_pm_ops
, ath10k_sdio_pm_suspend
,
1918 ath10k_sdio_pm_resume
);
1920 #define ATH10K_SDIO_PM_OPS (&ath10k_sdio_pm_ops)
1924 #define ATH10K_SDIO_PM_OPS NULL
1926 #endif /* CONFIG_PM_SLEEP */
1928 static int ath10k_sdio_probe(struct sdio_func
*func
,
1929 const struct sdio_device_id
*id
)
1931 struct ath10k_sdio
*ar_sdio
;
1933 enum ath10k_hw_rev hw_rev
;
1934 u32 chip_id
, dev_id_base
;
1937 /* Assumption: All SDIO based chipsets (so far) are QCA6174 based.
1938 * If there will be newer chipsets that does not use the hw reg
1939 * setup as defined in qca6174_regs and qca6174_values, this
1940 * assumption is no longer valid and hw_rev must be setup differently
1941 * depending on chipset.
1943 hw_rev
= ATH10K_HW_QCA6174
;
1945 ar
= ath10k_core_create(sizeof(*ar_sdio
), &func
->dev
, ATH10K_BUS_SDIO
,
1946 hw_rev
, &ath10k_sdio_hif_ops
);
1948 dev_err(&func
->dev
, "failed to allocate core\n");
1952 ath10k_dbg(ar
, ATH10K_DBG_BOOT
,
1953 "sdio new func %d vendor 0x%x device 0x%x block 0x%x/0x%x\n",
1954 func
->num
, func
->vendor
, func
->device
,
1955 func
->max_blksize
, func
->cur_blksize
);
1957 ar_sdio
= ath10k_sdio_priv(ar
);
1959 ar_sdio
->irq_data
.irq_proc_reg
=
1960 kzalloc(sizeof(struct ath10k_sdio_irq_proc_regs
),
1962 if (!ar_sdio
->irq_data
.irq_proc_reg
) {
1964 goto err_core_destroy
;
1967 ar_sdio
->irq_data
.irq_en_reg
=
1968 kzalloc(sizeof(struct ath10k_sdio_irq_enable_regs
),
1970 if (!ar_sdio
->irq_data
.irq_en_reg
) {
1972 goto err_free_proc_reg
;
1975 ar_sdio
->bmi_buf
= kzalloc(BMI_MAX_CMDBUF_SIZE
, GFP_KERNEL
);
1976 if (!ar_sdio
->bmi_buf
) {
1978 goto err_free_en_reg
;
1981 ar_sdio
->func
= func
;
1982 sdio_set_drvdata(func
, ar_sdio
);
1984 ar_sdio
->is_disabled
= true;
1987 spin_lock_init(&ar_sdio
->lock
);
1988 spin_lock_init(&ar_sdio
->wr_async_lock
);
1989 mutex_init(&ar_sdio
->irq_data
.mtx
);
1991 INIT_LIST_HEAD(&ar_sdio
->bus_req_freeq
);
1992 INIT_LIST_HEAD(&ar_sdio
->wr_asyncq
);
1994 INIT_WORK(&ar_sdio
->wr_async_work
, ath10k_sdio_write_async_work
);
1995 ar_sdio
->workqueue
= create_singlethread_workqueue("ath10k_sdio_wq");
1996 if (!ar_sdio
->workqueue
) {
1998 goto err_free_bmi_buf
;
2001 for (i
= 0; i
< ATH10K_SDIO_BUS_REQUEST_MAX_NUM
; i
++)
2002 ath10k_sdio_free_bus_req(ar
, &ar_sdio
->bus_req
[i
]);
2004 dev_id_base
= FIELD_GET(QCA_MANUFACTURER_ID_BASE
, id
->device
);
2005 switch (dev_id_base
) {
2006 case QCA_MANUFACTURER_ID_AR6005_BASE
:
2007 case QCA_MANUFACTURER_ID_QCA9377_BASE
:
2008 ar
->dev_id
= QCA9377_1_0_DEVICE_ID
;
2012 ath10k_err(ar
, "unsupported device id %u (0x%x)\n",
2013 dev_id_base
, id
->device
);
2014 goto err_free_bmi_buf
;
2017 ar
->id
.vendor
= id
->vendor
;
2018 ar
->id
.device
= id
->device
;
2020 ath10k_sdio_set_mbox_info(ar
);
2022 ret
= ath10k_sdio_config(ar
);
2024 ath10k_err(ar
, "failed to config sdio: %d\n", ret
);
2028 /* TODO: don't know yet how to get chip_id with SDIO */
2030 ret
= ath10k_core_register(ar
, chip_id
);
2032 ath10k_err(ar
, "failed to register driver core: %d\n", ret
);
2036 /* TODO: remove this once SDIO support is fully implemented */
2037 ath10k_warn(ar
, "WARNING: ath10k SDIO support is incomplete, don't expect anything to work!\n");
2042 destroy_workqueue(ar_sdio
->workqueue
);
2044 kfree(ar_sdio
->bmi_buf
);
2046 kfree(ar_sdio
->irq_data
.irq_en_reg
);
2048 kfree(ar_sdio
->irq_data
.irq_proc_reg
);
2050 ath10k_core_destroy(ar
);
2055 static void ath10k_sdio_remove(struct sdio_func
*func
)
2057 struct ath10k_sdio
*ar_sdio
= sdio_get_drvdata(func
);
2058 struct ath10k
*ar
= ar_sdio
->ar
;
2060 ath10k_dbg(ar
, ATH10K_DBG_BOOT
,
2061 "sdio removed func %d vendor 0x%x device 0x%x\n",
2062 func
->num
, func
->vendor
, func
->device
);
2064 (void)ath10k_sdio_hif_disable_intrs(ar
);
2065 cancel_work_sync(&ar_sdio
->wr_async_work
);
2066 ath10k_core_unregister(ar
);
2067 ath10k_core_destroy(ar
);
2070 static const struct sdio_device_id ath10k_sdio_devices
[] = {
2071 {SDIO_DEVICE(QCA_MANUFACTURER_CODE
,
2072 (QCA_SDIO_ID_AR6005_BASE
| 0xA))},
2073 {SDIO_DEVICE(QCA_MANUFACTURER_CODE
,
2074 (QCA_SDIO_ID_QCA9377_BASE
| 0x1))},
2078 MODULE_DEVICE_TABLE(sdio
, ath10k_sdio_devices
);
2080 static struct sdio_driver ath10k_sdio_driver
= {
2081 .name
= "ath10k_sdio",
2082 .id_table
= ath10k_sdio_devices
,
2083 .probe
= ath10k_sdio_probe
,
2084 .remove
= ath10k_sdio_remove
,
2085 .drv
.pm
= ATH10K_SDIO_PM_OPS
,
2088 static int __init
ath10k_sdio_init(void)
2092 ret
= sdio_register_driver(&ath10k_sdio_driver
);
2094 pr_err("sdio driver registration failed: %d\n", ret
);
2099 static void __exit
ath10k_sdio_exit(void)
2101 sdio_unregister_driver(&ath10k_sdio_driver
);
2104 module_init(ath10k_sdio_init
);
2105 module_exit(ath10k_sdio_exit
);
2107 MODULE_AUTHOR("Qualcomm Atheros");
2108 MODULE_DESCRIPTION("Driver support for Qualcomm Atheros 802.11ac WLAN SDIO devices");
2109 MODULE_LICENSE("Dual BSD/GPL");