2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2017 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.
21 #include <linux/bug.h>
22 #include <linux/interrupt.h>
23 #include <linux/dmapool.h>
24 #include <linux/hashtable.h>
25 #include <linux/kfifo.h>
26 #include <net/mac80211.h>
33 enum htt_dbg_stats_type
{
34 HTT_DBG_STATS_WAL_PDEV_TXRX
= 1 << 0,
35 HTT_DBG_STATS_RX_REORDER
= 1 << 1,
36 HTT_DBG_STATS_RX_RATE_INFO
= 1 << 2,
37 HTT_DBG_STATS_TX_PPDU_LOG
= 1 << 3,
38 HTT_DBG_STATS_TX_RATE_INFO
= 1 << 4,
39 /* bits 5-23 currently reserved */
41 HTT_DBG_NUM_STATS
/* keep this last */
44 enum htt_h2t_msg_type
{ /* host-to-target */
45 HTT_H2T_MSG_TYPE_VERSION_REQ
= 0,
46 HTT_H2T_MSG_TYPE_TX_FRM
= 1,
47 HTT_H2T_MSG_TYPE_RX_RING_CFG
= 2,
48 HTT_H2T_MSG_TYPE_STATS_REQ
= 3,
49 HTT_H2T_MSG_TYPE_SYNC
= 4,
50 HTT_H2T_MSG_TYPE_AGGR_CFG
= 5,
51 HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG
= 6,
53 /* This command is used for sending management frames in HTT < 3.0.
54 * HTT >= 3.0 uses TX_FRM for everything.
56 HTT_H2T_MSG_TYPE_MGMT_TX
= 7,
57 HTT_H2T_MSG_TYPE_TX_FETCH_RESP
= 11,
59 HTT_H2T_NUM_MSGS
/* keep this last */
67 u8 pad
[sizeof(u32
) - sizeof(struct htt_cmd_hdr
)];
71 * HTT tx MSDU descriptor
73 * The HTT tx MSDU descriptor is created by the host HTT SW for each
74 * tx MSDU. The HTT tx MSDU descriptor contains the information that
75 * the target firmware needs for the FW's tx processing, particularly
76 * for creating the HW msdu descriptor.
77 * The same HTT tx descriptor is used for HL and LL systems, though
78 * a few fields within the tx descriptor are used only by LL or
80 * The HTT tx descriptor is defined in two manners: by a struct with
81 * bitfields, and by a series of [dword offset, bit mask, bit shift]
83 * The target should use the struct def, for simplicitly and clarity,
84 * but the host shall use the bit-mast + bit-shift defs, to be endian-
85 * neutral. Specifically, the host shall use the get/set macros built
86 * around the mask + shift defs.
88 struct htt_data_tx_desc_frag
{
90 struct double_word_addr
{
93 } __packed dword_addr
;
94 struct triple_word_addr
{
98 } __packed tword_addr
;
102 struct htt_msdu_ext_desc
{
104 __le16 ip_identification
;
107 struct htt_data_tx_desc_frag frags
[6];
110 struct htt_msdu_ext_desc_64
{
112 __le16 ip_identification
;
115 struct htt_data_tx_desc_frag frags
[6];
118 #define HTT_MSDU_EXT_DESC_FLAG_IPV4_CSUM_ENABLE BIT(0)
119 #define HTT_MSDU_EXT_DESC_FLAG_UDP_IPV4_CSUM_ENABLE BIT(1)
120 #define HTT_MSDU_EXT_DESC_FLAG_UDP_IPV6_CSUM_ENABLE BIT(2)
121 #define HTT_MSDU_EXT_DESC_FLAG_TCP_IPV4_CSUM_ENABLE BIT(3)
122 #define HTT_MSDU_EXT_DESC_FLAG_TCP_IPV6_CSUM_ENABLE BIT(4)
124 #define HTT_MSDU_CHECKSUM_ENABLE (HTT_MSDU_EXT_DESC_FLAG_IPV4_CSUM_ENABLE \
125 | HTT_MSDU_EXT_DESC_FLAG_UDP_IPV4_CSUM_ENABLE \
126 | HTT_MSDU_EXT_DESC_FLAG_UDP_IPV6_CSUM_ENABLE \
127 | HTT_MSDU_EXT_DESC_FLAG_TCP_IPV4_CSUM_ENABLE \
128 | HTT_MSDU_EXT_DESC_FLAG_TCP_IPV6_CSUM_ENABLE)
130 enum htt_data_tx_desc_flags0
{
131 HTT_DATA_TX_DESC_FLAGS0_MAC_HDR_PRESENT
= 1 << 0,
132 HTT_DATA_TX_DESC_FLAGS0_NO_AGGR
= 1 << 1,
133 HTT_DATA_TX_DESC_FLAGS0_NO_ENCRYPT
= 1 << 2,
134 HTT_DATA_TX_DESC_FLAGS0_NO_CLASSIFY
= 1 << 3,
135 HTT_DATA_TX_DESC_FLAGS0_RSVD0
= 1 << 4
136 #define HTT_DATA_TX_DESC_FLAGS0_PKT_TYPE_MASK 0xE0
137 #define HTT_DATA_TX_DESC_FLAGS0_PKT_TYPE_LSB 5
140 enum htt_data_tx_desc_flags1
{
141 #define HTT_DATA_TX_DESC_FLAGS1_VDEV_ID_BITS 6
142 #define HTT_DATA_TX_DESC_FLAGS1_VDEV_ID_MASK 0x003F
143 #define HTT_DATA_TX_DESC_FLAGS1_VDEV_ID_LSB 0
144 #define HTT_DATA_TX_DESC_FLAGS1_EXT_TID_BITS 5
145 #define HTT_DATA_TX_DESC_FLAGS1_EXT_TID_MASK 0x07C0
146 #define HTT_DATA_TX_DESC_FLAGS1_EXT_TID_LSB 6
147 HTT_DATA_TX_DESC_FLAGS1_POSTPONED
= 1 << 11,
148 HTT_DATA_TX_DESC_FLAGS1_MORE_IN_BATCH
= 1 << 12,
149 HTT_DATA_TX_DESC_FLAGS1_CKSUM_L3_OFFLOAD
= 1 << 13,
150 HTT_DATA_TX_DESC_FLAGS1_CKSUM_L4_OFFLOAD
= 1 << 14,
151 HTT_DATA_TX_DESC_FLAGS1_RSVD1
= 1 << 15
154 enum htt_data_tx_ext_tid
{
155 HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST
= 16,
156 HTT_DATA_TX_EXT_TID_MGMT
= 17,
157 HTT_DATA_TX_EXT_TID_INVALID
= 31
160 #define HTT_INVALID_PEERID 0xFFFF
163 * htt_data_tx_desc - used for data tx path
165 * Note: vdev_id irrelevant for pkt_type == raw and no_classify == 1.
166 * ext_tid: for qos-data frames (0-15), see %HTT_DATA_TX_EXT_TID_
167 * for special kinds of tids
168 * postponed: only for HL hosts. indicates if this is a resend
169 * (HL hosts manage queues on the host )
170 * more_in_batch: only for HL hosts. indicates if more packets are
171 * pending. this allows target to wait and aggregate
172 * freq: 0 means home channel of given vdev. intended for offchannel
174 struct htt_data_tx_desc
{
175 u8 flags0
; /* %HTT_DATA_TX_DESC_FLAGS0_ */
176 __le16 flags1
; /* %HTT_DATA_TX_DESC_FLAGS1_ */
185 } __packed offchan_tx
;
187 u8 prefetch
[0]; /* start of frame, for FW classification engine */
190 struct htt_data_tx_desc_64
{
191 u8 flags0
; /* %HTT_DATA_TX_DESC_FLAGS0_ */
192 __le16 flags1
; /* %HTT_DATA_TX_DESC_FLAGS1_ */
201 } __packed offchan_tx
;
203 u8 prefetch
[0]; /* start of frame, for FW classification engine */
206 enum htt_rx_ring_flags
{
207 HTT_RX_RING_FLAGS_MAC80211_HDR
= 1 << 0,
208 HTT_RX_RING_FLAGS_MSDU_PAYLOAD
= 1 << 1,
209 HTT_RX_RING_FLAGS_PPDU_START
= 1 << 2,
210 HTT_RX_RING_FLAGS_PPDU_END
= 1 << 3,
211 HTT_RX_RING_FLAGS_MPDU_START
= 1 << 4,
212 HTT_RX_RING_FLAGS_MPDU_END
= 1 << 5,
213 HTT_RX_RING_FLAGS_MSDU_START
= 1 << 6,
214 HTT_RX_RING_FLAGS_MSDU_END
= 1 << 7,
215 HTT_RX_RING_FLAGS_RX_ATTENTION
= 1 << 8,
216 HTT_RX_RING_FLAGS_FRAG_INFO
= 1 << 9,
217 HTT_RX_RING_FLAGS_UNICAST_RX
= 1 << 10,
218 HTT_RX_RING_FLAGS_MULTICAST_RX
= 1 << 11,
219 HTT_RX_RING_FLAGS_CTRL_RX
= 1 << 12,
220 HTT_RX_RING_FLAGS_MGMT_RX
= 1 << 13,
221 HTT_RX_RING_FLAGS_NULL_RX
= 1 << 14,
222 HTT_RX_RING_FLAGS_PHY_DATA_RX
= 1 << 15
225 #define HTT_RX_RING_SIZE_MIN 128
226 #define HTT_RX_RING_SIZE_MAX 2048
227 #define HTT_RX_RING_SIZE HTT_RX_RING_SIZE_MAX
228 #define HTT_RX_RING_FILL_LEVEL (((HTT_RX_RING_SIZE) / 2) - 1)
229 #define HTT_RX_RING_FILL_LEVEL_DUAL_MAC (HTT_RX_RING_SIZE - 1)
231 struct htt_rx_ring_setup_ring32
{
232 __le32 fw_idx_shadow_reg_paddr
;
233 __le32 rx_ring_base_paddr
;
234 __le16 rx_ring_len
; /* in 4-byte words */
235 __le16 rx_ring_bufsize
; /* rx skb size - in bytes */
236 __le16 flags
; /* %HTT_RX_RING_FLAGS_ */
237 __le16 fw_idx_init_val
;
239 /* the following offsets are in 4-byte units */
240 __le16 mac80211_hdr_offset
;
241 __le16 msdu_payload_offset
;
242 __le16 ppdu_start_offset
;
243 __le16 ppdu_end_offset
;
244 __le16 mpdu_start_offset
;
245 __le16 mpdu_end_offset
;
246 __le16 msdu_start_offset
;
247 __le16 msdu_end_offset
;
248 __le16 rx_attention_offset
;
249 __le16 frag_info_offset
;
252 struct htt_rx_ring_setup_ring64
{
253 __le64 fw_idx_shadow_reg_paddr
;
254 __le64 rx_ring_base_paddr
;
255 __le16 rx_ring_len
; /* in 4-byte words */
256 __le16 rx_ring_bufsize
; /* rx skb size - in bytes */
257 __le16 flags
; /* %HTT_RX_RING_FLAGS_ */
258 __le16 fw_idx_init_val
;
260 /* the following offsets are in 4-byte units */
261 __le16 mac80211_hdr_offset
;
262 __le16 msdu_payload_offset
;
263 __le16 ppdu_start_offset
;
264 __le16 ppdu_end_offset
;
265 __le16 mpdu_start_offset
;
266 __le16 mpdu_end_offset
;
267 __le16 msdu_start_offset
;
268 __le16 msdu_end_offset
;
269 __le16 rx_attention_offset
;
270 __le16 frag_info_offset
;
273 struct htt_rx_ring_setup_hdr
{
274 u8 num_rings
; /* supported values: 1, 2 */
278 struct htt_rx_ring_setup_32
{
279 struct htt_rx_ring_setup_hdr hdr
;
280 struct htt_rx_ring_setup_ring32 rings
[0];
283 struct htt_rx_ring_setup_64
{
284 struct htt_rx_ring_setup_hdr hdr
;
285 struct htt_rx_ring_setup_ring64 rings
[0];
289 * htt_stats_req - request target to send specified statistics
291 * @msg_type: hardcoded %HTT_H2T_MSG_TYPE_STATS_REQ
292 * @upload_types: see %htt_dbg_stats_type. this is 24bit field actually
293 * so make sure its little-endian.
294 * @reset_types: see %htt_dbg_stats_type. this is 24bit field actually
295 * so make sure its little-endian.
296 * @cfg_val: stat_type specific configuration
297 * @stat_type: see %htt_dbg_stats_type
298 * @cookie_lsb: used for confirmation message from target->host
299 * @cookie_msb: ditto as %cookie
301 struct htt_stats_req
{
315 #define HTT_STATS_REQ_CFG_STAT_TYPE_INVALID 0xff
318 * htt_oob_sync_req - request out-of-band sync
320 * The HTT SYNC tells the target to suspend processing of subsequent
321 * HTT host-to-target messages until some other target agent locally
322 * informs the target HTT FW that the current sync counter is equal to
323 * or greater than (in a modulo sense) the sync counter specified in
326 * This allows other host-target components to synchronize their operation
327 * with HTT, e.g. to ensure that tx frames don't get transmitted until a
328 * security key has been downloaded to and activated by the target.
329 * In the absence of any explicit synchronization counter value
330 * specification, the target HTT FW will use zero as the default current
333 * The HTT target FW will suspend its host->target message processing as long
334 * as 0 < (in-band sync counter - out-of-band sync counter) & 0xff < 128.
336 struct htt_oob_sync_req
{
341 struct htt_aggr_conf
{
342 u8 max_num_ampdu_subframes
;
343 /* amsdu_subframes is limited by 0x1F mask */
344 u8 max_num_amsdu_subframes
;
347 #define HTT_MGMT_FRM_HDR_DOWNLOAD_LEN 32
348 struct htt_mgmt_tx_desc_qca99x0
{
352 struct htt_mgmt_tx_desc
{
353 u8 pad
[sizeof(u32
) - sizeof(struct htt_cmd_hdr
)];
358 u8 hdr
[HTT_MGMT_FRM_HDR_DOWNLOAD_LEN
];
360 struct htt_mgmt_tx_desc_qca99x0 qca99x0
;
364 enum htt_mgmt_tx_status
{
365 HTT_MGMT_TX_STATUS_OK
= 0,
366 HTT_MGMT_TX_STATUS_RETRY
= 1,
367 HTT_MGMT_TX_STATUS_DROP
= 2
370 /*=== target -> host messages ===============================================*/
372 enum htt_main_t2h_msg_type
{
373 HTT_MAIN_T2H_MSG_TYPE_VERSION_CONF
= 0x0,
374 HTT_MAIN_T2H_MSG_TYPE_RX_IND
= 0x1,
375 HTT_MAIN_T2H_MSG_TYPE_RX_FLUSH
= 0x2,
376 HTT_MAIN_T2H_MSG_TYPE_PEER_MAP
= 0x3,
377 HTT_MAIN_T2H_MSG_TYPE_PEER_UNMAP
= 0x4,
378 HTT_MAIN_T2H_MSG_TYPE_RX_ADDBA
= 0x5,
379 HTT_MAIN_T2H_MSG_TYPE_RX_DELBA
= 0x6,
380 HTT_MAIN_T2H_MSG_TYPE_TX_COMPL_IND
= 0x7,
381 HTT_MAIN_T2H_MSG_TYPE_PKTLOG
= 0x8,
382 HTT_MAIN_T2H_MSG_TYPE_STATS_CONF
= 0x9,
383 HTT_MAIN_T2H_MSG_TYPE_RX_FRAG_IND
= 0xa,
384 HTT_MAIN_T2H_MSG_TYPE_SEC_IND
= 0xb,
385 HTT_MAIN_T2H_MSG_TYPE_TX_INSPECT_IND
= 0xd,
386 HTT_MAIN_T2H_MSG_TYPE_MGMT_TX_COMPL_IND
= 0xe,
387 HTT_MAIN_T2H_MSG_TYPE_TX_CREDIT_UPDATE_IND
= 0xf,
388 HTT_MAIN_T2H_MSG_TYPE_RX_PN_IND
= 0x10,
389 HTT_MAIN_T2H_MSG_TYPE_RX_OFFLOAD_DELIVER_IND
= 0x11,
390 HTT_MAIN_T2H_MSG_TYPE_TEST
,
392 HTT_MAIN_T2H_NUM_MSGS
395 enum htt_10x_t2h_msg_type
{
396 HTT_10X_T2H_MSG_TYPE_VERSION_CONF
= 0x0,
397 HTT_10X_T2H_MSG_TYPE_RX_IND
= 0x1,
398 HTT_10X_T2H_MSG_TYPE_RX_FLUSH
= 0x2,
399 HTT_10X_T2H_MSG_TYPE_PEER_MAP
= 0x3,
400 HTT_10X_T2H_MSG_TYPE_PEER_UNMAP
= 0x4,
401 HTT_10X_T2H_MSG_TYPE_RX_ADDBA
= 0x5,
402 HTT_10X_T2H_MSG_TYPE_RX_DELBA
= 0x6,
403 HTT_10X_T2H_MSG_TYPE_TX_COMPL_IND
= 0x7,
404 HTT_10X_T2H_MSG_TYPE_PKTLOG
= 0x8,
405 HTT_10X_T2H_MSG_TYPE_STATS_CONF
= 0x9,
406 HTT_10X_T2H_MSG_TYPE_RX_FRAG_IND
= 0xa,
407 HTT_10X_T2H_MSG_TYPE_SEC_IND
= 0xb,
408 HTT_10X_T2H_MSG_TYPE_RC_UPDATE_IND
= 0xc,
409 HTT_10X_T2H_MSG_TYPE_TX_INSPECT_IND
= 0xd,
410 HTT_10X_T2H_MSG_TYPE_TEST
= 0xe,
411 HTT_10X_T2H_MSG_TYPE_CHAN_CHANGE
= 0xf,
412 HTT_10X_T2H_MSG_TYPE_AGGR_CONF
= 0x11,
413 HTT_10X_T2H_MSG_TYPE_STATS_NOUPLOAD
= 0x12,
414 HTT_10X_T2H_MSG_TYPE_MGMT_TX_COMPL_IND
= 0x13,
419 enum htt_tlv_t2h_msg_type
{
420 HTT_TLV_T2H_MSG_TYPE_VERSION_CONF
= 0x0,
421 HTT_TLV_T2H_MSG_TYPE_RX_IND
= 0x1,
422 HTT_TLV_T2H_MSG_TYPE_RX_FLUSH
= 0x2,
423 HTT_TLV_T2H_MSG_TYPE_PEER_MAP
= 0x3,
424 HTT_TLV_T2H_MSG_TYPE_PEER_UNMAP
= 0x4,
425 HTT_TLV_T2H_MSG_TYPE_RX_ADDBA
= 0x5,
426 HTT_TLV_T2H_MSG_TYPE_RX_DELBA
= 0x6,
427 HTT_TLV_T2H_MSG_TYPE_TX_COMPL_IND
= 0x7,
428 HTT_TLV_T2H_MSG_TYPE_PKTLOG
= 0x8,
429 HTT_TLV_T2H_MSG_TYPE_STATS_CONF
= 0x9,
430 HTT_TLV_T2H_MSG_TYPE_RX_FRAG_IND
= 0xa,
431 HTT_TLV_T2H_MSG_TYPE_SEC_IND
= 0xb,
432 HTT_TLV_T2H_MSG_TYPE_RC_UPDATE_IND
= 0xc, /* deprecated */
433 HTT_TLV_T2H_MSG_TYPE_TX_INSPECT_IND
= 0xd,
434 HTT_TLV_T2H_MSG_TYPE_MGMT_TX_COMPL_IND
= 0xe,
435 HTT_TLV_T2H_MSG_TYPE_TX_CREDIT_UPDATE_IND
= 0xf,
436 HTT_TLV_T2H_MSG_TYPE_RX_PN_IND
= 0x10,
437 HTT_TLV_T2H_MSG_TYPE_RX_OFFLOAD_DELIVER_IND
= 0x11,
438 HTT_TLV_T2H_MSG_TYPE_RX_IN_ORD_PADDR_IND
= 0x12,
440 HTT_TLV_T2H_MSG_TYPE_WDI_IPA_OP_RESPONSE
= 0x14,
441 HTT_TLV_T2H_MSG_TYPE_CHAN_CHANGE
= 0x15,
442 HTT_TLV_T2H_MSG_TYPE_RX_OFLD_PKT_ERR
= 0x16,
443 HTT_TLV_T2H_MSG_TYPE_TEST
,
448 enum htt_10_4_t2h_msg_type
{
449 HTT_10_4_T2H_MSG_TYPE_VERSION_CONF
= 0x0,
450 HTT_10_4_T2H_MSG_TYPE_RX_IND
= 0x1,
451 HTT_10_4_T2H_MSG_TYPE_RX_FLUSH
= 0x2,
452 HTT_10_4_T2H_MSG_TYPE_PEER_MAP
= 0x3,
453 HTT_10_4_T2H_MSG_TYPE_PEER_UNMAP
= 0x4,
454 HTT_10_4_T2H_MSG_TYPE_RX_ADDBA
= 0x5,
455 HTT_10_4_T2H_MSG_TYPE_RX_DELBA
= 0x6,
456 HTT_10_4_T2H_MSG_TYPE_TX_COMPL_IND
= 0x7,
457 HTT_10_4_T2H_MSG_TYPE_PKTLOG
= 0x8,
458 HTT_10_4_T2H_MSG_TYPE_STATS_CONF
= 0x9,
459 HTT_10_4_T2H_MSG_TYPE_RX_FRAG_IND
= 0xa,
460 HTT_10_4_T2H_MSG_TYPE_SEC_IND
= 0xb,
461 HTT_10_4_T2H_MSG_TYPE_RC_UPDATE_IND
= 0xc,
462 HTT_10_4_T2H_MSG_TYPE_TX_INSPECT_IND
= 0xd,
463 HTT_10_4_T2H_MSG_TYPE_MGMT_TX_COMPL_IND
= 0xe,
464 HTT_10_4_T2H_MSG_TYPE_CHAN_CHANGE
= 0xf,
465 HTT_10_4_T2H_MSG_TYPE_TX_CREDIT_UPDATE_IND
= 0x10,
466 HTT_10_4_T2H_MSG_TYPE_RX_PN_IND
= 0x11,
467 HTT_10_4_T2H_MSG_TYPE_RX_OFFLOAD_DELIVER_IND
= 0x12,
468 HTT_10_4_T2H_MSG_TYPE_TEST
= 0x13,
469 HTT_10_4_T2H_MSG_TYPE_EN_STATS
= 0x14,
470 HTT_10_4_T2H_MSG_TYPE_AGGR_CONF
= 0x15,
471 HTT_10_4_T2H_MSG_TYPE_TX_FETCH_IND
= 0x16,
472 HTT_10_4_T2H_MSG_TYPE_TX_FETCH_CONFIRM
= 0x17,
473 HTT_10_4_T2H_MSG_TYPE_STATS_NOUPLOAD
= 0x18,
474 /* 0x19 to 0x2f are reserved */
475 HTT_10_4_T2H_MSG_TYPE_TX_MODE_SWITCH_IND
= 0x30,
476 HTT_10_4_T2H_MSG_TYPE_PEER_STATS
= 0x31,
478 HTT_10_4_T2H_NUM_MSGS
481 enum htt_t2h_msg_type
{
482 HTT_T2H_MSG_TYPE_VERSION_CONF
,
483 HTT_T2H_MSG_TYPE_RX_IND
,
484 HTT_T2H_MSG_TYPE_RX_FLUSH
,
485 HTT_T2H_MSG_TYPE_PEER_MAP
,
486 HTT_T2H_MSG_TYPE_PEER_UNMAP
,
487 HTT_T2H_MSG_TYPE_RX_ADDBA
,
488 HTT_T2H_MSG_TYPE_RX_DELBA
,
489 HTT_T2H_MSG_TYPE_TX_COMPL_IND
,
490 HTT_T2H_MSG_TYPE_PKTLOG
,
491 HTT_T2H_MSG_TYPE_STATS_CONF
,
492 HTT_T2H_MSG_TYPE_RX_FRAG_IND
,
493 HTT_T2H_MSG_TYPE_SEC_IND
,
494 HTT_T2H_MSG_TYPE_RC_UPDATE_IND
,
495 HTT_T2H_MSG_TYPE_TX_INSPECT_IND
,
496 HTT_T2H_MSG_TYPE_MGMT_TX_COMPLETION
,
497 HTT_T2H_MSG_TYPE_TX_CREDIT_UPDATE_IND
,
498 HTT_T2H_MSG_TYPE_RX_PN_IND
,
499 HTT_T2H_MSG_TYPE_RX_OFFLOAD_DELIVER_IND
,
500 HTT_T2H_MSG_TYPE_RX_IN_ORD_PADDR_IND
,
501 HTT_T2H_MSG_TYPE_WDI_IPA_OP_RESPONSE
,
502 HTT_T2H_MSG_TYPE_CHAN_CHANGE
,
503 HTT_T2H_MSG_TYPE_RX_OFLD_PKT_ERR
,
504 HTT_T2H_MSG_TYPE_AGGR_CONF
,
505 HTT_T2H_MSG_TYPE_STATS_NOUPLOAD
,
506 HTT_T2H_MSG_TYPE_TEST
,
507 HTT_T2H_MSG_TYPE_EN_STATS
,
508 HTT_T2H_MSG_TYPE_TX_FETCH_IND
,
509 HTT_T2H_MSG_TYPE_TX_FETCH_CONFIRM
,
510 HTT_T2H_MSG_TYPE_TX_MODE_SWITCH_IND
,
511 HTT_T2H_MSG_TYPE_PEER_STATS
,
517 * htt_resp_hdr - header for target-to-host messages
519 * msg_type: see htt_t2h_msg_type
521 struct htt_resp_hdr
{
525 #define HTT_RESP_HDR_MSG_TYPE_OFFSET 0
526 #define HTT_RESP_HDR_MSG_TYPE_MASK 0xff
527 #define HTT_RESP_HDR_MSG_TYPE_LSB 0
529 /* htt_ver_resp - response sent for htt_ver_req */
530 struct htt_ver_resp
{
536 struct htt_mgmt_tx_completion
{
544 #define HTT_RX_INDICATION_INFO0_EXT_TID_MASK (0x1F)
545 #define HTT_RX_INDICATION_INFO0_EXT_TID_LSB (0)
546 #define HTT_RX_INDICATION_INFO0_FLUSH_VALID (1 << 5)
547 #define HTT_RX_INDICATION_INFO0_RELEASE_VALID (1 << 6)
549 #define HTT_RX_INDICATION_INFO1_FLUSH_START_SEQNO_MASK 0x0000003F
550 #define HTT_RX_INDICATION_INFO1_FLUSH_START_SEQNO_LSB 0
551 #define HTT_RX_INDICATION_INFO1_FLUSH_END_SEQNO_MASK 0x00000FC0
552 #define HTT_RX_INDICATION_INFO1_FLUSH_END_SEQNO_LSB 6
553 #define HTT_RX_INDICATION_INFO1_RELEASE_START_SEQNO_MASK 0x0003F000
554 #define HTT_RX_INDICATION_INFO1_RELEASE_START_SEQNO_LSB 12
555 #define HTT_RX_INDICATION_INFO1_RELEASE_END_SEQNO_MASK 0x00FC0000
556 #define HTT_RX_INDICATION_INFO1_RELEASE_END_SEQNO_LSB 18
557 #define HTT_RX_INDICATION_INFO1_NUM_MPDU_RANGES_MASK 0xFF000000
558 #define HTT_RX_INDICATION_INFO1_NUM_MPDU_RANGES_LSB 24
560 struct htt_rx_indication_hdr
{
561 u8 info0
; /* %HTT_RX_INDICATION_INFO0_ */
563 __le32 info1
; /* %HTT_RX_INDICATION_INFO1_ */
566 #define HTT_RX_INDICATION_INFO0_PHY_ERR_VALID (1 << 0)
567 #define HTT_RX_INDICATION_INFO0_LEGACY_RATE_MASK (0x1E)
568 #define HTT_RX_INDICATION_INFO0_LEGACY_RATE_LSB (1)
569 #define HTT_RX_INDICATION_INFO0_LEGACY_RATE_CCK (1 << 5)
570 #define HTT_RX_INDICATION_INFO0_END_VALID (1 << 6)
571 #define HTT_RX_INDICATION_INFO0_START_VALID (1 << 7)
573 #define HTT_RX_INDICATION_INFO1_VHT_SIG_A1_MASK 0x00FFFFFF
574 #define HTT_RX_INDICATION_INFO1_VHT_SIG_A1_LSB 0
575 #define HTT_RX_INDICATION_INFO1_PREAMBLE_TYPE_MASK 0xFF000000
576 #define HTT_RX_INDICATION_INFO1_PREAMBLE_TYPE_LSB 24
578 #define HTT_RX_INDICATION_INFO2_VHT_SIG_A1_MASK 0x00FFFFFF
579 #define HTT_RX_INDICATION_INFO2_VHT_SIG_A1_LSB 0
580 #define HTT_RX_INDICATION_INFO2_SERVICE_MASK 0xFF000000
581 #define HTT_RX_INDICATION_INFO2_SERVICE_LSB 24
583 enum htt_rx_legacy_rate
{
594 HTT_RX_CCK_11_LP
= 0,
595 HTT_RX_CCK_5_5_LP
= 1,
604 enum htt_rx_legacy_rate_type
{
605 HTT_RX_LEGACY_RATE_OFDM
= 0,
606 HTT_RX_LEGACY_RATE_CCK
609 enum htt_rx_preamble_type
{
612 HTT_RX_HT_WITH_TXBF
= 0x9,
614 HTT_RX_VHT_WITH_TXBF
= 0xD,
618 * Fields: phy_err_valid, phy_err_code, tsf,
619 * usec_timestamp, sub_usec_timestamp
620 * ..are valid only if end_valid == 1.
622 * Fields: rssi_chains, legacy_rate_type,
623 * legacy_rate_cck, preamble_type, service,
625 * ..are valid only if start_valid == 1;
627 struct htt_rx_indication_ppdu
{
629 u8 sub_usec_timestamp
;
631 u8 info0
; /* HTT_RX_INDICATION_INFO0_ */
637 } __packed rssi_chains
[4];
639 __le32 usec_timestamp
;
640 __le32 info1
; /* HTT_RX_INDICATION_INFO1_ */
641 __le32 info2
; /* HTT_RX_INDICATION_INFO2_ */
644 enum htt_rx_mpdu_status
{
645 HTT_RX_IND_MPDU_STATUS_UNKNOWN
= 0x0,
646 HTT_RX_IND_MPDU_STATUS_OK
,
647 HTT_RX_IND_MPDU_STATUS_ERR_FCS
,
648 HTT_RX_IND_MPDU_STATUS_ERR_DUP
,
649 HTT_RX_IND_MPDU_STATUS_ERR_REPLAY
,
650 HTT_RX_IND_MPDU_STATUS_ERR_INV_PEER
,
651 /* only accept EAPOL frames */
652 HTT_RX_IND_MPDU_STATUS_UNAUTH_PEER
,
653 HTT_RX_IND_MPDU_STATUS_OUT_OF_SYNC
,
654 /* Non-data in promiscuous mode */
655 HTT_RX_IND_MPDU_STATUS_MGMT_CTRL
,
656 HTT_RX_IND_MPDU_STATUS_TKIP_MIC_ERR
,
657 HTT_RX_IND_MPDU_STATUS_DECRYPT_ERR
,
658 HTT_RX_IND_MPDU_STATUS_MPDU_LENGTH_ERR
,
659 HTT_RX_IND_MPDU_STATUS_ENCRYPT_REQUIRED_ERR
,
660 HTT_RX_IND_MPDU_STATUS_PRIVACY_ERR
,
663 * MISC: discard for unspecified reasons.
664 * Leave this enum value last.
666 HTT_RX_IND_MPDU_STATUS_ERR_MISC
= 0xFF
669 struct htt_rx_indication_mpdu_range
{
671 u8 mpdu_range_status
; /* %htt_rx_mpdu_status */
676 struct htt_rx_indication_prefix
{
677 __le16 fw_rx_desc_bytes
;
682 struct htt_rx_indication
{
683 struct htt_rx_indication_hdr hdr
;
684 struct htt_rx_indication_ppdu ppdu
;
685 struct htt_rx_indication_prefix prefix
;
688 * the following fields are both dynamically sized, so
689 * take care addressing them
692 /* the size of this is %fw_rx_desc_bytes */
693 struct fw_rx_desc_base fw_desc
;
696 * %mpdu_ranges starts after &%prefix + roundup(%fw_rx_desc_bytes, 4)
697 * and has %num_mpdu_ranges elements.
699 struct htt_rx_indication_mpdu_range mpdu_ranges
[0];
702 static inline struct htt_rx_indication_mpdu_range
*
703 htt_rx_ind_get_mpdu_ranges(struct htt_rx_indication
*rx_ind
)
707 ptr
+= sizeof(rx_ind
->hdr
)
708 + sizeof(rx_ind
->ppdu
)
709 + sizeof(rx_ind
->prefix
)
710 + roundup(__le16_to_cpu(rx_ind
->prefix
.fw_rx_desc_bytes
), 4);
714 enum htt_rx_flush_mpdu_status
{
715 HTT_RX_FLUSH_MPDU_DISCARD
= 0,
716 HTT_RX_FLUSH_MPDU_REORDER
= 1,
720 * htt_rx_flush - discard or reorder given range of mpdus
722 * Note: host must check if all sequence numbers between
723 * [seq_num_start, seq_num_end-1] are valid.
725 struct htt_rx_flush
{
729 u8 mpdu_status
; /* %htt_rx_flush_mpdu_status */
730 u8 seq_num_start
; /* it is 6 LSBs of 802.11 seq no */
731 u8 seq_num_end
; /* it is 6 LSBs of 802.11 seq no */
734 struct htt_rx_peer_map
{
742 struct htt_rx_peer_unmap
{
747 enum htt_security_types
{
753 HTT_SECURITY_TKIP_NOMIC
,
754 HTT_SECURITY_AES_CCMP
,
757 HTT_NUM_SECURITY_TYPES
/* keep this last! */
760 enum htt_security_flags
{
761 #define HTT_SECURITY_TYPE_MASK 0x7F
762 #define HTT_SECURITY_TYPE_LSB 0
763 HTT_SECURITY_IS_UNICAST
= 1 << 7
766 struct htt_security_indication
{
768 /* dont use bitfields; undefined behaviour */
769 u8 flags
; /* %htt_security_flags */
771 u8 security_type
:7, /* %htt_security_types */
780 #define HTT_RX_BA_INFO0_TID_MASK 0x000F
781 #define HTT_RX_BA_INFO0_TID_LSB 0
782 #define HTT_RX_BA_INFO0_PEER_ID_MASK 0xFFF0
783 #define HTT_RX_BA_INFO0_PEER_ID_LSB 4
785 struct htt_rx_addba
{
787 __le16 info0
; /* %HTT_RX_BA_INFO0_ */
790 struct htt_rx_delba
{
792 __le16 info0
; /* %HTT_RX_BA_INFO0_ */
795 enum htt_data_tx_status
{
796 HTT_DATA_TX_STATUS_OK
= 0,
797 HTT_DATA_TX_STATUS_DISCARD
= 1,
798 HTT_DATA_TX_STATUS_NO_ACK
= 2,
799 HTT_DATA_TX_STATUS_POSTPONE
= 3, /* HL only */
800 HTT_DATA_TX_STATUS_DOWNLOAD_FAIL
= 128
803 enum htt_data_tx_flags
{
804 #define HTT_DATA_TX_STATUS_MASK 0x07
805 #define HTT_DATA_TX_STATUS_LSB 0
806 #define HTT_DATA_TX_TID_MASK 0x78
807 #define HTT_DATA_TX_TID_LSB 3
808 HTT_DATA_TX_TID_INVALID
= 1 << 7
811 #define HTT_TX_COMPL_INV_MSDU_ID 0xFFFF
813 struct htt_data_tx_completion
{
824 __le16 msdus
[0]; /* variable length based on %num_msdus */
827 struct htt_tx_compl_ind_base
{
829 u16 payload
[1/*or more*/];
832 struct htt_rc_tx_done_params
{
836 u32 num_enqued
; /* 1 for non-AMPDU */
838 u32 num_failed
; /* for AMPDU */
844 struct htt_rc_update
{
850 struct htt_rc_tx_done_params params
[0]; /* variable length %num_elems */
853 /* see htt_rx_indication for similar fields and descriptions */
854 struct htt_rx_fragment_indication
{
856 u8 info0
; /* %HTT_RX_FRAG_IND_INFO0_ */
863 __le32 info1
; /* %HTT_RX_FRAG_IND_INFO1_ */
864 __le16 fw_rx_desc_bytes
;
867 u8 fw_msdu_rx_desc
[0];
870 #define HTT_RX_FRAG_IND_INFO0_EXT_TID_MASK 0x1F
871 #define HTT_RX_FRAG_IND_INFO0_EXT_TID_LSB 0
872 #define HTT_RX_FRAG_IND_INFO0_FLUSH_VALID_MASK 0x20
873 #define HTT_RX_FRAG_IND_INFO0_FLUSH_VALID_LSB 5
875 #define HTT_RX_FRAG_IND_INFO1_FLUSH_SEQ_NUM_START_MASK 0x0000003F
876 #define HTT_RX_FRAG_IND_INFO1_FLUSH_SEQ_NUM_START_LSB 0
877 #define HTT_RX_FRAG_IND_INFO1_FLUSH_SEQ_NUM_END_MASK 0x00000FC0
878 #define HTT_RX_FRAG_IND_INFO1_FLUSH_SEQ_NUM_END_LSB 6
880 struct htt_rx_pn_ind
{
890 struct htt_rx_offload_msdu
{
899 struct htt_rx_offload_ind
{
904 struct htt_rx_in_ord_msdu_desc
{
911 struct htt_rx_in_ord_msdu_desc_ext
{
918 struct htt_rx_in_ord_ind
{
925 struct htt_rx_in_ord_msdu_desc msdu_descs32
[0];
926 struct htt_rx_in_ord_msdu_desc_ext msdu_descs64
[0];
930 #define HTT_RX_IN_ORD_IND_INFO_TID_MASK 0x0000001f
931 #define HTT_RX_IN_ORD_IND_INFO_TID_LSB 0
932 #define HTT_RX_IN_ORD_IND_INFO_OFFLOAD_MASK 0x00000020
933 #define HTT_RX_IN_ORD_IND_INFO_OFFLOAD_LSB 5
934 #define HTT_RX_IN_ORD_IND_INFO_FRAG_MASK 0x00000040
935 #define HTT_RX_IN_ORD_IND_INFO_FRAG_LSB 6
938 * target -> host test message definition
940 * The following field definitions describe the format of the test
941 * message sent from the target to the host.
942 * The message consists of a 4-octet header, followed by a variable
943 * number of 32-bit integer values, followed by a variable number
944 * of 8-bit character values.
947 * |-----------------------------------------------------------|
948 * | num chars | num ints | msg type |
949 * |-----------------------------------------------------------|
951 * |-----------------------------------------------------------|
953 * |-----------------------------------------------------------|
955 * |-----------------------------------------------------------|
956 * | char 3 | char 2 | char 1 | char 0 |
957 * |-----------------------------------------------------------|
958 * | | | ... | char 4 |
959 * |-----------------------------------------------------------|
962 * Purpose: identifies this as a test message
963 * Value: HTT_MSG_TYPE_TEST
966 * Purpose: indicate how many 32-bit integers follow the message header
969 * Purpose: indicate how many 8-bit characters follow the series of integers
975 /* payload consists of 2 lists:
976 * a) num_ints * sizeof(__le32)
977 * b) num_chars * sizeof(u8) aligned to 4bytes
982 static inline __le32
*htt_rx_test_get_ints(struct htt_rx_test
*rx_test
)
984 return (__le32
*)rx_test
->payload
;
987 static inline u8
*htt_rx_test_get_chars(struct htt_rx_test
*rx_test
)
989 return rx_test
->payload
+ (rx_test
->num_ints
* sizeof(__le32
));
993 * target -> host packet log message
995 * The following field definitions describe the format of the packet log
996 * message sent from the target to the host.
997 * The message consists of a 4-octet header,followed by a variable number
998 * of 32-bit character values.
1000 * |31 24|23 16|15 8|7 0|
1001 * |-----------------------------------------------------------|
1002 * | | | | msg type |
1003 * |-----------------------------------------------------------|
1005 * |-----------------------------------------------------------|
1008 * Purpose: identifies this as a test message
1009 * Value: HTT_MSG_TYPE_PACKETLOG
1011 struct htt_pktlog_msg
{
1016 struct htt_dbg_stats_rx_reorder_stats
{
1017 /* Non QoS MPDUs received */
1018 __le32 deliver_non_qos
;
1020 /* MPDUs received in-order */
1021 __le32 deliver_in_order
;
1023 /* Flush due to reorder timer expired */
1024 __le32 deliver_flush_timeout
;
1026 /* Flush due to move out of window */
1027 __le32 deliver_flush_oow
;
1029 /* Flush due to DELBA */
1030 __le32 deliver_flush_delba
;
1032 /* MPDUs dropped due to FCS error */
1035 /* MPDUs dropped due to monitor mode non-data packet */
1038 /* MPDUs dropped due to invalid peer */
1039 __le32 invalid_peer
;
1041 /* MPDUs dropped due to duplication (non aggregation) */
1042 __le32 dup_non_aggr
;
1044 /* MPDUs dropped due to processed before */
1047 /* MPDUs dropped due to duplicate in reorder queue */
1048 __le32 dup_in_reorder
;
1050 /* Reorder timeout happened */
1051 __le32 reorder_timeout
;
1053 /* invalid bar ssn */
1054 __le32 invalid_bar_ssn
;
1056 /* reorder reset due to bar ssn */
1060 struct htt_dbg_stats_wal_tx_stats
{
1061 /* Num HTT cookies queued to dispatch list */
1064 /* Num HTT cookies dispatched */
1065 __le32 comp_delivered
;
1067 /* Num MSDU queued to WAL */
1070 /* Num MPDU queue to WAL */
1073 /* Num MSDUs dropped by WMM limit */
1076 /* Num Local frames queued */
1077 __le32 local_enqued
;
1079 /* Num Local frames done */
1082 /* Num queued to HW */
1085 /* Num PPDU reaped from HW */
1091 /* Num PPDUs cleaned up in TX abort */
1094 /* Num MPDUs requed by SW */
1095 __le32 mpdus_requed
;
1097 /* excessive retries */
1100 /* data hw rate code */
1103 /* Scheduler self triggers */
1104 __le32 self_triggers
;
1106 /* frames dropped due to excessive sw retries */
1107 __le32 sw_retry_failure
;
1109 /* illegal rate phy errors */
1110 __le32 illgl_rate_phy_err
;
1112 /* wal pdev continuous xretry */
1113 __le32 pdev_cont_xretry
;
1115 /* wal pdev continuous xretry */
1116 __le32 pdev_tx_timeout
;
1118 /* wal pdev resets */
1121 __le32 phy_underrun
;
1123 /* MPDU is more than txop limit */
1127 struct htt_dbg_stats_wal_rx_stats
{
1128 /* Cnts any change in ring routing mid-ppdu */
1129 __le32 mid_ppdu_route_change
;
1131 /* Total number of statuses processed */
1134 /* Extra frags on rings 0-3 */
1140 /* MSDUs / MPDUs delivered to HTT */
1144 /* MSDUs / MPDUs delivered to local stack */
1148 /* AMSDUs that have more MSDUs than the status ring size */
1149 __le32 oversize_amsdu
;
1151 /* Number of PHY errors */
1154 /* Number of PHY errors drops */
1155 __le32 phy_err_drop
;
1157 /* Number of mpdu errors - FCS, MIC, ENC etc. */
1161 struct htt_dbg_stats_wal_peer_stats
{
1162 __le32 dummy
; /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
1165 struct htt_dbg_stats_wal_pdev_txrx
{
1166 struct htt_dbg_stats_wal_tx_stats tx_stats
;
1167 struct htt_dbg_stats_wal_rx_stats rx_stats
;
1168 struct htt_dbg_stats_wal_peer_stats peer_stats
;
1171 struct htt_dbg_stats_rx_rate_info
{
1183 * htt_dbg_stats_status -
1184 * present - The requested stats have been delivered in full.
1185 * This indicates that either the stats information was contained
1186 * in its entirety within this message, or else this message
1187 * completes the delivery of the requested stats info that was
1188 * partially delivered through earlier STATS_CONF messages.
1189 * partial - The requested stats have been delivered in part.
1190 * One or more subsequent STATS_CONF messages with the same
1191 * cookie value will be sent to deliver the remainder of the
1193 * error - The requested stats could not be delivered, for example due
1194 * to a shortage of memory to construct a message holding the
1196 * invalid - The requested stat type is either not recognized, or the
1197 * target is configured to not gather the stats type in question.
1198 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1199 * series_done - This special value indicates that no further stats info
1200 * elements are present within a series of stats info elems
1201 * (within a stats upload confirmation message).
1203 enum htt_dbg_stats_status
{
1204 HTT_DBG_STATS_STATUS_PRESENT
= 0,
1205 HTT_DBG_STATS_STATUS_PARTIAL
= 1,
1206 HTT_DBG_STATS_STATUS_ERROR
= 2,
1207 HTT_DBG_STATS_STATUS_INVALID
= 3,
1208 HTT_DBG_STATS_STATUS_SERIES_DONE
= 7
1212 * target -> host statistics upload
1214 * The following field definitions describe the format of the HTT target
1215 * to host stats upload confirmation message.
1216 * The message contains a cookie echoed from the HTT host->target stats
1217 * upload request, which identifies which request the confirmation is
1218 * for, and a series of tag-length-value stats information elements.
1219 * The tag-length header for each stats info element also includes a
1220 * status field, to indicate whether the request for the stat type in
1221 * question was fully met, partially met, unable to be met, or invalid
1222 * (if the stat type in question is disabled in the target).
1223 * A special value of all 1's in this status field is used to indicate
1224 * the end of the series of stats info elements.
1227 * |31 16|15 8|7 5|4 0|
1228 * |------------------------------------------------------------|
1229 * | reserved | msg type |
1230 * |------------------------------------------------------------|
1232 * |------------------------------------------------------------|
1234 * |------------------------------------------------------------|
1235 * | stats entry length | reserved | S |stat type|
1236 * |------------------------------------------------------------|
1238 * | type-specific stats info |
1240 * |------------------------------------------------------------|
1241 * | stats entry length | reserved | S |stat type|
1242 * |------------------------------------------------------------|
1244 * | type-specific stats info |
1246 * |------------------------------------------------------------|
1247 * | n/a | reserved | 111 | n/a |
1248 * |------------------------------------------------------------|
1252 * Purpose: identifies this is a statistics upload confirmation message
1256 * Purpose: Provide a mechanism to match a target->host stats confirmation
1257 * message with its preceding host->target stats request message.
1258 * Value: LSBs of the opaque cookie specified by the host-side requestor
1261 * Purpose: Provide a mechanism to match a target->host stats confirmation
1262 * message with its preceding host->target stats request message.
1263 * Value: MSBs of the opaque cookie specified by the host-side requestor
1265 * Stats Information Element tag-length header fields:
1268 * Purpose: identifies the type of statistics info held in the
1269 * following information element
1270 * Value: htt_dbg_stats_type
1273 * Purpose: indicate whether the requested stats are present
1274 * Value: htt_dbg_stats_status, including a special value (0x7) to mark
1275 * the completion of the stats entry series
1278 * Purpose: indicate the stats information size
1279 * Value: This field specifies the number of bytes of stats information
1280 * that follows the element tag-length header.
1281 * It is expected but not required that this length is a multiple of
1282 * 4 bytes. Even if the length is not an integer multiple of 4, the
1283 * subsequent stats entry header will begin on a 4-byte aligned
1287 #define HTT_STATS_CONF_ITEM_INFO_STAT_TYPE_MASK 0x1F
1288 #define HTT_STATS_CONF_ITEM_INFO_STAT_TYPE_LSB 0
1289 #define HTT_STATS_CONF_ITEM_INFO_STATUS_MASK 0xE0
1290 #define HTT_STATS_CONF_ITEM_INFO_STATUS_LSB 5
1292 struct htt_stats_conf_item
{
1296 u8 stat_type
:5; /* %HTT_DBG_STATS_ */
1297 u8 status
:3; /* %HTT_DBG_STATS_STATUS_ */
1302 u8 payload
[0]; /* roundup(length, 4) long */
1305 struct htt_stats_conf
{
1310 /* each item has variable length! */
1311 struct htt_stats_conf_item items
[0];
1314 static inline struct htt_stats_conf_item
*htt_stats_conf_next_item(
1315 const struct htt_stats_conf_item
*item
)
1317 return (void *)item
+ sizeof(*item
) + roundup(item
->length
, 4);
1321 * host -> target FRAG DESCRIPTOR/MSDU_EXT DESC bank
1323 * The following field definitions describe the format of the HTT host
1324 * to target frag_desc/msdu_ext bank configuration message.
1325 * The message contains the based address and the min and max id of the
1326 * MSDU_EXT/FRAG_DESC that will be used by the HTT to map MSDU DESC and
1327 * MSDU_EXT/FRAG_DESC.
1328 * HTT will use id in HTT descriptor instead sending the frag_desc_ptr.
1329 * For QCA988X HW the firmware will use fragment_desc_ptr but in WIFI2.0
1330 * the hardware does the mapping/translation.
1332 * Total banks that can be configured is configured to 16.
1334 * This should be called before any TX has be initiated by the HTT
1336 * |31 16|15 8|7 5|4 0|
1337 * |------------------------------------------------------------|
1338 * | DESC_SIZE | NUM_BANKS | RES |SWP|pdev| msg type |
1339 * |------------------------------------------------------------|
1340 * | BANK0_BASE_ADDRESS |
1341 * |------------------------------------------------------------|
1343 * |------------------------------------------------------------|
1344 * | BANK15_BASE_ADDRESS |
1345 * |------------------------------------------------------------|
1346 * | BANK0_MAX_ID | BANK0_MIN_ID |
1347 * |------------------------------------------------------------|
1349 * |------------------------------------------------------------|
1350 * | BANK15_MAX_ID | BANK15_MIN_ID |
1351 * |------------------------------------------------------------|
1356 * - BANKx_BASE_ADDRESS
1358 * Purpose: Provide a mechanism to specify the base address of the MSDU_EXT
1359 * bank physical/bus address.
1362 * Purpose: Provide a mechanism to specify the min index that needs to
1366 * Purpose: Provide a mechanism to specify the max index that needs to
1369 struct htt_frag_desc_bank_id
{
1374 /* real is 16 but it wouldn't fit in the max htt message size
1375 * so we use a conservatively safe value for now
1377 #define HTT_FRAG_DESC_BANK_MAX 4
1379 #define HTT_FRAG_DESC_BANK_CFG_INFO_PDEV_ID_MASK 0x03
1380 #define HTT_FRAG_DESC_BANK_CFG_INFO_PDEV_ID_LSB 0
1381 #define HTT_FRAG_DESC_BANK_CFG_INFO_SWAP BIT(2)
1382 #define HTT_FRAG_DESC_BANK_CFG_INFO_Q_STATE_VALID BIT(3)
1383 #define HTT_FRAG_DESC_BANK_CFG_INFO_Q_STATE_DEPTH_TYPE_MASK BIT(4)
1384 #define HTT_FRAG_DESC_BANK_CFG_INFO_Q_STATE_DEPTH_TYPE_LSB 4
1386 enum htt_q_depth_type
{
1387 HTT_Q_DEPTH_TYPE_BYTES
= 0,
1388 HTT_Q_DEPTH_TYPE_MSDUS
= 1,
1391 #define HTT_TX_Q_STATE_NUM_PEERS (TARGET_10_4_NUM_QCACHE_PEERS_MAX + \
1392 TARGET_10_4_NUM_VDEVS)
1393 #define HTT_TX_Q_STATE_NUM_TIDS 8
1394 #define HTT_TX_Q_STATE_ENTRY_SIZE 1
1395 #define HTT_TX_Q_STATE_ENTRY_MULTIPLIER 0
1398 * htt_q_state_conf - part of htt_frag_desc_bank_cfg for host q state config
1400 * Defines host q state format and behavior. See htt_q_state.
1402 * @record_size: Defines the size of each host q entry in bytes. In practice
1403 * however firmware (at least 10.4.3-00191) ignores this host
1404 * configuration value and uses hardcoded value of 1.
1405 * @record_multiplier: This is valid only when q depth type is MSDUs. It
1406 * defines the exponent for the power of 2 multiplication.
1408 struct htt_q_state_conf
{
1413 u8 record_multiplier
;
1417 struct htt_frag_desc_bank_cfg32
{
1418 u8 info
; /* HTT_FRAG_DESC_BANK_CFG_INFO_ */
1421 __le32 bank_base_addrs
[HTT_FRAG_DESC_BANK_MAX
];
1422 struct htt_frag_desc_bank_id bank_id
[HTT_FRAG_DESC_BANK_MAX
];
1423 struct htt_q_state_conf q_state
;
1426 struct htt_frag_desc_bank_cfg64
{
1427 u8 info
; /* HTT_FRAG_DESC_BANK_CFG_INFO_ */
1430 __le64 bank_base_addrs
[HTT_FRAG_DESC_BANK_MAX
];
1431 struct htt_frag_desc_bank_id bank_id
[HTT_FRAG_DESC_BANK_MAX
];
1432 struct htt_q_state_conf q_state
;
1435 #define HTT_TX_Q_STATE_ENTRY_COEFFICIENT 128
1436 #define HTT_TX_Q_STATE_ENTRY_FACTOR_MASK 0x3f
1437 #define HTT_TX_Q_STATE_ENTRY_FACTOR_LSB 0
1438 #define HTT_TX_Q_STATE_ENTRY_EXP_MASK 0xc0
1439 #define HTT_TX_Q_STATE_ENTRY_EXP_LSB 6
1442 * htt_q_state - shared between host and firmware via DMA
1444 * This structure is used for the host to expose it's software queue state to
1445 * firmware so that its rate control can schedule fetch requests for optimized
1446 * performance. This is most notably used for MU-MIMO aggregation when multiple
1447 * MU clients are connected.
1449 * @count: Each element defines the host queue depth. When q depth type was
1450 * configured as HTT_Q_DEPTH_TYPE_BYTES then each entry is defined as:
1451 * FACTOR * 128 * 8^EXP (see HTT_TX_Q_STATE_ENTRY_FACTOR_MASK and
1452 * HTT_TX_Q_STATE_ENTRY_EXP_MASK). When q depth type was configured as
1453 * HTT_Q_DEPTH_TYPE_MSDUS the number of packets is scaled by 2 **
1454 * record_multiplier (see htt_q_state_conf).
1455 * @map: Used by firmware to quickly check which host queues are not empty. It
1456 * is a bitmap simply saying.
1457 * @seq: Used by firmware to quickly check if the host queues were updated
1458 * since it last checked.
1460 * FIXME: Is the q_state map[] size calculation really correct?
1462 struct htt_q_state
{
1463 u8 count
[HTT_TX_Q_STATE_NUM_TIDS
][HTT_TX_Q_STATE_NUM_PEERS
];
1464 u32 map
[HTT_TX_Q_STATE_NUM_TIDS
][(HTT_TX_Q_STATE_NUM_PEERS
+ 31) / 32];
1468 #define HTT_TX_FETCH_RECORD_INFO_PEER_ID_MASK 0x0fff
1469 #define HTT_TX_FETCH_RECORD_INFO_PEER_ID_LSB 0
1470 #define HTT_TX_FETCH_RECORD_INFO_TID_MASK 0xf000
1471 #define HTT_TX_FETCH_RECORD_INFO_TID_LSB 12
1473 struct htt_tx_fetch_record
{
1474 __le16 info
; /* HTT_TX_FETCH_IND_RECORD_INFO_ */
1479 struct htt_tx_fetch_ind
{
1481 __le16 fetch_seq_num
;
1483 __le16 num_resp_ids
;
1485 struct htt_tx_fetch_record records
[0];
1486 __le32 resp_ids
[0]; /* ath10k_htt_get_tx_fetch_ind_resp_ids() */
1489 static inline void *
1490 ath10k_htt_get_tx_fetch_ind_resp_ids(struct htt_tx_fetch_ind
*ind
)
1492 return (void *)&ind
->records
[le16_to_cpu(ind
->num_records
)];
1495 struct htt_tx_fetch_resp
{
1498 __le16 fetch_seq_num
;
1501 struct htt_tx_fetch_record records
[0];
1504 struct htt_tx_fetch_confirm
{
1506 __le16 num_resp_ids
;
1510 enum htt_tx_mode_switch_mode
{
1511 HTT_TX_MODE_SWITCH_PUSH
= 0,
1512 HTT_TX_MODE_SWITCH_PUSH_PULL
= 1,
1515 #define HTT_TX_MODE_SWITCH_IND_INFO0_ENABLE BIT(0)
1516 #define HTT_TX_MODE_SWITCH_IND_INFO0_NUM_RECORDS_MASK 0xfffe
1517 #define HTT_TX_MODE_SWITCH_IND_INFO0_NUM_RECORDS_LSB 1
1519 #define HTT_TX_MODE_SWITCH_IND_INFO1_MODE_MASK 0x0003
1520 #define HTT_TX_MODE_SWITCH_IND_INFO1_MODE_LSB 0
1521 #define HTT_TX_MODE_SWITCH_IND_INFO1_THRESHOLD_MASK 0xfffc
1522 #define HTT_TX_MODE_SWITCH_IND_INFO1_THRESHOLD_LSB 2
1524 #define HTT_TX_MODE_SWITCH_RECORD_INFO0_PEER_ID_MASK 0x0fff
1525 #define HTT_TX_MODE_SWITCH_RECORD_INFO0_PEER_ID_LSB 0
1526 #define HTT_TX_MODE_SWITCH_RECORD_INFO0_TID_MASK 0xf000
1527 #define HTT_TX_MODE_SWITCH_RECORD_INFO0_TID_LSB 12
1529 struct htt_tx_mode_switch_record
{
1530 __le16 info0
; /* HTT_TX_MODE_SWITCH_RECORD_INFO0_ */
1531 __le16 num_max_msdus
;
1534 struct htt_tx_mode_switch_ind
{
1536 __le16 info0
; /* HTT_TX_MODE_SWITCH_IND_INFO0_ */
1537 __le16 info1
; /* HTT_TX_MODE_SWITCH_IND_INFO1_ */
1539 struct htt_tx_mode_switch_record records
[0];
1542 struct htt_channel_change
{
1545 __le32 center_freq1
;
1546 __le32 center_freq2
;
1550 struct htt_per_peer_tx_stats_ind
{
1553 __le32 failed_bytes
;
1565 struct htt_peer_tx_stats
{
1572 #define ATH10K_10_2_TX_STATS_OFFSET 136
1573 #define PEER_STATS_FOR_NO_OF_PPDUS 4
1575 struct ath10k_10_2_peer_tx_stats
{
1576 u8 ratecode
[PEER_STATS_FOR_NO_OF_PPDUS
];
1577 u8 success_pkts
[PEER_STATS_FOR_NO_OF_PPDUS
];
1578 __le16 success_bytes
[PEER_STATS_FOR_NO_OF_PPDUS
];
1579 u8 retry_pkts
[PEER_STATS_FOR_NO_OF_PPDUS
];
1580 __le16 retry_bytes
[PEER_STATS_FOR_NO_OF_PPDUS
];
1581 u8 failed_pkts
[PEER_STATS_FOR_NO_OF_PPDUS
];
1582 __le16 failed_bytes
[PEER_STATS_FOR_NO_OF_PPDUS
];
1583 u8 flags
[PEER_STATS_FOR_NO_OF_PPDUS
];
1590 /* WEP: 24-bit PN */
1593 /* TKIP or CCMP: 48-bit PN */
1596 /* WAPI: 128-bit PN */
1601 struct htt_cmd_hdr hdr
;
1603 struct htt_ver_req ver_req
;
1604 struct htt_mgmt_tx_desc mgmt_tx
;
1605 struct htt_data_tx_desc data_tx
;
1606 struct htt_rx_ring_setup_32 rx_setup_32
;
1607 struct htt_rx_ring_setup_64 rx_setup_64
;
1608 struct htt_stats_req stats_req
;
1609 struct htt_oob_sync_req oob_sync_req
;
1610 struct htt_aggr_conf aggr_conf
;
1611 struct htt_frag_desc_bank_cfg32 frag_desc_bank_cfg32
;
1612 struct htt_frag_desc_bank_cfg64 frag_desc_bank_cfg64
;
1613 struct htt_tx_fetch_resp tx_fetch_resp
;
1618 struct htt_resp_hdr hdr
;
1620 struct htt_ver_resp ver_resp
;
1621 struct htt_mgmt_tx_completion mgmt_tx_completion
;
1622 struct htt_data_tx_completion data_tx_completion
;
1623 struct htt_rx_indication rx_ind
;
1624 struct htt_rx_fragment_indication rx_frag_ind
;
1625 struct htt_rx_peer_map peer_map
;
1626 struct htt_rx_peer_unmap peer_unmap
;
1627 struct htt_rx_flush rx_flush
;
1628 struct htt_rx_addba rx_addba
;
1629 struct htt_rx_delba rx_delba
;
1630 struct htt_security_indication security_indication
;
1631 struct htt_rc_update rc_update
;
1632 struct htt_rx_test rx_test
;
1633 struct htt_pktlog_msg pktlog_msg
;
1634 struct htt_stats_conf stats_conf
;
1635 struct htt_rx_pn_ind rx_pn_ind
;
1636 struct htt_rx_offload_ind rx_offload_ind
;
1637 struct htt_rx_in_ord_ind rx_in_ord_ind
;
1638 struct htt_tx_fetch_ind tx_fetch_ind
;
1639 struct htt_tx_fetch_confirm tx_fetch_confirm
;
1640 struct htt_tx_mode_switch_ind tx_mode_switch_ind
;
1641 struct htt_channel_change chan_change
;
1642 struct htt_peer_tx_stats peer_tx_stats
;
1646 /*** host side structures follow ***/
1648 struct htt_tx_done
{
1653 enum htt_tx_compl_state
{
1654 HTT_TX_COMPL_STATE_NONE
,
1655 HTT_TX_COMPL_STATE_ACK
,
1656 HTT_TX_COMPL_STATE_NOACK
,
1657 HTT_TX_COMPL_STATE_DISCARD
,
1660 struct htt_peer_map_event
{
1666 struct htt_peer_unmap_event
{
1670 struct ath10k_htt_txbuf_32
{
1671 struct htt_data_tx_desc_frag frags
[2];
1672 struct ath10k_htc_hdr htc_hdr
;
1673 struct htt_cmd_hdr cmd_hdr
;
1674 struct htt_data_tx_desc cmd_tx
;
1677 struct ath10k_htt_txbuf_64
{
1678 struct htt_data_tx_desc_frag frags
[2];
1679 struct ath10k_htc_hdr htc_hdr
;
1680 struct htt_cmd_hdr cmd_hdr
;
1681 struct htt_data_tx_desc_64 cmd_tx
;
1686 enum ath10k_htc_ep_id eid
;
1688 u8 target_version_major
;
1689 u8 target_version_minor
;
1690 struct completion target_version_received
;
1694 const enum htt_t2h_msg_type
*t2h_msg_types
;
1695 u32 t2h_msg_types_max
;
1699 * Ring of network buffer objects - This ring is
1700 * used exclusively by the host SW. This ring
1701 * mirrors the dev_addrs_ring that is shared
1702 * between the host SW and the MAC HW. The host SW
1703 * uses this netbufs ring to locate the network
1704 * buffer objects whose data buffers the HW has
1707 struct sk_buff
**netbufs_ring
;
1709 /* This is used only with firmware supporting IN_ORD_IND.
1711 * With Full Rx Reorder the HTT Rx Ring is more of a temporary
1712 * buffer ring from which buffer addresses are copied by the
1713 * firmware to MAC Rx ring. Firmware then delivers IN_ORD_IND
1714 * pointing to specific (re-ordered) buffers.
1716 * FIXME: With kernel generic hashing functions there's a lot
1717 * of hash collisions for sk_buffs.
1720 DECLARE_HASHTABLE(skb_table
, 4);
1723 * Ring of buffer addresses -
1724 * This ring holds the "physical" device address of the
1725 * rx buffers the host SW provides for the MAC HW to
1729 __le64
*paddrs_ring_64
;
1730 __le32
*paddrs_ring_32
;
1734 * Base address of ring, as a "physical" device address
1735 * rather than a CPU address.
1737 dma_addr_t base_paddr
;
1739 /* how many elems in the ring (power of 2) */
1743 unsigned int size_mask
;
1745 /* how many rx buffers to keep in the ring */
1748 /* how many rx buffers (full+empty) are in the ring */
1752 * alloc_idx - where HTT SW has deposited empty buffers
1753 * This is allocated in consistent mem, so that the FW can
1754 * read this variable, and program the HW's FW_IDX reg with
1755 * the value of this shadow register.
1762 /* where HTT SW has processed bufs filled by rx MAC DMA */
1764 unsigned int msdu_payld
;
1768 * refill_retry_timer - timer triggered when the ring is
1769 * not refilled to the level expected
1771 struct timer_list refill_retry_timer
;
1773 /* Protects access to all rx ring buffer state variables */
1777 unsigned int prefetch_len
;
1779 /* Protects access to pending_tx, num_pending_tx */
1781 int max_num_pending_tx
;
1783 int num_pending_mgmt_tx
;
1784 struct idr pending_tx
;
1785 wait_queue_head_t empty_tx_wq
;
1787 /* FIFO for storing tx done status {ack, no-ack, discard} and msdu id */
1788 DECLARE_KFIFO_PTR(txdone_fifo
, struct htt_tx_done
);
1790 /* set if host-fw communication goes haywire
1791 * used to avoid further failures
1794 atomic_t num_mpdus_ready
;
1796 /* This is used to group tx/rx completions separately and process them
1797 * in batches to reduce cache stalls
1799 struct sk_buff_head rx_msdus_q
;
1800 struct sk_buff_head rx_in_ord_compl_q
;
1801 struct sk_buff_head tx_fetch_ind_q
;
1803 /* rx_status template */
1804 struct ieee80211_rx_status rx_status
;
1809 struct htt_msdu_ext_desc
*vaddr_desc_32
;
1810 struct htt_msdu_ext_desc_64
*vaddr_desc_64
;
1818 struct ath10k_htt_txbuf_32
*vaddr_txbuff_32
;
1819 struct ath10k_htt_txbuf_64
*vaddr_txbuff_64
;
1826 struct htt_q_state
*vaddr
;
1828 u16 num_push_allowed
;
1831 enum htt_tx_mode_switch_mode mode
;
1832 enum htt_q_depth_type type
;
1835 bool tx_mem_allocated
;
1836 const struct ath10k_htt_tx_ops
*tx_ops
;
1837 const struct ath10k_htt_rx_ops
*rx_ops
;
1840 struct ath10k_htt_tx_ops
{
1841 int (*htt_send_rx_ring_cfg
)(struct ath10k_htt
*htt
);
1842 int (*htt_send_frag_desc_bank_cfg
)(struct ath10k_htt
*htt
);
1843 int (*htt_alloc_frag_desc
)(struct ath10k_htt
*htt
);
1844 void (*htt_free_frag_desc
)(struct ath10k_htt
*htt
);
1845 int (*htt_tx
)(struct ath10k_htt
*htt
, enum ath10k_hw_txrx_mode txmode
,
1846 struct sk_buff
*msdu
);
1847 int (*htt_alloc_txbuff
)(struct ath10k_htt
*htt
);
1848 void (*htt_free_txbuff
)(struct ath10k_htt
*htt
);
1851 struct ath10k_htt_rx_ops
{
1852 size_t (*htt_get_rx_ring_size
)(struct ath10k_htt
*htt
);
1853 void (*htt_config_paddrs_ring
)(struct ath10k_htt
*htt
, void *vaddr
);
1854 void (*htt_set_paddrs_ring
)(struct ath10k_htt
*htt
, dma_addr_t paddr
,
1856 void* (*htt_get_vaddr_ring
)(struct ath10k_htt
*htt
);
1857 void (*htt_reset_paddrs_ring
)(struct ath10k_htt
*htt
, int idx
);
1860 #define RX_HTT_HDR_STATUS_LEN 64
1862 /* This structure layout is programmed via rx ring setup
1863 * so that FW knows how to transfer the rx descriptor to the host.
1864 * Buffers like this are placed on the rx ring.
1866 struct htt_rx_desc
{
1868 /* This field is filled on the host using the msdu buffer
1869 * from htt_rx_indication
1871 struct fw_rx_desc_base fw_desc
;
1875 struct rx_attention attention
;
1876 struct rx_frag_info frag_info
;
1877 struct rx_mpdu_start mpdu_start
;
1878 struct rx_msdu_start msdu_start
;
1879 struct rx_msdu_end msdu_end
;
1880 struct rx_mpdu_end mpdu_end
;
1881 struct rx_ppdu_start ppdu_start
;
1882 struct rx_ppdu_end ppdu_end
;
1884 u8 rx_hdr_status
[RX_HTT_HDR_STATUS_LEN
];
1888 #define HTT_RX_DESC_ALIGN 8
1890 #define HTT_MAC_ADDR_LEN 6
1894 * Should be: sizeof(struct htt_host_rx_desc) + max rx MSDU size,
1895 * rounded up to a cache line size.
1897 #define HTT_RX_BUF_SIZE 1920
1898 #define HTT_RX_MSDU_SIZE (HTT_RX_BUF_SIZE - (int)sizeof(struct htt_rx_desc))
1900 /* Refill a bunch of RX buffers for each refill round so that FW/HW can handle
1901 * aggregated traffic more nicely.
1903 #define ATH10K_HTT_MAX_NUM_REFILL 100
1906 * DMA_MAP expects the buffer to be an integral number of cache lines.
1907 * Rather than checking the actual cache line size, this code makes a
1908 * conservative estimate of what the cache line size could be.
1910 #define HTT_LOG2_MAX_CACHE_LINE_SIZE 7 /* 2^7 = 128 */
1911 #define HTT_MAX_CACHE_LINE_SIZE_MASK ((1 << HTT_LOG2_MAX_CACHE_LINE_SIZE) - 1)
1913 /* These values are default in most firmware revisions and apparently are a
1914 * sweet spot performance wise.
1916 #define ATH10K_HTT_MAX_NUM_AMSDU_DEFAULT 3
1917 #define ATH10K_HTT_MAX_NUM_AMPDU_DEFAULT 64
1919 int ath10k_htt_connect(struct ath10k_htt
*htt
);
1920 int ath10k_htt_init(struct ath10k
*ar
);
1921 int ath10k_htt_setup(struct ath10k_htt
*htt
);
1923 int ath10k_htt_tx_start(struct ath10k_htt
*htt
);
1924 void ath10k_htt_tx_stop(struct ath10k_htt
*htt
);
1925 void ath10k_htt_tx_destroy(struct ath10k_htt
*htt
);
1926 void ath10k_htt_tx_free(struct ath10k_htt
*htt
);
1928 int ath10k_htt_rx_alloc(struct ath10k_htt
*htt
);
1929 int ath10k_htt_rx_ring_refill(struct ath10k
*ar
);
1930 void ath10k_htt_rx_free(struct ath10k_htt
*htt
);
1932 void ath10k_htt_htc_tx_complete(struct ath10k
*ar
, struct sk_buff
*skb
);
1933 void ath10k_htt_htc_t2h_msg_handler(struct ath10k
*ar
, struct sk_buff
*skb
);
1934 bool ath10k_htt_t2h_msg_handler(struct ath10k
*ar
, struct sk_buff
*skb
);
1935 int ath10k_htt_h2t_ver_req_msg(struct ath10k_htt
*htt
);
1936 int ath10k_htt_h2t_stats_req(struct ath10k_htt
*htt
, u8 mask
, u64 cookie
);
1937 int ath10k_htt_h2t_aggr_cfg_msg(struct ath10k_htt
*htt
,
1938 u8 max_subfrms_ampdu
,
1939 u8 max_subfrms_amsdu
);
1940 void ath10k_htt_hif_tx_complete(struct ath10k
*ar
, struct sk_buff
*skb
);
1941 int ath10k_htt_tx_fetch_resp(struct ath10k
*ar
,
1943 __le16 fetch_seq_num
,
1944 struct htt_tx_fetch_record
*records
,
1945 size_t num_records
);
1947 void ath10k_htt_tx_txq_update(struct ieee80211_hw
*hw
,
1948 struct ieee80211_txq
*txq
);
1949 void ath10k_htt_tx_txq_recalc(struct ieee80211_hw
*hw
,
1950 struct ieee80211_txq
*txq
);
1951 void ath10k_htt_tx_txq_sync(struct ath10k
*ar
);
1952 void ath10k_htt_tx_dec_pending(struct ath10k_htt
*htt
);
1953 int ath10k_htt_tx_inc_pending(struct ath10k_htt
*htt
);
1954 void ath10k_htt_tx_mgmt_dec_pending(struct ath10k_htt
*htt
);
1955 int ath10k_htt_tx_mgmt_inc_pending(struct ath10k_htt
*htt
, bool is_mgmt
,
1958 int ath10k_htt_tx_alloc_msdu_id(struct ath10k_htt
*htt
, struct sk_buff
*skb
);
1959 void ath10k_htt_tx_free_msdu_id(struct ath10k_htt
*htt
, u16 msdu_id
);
1960 int ath10k_htt_mgmt_tx(struct ath10k_htt
*htt
, struct sk_buff
*msdu
);
1961 void ath10k_htt_rx_pktlog_completion_handler(struct ath10k
*ar
,
1962 struct sk_buff
*skb
);
1963 int ath10k_htt_txrx_compl_task(struct ath10k
*ar
, int budget
);
1964 void ath10k_htt_set_tx_ops(struct ath10k_htt
*htt
);
1965 void ath10k_htt_set_rx_ops(struct ath10k_htt
*htt
);