1 /* SPDX-License-Identifier: ISC */
3 * Copyright (c) 2005-2011 Atheros Communications Inc.
4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
5 * Copyright (c) 2018 The Linux Foundation. All rights reserved.
13 #define CE_HTT_H2T_MSG_SRC_NENTRIES 8192
15 /* Descriptor rings must be aligned to this boundary */
16 #define CE_DESC_RING_ALIGN 8
17 #define CE_SEND_FLAG_GATHER 0x00010000
20 * Copy Engine support: low-level Target-side Copy Engine API.
21 * This is a hardware access layer used by code that understands
22 * how to use copy engines.
25 struct ath10k_ce_pipe
;
27 #define CE_DESC_FLAGS_GATHER (1 << 0)
28 #define CE_DESC_FLAGS_BYTE_SWAP (1 << 1)
29 #define CE_WCN3990_DESC_FLAGS_GATHER BIT(31)
31 #define CE_DESC_ADDR_MASK GENMASK_ULL(34, 0)
32 #define CE_DESC_ADDR_HI_MASK GENMASK(4, 0)
34 /* Following desc flags are used in QCA99X0 */
35 #define CE_DESC_FLAGS_HOST_INT_DIS (1 << 2)
36 #define CE_DESC_FLAGS_TGT_INT_DIS (1 << 3)
38 #define CE_DESC_FLAGS_META_DATA_MASK ar->hw_values->ce_desc_meta_data_mask
39 #define CE_DESC_FLAGS_META_DATA_LSB ar->hw_values->ce_desc_meta_data_lsb
41 #define CE_DDR_RRI_MASK GENMASK(15, 0)
42 #define CE_DDR_DRRI_SHIFT 16
47 __le16 flags
; /* %CE_DESC_FLAGS_ */
52 __le16 nbytes
; /* length in register map */
53 __le16 flags
; /* fw_metadata_high */
54 __le32 toeplitz_hash_result
;
57 #define CE_DESC_SIZE sizeof(struct ce_desc)
58 #define CE_DESC_SIZE_64 sizeof(struct ce_desc_64)
60 struct ath10k_ce_ring
{
61 /* Number of entries in this ring; must be power of 2 */
62 unsigned int nentries
;
63 unsigned int nentries_mask
;
66 * For dest ring, this is the next index to be processed
67 * by software after it was/is received into.
69 * For src ring, this is the last descriptor that was sent
70 * and completion processed by software.
72 * Regardless of src or dest ring, this is an invariant
74 * write index >= read index >= sw_index
76 unsigned int sw_index
;
78 unsigned int write_index
;
80 * For src ring, this is the next index not yet processed by HW.
81 * This is a cached copy of the real HW index (read index), used
82 * for avoiding reading the HW index register more often than
84 * This extends the invariant:
85 * write index >= read index >= hw_index >= sw_index
87 * For dest ring, this is currently unused.
90 unsigned int hw_index
;
92 /* Start of DMA-coherent area reserved for descriptors */
93 /* Host address space */
94 void *base_addr_owner_space_unaligned
;
95 /* CE address space */
96 dma_addr_t base_addr_ce_space_unaligned
;
99 * Actual start of descriptors.
100 * Aligned to descriptor-size boundary.
101 * Points into reserved DMA-coherent area, above.
103 /* Host address space */
104 void *base_addr_owner_space
;
106 /* CE address space */
107 dma_addr_t base_addr_ce_space
;
109 char *shadow_base_unaligned
;
110 struct ce_desc_64
*shadow_base
;
113 void *per_transfer_context
[0];
116 struct ath10k_ce_pipe
{
120 unsigned int attr_flags
;
124 void (*send_cb
)(struct ath10k_ce_pipe
*);
125 void (*recv_cb
)(struct ath10k_ce_pipe
*);
127 unsigned int src_sz_max
;
128 struct ath10k_ce_ring
*src_ring
;
129 struct ath10k_ce_ring
*dest_ring
;
130 const struct ath10k_ce_ops
*ops
;
133 /* Copy Engine settable attributes */
136 struct ath10k_bus_ops
{
137 u32 (*read32
)(struct ath10k
*ar
, u32 offset
);
138 void (*write32
)(struct ath10k
*ar
, u32 offset
, u32 value
);
139 int (*get_num_banks
)(struct ath10k
*ar
);
142 static inline struct ath10k_ce
*ath10k_ce_priv(struct ath10k
*ar
)
144 return (struct ath10k_ce
*)ar
->ce_priv
;
148 /* protects CE info */
150 const struct ath10k_bus_ops
*bus_ops
;
151 struct ath10k_ce_pipe ce_states
[CE_COUNT_MAX
];
153 dma_addr_t paddr_rri
;
156 /*==================Send====================*/
158 /* ath10k_ce_send flags */
159 #define CE_SEND_FLAG_BYTE_SWAP 1
162 * Queue a source buffer to be sent to an anonymous destination buffer.
163 * ce - which copy engine to use
164 * buffer - address of buffer
165 * nbytes - number of bytes to send
166 * transfer_id - arbitrary ID; reflected to destination
167 * flags - CE_SEND_FLAG_* values
168 * Returns 0 on success; otherwise an error status.
170 * Note: If no flags are specified, use CE's default data swap mode.
172 * Implementation note: pushes 1 buffer to Source ring
174 int ath10k_ce_send(struct ath10k_ce_pipe
*ce_state
,
175 void *per_transfer_send_context
,
179 unsigned int transfer_id
,
182 int ath10k_ce_send_nolock(struct ath10k_ce_pipe
*ce_state
,
183 void *per_transfer_context
,
186 unsigned int transfer_id
,
189 void __ath10k_ce_send_revert(struct ath10k_ce_pipe
*pipe
);
191 int ath10k_ce_num_free_src_entries(struct ath10k_ce_pipe
*pipe
);
193 /*==================Recv=======================*/
195 int __ath10k_ce_rx_num_free_bufs(struct ath10k_ce_pipe
*pipe
);
196 int ath10k_ce_rx_post_buf(struct ath10k_ce_pipe
*pipe
, void *ctx
,
198 void ath10k_ce_rx_update_write_idx(struct ath10k_ce_pipe
*pipe
, u32 nentries
);
201 /* Data is byte-swapped */
202 #define CE_RECV_FLAG_SWAPPED 1
205 * Supply data for the next completed unprocessed receive descriptor.
206 * Pops buffer from Dest ring.
208 int ath10k_ce_completed_recv_next(struct ath10k_ce_pipe
*ce_state
,
209 void **per_transfer_contextp
,
210 unsigned int *nbytesp
);
212 * Supply data for the next completed unprocessed send descriptor.
213 * Pops 1 completed send buffer from Source ring.
215 int ath10k_ce_completed_send_next(struct ath10k_ce_pipe
*ce_state
,
216 void **per_transfer_contextp
);
218 int ath10k_ce_completed_send_next_nolock(struct ath10k_ce_pipe
*ce_state
,
219 void **per_transfer_contextp
);
221 /*==================CE Engine Initialization=======================*/
223 int ath10k_ce_init_pipe(struct ath10k
*ar
, unsigned int ce_id
,
224 const struct ce_attr
*attr
);
225 void ath10k_ce_deinit_pipe(struct ath10k
*ar
, unsigned int ce_id
);
226 int ath10k_ce_alloc_pipe(struct ath10k
*ar
, int ce_id
,
227 const struct ce_attr
*attr
);
228 void ath10k_ce_free_pipe(struct ath10k
*ar
, int ce_id
);
230 /*==================CE Engine Shutdown=======================*/
232 * Support clean shutdown by allowing the caller to revoke
233 * receive buffers. Target DMA must be stopped before using
236 int ath10k_ce_revoke_recv_next(struct ath10k_ce_pipe
*ce_state
,
237 void **per_transfer_contextp
,
238 dma_addr_t
*bufferp
);
240 int ath10k_ce_completed_recv_next_nolock(struct ath10k_ce_pipe
*ce_state
,
241 void **per_transfer_contextp
,
242 unsigned int *nbytesp
);
245 * Support clean shutdown by allowing the caller to cancel
246 * pending sends. Target DMA must be stopped before using
249 int ath10k_ce_cancel_send_next(struct ath10k_ce_pipe
*ce_state
,
250 void **per_transfer_contextp
,
252 unsigned int *nbytesp
,
253 unsigned int *transfer_idp
);
255 /*==================CE Interrupt Handlers====================*/
256 void ath10k_ce_per_engine_service_any(struct ath10k
*ar
);
257 void ath10k_ce_per_engine_service(struct ath10k
*ar
, unsigned int ce_id
);
258 int ath10k_ce_disable_interrupts(struct ath10k
*ar
);
259 void ath10k_ce_enable_interrupts(struct ath10k
*ar
);
260 void ath10k_ce_dump_registers(struct ath10k
*ar
,
261 struct ath10k_fw_crash_data
*crash_data
);
262 void ath10k_ce_alloc_rri(struct ath10k
*ar
);
263 void ath10k_ce_free_rri(struct ath10k
*ar
);
265 /* ce_attr.flags values */
266 /* Use NonSnooping PCIe accesses? */
267 #define CE_ATTR_NO_SNOOP BIT(0)
269 /* Byte swap data words */
270 #define CE_ATTR_BYTE_SWAP_DATA BIT(1)
272 /* Swizzle descriptors? */
273 #define CE_ATTR_SWIZZLE_DESCRIPTORS BIT(2)
275 /* no interrupt on copy completion */
276 #define CE_ATTR_DIS_INTR BIT(3)
278 /* no interrupt, only polling */
279 #define CE_ATTR_POLL BIT(4)
281 /* Attributes of an instance of a Copy Engine */
283 /* CE_ATTR_* values */
286 /* #entries in source ring - Must be a power of 2 */
287 unsigned int src_nentries
;
290 * Max source send size for this CE.
291 * This is also the minimum size of a destination buffer.
293 unsigned int src_sz_max
;
295 /* #entries in destination ring - Must be a power of 2 */
296 unsigned int dest_nentries
;
298 void (*send_cb
)(struct ath10k_ce_pipe
*);
299 void (*recv_cb
)(struct ath10k_ce_pipe
*);
302 struct ath10k_ce_ops
{
303 struct ath10k_ce_ring
*(*ce_alloc_src_ring
)(struct ath10k
*ar
,
305 const struct ce_attr
*attr
);
306 struct ath10k_ce_ring
*(*ce_alloc_dst_ring
)(struct ath10k
*ar
,
308 const struct ce_attr
*attr
);
309 int (*ce_rx_post_buf
)(struct ath10k_ce_pipe
*pipe
, void *ctx
,
311 int (*ce_completed_recv_next_nolock
)(struct ath10k_ce_pipe
*ce_state
,
312 void **per_transfer_contextp
,
314 int (*ce_revoke_recv_next
)(struct ath10k_ce_pipe
*ce_state
,
315 void **per_transfer_contextp
,
316 dma_addr_t
*nbytesp
);
317 void (*ce_extract_desc_data
)(struct ath10k
*ar
,
318 struct ath10k_ce_ring
*src_ring
,
319 u32 sw_index
, dma_addr_t
*bufferp
,
320 u32
*nbytesp
, u32
*transfer_idp
);
321 void (*ce_free_pipe
)(struct ath10k
*ar
, int ce_id
);
322 int (*ce_send_nolock
)(struct ath10k_ce_pipe
*pipe
,
323 void *per_transfer_context
,
324 dma_addr_t buffer
, u32 nbytes
,
325 u32 transfer_id
, u32 flags
);
326 void (*ce_set_src_ring_base_addr_hi
)(struct ath10k
*ar
,
329 void (*ce_set_dest_ring_base_addr_hi
)(struct ath10k
*ar
,
332 int (*ce_completed_send_next_nolock
)(struct ath10k_ce_pipe
*ce_state
,
333 void **per_transfer_contextp
);
336 static inline u32
ath10k_ce_base_address(struct ath10k
*ar
, unsigned int ce_id
)
338 return CE0_BASE_ADDRESS
+ (CE1_BASE_ADDRESS
- CE0_BASE_ADDRESS
) * ce_id
;
341 #define COPY_ENGINE_ID(COPY_ENGINE_BASE_ADDRESS) (((COPY_ENGINE_BASE_ADDRESS) \
342 - CE0_BASE_ADDRESS) / (CE1_BASE_ADDRESS - CE0_BASE_ADDRESS))
344 #define CE_SRC_RING_TO_DESC(baddr, idx) \
345 (&(((struct ce_desc *)baddr)[idx]))
347 #define CE_DEST_RING_TO_DESC(baddr, idx) \
348 (&(((struct ce_desc *)baddr)[idx]))
350 #define CE_SRC_RING_TO_DESC_64(baddr, idx) \
351 (&(((struct ce_desc_64 *)baddr)[idx]))
353 #define CE_DEST_RING_TO_DESC_64(baddr, idx) \
354 (&(((struct ce_desc_64 *)baddr)[idx]))
356 /* Ring arithmetic (modulus number of entries in ring, which is a pwr of 2). */
357 #define CE_RING_DELTA(nentries_mask, fromidx, toidx) \
358 (((int)(toidx) - (int)(fromidx)) & (nentries_mask))
360 #define CE_RING_IDX_INCR(nentries_mask, idx) (((idx) + 1) & (nentries_mask))
361 #define CE_RING_IDX_ADD(nentries_mask, idx, num) \
362 (((idx) + (num)) & (nentries_mask))
364 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_LSB \
365 ar->regs->ce_wrap_intr_sum_host_msi_lsb
366 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_MASK \
367 ar->regs->ce_wrap_intr_sum_host_msi_mask
368 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_GET(x) \
369 (((x) & CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_MASK) >> \
370 CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_LSB)
371 #define CE_WRAPPER_INTERRUPT_SUMMARY_ADDRESS 0x0000
372 #define CE_INTERRUPT_SUMMARY (GENMASK(CE_COUNT_MAX - 1, 0))
374 static inline u32
ath10k_ce_interrupt_summary(struct ath10k
*ar
)
376 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
378 if (!ar
->hw_params
.per_ce_irq
)
379 return CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_GET(
380 ce
->bus_ops
->read32((ar
), CE_WRAPPER_BASE_ADDRESS
+
381 CE_WRAPPER_INTERRUPT_SUMMARY_ADDRESS
));
383 return CE_INTERRUPT_SUMMARY
;
386 /* Host software's Copy Engine configuration. */
387 #define CE_ATTR_FLAGS 0
390 * Configuration information for a Copy Engine pipe.
391 * Passed from Host to Target during startup (one per CE).
393 * NOTE: Structure is shared between Host software and Target firmware!
395 struct ce_pipe_config
{
405 * Directions for interconnect pipe configuration.
406 * These definitions may be used during configuration and are shared
407 * between Host and Target.
409 * Pipe Directions are relative to the Host, so PIPEDIR_IN means
410 * "coming IN over air through Target to Host" as with a WiFi Rx operation.
411 * Conversely, PIPEDIR_OUT means "going OUT from Host through Target over air"
412 * as with a WiFi Tx operation. This is somewhat awkward for the "middle-man"
413 * Target since things that are "PIPEDIR_OUT" are coming IN to the Target
414 * over the interconnect.
416 #define PIPEDIR_NONE 0
417 #define PIPEDIR_IN 1 /* Target-->Host, WiFi Rx direction */
418 #define PIPEDIR_OUT 2 /* Host->Target, WiFi Tx direction */
419 #define PIPEDIR_INOUT 3 /* bidirectional */
421 /* Establish a mapping between a service/direction and a pipe. */
422 struct service_to_pipe
{