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.
23 /* Maximum number of Copy Engine's supported */
24 #define CE_COUNT_MAX 12
25 #define CE_HTT_H2T_MSG_SRC_NENTRIES 4096
27 /* Descriptor rings must be aligned to this boundary */
28 #define CE_DESC_RING_ALIGN 8
29 #define CE_SEND_FLAG_GATHER 0x00010000
32 * Copy Engine support: low-level Target-side Copy Engine API.
33 * This is a hardware access layer used by code that understands
34 * how to use copy engines.
37 struct ath10k_ce_pipe
;
39 #define CE_DESC_FLAGS_GATHER (1 << 0)
40 #define CE_DESC_FLAGS_BYTE_SWAP (1 << 1)
42 /* Following desc flags are used in QCA99X0 */
43 #define CE_DESC_FLAGS_HOST_INT_DIS (1 << 2)
44 #define CE_DESC_FLAGS_TGT_INT_DIS (1 << 3)
46 #define CE_DESC_FLAGS_META_DATA_MASK ar->hw_values->ce_desc_meta_data_mask
47 #define CE_DESC_FLAGS_META_DATA_LSB ar->hw_values->ce_desc_meta_data_lsb
52 __le16 flags
; /* %CE_DESC_FLAGS_ */
55 struct ath10k_ce_ring
{
56 /* Number of entries in this ring; must be power of 2 */
57 unsigned int nentries
;
58 unsigned int nentries_mask
;
61 * For dest ring, this is the next index to be processed
62 * by software after it was/is received into.
64 * For src ring, this is the last descriptor that was sent
65 * and completion processed by software.
67 * Regardless of src or dest ring, this is an invariant
69 * write index >= read index >= sw_index
71 unsigned int sw_index
;
73 unsigned int write_index
;
75 * For src ring, this is the next index not yet processed by HW.
76 * This is a cached copy of the real HW index (read index), used
77 * for avoiding reading the HW index register more often than
79 * This extends the invariant:
80 * write index >= read index >= hw_index >= sw_index
82 * For dest ring, this is currently unused.
85 unsigned int hw_index
;
87 /* Start of DMA-coherent area reserved for descriptors */
88 /* Host address space */
89 void *base_addr_owner_space_unaligned
;
90 /* CE address space */
91 u32 base_addr_ce_space_unaligned
;
94 * Actual start of descriptors.
95 * Aligned to descriptor-size boundary.
96 * Points into reserved DMA-coherent area, above.
98 /* Host address space */
99 void *base_addr_owner_space
;
101 /* CE address space */
102 u32 base_addr_ce_space
;
105 void *per_transfer_context
[0];
108 struct ath10k_ce_pipe
{
112 unsigned int attr_flags
;
116 void (*send_cb
)(struct ath10k_ce_pipe
*);
117 void (*recv_cb
)(struct ath10k_ce_pipe
*);
119 unsigned int src_sz_max
;
120 struct ath10k_ce_ring
*src_ring
;
121 struct ath10k_ce_ring
*dest_ring
;
124 /* Copy Engine settable attributes */
127 /*==================Send====================*/
129 /* ath10k_ce_send flags */
130 #define CE_SEND_FLAG_BYTE_SWAP 1
133 * Queue a source buffer to be sent to an anonymous destination buffer.
134 * ce - which copy engine to use
135 * buffer - address of buffer
136 * nbytes - number of bytes to send
137 * transfer_id - arbitrary ID; reflected to destination
138 * flags - CE_SEND_FLAG_* values
139 * Returns 0 on success; otherwise an error status.
141 * Note: If no flags are specified, use CE's default data swap mode.
143 * Implementation note: pushes 1 buffer to Source ring
145 int ath10k_ce_send(struct ath10k_ce_pipe
*ce_state
,
146 void *per_transfer_send_context
,
150 unsigned int transfer_id
,
153 int ath10k_ce_send_nolock(struct ath10k_ce_pipe
*ce_state
,
154 void *per_transfer_context
,
157 unsigned int transfer_id
,
160 void __ath10k_ce_send_revert(struct ath10k_ce_pipe
*pipe
);
162 int ath10k_ce_num_free_src_entries(struct ath10k_ce_pipe
*pipe
);
164 /*==================Recv=======================*/
166 int __ath10k_ce_rx_num_free_bufs(struct ath10k_ce_pipe
*pipe
);
167 int __ath10k_ce_rx_post_buf(struct ath10k_ce_pipe
*pipe
, void *ctx
, u32 paddr
);
168 int ath10k_ce_rx_post_buf(struct ath10k_ce_pipe
*pipe
, void *ctx
, u32 paddr
);
171 /* Data is byte-swapped */
172 #define CE_RECV_FLAG_SWAPPED 1
175 * Supply data for the next completed unprocessed receive descriptor.
176 * Pops buffer from Dest ring.
178 int ath10k_ce_completed_recv_next(struct ath10k_ce_pipe
*ce_state
,
179 void **per_transfer_contextp
,
181 unsigned int *nbytesp
,
182 unsigned int *transfer_idp
,
183 unsigned int *flagsp
);
185 * Supply data for the next completed unprocessed send descriptor.
186 * Pops 1 completed send buffer from Source ring.
188 int ath10k_ce_completed_send_next(struct ath10k_ce_pipe
*ce_state
,
189 void **per_transfer_contextp
);
191 int ath10k_ce_completed_send_next_nolock(struct ath10k_ce_pipe
*ce_state
,
192 void **per_transfer_contextp
);
194 /*==================CE Engine Initialization=======================*/
196 int ath10k_ce_init_pipe(struct ath10k
*ar
, unsigned int ce_id
,
197 const struct ce_attr
*attr
);
198 void ath10k_ce_deinit_pipe(struct ath10k
*ar
, unsigned int ce_id
);
199 int ath10k_ce_alloc_pipe(struct ath10k
*ar
, int ce_id
,
200 const struct ce_attr
*attr
);
201 void ath10k_ce_free_pipe(struct ath10k
*ar
, int ce_id
);
203 /*==================CE Engine Shutdown=======================*/
205 * Support clean shutdown by allowing the caller to revoke
206 * receive buffers. Target DMA must be stopped before using
209 int ath10k_ce_revoke_recv_next(struct ath10k_ce_pipe
*ce_state
,
210 void **per_transfer_contextp
,
213 int ath10k_ce_completed_recv_next_nolock(struct ath10k_ce_pipe
*ce_state
,
214 void **per_transfer_contextp
,
216 unsigned int *nbytesp
,
217 unsigned int *transfer_idp
,
218 unsigned int *flagsp
);
221 * Support clean shutdown by allowing the caller to cancel
222 * pending sends. Target DMA must be stopped before using
225 int ath10k_ce_cancel_send_next(struct ath10k_ce_pipe
*ce_state
,
226 void **per_transfer_contextp
,
228 unsigned int *nbytesp
,
229 unsigned int *transfer_idp
);
231 /*==================CE Interrupt Handlers====================*/
232 void ath10k_ce_per_engine_service_any(struct ath10k
*ar
);
233 void ath10k_ce_per_engine_service(struct ath10k
*ar
, unsigned int ce_id
);
234 int ath10k_ce_disable_interrupts(struct ath10k
*ar
);
235 void ath10k_ce_enable_interrupts(struct ath10k
*ar
);
237 /* ce_attr.flags values */
238 /* Use NonSnooping PCIe accesses? */
239 #define CE_ATTR_NO_SNOOP 1
241 /* Byte swap data words */
242 #define CE_ATTR_BYTE_SWAP_DATA 2
244 /* Swizzle descriptors? */
245 #define CE_ATTR_SWIZZLE_DESCRIPTORS 4
247 /* no interrupt on copy completion */
248 #define CE_ATTR_DIS_INTR 8
250 /* Attributes of an instance of a Copy Engine */
252 /* CE_ATTR_* values */
255 /* #entries in source ring - Must be a power of 2 */
256 unsigned int src_nentries
;
259 * Max source send size for this CE.
260 * This is also the minimum size of a destination buffer.
262 unsigned int src_sz_max
;
264 /* #entries in destination ring - Must be a power of 2 */
265 unsigned int dest_nentries
;
267 void (*send_cb
)(struct ath10k_ce_pipe
*);
268 void (*recv_cb
)(struct ath10k_ce_pipe
*);
271 #define SR_BA_ADDRESS 0x0000
272 #define SR_SIZE_ADDRESS 0x0004
273 #define DR_BA_ADDRESS 0x0008
274 #define DR_SIZE_ADDRESS 0x000c
275 #define CE_CMD_ADDRESS 0x0018
277 #define CE_CTRL1_DST_RING_BYTE_SWAP_EN_MSB 17
278 #define CE_CTRL1_DST_RING_BYTE_SWAP_EN_LSB 17
279 #define CE_CTRL1_DST_RING_BYTE_SWAP_EN_MASK 0x00020000
280 #define CE_CTRL1_DST_RING_BYTE_SWAP_EN_SET(x) \
281 (((0 | (x)) << CE_CTRL1_DST_RING_BYTE_SWAP_EN_LSB) & \
282 CE_CTRL1_DST_RING_BYTE_SWAP_EN_MASK)
284 #define CE_CTRL1_SRC_RING_BYTE_SWAP_EN_MSB 16
285 #define CE_CTRL1_SRC_RING_BYTE_SWAP_EN_LSB 16
286 #define CE_CTRL1_SRC_RING_BYTE_SWAP_EN_MASK 0x00010000
287 #define CE_CTRL1_SRC_RING_BYTE_SWAP_EN_GET(x) \
288 (((x) & CE_CTRL1_SRC_RING_BYTE_SWAP_EN_MASK) >> \
289 CE_CTRL1_SRC_RING_BYTE_SWAP_EN_LSB)
290 #define CE_CTRL1_SRC_RING_BYTE_SWAP_EN_SET(x) \
291 (((0 | (x)) << CE_CTRL1_SRC_RING_BYTE_SWAP_EN_LSB) & \
292 CE_CTRL1_SRC_RING_BYTE_SWAP_EN_MASK)
294 #define CE_CTRL1_DMAX_LENGTH_MSB 15
295 #define CE_CTRL1_DMAX_LENGTH_LSB 0
296 #define CE_CTRL1_DMAX_LENGTH_MASK 0x0000ffff
297 #define CE_CTRL1_DMAX_LENGTH_GET(x) \
298 (((x) & CE_CTRL1_DMAX_LENGTH_MASK) >> CE_CTRL1_DMAX_LENGTH_LSB)
299 #define CE_CTRL1_DMAX_LENGTH_SET(x) \
300 (((0 | (x)) << CE_CTRL1_DMAX_LENGTH_LSB) & CE_CTRL1_DMAX_LENGTH_MASK)
302 #define CE_CTRL1_ADDRESS 0x0010
303 #define CE_CTRL1_HW_MASK 0x0007ffff
304 #define CE_CTRL1_SW_MASK 0x0007ffff
305 #define CE_CTRL1_HW_WRITE_MASK 0x00000000
306 #define CE_CTRL1_SW_WRITE_MASK 0x0007ffff
307 #define CE_CTRL1_RSTMASK 0xffffffff
308 #define CE_CTRL1_RESET 0x00000080
310 #define CE_CMD_HALT_STATUS_MSB 3
311 #define CE_CMD_HALT_STATUS_LSB 3
312 #define CE_CMD_HALT_STATUS_MASK 0x00000008
313 #define CE_CMD_HALT_STATUS_GET(x) \
314 (((x) & CE_CMD_HALT_STATUS_MASK) >> CE_CMD_HALT_STATUS_LSB)
315 #define CE_CMD_HALT_STATUS_SET(x) \
316 (((0 | (x)) << CE_CMD_HALT_STATUS_LSB) & CE_CMD_HALT_STATUS_MASK)
317 #define CE_CMD_HALT_STATUS_RESET 0
318 #define CE_CMD_HALT_MSB 0
319 #define CE_CMD_HALT_MASK 0x00000001
321 #define HOST_IE_COPY_COMPLETE_MSB 0
322 #define HOST_IE_COPY_COMPLETE_LSB 0
323 #define HOST_IE_COPY_COMPLETE_MASK 0x00000001
324 #define HOST_IE_COPY_COMPLETE_GET(x) \
325 (((x) & HOST_IE_COPY_COMPLETE_MASK) >> HOST_IE_COPY_COMPLETE_LSB)
326 #define HOST_IE_COPY_COMPLETE_SET(x) \
327 (((0 | (x)) << HOST_IE_COPY_COMPLETE_LSB) & HOST_IE_COPY_COMPLETE_MASK)
328 #define HOST_IE_COPY_COMPLETE_RESET 0
329 #define HOST_IE_ADDRESS 0x002c
331 #define HOST_IS_DST_RING_LOW_WATERMARK_MASK 0x00000010
332 #define HOST_IS_DST_RING_HIGH_WATERMARK_MASK 0x00000008
333 #define HOST_IS_SRC_RING_LOW_WATERMARK_MASK 0x00000004
334 #define HOST_IS_SRC_RING_HIGH_WATERMARK_MASK 0x00000002
335 #define HOST_IS_COPY_COMPLETE_MASK 0x00000001
336 #define HOST_IS_ADDRESS 0x0030
338 #define MISC_IE_ADDRESS 0x0034
340 #define MISC_IS_AXI_ERR_MASK 0x00000400
342 #define MISC_IS_DST_ADDR_ERR_MASK 0x00000200
343 #define MISC_IS_SRC_LEN_ERR_MASK 0x00000100
344 #define MISC_IS_DST_MAX_LEN_VIO_MASK 0x00000080
345 #define MISC_IS_DST_RING_OVERFLOW_MASK 0x00000040
346 #define MISC_IS_SRC_RING_OVERFLOW_MASK 0x00000020
348 #define MISC_IS_ADDRESS 0x0038
350 #define SR_WR_INDEX_ADDRESS 0x003c
352 #define DST_WR_INDEX_ADDRESS 0x0040
354 #define CURRENT_SRRI_ADDRESS 0x0044
356 #define CURRENT_DRRI_ADDRESS 0x0048
358 #define SRC_WATERMARK_LOW_MSB 31
359 #define SRC_WATERMARK_LOW_LSB 16
360 #define SRC_WATERMARK_LOW_MASK 0xffff0000
361 #define SRC_WATERMARK_LOW_GET(x) \
362 (((x) & SRC_WATERMARK_LOW_MASK) >> SRC_WATERMARK_LOW_LSB)
363 #define SRC_WATERMARK_LOW_SET(x) \
364 (((0 | (x)) << SRC_WATERMARK_LOW_LSB) & SRC_WATERMARK_LOW_MASK)
365 #define SRC_WATERMARK_LOW_RESET 0
366 #define SRC_WATERMARK_HIGH_MSB 15
367 #define SRC_WATERMARK_HIGH_LSB 0
368 #define SRC_WATERMARK_HIGH_MASK 0x0000ffff
369 #define SRC_WATERMARK_HIGH_GET(x) \
370 (((x) & SRC_WATERMARK_HIGH_MASK) >> SRC_WATERMARK_HIGH_LSB)
371 #define SRC_WATERMARK_HIGH_SET(x) \
372 (((0 | (x)) << SRC_WATERMARK_HIGH_LSB) & SRC_WATERMARK_HIGH_MASK)
373 #define SRC_WATERMARK_HIGH_RESET 0
374 #define SRC_WATERMARK_ADDRESS 0x004c
376 #define DST_WATERMARK_LOW_LSB 16
377 #define DST_WATERMARK_LOW_MASK 0xffff0000
378 #define DST_WATERMARK_LOW_SET(x) \
379 (((0 | (x)) << DST_WATERMARK_LOW_LSB) & DST_WATERMARK_LOW_MASK)
380 #define DST_WATERMARK_LOW_RESET 0
381 #define DST_WATERMARK_HIGH_MSB 15
382 #define DST_WATERMARK_HIGH_LSB 0
383 #define DST_WATERMARK_HIGH_MASK 0x0000ffff
384 #define DST_WATERMARK_HIGH_GET(x) \
385 (((x) & DST_WATERMARK_HIGH_MASK) >> DST_WATERMARK_HIGH_LSB)
386 #define DST_WATERMARK_HIGH_SET(x) \
387 (((0 | (x)) << DST_WATERMARK_HIGH_LSB) & DST_WATERMARK_HIGH_MASK)
388 #define DST_WATERMARK_HIGH_RESET 0
389 #define DST_WATERMARK_ADDRESS 0x0050
391 static inline u32
ath10k_ce_base_address(struct ath10k
*ar
, unsigned int ce_id
)
393 return CE0_BASE_ADDRESS
+ (CE1_BASE_ADDRESS
- CE0_BASE_ADDRESS
) * ce_id
;
396 #define CE_WATERMARK_MASK (HOST_IS_SRC_RING_LOW_WATERMARK_MASK | \
397 HOST_IS_SRC_RING_HIGH_WATERMARK_MASK | \
398 HOST_IS_DST_RING_LOW_WATERMARK_MASK | \
399 HOST_IS_DST_RING_HIGH_WATERMARK_MASK)
401 #define CE_ERROR_MASK (MISC_IS_AXI_ERR_MASK | \
402 MISC_IS_DST_ADDR_ERR_MASK | \
403 MISC_IS_SRC_LEN_ERR_MASK | \
404 MISC_IS_DST_MAX_LEN_VIO_MASK | \
405 MISC_IS_DST_RING_OVERFLOW_MASK | \
406 MISC_IS_SRC_RING_OVERFLOW_MASK)
408 #define CE_SRC_RING_TO_DESC(baddr, idx) \
409 (&(((struct ce_desc *)baddr)[idx]))
411 #define CE_DEST_RING_TO_DESC(baddr, idx) \
412 (&(((struct ce_desc *)baddr)[idx]))
414 /* Ring arithmetic (modulus number of entries in ring, which is a pwr of 2). */
415 #define CE_RING_DELTA(nentries_mask, fromidx, toidx) \
416 (((int)(toidx)-(int)(fromidx)) & (nentries_mask))
418 #define CE_RING_IDX_INCR(nentries_mask, idx) (((idx) + 1) & (nentries_mask))
420 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_LSB \
421 ar->regs->ce_wrap_intr_sum_host_msi_lsb
422 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_MASK \
423 ar->regs->ce_wrap_intr_sum_host_msi_mask
424 #define CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_GET(x) \
425 (((x) & CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_MASK) >> \
426 CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_LSB)
427 #define CE_WRAPPER_INTERRUPT_SUMMARY_ADDRESS 0x0000
429 #define CE_INTERRUPT_SUMMARY(ar) \
430 CE_WRAPPER_INTERRUPT_SUMMARY_HOST_MSI_GET( \
431 ath10k_pci_read32((ar), CE_WRAPPER_BASE_ADDRESS + \
432 CE_WRAPPER_INTERRUPT_SUMMARY_ADDRESS))