2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24 * Support for Copy Engine hardware, which is mainly used for
25 * communication between Host and Target over a PCIe interconnect.
29 * A single CopyEngine (CE) comprises two "rings":
33 * Each ring consists of a number of descriptors which specify
34 * an address, length, and meta-data.
36 * Typically, one side of the PCIe interconnect (Host or Target)
37 * controls one ring and the other side controls the other ring.
38 * The source side chooses when to initiate a transfer and it
39 * chooses what to send (buffer address, length). The destination
40 * side keeps a supply of "anonymous receive buffers" available and
41 * it handles incoming data as it arrives (when the destination
42 * receives an interrupt).
44 * The sender may send a simple buffer (address/length) or it may
45 * send a small list of buffers. When a small list is sent, hardware
46 * "gathers" these and they end up in a single destination buffer
47 * with a single interrupt.
49 * There are several "contexts" managed by this layer -- more, it
50 * may seem -- than should be needed. These are provided mainly for
51 * maximum flexibility and especially to facilitate a simpler HIF
52 * implementation. There are per-CopyEngine recv, send, and watermark
53 * contexts. These are supplied by the caller when a recv, send,
54 * or watermark handler is established and they are echoed back to
55 * the caller when the respective callbacks are invoked. There is
56 * also a per-transfer context supplied by the caller when a buffer
57 * (or sendlist) is sent and when a buffer is enqueued for recv.
58 * These per-transfer contexts are echoed back to the caller when
59 * the buffer is sent/received.
62 static inline void ath10k_ce_dest_ring_write_index_set(struct ath10k
*ar
,
66 ath10k_pci_write32(ar
, ce_ctrl_addr
+ DST_WR_INDEX_ADDRESS
, n
);
69 static inline u32
ath10k_ce_dest_ring_write_index_get(struct ath10k
*ar
,
72 return ath10k_pci_read32(ar
, ce_ctrl_addr
+ DST_WR_INDEX_ADDRESS
);
75 static inline void ath10k_ce_src_ring_write_index_set(struct ath10k
*ar
,
79 ath10k_pci_write32(ar
, ce_ctrl_addr
+ SR_WR_INDEX_ADDRESS
, n
);
82 static inline u32
ath10k_ce_src_ring_write_index_get(struct ath10k
*ar
,
85 return ath10k_pci_read32(ar
, ce_ctrl_addr
+ SR_WR_INDEX_ADDRESS
);
88 static inline u32
ath10k_ce_src_ring_read_index_get(struct ath10k
*ar
,
91 return ath10k_pci_read32(ar
, ce_ctrl_addr
+ CURRENT_SRRI_ADDRESS
);
94 static inline void ath10k_ce_src_ring_base_addr_set(struct ath10k
*ar
,
98 ath10k_pci_write32(ar
, ce_ctrl_addr
+ SR_BA_ADDRESS
, addr
);
101 static inline void ath10k_ce_src_ring_size_set(struct ath10k
*ar
,
105 ath10k_pci_write32(ar
, ce_ctrl_addr
+ SR_SIZE_ADDRESS
, n
);
108 static inline void ath10k_ce_src_ring_dmax_set(struct ath10k
*ar
,
112 u32 ctrl1_addr
= ath10k_pci_read32((ar
),
113 (ce_ctrl_addr
) + CE_CTRL1_ADDRESS
);
115 ath10k_pci_write32(ar
, ce_ctrl_addr
+ CE_CTRL1_ADDRESS
,
116 (ctrl1_addr
& ~CE_CTRL1_DMAX_LENGTH_MASK
) |
117 CE_CTRL1_DMAX_LENGTH_SET(n
));
120 static inline void ath10k_ce_src_ring_byte_swap_set(struct ath10k
*ar
,
124 u32 ctrl1_addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ CE_CTRL1_ADDRESS
);
126 ath10k_pci_write32(ar
, ce_ctrl_addr
+ CE_CTRL1_ADDRESS
,
127 (ctrl1_addr
& ~CE_CTRL1_SRC_RING_BYTE_SWAP_EN_MASK
) |
128 CE_CTRL1_SRC_RING_BYTE_SWAP_EN_SET(n
));
131 static inline void ath10k_ce_dest_ring_byte_swap_set(struct ath10k
*ar
,
135 u32 ctrl1_addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ CE_CTRL1_ADDRESS
);
137 ath10k_pci_write32(ar
, ce_ctrl_addr
+ CE_CTRL1_ADDRESS
,
138 (ctrl1_addr
& ~CE_CTRL1_DST_RING_BYTE_SWAP_EN_MASK
) |
139 CE_CTRL1_DST_RING_BYTE_SWAP_EN_SET(n
));
142 static inline u32
ath10k_ce_dest_ring_read_index_get(struct ath10k
*ar
,
145 return ath10k_pci_read32(ar
, ce_ctrl_addr
+ CURRENT_DRRI_ADDRESS
);
148 static inline void ath10k_ce_dest_ring_base_addr_set(struct ath10k
*ar
,
152 ath10k_pci_write32(ar
, ce_ctrl_addr
+ DR_BA_ADDRESS
, addr
);
155 static inline void ath10k_ce_dest_ring_size_set(struct ath10k
*ar
,
159 ath10k_pci_write32(ar
, ce_ctrl_addr
+ DR_SIZE_ADDRESS
, n
);
162 static inline void ath10k_ce_src_ring_highmark_set(struct ath10k
*ar
,
166 u32 addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ SRC_WATERMARK_ADDRESS
);
168 ath10k_pci_write32(ar
, ce_ctrl_addr
+ SRC_WATERMARK_ADDRESS
,
169 (addr
& ~SRC_WATERMARK_HIGH_MASK
) |
170 SRC_WATERMARK_HIGH_SET(n
));
173 static inline void ath10k_ce_src_ring_lowmark_set(struct ath10k
*ar
,
177 u32 addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ SRC_WATERMARK_ADDRESS
);
179 ath10k_pci_write32(ar
, ce_ctrl_addr
+ SRC_WATERMARK_ADDRESS
,
180 (addr
& ~SRC_WATERMARK_LOW_MASK
) |
181 SRC_WATERMARK_LOW_SET(n
));
184 static inline void ath10k_ce_dest_ring_highmark_set(struct ath10k
*ar
,
188 u32 addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ DST_WATERMARK_ADDRESS
);
190 ath10k_pci_write32(ar
, ce_ctrl_addr
+ DST_WATERMARK_ADDRESS
,
191 (addr
& ~DST_WATERMARK_HIGH_MASK
) |
192 DST_WATERMARK_HIGH_SET(n
));
195 static inline void ath10k_ce_dest_ring_lowmark_set(struct ath10k
*ar
,
199 u32 addr
= ath10k_pci_read32(ar
, ce_ctrl_addr
+ DST_WATERMARK_ADDRESS
);
201 ath10k_pci_write32(ar
, ce_ctrl_addr
+ DST_WATERMARK_ADDRESS
,
202 (addr
& ~DST_WATERMARK_LOW_MASK
) |
203 DST_WATERMARK_LOW_SET(n
));
206 static inline void ath10k_ce_copy_complete_inter_enable(struct ath10k
*ar
,
209 u32 host_ie_addr
= ath10k_pci_read32(ar
,
210 ce_ctrl_addr
+ HOST_IE_ADDRESS
);
212 ath10k_pci_write32(ar
, ce_ctrl_addr
+ HOST_IE_ADDRESS
,
213 host_ie_addr
| HOST_IE_COPY_COMPLETE_MASK
);
216 static inline void ath10k_ce_copy_complete_intr_disable(struct ath10k
*ar
,
219 u32 host_ie_addr
= ath10k_pci_read32(ar
,
220 ce_ctrl_addr
+ HOST_IE_ADDRESS
);
222 ath10k_pci_write32(ar
, ce_ctrl_addr
+ HOST_IE_ADDRESS
,
223 host_ie_addr
& ~HOST_IE_COPY_COMPLETE_MASK
);
226 static inline void ath10k_ce_watermark_intr_disable(struct ath10k
*ar
,
229 u32 host_ie_addr
= ath10k_pci_read32(ar
,
230 ce_ctrl_addr
+ HOST_IE_ADDRESS
);
232 ath10k_pci_write32(ar
, ce_ctrl_addr
+ HOST_IE_ADDRESS
,
233 host_ie_addr
& ~CE_WATERMARK_MASK
);
236 static inline void ath10k_ce_error_intr_enable(struct ath10k
*ar
,
239 u32 misc_ie_addr
= ath10k_pci_read32(ar
,
240 ce_ctrl_addr
+ MISC_IE_ADDRESS
);
242 ath10k_pci_write32(ar
, ce_ctrl_addr
+ MISC_IE_ADDRESS
,
243 misc_ie_addr
| CE_ERROR_MASK
);
246 static inline void ath10k_ce_error_intr_disable(struct ath10k
*ar
,
249 u32 misc_ie_addr
= ath10k_pci_read32(ar
,
250 ce_ctrl_addr
+ MISC_IE_ADDRESS
);
252 ath10k_pci_write32(ar
, ce_ctrl_addr
+ MISC_IE_ADDRESS
,
253 misc_ie_addr
& ~CE_ERROR_MASK
);
256 static inline void ath10k_ce_engine_int_status_clear(struct ath10k
*ar
,
260 ath10k_pci_write32(ar
, ce_ctrl_addr
+ HOST_IS_ADDRESS
, mask
);
264 * Guts of ath10k_ce_send, used by both ath10k_ce_send and
265 * ath10k_ce_sendlist_send.
266 * The caller takes responsibility for any needed locking.
268 int ath10k_ce_send_nolock(struct ath10k_ce_pipe
*ce_state
,
269 void *per_transfer_context
,
272 unsigned int transfer_id
,
275 struct ath10k
*ar
= ce_state
->ar
;
276 struct ath10k_ce_ring
*src_ring
= ce_state
->src_ring
;
277 struct ce_desc
*desc
, sdesc
;
278 unsigned int nentries_mask
= src_ring
->nentries_mask
;
279 unsigned int sw_index
= src_ring
->sw_index
;
280 unsigned int write_index
= src_ring
->write_index
;
281 u32 ctrl_addr
= ce_state
->ctrl_addr
;
285 if (nbytes
> ce_state
->src_sz_max
)
286 ath10k_warn(ar
, "%s: send more we can (nbytes: %d, max: %d)\n",
287 __func__
, nbytes
, ce_state
->src_sz_max
);
289 if (unlikely(CE_RING_DELTA(nentries_mask
,
290 write_index
, sw_index
- 1) <= 0)) {
295 desc
= CE_SRC_RING_TO_DESC(src_ring
->base_addr_owner_space
,
298 desc_flags
|= SM(transfer_id
, CE_DESC_FLAGS_META_DATA
);
300 if (flags
& CE_SEND_FLAG_GATHER
)
301 desc_flags
|= CE_DESC_FLAGS_GATHER
;
302 if (flags
& CE_SEND_FLAG_BYTE_SWAP
)
303 desc_flags
|= CE_DESC_FLAGS_BYTE_SWAP
;
305 sdesc
.addr
= __cpu_to_le32(buffer
);
306 sdesc
.nbytes
= __cpu_to_le16(nbytes
);
307 sdesc
.flags
= __cpu_to_le16(desc_flags
);
311 src_ring
->per_transfer_context
[write_index
] = per_transfer_context
;
313 /* Update Source Ring Write Index */
314 write_index
= CE_RING_IDX_INCR(nentries_mask
, write_index
);
317 if (!(flags
& CE_SEND_FLAG_GATHER
))
318 ath10k_ce_src_ring_write_index_set(ar
, ctrl_addr
, write_index
);
320 src_ring
->write_index
= write_index
;
325 void __ath10k_ce_send_revert(struct ath10k_ce_pipe
*pipe
)
327 struct ath10k
*ar
= pipe
->ar
;
328 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
329 struct ath10k_ce_ring
*src_ring
= pipe
->src_ring
;
330 u32 ctrl_addr
= pipe
->ctrl_addr
;
332 lockdep_assert_held(&ar_pci
->ce_lock
);
335 * This function must be called only if there is an incomplete
336 * scatter-gather transfer (before index register is updated)
337 * that needs to be cleaned up.
339 if (WARN_ON_ONCE(src_ring
->write_index
== src_ring
->sw_index
))
342 if (WARN_ON_ONCE(src_ring
->write_index
==
343 ath10k_ce_src_ring_write_index_get(ar
, ctrl_addr
)))
346 src_ring
->write_index
--;
347 src_ring
->write_index
&= src_ring
->nentries_mask
;
349 src_ring
->per_transfer_context
[src_ring
->write_index
] = NULL
;
352 int ath10k_ce_send(struct ath10k_ce_pipe
*ce_state
,
353 void *per_transfer_context
,
356 unsigned int transfer_id
,
359 struct ath10k
*ar
= ce_state
->ar
;
360 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
363 spin_lock_bh(&ar_pci
->ce_lock
);
364 ret
= ath10k_ce_send_nolock(ce_state
, per_transfer_context
,
365 buffer
, nbytes
, transfer_id
, flags
);
366 spin_unlock_bh(&ar_pci
->ce_lock
);
371 int ath10k_ce_num_free_src_entries(struct ath10k_ce_pipe
*pipe
)
373 struct ath10k
*ar
= pipe
->ar
;
374 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
377 spin_lock_bh(&ar_pci
->ce_lock
);
378 delta
= CE_RING_DELTA(pipe
->src_ring
->nentries_mask
,
379 pipe
->src_ring
->write_index
,
380 pipe
->src_ring
->sw_index
- 1);
381 spin_unlock_bh(&ar_pci
->ce_lock
);
386 int __ath10k_ce_rx_num_free_bufs(struct ath10k_ce_pipe
*pipe
)
388 struct ath10k
*ar
= pipe
->ar
;
389 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
390 struct ath10k_ce_ring
*dest_ring
= pipe
->dest_ring
;
391 unsigned int nentries_mask
= dest_ring
->nentries_mask
;
392 unsigned int write_index
= dest_ring
->write_index
;
393 unsigned int sw_index
= dest_ring
->sw_index
;
395 lockdep_assert_held(&ar_pci
->ce_lock
);
397 return CE_RING_DELTA(nentries_mask
, write_index
, sw_index
- 1);
400 int __ath10k_ce_rx_post_buf(struct ath10k_ce_pipe
*pipe
, void *ctx
, u32 paddr
)
402 struct ath10k
*ar
= pipe
->ar
;
403 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
404 struct ath10k_ce_ring
*dest_ring
= pipe
->dest_ring
;
405 unsigned int nentries_mask
= dest_ring
->nentries_mask
;
406 unsigned int write_index
= dest_ring
->write_index
;
407 unsigned int sw_index
= dest_ring
->sw_index
;
408 struct ce_desc
*base
= dest_ring
->base_addr_owner_space
;
409 struct ce_desc
*desc
= CE_DEST_RING_TO_DESC(base
, write_index
);
410 u32 ctrl_addr
= pipe
->ctrl_addr
;
412 lockdep_assert_held(&ar_pci
->ce_lock
);
414 if ((pipe
->id
!= 5) &&
415 CE_RING_DELTA(nentries_mask
, write_index
, sw_index
- 1) == 0)
418 desc
->addr
= __cpu_to_le32(paddr
);
421 dest_ring
->per_transfer_context
[write_index
] = ctx
;
422 write_index
= CE_RING_IDX_INCR(nentries_mask
, write_index
);
423 ath10k_ce_dest_ring_write_index_set(ar
, ctrl_addr
, write_index
);
424 dest_ring
->write_index
= write_index
;
429 void ath10k_ce_rx_update_write_idx(struct ath10k_ce_pipe
*pipe
, u32 nentries
)
431 struct ath10k
*ar
= pipe
->ar
;
432 struct ath10k_ce_ring
*dest_ring
= pipe
->dest_ring
;
433 unsigned int nentries_mask
= dest_ring
->nentries_mask
;
434 unsigned int write_index
= dest_ring
->write_index
;
435 u32 ctrl_addr
= pipe
->ctrl_addr
;
437 write_index
= CE_RING_IDX_ADD(nentries_mask
, write_index
, nentries
);
438 ath10k_ce_dest_ring_write_index_set(ar
, ctrl_addr
, write_index
);
439 dest_ring
->write_index
= write_index
;
442 int ath10k_ce_rx_post_buf(struct ath10k_ce_pipe
*pipe
, void *ctx
, u32 paddr
)
444 struct ath10k
*ar
= pipe
->ar
;
445 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
448 spin_lock_bh(&ar_pci
->ce_lock
);
449 ret
= __ath10k_ce_rx_post_buf(pipe
, ctx
, paddr
);
450 spin_unlock_bh(&ar_pci
->ce_lock
);
456 * Guts of ath10k_ce_completed_recv_next.
457 * The caller takes responsibility for any necessary locking.
459 int ath10k_ce_completed_recv_next_nolock(struct ath10k_ce_pipe
*ce_state
,
460 void **per_transfer_contextp
,
461 unsigned int *nbytesp
)
463 struct ath10k_ce_ring
*dest_ring
= ce_state
->dest_ring
;
464 unsigned int nentries_mask
= dest_ring
->nentries_mask
;
465 unsigned int sw_index
= dest_ring
->sw_index
;
467 struct ce_desc
*base
= dest_ring
->base_addr_owner_space
;
468 struct ce_desc
*desc
= CE_DEST_RING_TO_DESC(base
, sw_index
);
469 struct ce_desc sdesc
;
472 /* Copy in one go for performance reasons */
475 nbytes
= __le16_to_cpu(sdesc
.nbytes
);
478 * This closes a relatively unusual race where the Host
479 * sees the updated DRRI before the update to the
480 * corresponding descriptor has completed. We treat this
481 * as a descriptor that is not yet done.
488 /* Return data from completed destination descriptor */
491 if (per_transfer_contextp
)
492 *per_transfer_contextp
=
493 dest_ring
->per_transfer_context
[sw_index
];
495 /* Copy engine 5 (HTT Rx) will reuse the same transfer context.
496 * So update transfer context all CEs except CE5.
498 if (ce_state
->id
!= 5)
499 dest_ring
->per_transfer_context
[sw_index
] = NULL
;
501 /* Update sw_index */
502 sw_index
= CE_RING_IDX_INCR(nentries_mask
, sw_index
);
503 dest_ring
->sw_index
= sw_index
;
508 int ath10k_ce_completed_recv_next(struct ath10k_ce_pipe
*ce_state
,
509 void **per_transfer_contextp
,
510 unsigned int *nbytesp
)
512 struct ath10k
*ar
= ce_state
->ar
;
513 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
516 spin_lock_bh(&ar_pci
->ce_lock
);
517 ret
= ath10k_ce_completed_recv_next_nolock(ce_state
,
518 per_transfer_contextp
,
520 spin_unlock_bh(&ar_pci
->ce_lock
);
525 int ath10k_ce_revoke_recv_next(struct ath10k_ce_pipe
*ce_state
,
526 void **per_transfer_contextp
,
529 struct ath10k_ce_ring
*dest_ring
;
530 unsigned int nentries_mask
;
531 unsigned int sw_index
;
532 unsigned int write_index
;
535 struct ath10k_pci
*ar_pci
;
537 dest_ring
= ce_state
->dest_ring
;
543 ar_pci
= ath10k_pci_priv(ar
);
545 spin_lock_bh(&ar_pci
->ce_lock
);
547 nentries_mask
= dest_ring
->nentries_mask
;
548 sw_index
= dest_ring
->sw_index
;
549 write_index
= dest_ring
->write_index
;
550 if (write_index
!= sw_index
) {
551 struct ce_desc
*base
= dest_ring
->base_addr_owner_space
;
552 struct ce_desc
*desc
= CE_DEST_RING_TO_DESC(base
, sw_index
);
554 /* Return data from completed destination descriptor */
555 *bufferp
= __le32_to_cpu(desc
->addr
);
557 if (per_transfer_contextp
)
558 *per_transfer_contextp
=
559 dest_ring
->per_transfer_context
[sw_index
];
562 dest_ring
->per_transfer_context
[sw_index
] = NULL
;
565 /* Update sw_index */
566 sw_index
= CE_RING_IDX_INCR(nentries_mask
, sw_index
);
567 dest_ring
->sw_index
= sw_index
;
573 spin_unlock_bh(&ar_pci
->ce_lock
);
579 * Guts of ath10k_ce_completed_send_next.
580 * The caller takes responsibility for any necessary locking.
582 int ath10k_ce_completed_send_next_nolock(struct ath10k_ce_pipe
*ce_state
,
583 void **per_transfer_contextp
)
585 struct ath10k_ce_ring
*src_ring
= ce_state
->src_ring
;
586 u32 ctrl_addr
= ce_state
->ctrl_addr
;
587 struct ath10k
*ar
= ce_state
->ar
;
588 unsigned int nentries_mask
= src_ring
->nentries_mask
;
589 unsigned int sw_index
= src_ring
->sw_index
;
590 unsigned int read_index
;
592 if (src_ring
->hw_index
== sw_index
) {
594 * The SW completion index has caught up with the cached
595 * version of the HW completion index.
596 * Update the cached HW completion index to see whether
597 * the SW has really caught up to the HW, or if the cached
598 * value of the HW index has become stale.
601 read_index
= ath10k_ce_src_ring_read_index_get(ar
, ctrl_addr
);
602 if (read_index
== 0xffffffff)
605 read_index
&= nentries_mask
;
606 src_ring
->hw_index
= read_index
;
609 read_index
= src_ring
->hw_index
;
611 if (read_index
== sw_index
)
614 if (per_transfer_contextp
)
615 *per_transfer_contextp
=
616 src_ring
->per_transfer_context
[sw_index
];
619 src_ring
->per_transfer_context
[sw_index
] = NULL
;
621 /* Update sw_index */
622 sw_index
= CE_RING_IDX_INCR(nentries_mask
, sw_index
);
623 src_ring
->sw_index
= sw_index
;
628 /* NB: Modeled after ath10k_ce_completed_send_next */
629 int ath10k_ce_cancel_send_next(struct ath10k_ce_pipe
*ce_state
,
630 void **per_transfer_contextp
,
632 unsigned int *nbytesp
,
633 unsigned int *transfer_idp
)
635 struct ath10k_ce_ring
*src_ring
;
636 unsigned int nentries_mask
;
637 unsigned int sw_index
;
638 unsigned int write_index
;
641 struct ath10k_pci
*ar_pci
;
643 src_ring
= ce_state
->src_ring
;
649 ar_pci
= ath10k_pci_priv(ar
);
651 spin_lock_bh(&ar_pci
->ce_lock
);
653 nentries_mask
= src_ring
->nentries_mask
;
654 sw_index
= src_ring
->sw_index
;
655 write_index
= src_ring
->write_index
;
657 if (write_index
!= sw_index
) {
658 struct ce_desc
*base
= src_ring
->base_addr_owner_space
;
659 struct ce_desc
*desc
= CE_SRC_RING_TO_DESC(base
, sw_index
);
661 /* Return data from completed source descriptor */
662 *bufferp
= __le32_to_cpu(desc
->addr
);
663 *nbytesp
= __le16_to_cpu(desc
->nbytes
);
664 *transfer_idp
= MS(__le16_to_cpu(desc
->flags
),
665 CE_DESC_FLAGS_META_DATA
);
667 if (per_transfer_contextp
)
668 *per_transfer_contextp
=
669 src_ring
->per_transfer_context
[sw_index
];
672 src_ring
->per_transfer_context
[sw_index
] = NULL
;
674 /* Update sw_index */
675 sw_index
= CE_RING_IDX_INCR(nentries_mask
, sw_index
);
676 src_ring
->sw_index
= sw_index
;
682 spin_unlock_bh(&ar_pci
->ce_lock
);
687 int ath10k_ce_completed_send_next(struct ath10k_ce_pipe
*ce_state
,
688 void **per_transfer_contextp
)
690 struct ath10k
*ar
= ce_state
->ar
;
691 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
694 spin_lock_bh(&ar_pci
->ce_lock
);
695 ret
= ath10k_ce_completed_send_next_nolock(ce_state
,
696 per_transfer_contextp
);
697 spin_unlock_bh(&ar_pci
->ce_lock
);
703 * Guts of interrupt handler for per-engine interrupts on a particular CE.
705 * Invokes registered callbacks for recv_complete,
706 * send_complete, and watermarks.
708 void ath10k_ce_per_engine_service(struct ath10k
*ar
, unsigned int ce_id
)
710 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
711 struct ath10k_ce_pipe
*ce_state
= &ar_pci
->ce_states
[ce_id
];
712 u32 ctrl_addr
= ce_state
->ctrl_addr
;
714 spin_lock_bh(&ar_pci
->ce_lock
);
716 /* Clear the copy-complete interrupts that will be handled here. */
717 ath10k_ce_engine_int_status_clear(ar
, ctrl_addr
,
718 HOST_IS_COPY_COMPLETE_MASK
);
720 spin_unlock_bh(&ar_pci
->ce_lock
);
722 if (ce_state
->recv_cb
)
723 ce_state
->recv_cb(ce_state
);
725 if (ce_state
->send_cb
)
726 ce_state
->send_cb(ce_state
);
728 spin_lock_bh(&ar_pci
->ce_lock
);
731 * Misc CE interrupts are not being handled, but still need
734 ath10k_ce_engine_int_status_clear(ar
, ctrl_addr
, CE_WATERMARK_MASK
);
736 spin_unlock_bh(&ar_pci
->ce_lock
);
740 * Handler for per-engine interrupts on ALL active CEs.
741 * This is used in cases where the system is sharing a
742 * single interrput for all CEs
745 void ath10k_ce_per_engine_service_any(struct ath10k
*ar
)
750 intr_summary
= CE_INTERRUPT_SUMMARY(ar
);
752 for (ce_id
= 0; intr_summary
&& (ce_id
< CE_COUNT
); ce_id
++) {
753 if (intr_summary
& (1 << ce_id
))
754 intr_summary
&= ~(1 << ce_id
);
756 /* no intr pending on this CE */
759 ath10k_ce_per_engine_service(ar
, ce_id
);
764 * Adjust interrupts for the copy complete handler.
765 * If it's needed for either send or recv, then unmask
766 * this interrupt; otherwise, mask it.
768 * Called with ce_lock held.
770 static void ath10k_ce_per_engine_handler_adjust(struct ath10k_ce_pipe
*ce_state
)
772 u32 ctrl_addr
= ce_state
->ctrl_addr
;
773 struct ath10k
*ar
= ce_state
->ar
;
774 bool disable_copy_compl_intr
= ce_state
->attr_flags
& CE_ATTR_DIS_INTR
;
776 if ((!disable_copy_compl_intr
) &&
777 (ce_state
->send_cb
|| ce_state
->recv_cb
))
778 ath10k_ce_copy_complete_inter_enable(ar
, ctrl_addr
);
780 ath10k_ce_copy_complete_intr_disable(ar
, ctrl_addr
);
782 ath10k_ce_watermark_intr_disable(ar
, ctrl_addr
);
785 int ath10k_ce_disable_interrupts(struct ath10k
*ar
)
789 for (ce_id
= 0; ce_id
< CE_COUNT
; ce_id
++) {
790 u32 ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
792 ath10k_ce_copy_complete_intr_disable(ar
, ctrl_addr
);
793 ath10k_ce_error_intr_disable(ar
, ctrl_addr
);
794 ath10k_ce_watermark_intr_disable(ar
, ctrl_addr
);
800 void ath10k_ce_enable_interrupts(struct ath10k
*ar
)
802 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
805 /* Skip the last copy engine, CE7 the diagnostic window, as that
806 * uses polling and isn't initialized for interrupts.
808 for (ce_id
= 0; ce_id
< CE_COUNT
- 1; ce_id
++)
809 ath10k_ce_per_engine_handler_adjust(&ar_pci
->ce_states
[ce_id
]);
812 static int ath10k_ce_init_src_ring(struct ath10k
*ar
,
814 const struct ce_attr
*attr
)
816 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
817 struct ath10k_ce_pipe
*ce_state
= &ar_pci
->ce_states
[ce_id
];
818 struct ath10k_ce_ring
*src_ring
= ce_state
->src_ring
;
819 u32 nentries
, ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
821 nentries
= roundup_pow_of_two(attr
->src_nentries
);
823 memset(src_ring
->base_addr_owner_space
, 0,
824 nentries
* sizeof(struct ce_desc
));
826 src_ring
->sw_index
= ath10k_ce_src_ring_read_index_get(ar
, ctrl_addr
);
827 src_ring
->sw_index
&= src_ring
->nentries_mask
;
828 src_ring
->hw_index
= src_ring
->sw_index
;
830 src_ring
->write_index
=
831 ath10k_ce_src_ring_write_index_get(ar
, ctrl_addr
);
832 src_ring
->write_index
&= src_ring
->nentries_mask
;
834 ath10k_ce_src_ring_base_addr_set(ar
, ctrl_addr
,
835 src_ring
->base_addr_ce_space
);
836 ath10k_ce_src_ring_size_set(ar
, ctrl_addr
, nentries
);
837 ath10k_ce_src_ring_dmax_set(ar
, ctrl_addr
, attr
->src_sz_max
);
838 ath10k_ce_src_ring_byte_swap_set(ar
, ctrl_addr
, 0);
839 ath10k_ce_src_ring_lowmark_set(ar
, ctrl_addr
, 0);
840 ath10k_ce_src_ring_highmark_set(ar
, ctrl_addr
, nentries
);
842 ath10k_dbg(ar
, ATH10K_DBG_BOOT
,
843 "boot init ce src ring id %d entries %d base_addr %pK\n",
844 ce_id
, nentries
, src_ring
->base_addr_owner_space
);
849 static int ath10k_ce_init_dest_ring(struct ath10k
*ar
,
851 const struct ce_attr
*attr
)
853 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
854 struct ath10k_ce_pipe
*ce_state
= &ar_pci
->ce_states
[ce_id
];
855 struct ath10k_ce_ring
*dest_ring
= ce_state
->dest_ring
;
856 u32 nentries
, ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
858 nentries
= roundup_pow_of_two(attr
->dest_nentries
);
860 memset(dest_ring
->base_addr_owner_space
, 0,
861 nentries
* sizeof(struct ce_desc
));
863 dest_ring
->sw_index
= ath10k_ce_dest_ring_read_index_get(ar
, ctrl_addr
);
864 dest_ring
->sw_index
&= dest_ring
->nentries_mask
;
865 dest_ring
->write_index
=
866 ath10k_ce_dest_ring_write_index_get(ar
, ctrl_addr
);
867 dest_ring
->write_index
&= dest_ring
->nentries_mask
;
869 ath10k_ce_dest_ring_base_addr_set(ar
, ctrl_addr
,
870 dest_ring
->base_addr_ce_space
);
871 ath10k_ce_dest_ring_size_set(ar
, ctrl_addr
, nentries
);
872 ath10k_ce_dest_ring_byte_swap_set(ar
, ctrl_addr
, 0);
873 ath10k_ce_dest_ring_lowmark_set(ar
, ctrl_addr
, 0);
874 ath10k_ce_dest_ring_highmark_set(ar
, ctrl_addr
, nentries
);
876 ath10k_dbg(ar
, ATH10K_DBG_BOOT
,
877 "boot ce dest ring id %d entries %d base_addr %pK\n",
878 ce_id
, nentries
, dest_ring
->base_addr_owner_space
);
883 static struct ath10k_ce_ring
*
884 ath10k_ce_alloc_src_ring(struct ath10k
*ar
, unsigned int ce_id
,
885 const struct ce_attr
*attr
)
887 struct ath10k_ce_ring
*src_ring
;
888 u32 nentries
= attr
->src_nentries
;
889 dma_addr_t base_addr
;
891 nentries
= roundup_pow_of_two(nentries
);
893 src_ring
= kzalloc(sizeof(*src_ring
) +
895 sizeof(*src_ring
->per_transfer_context
)),
897 if (src_ring
== NULL
)
898 return ERR_PTR(-ENOMEM
);
900 src_ring
->nentries
= nentries
;
901 src_ring
->nentries_mask
= nentries
- 1;
904 * Legacy platforms that do not support cache
905 * coherent DMA are unsupported
907 src_ring
->base_addr_owner_space_unaligned
=
908 dma_alloc_coherent(ar
->dev
,
909 (nentries
* sizeof(struct ce_desc
) +
911 &base_addr
, GFP_KERNEL
);
912 if (!src_ring
->base_addr_owner_space_unaligned
) {
914 return ERR_PTR(-ENOMEM
);
917 src_ring
->base_addr_ce_space_unaligned
= base_addr
;
919 src_ring
->base_addr_owner_space
= PTR_ALIGN(
920 src_ring
->base_addr_owner_space_unaligned
,
922 src_ring
->base_addr_ce_space
= ALIGN(
923 src_ring
->base_addr_ce_space_unaligned
,
929 static struct ath10k_ce_ring
*
930 ath10k_ce_alloc_dest_ring(struct ath10k
*ar
, unsigned int ce_id
,
931 const struct ce_attr
*attr
)
933 struct ath10k_ce_ring
*dest_ring
;
935 dma_addr_t base_addr
;
937 nentries
= roundup_pow_of_two(attr
->dest_nentries
);
939 dest_ring
= kzalloc(sizeof(*dest_ring
) +
941 sizeof(*dest_ring
->per_transfer_context
)),
943 if (dest_ring
== NULL
)
944 return ERR_PTR(-ENOMEM
);
946 dest_ring
->nentries
= nentries
;
947 dest_ring
->nentries_mask
= nentries
- 1;
950 * Legacy platforms that do not support cache
951 * coherent DMA are unsupported
953 dest_ring
->base_addr_owner_space_unaligned
=
954 dma_alloc_coherent(ar
->dev
,
955 (nentries
* sizeof(struct ce_desc
) +
957 &base_addr
, GFP_KERNEL
);
958 if (!dest_ring
->base_addr_owner_space_unaligned
) {
960 return ERR_PTR(-ENOMEM
);
963 dest_ring
->base_addr_ce_space_unaligned
= base_addr
;
966 * Correctly initialize memory to 0 to prevent garbage
967 * data crashing system when download firmware
969 memset(dest_ring
->base_addr_owner_space_unaligned
, 0,
970 nentries
* sizeof(struct ce_desc
) + CE_DESC_RING_ALIGN
);
972 dest_ring
->base_addr_owner_space
= PTR_ALIGN(
973 dest_ring
->base_addr_owner_space_unaligned
,
975 dest_ring
->base_addr_ce_space
= ALIGN(
976 dest_ring
->base_addr_ce_space_unaligned
,
983 * Initialize a Copy Engine based on caller-supplied attributes.
984 * This may be called once to initialize both source and destination
985 * rings or it may be called twice for separate source and destination
986 * initialization. It may be that only one side or the other is
987 * initialized by software/firmware.
989 int ath10k_ce_init_pipe(struct ath10k
*ar
, unsigned int ce_id
,
990 const struct ce_attr
*attr
)
994 if (attr
->src_nentries
) {
995 ret
= ath10k_ce_init_src_ring(ar
, ce_id
, attr
);
997 ath10k_err(ar
, "Failed to initialize CE src ring for ID: %d (%d)\n",
1003 if (attr
->dest_nentries
) {
1004 ret
= ath10k_ce_init_dest_ring(ar
, ce_id
, attr
);
1006 ath10k_err(ar
, "Failed to initialize CE dest ring for ID: %d (%d)\n",
1015 static void ath10k_ce_deinit_src_ring(struct ath10k
*ar
, unsigned int ce_id
)
1017 u32 ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
1019 ath10k_ce_src_ring_base_addr_set(ar
, ctrl_addr
, 0);
1020 ath10k_ce_src_ring_size_set(ar
, ctrl_addr
, 0);
1021 ath10k_ce_src_ring_dmax_set(ar
, ctrl_addr
, 0);
1022 ath10k_ce_src_ring_highmark_set(ar
, ctrl_addr
, 0);
1025 static void ath10k_ce_deinit_dest_ring(struct ath10k
*ar
, unsigned int ce_id
)
1027 u32 ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
1029 ath10k_ce_dest_ring_base_addr_set(ar
, ctrl_addr
, 0);
1030 ath10k_ce_dest_ring_size_set(ar
, ctrl_addr
, 0);
1031 ath10k_ce_dest_ring_highmark_set(ar
, ctrl_addr
, 0);
1034 void ath10k_ce_deinit_pipe(struct ath10k
*ar
, unsigned int ce_id
)
1036 ath10k_ce_deinit_src_ring(ar
, ce_id
);
1037 ath10k_ce_deinit_dest_ring(ar
, ce_id
);
1040 int ath10k_ce_alloc_pipe(struct ath10k
*ar
, int ce_id
,
1041 const struct ce_attr
*attr
)
1043 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1044 struct ath10k_ce_pipe
*ce_state
= &ar_pci
->ce_states
[ce_id
];
1048 * Make sure there's enough CE ringbuffer entries for HTT TX to avoid
1049 * additional TX locking checks.
1051 * For the lack of a better place do the check here.
1053 BUILD_BUG_ON(2 * TARGET_NUM_MSDU_DESC
>
1054 (CE_HTT_H2T_MSG_SRC_NENTRIES
- 1));
1055 BUILD_BUG_ON(2 * TARGET_10X_NUM_MSDU_DESC
>
1056 (CE_HTT_H2T_MSG_SRC_NENTRIES
- 1));
1057 BUILD_BUG_ON(2 * TARGET_TLV_NUM_MSDU_DESC
>
1058 (CE_HTT_H2T_MSG_SRC_NENTRIES
- 1));
1061 ce_state
->id
= ce_id
;
1062 ce_state
->ctrl_addr
= ath10k_ce_base_address(ar
, ce_id
);
1063 ce_state
->attr_flags
= attr
->flags
;
1064 ce_state
->src_sz_max
= attr
->src_sz_max
;
1066 if (attr
->src_nentries
)
1067 ce_state
->send_cb
= attr
->send_cb
;
1069 if (attr
->dest_nentries
)
1070 ce_state
->recv_cb
= attr
->recv_cb
;
1072 if (attr
->src_nentries
) {
1073 ce_state
->src_ring
= ath10k_ce_alloc_src_ring(ar
, ce_id
, attr
);
1074 if (IS_ERR(ce_state
->src_ring
)) {
1075 ret
= PTR_ERR(ce_state
->src_ring
);
1076 ath10k_err(ar
, "failed to allocate copy engine source ring %d: %d\n",
1078 ce_state
->src_ring
= NULL
;
1083 if (attr
->dest_nentries
) {
1084 ce_state
->dest_ring
= ath10k_ce_alloc_dest_ring(ar
, ce_id
,
1086 if (IS_ERR(ce_state
->dest_ring
)) {
1087 ret
= PTR_ERR(ce_state
->dest_ring
);
1088 ath10k_err(ar
, "failed to allocate copy engine destination ring %d: %d\n",
1090 ce_state
->dest_ring
= NULL
;
1098 void ath10k_ce_free_pipe(struct ath10k
*ar
, int ce_id
)
1100 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1101 struct ath10k_ce_pipe
*ce_state
= &ar_pci
->ce_states
[ce_id
];
1103 if (ce_state
->src_ring
) {
1104 dma_free_coherent(ar
->dev
,
1105 (ce_state
->src_ring
->nentries
*
1106 sizeof(struct ce_desc
) +
1107 CE_DESC_RING_ALIGN
),
1108 ce_state
->src_ring
->base_addr_owner_space
,
1109 ce_state
->src_ring
->base_addr_ce_space
);
1110 kfree(ce_state
->src_ring
);
1113 if (ce_state
->dest_ring
) {
1114 dma_free_coherent(ar
->dev
,
1115 (ce_state
->dest_ring
->nentries
*
1116 sizeof(struct ce_desc
) +
1117 CE_DESC_RING_ALIGN
),
1118 ce_state
->dest_ring
->base_addr_owner_space
,
1119 ce_state
->dest_ring
->base_addr_ce_space
);
1120 kfree(ce_state
->dest_ring
);
1123 ce_state
->src_ring
= NULL
;
1124 ce_state
->dest_ring
= NULL
;