1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */
3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
9 #define CE_COUNT_MAX 12
11 /* Byte swap data words */
12 #define CE_ATTR_BYTE_SWAP_DATA 2
14 /* no interrupt on copy completion */
15 #define CE_ATTR_DIS_INTR 8
17 /* Host software's Copy Engine configuration. */
19 #define CE_ATTR_FLAGS CE_ATTR_BYTE_SWAP_DATA
21 #define CE_ATTR_FLAGS 0
24 /* Threshold to poll for tx completion in case of Interrupt disabled CE's */
25 #define ATH11K_CE_USAGE_THRESHOLD 32
27 void ath11k_ce_byte_swap(void *mem
, u32 len
);
30 * Directions for interconnect pipe configuration.
31 * These definitions may be used during configuration and are shared
32 * between Host and Target.
34 * Pipe Directions are relative to the Host, so PIPEDIR_IN means
35 * "coming IN over air through Target to Host" as with a WiFi Rx operation.
36 * Conversely, PIPEDIR_OUT means "going OUT from Host through Target over air"
37 * as with a WiFi Tx operation. This is somewhat awkward for the "middle-man"
38 * Target since things that are "PIPEDIR_OUT" are coming IN to the Target
39 * over the interconnect.
41 #define PIPEDIR_NONE 0
42 #define PIPEDIR_IN 1 /* Target-->Host, WiFi Rx direction */
43 #define PIPEDIR_OUT 2 /* Host->Target, WiFi Tx direction */
44 #define PIPEDIR_INOUT 3 /* bidirectional */
45 #define PIPEDIR_INOUT_H2H 4 /* bidirectional, host to host */
48 #define CE_HOST_IE_ADDRESS 0x00A1803C
49 #define CE_HOST_IE_2_ADDRESS 0x00A18040
50 #define CE_HOST_IE_3_ADDRESS CE_HOST_IE_ADDRESS
52 #define CE_HOST_IE_3_SHIFT 0xC
54 #define CE_RING_IDX_INCR(nentries_mask, idx) (((idx) + 1) & (nentries_mask))
56 #define ATH11K_CE_RX_POST_RETRY_JIFFIES 50
61 * Establish a mapping between a service/direction and a pipe.
62 * Configuration information for a Copy Engine pipe and services.
63 * Passed from Host to Target through QMI message and must be in
64 * little endian format.
66 struct service_to_pipe
{
73 * Configuration information for a Copy Engine pipe.
74 * Passed from Host to Target through QMI message during startup (one per CE).
76 * NOTE: Structure is shared between Host software and Target firmware!
78 struct ce_pipe_config
{
88 /* CE_ATTR_* values */
91 /* #entries in source ring - Must be a power of 2 */
92 unsigned int src_nentries
;
95 * Max source send size for this CE.
96 * This is also the minimum size of a destination buffer.
98 unsigned int src_sz_max
;
100 /* #entries in destination ring - Must be a power of 2 */
101 unsigned int dest_nentries
;
103 void (*recv_cb
)(struct ath11k_base
*, struct sk_buff
*);
106 #define CE_DESC_RING_ALIGN 8
108 struct ath11k_ce_ring
{
109 /* Number of entries in this ring; must be power of 2 */
110 unsigned int nentries
;
111 unsigned int nentries_mask
;
113 /* For dest ring, this is the next index to be processed
114 * by software after it was/is received into.
116 * For src ring, this is the last descriptor that was sent
117 * and completion processed by software.
119 * Regardless of src or dest ring, this is an invariant
120 * (modulo ring size):
121 * write index >= read index >= sw_index
123 unsigned int sw_index
;
125 unsigned int write_index
;
127 /* Start of DMA-coherent area reserved for descriptors */
128 /* Host address space */
129 void *base_addr_owner_space_unaligned
;
130 /* CE address space */
131 u32 base_addr_ce_space_unaligned
;
133 /* Actual start of descriptors.
134 * Aligned to descriptor-size boundary.
135 * Points into reserved DMA-coherent area, above.
137 /* Host address space */
138 void *base_addr_owner_space
;
140 /* CE address space */
141 u32 base_addr_ce_space
;
147 struct sk_buff
*skb
[0];
150 struct ath11k_ce_pipe
{
151 struct ath11k_base
*ab
;
153 unsigned int attr_flags
;
155 unsigned int rx_buf_needed
;
157 void (*send_cb
)(struct ath11k_ce_pipe
*);
158 void (*recv_cb
)(struct ath11k_base
*, struct sk_buff
*);
160 struct tasklet_struct intr_tq
;
161 struct ath11k_ce_ring
*src_ring
;
162 struct ath11k_ce_ring
*dest_ring
;
163 struct ath11k_ce_ring
*status_ring
;
168 struct ath11k_ce_pipe ce_pipe
[CE_COUNT_MAX
];
169 /* Protects rings of all ce pipes */
171 struct ath11k_hp_update_timer hp_timer
[CE_COUNT_MAX
];
174 extern const struct ce_attr ath11k_host_ce_config_ipq8074
[];
175 extern const struct ce_attr ath11k_host_ce_config_qca6390
[];
177 void ath11k_ce_cleanup_pipes(struct ath11k_base
*ab
);
178 void ath11k_ce_rx_replenish_retry(struct timer_list
*t
);
179 void ath11k_ce_per_engine_service(struct ath11k_base
*ab
, u16 ce_id
);
180 int ath11k_ce_send(struct ath11k_base
*ab
, struct sk_buff
*skb
, u8 pipe_id
,
182 void ath11k_ce_rx_post_buf(struct ath11k_base
*ab
);
183 int ath11k_ce_init_pipes(struct ath11k_base
*ab
);
184 int ath11k_ce_alloc_pipes(struct ath11k_base
*ab
);
185 void ath11k_ce_free_pipes(struct ath11k_base
*ab
);
186 int ath11k_ce_get_attr_flags(struct ath11k_base
*ab
, int ce_id
);
187 void ath11k_ce_poll_send_completed(struct ath11k_base
*ab
, u8 pipe_id
);
188 int ath11k_ce_map_service_to_pipe(struct ath11k_base
*ab
, u16 service_id
,
189 u8
*ul_pipe
, u8
*dl_pipe
);
190 int ath11k_ce_attr_attach(struct ath11k_base
*ab
);
191 void ath11k_ce_get_shadow_config(struct ath11k_base
*ab
,
192 u32
**shadow_cfg
, u32
*shadow_cfg_len
);
193 void ath11k_ce_stop_shadow_timers(struct ath11k_base
*ab
);