18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: ISC */ 28c2ecf20Sopenharmony_ci/* Copyright (C) 2020 MediaTek Inc. */ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef __MT7915_MAC_H 58c2ecf20Sopenharmony_ci#define __MT7915_MAC_H 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#define MT_CT_PARSE_LEN 72 88c2ecf20Sopenharmony_ci#define MT_CT_DMA_BUF_NUM 2 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#define MT_RXD0_LENGTH GENMASK(15, 0) 118c2ecf20Sopenharmony_ci#define MT_RXD0_PKT_TYPE GENMASK(31, 27) 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci#define MT_RXD0_NORMAL_ETH_TYPE_OFS GENMASK(22, 16) 148c2ecf20Sopenharmony_ci#define MT_RXD0_NORMAL_IP_SUM BIT(23) 158c2ecf20Sopenharmony_ci#define MT_RXD0_NORMAL_UDP_TCP_SUM BIT(24) 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_cienum rx_pkt_type { 188c2ecf20Sopenharmony_ci PKT_TYPE_TXS, 198c2ecf20Sopenharmony_ci PKT_TYPE_TXRXV, 208c2ecf20Sopenharmony_ci PKT_TYPE_NORMAL, 218c2ecf20Sopenharmony_ci PKT_TYPE_RX_DUP_RFB, 228c2ecf20Sopenharmony_ci PKT_TYPE_RX_TMR, 238c2ecf20Sopenharmony_ci PKT_TYPE_RETRIEVE, 248c2ecf20Sopenharmony_ci PKT_TYPE_TXRX_NOTIFY, 258c2ecf20Sopenharmony_ci PKT_TYPE_RX_EVENT, 268c2ecf20Sopenharmony_ci}; 278c2ecf20Sopenharmony_ci 288c2ecf20Sopenharmony_ci/* RXD DW1 */ 298c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_WLAN_IDX GENMASK(9, 0) 308c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_GROUP_1 BIT(11) 318c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_GROUP_2 BIT(12) 328c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_GROUP_3 BIT(13) 338c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_GROUP_4 BIT(14) 348c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_GROUP_5 BIT(15) 358c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_SEC_MODE GENMASK(20, 16) 368c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_KEY_ID GENMASK(22, 21) 378c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_CM BIT(23) 388c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_CLM BIT(24) 398c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_ICV_ERR BIT(25) 408c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_TKIP_MIC_ERR BIT(26) 418c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_FCS_ERR BIT(27) 428c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_BAND_IDX BIT(28) 438c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_SPP_EN BIT(29) 448c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_ADD_OM BIT(30) 458c2ecf20Sopenharmony_ci#define MT_RXD1_NORMAL_SEC_DONE BIT(31) 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_ci/* RXD DW2 */ 488c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_BSSID GENMASK(5, 0) 498c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_CO_ANT BIT(6) 508c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_BF_CQI BIT(7) 518c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_MAC_HDR_LEN GENMASK(12, 8) 528c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_HDR_TRANS BIT(13) 538c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_HDR_OFFSET GENMASK(15, 14) 548c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_TID GENMASK(19, 16) 558c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_MU_BAR BIT(21) 568c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_SW_BIT BIT(22) 578c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_AMSDU_ERR BIT(23) 588c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_MAX_LEN_ERROR BIT(24) 598c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_HDR_TRANS_ERROR BIT(25) 608c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_INT_FRAME BIT(26) 618c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_FRAG BIT(27) 628c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_NULL_FRAME BIT(28) 638c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_NDATA BIT(29) 648c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_NON_AMPDU BIT(30) 658c2ecf20Sopenharmony_ci#define MT_RXD2_NORMAL_BF_REPORT BIT(31) 668c2ecf20Sopenharmony_ci 678c2ecf20Sopenharmony_ci/* RXD DW3 */ 688c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_RXV_SEQ GENMASK(7, 0) 698c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_CH_FREQ GENMASK(15, 8) 708c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_ADDR_TYPE GENMASK(17, 16) 718c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_U2M BIT(0) 728c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_HTC_VLD BIT(0) 738c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_TSF_COMPARE_LOSS BIT(19) 748c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_BEACON_MC BIT(20) 758c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_BEACON_UC BIT(21) 768c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_AMSDU BIT(22) 778c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_MESH BIT(23) 788c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_MHCP BIT(24) 798c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_NO_INFO_WB BIT(25) 808c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_DISABLE_RX_HDR_TRANS BIT(26) 818c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_POWER_SAVE_STAT BIT(27) 828c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_MORE BIT(28) 838c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_UNWANT BIT(29) 848c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_RX_DROP BIT(30) 858c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_VLAN2ETH BIT(31) 868c2ecf20Sopenharmony_ci 878c2ecf20Sopenharmony_ci/* RXD DW4 */ 888c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_PAYLOAD_FORMAT GENMASK(1, 0) 898c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_PATTERN_DROP BIT(9) 908c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_CLS BIT(10) 918c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_OFLD GENMASK(12, 11) 928c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_MAGIC_PKT BIT(13) 938c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_WOL GENMASK(18, 14) 948c2ecf20Sopenharmony_ci#define MT_RXD4_NORMAL_CLS_BITMAP GENMASK(28, 19) 958c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_PF_MODE BIT(29) 968c2ecf20Sopenharmony_ci#define MT_RXD3_NORMAL_PF_STS GENMASK(31, 30) 978c2ecf20Sopenharmony_ci 988c2ecf20Sopenharmony_ci/* P-RXV */ 998c2ecf20Sopenharmony_ci#define MT_PRXV_TX_RATE GENMASK(6, 0) 1008c2ecf20Sopenharmony_ci#define MT_PRXV_TX_DCM BIT(4) 1018c2ecf20Sopenharmony_ci#define MT_PRXV_TX_ER_SU_106T BIT(5) 1028c2ecf20Sopenharmony_ci#define MT_PRXV_NSTS GENMASK(9, 7) 1038c2ecf20Sopenharmony_ci#define MT_PRXV_HT_AD_CODE BIT(11) 1048c2ecf20Sopenharmony_ci#define MT_PRXV_HE_RU_ALLOC_L GENMASK(31, 28) 1058c2ecf20Sopenharmony_ci#define MT_PRXV_HE_RU_ALLOC_H GENMASK(3, 0) 1068c2ecf20Sopenharmony_ci#define MT_PRXV_RCPI3 GENMASK(31, 24) 1078c2ecf20Sopenharmony_ci#define MT_PRXV_RCPI2 GENMASK(23, 16) 1088c2ecf20Sopenharmony_ci#define MT_PRXV_RCPI1 GENMASK(15, 8) 1098c2ecf20Sopenharmony_ci#define MT_PRXV_RCPI0 GENMASK(7, 0) 1108c2ecf20Sopenharmony_ci 1118c2ecf20Sopenharmony_ci/* C-RXV */ 1128c2ecf20Sopenharmony_ci#define MT_CRXV_HT_STBC GENMASK(1, 0) 1138c2ecf20Sopenharmony_ci#define MT_CRXV_TX_MODE GENMASK(7, 4) 1148c2ecf20Sopenharmony_ci#define MT_CRXV_FRAME_MODE GENMASK(10, 8) 1158c2ecf20Sopenharmony_ci#define MT_CRXV_HT_SHORT_GI GENMASK(14, 13) 1168c2ecf20Sopenharmony_ci#define MT_CRXV_HE_LTF_SIZE GENMASK(18, 17) 1178c2ecf20Sopenharmony_ci#define MT_CRXV_HE_LDPC_EXT_SYM BIT(20) 1188c2ecf20Sopenharmony_ci#define MT_CRXV_HE_PE_DISAMBIG BIT(23) 1198c2ecf20Sopenharmony_ci#define MT_CRXV_HE_UPLINK BIT(31) 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci#define MT_CRXV_HE_SR_MASK GENMASK(11, 8) 1228c2ecf20Sopenharmony_ci#define MT_CRXV_HE_SR1_MASK GENMASK(16, 12) 1238c2ecf20Sopenharmony_ci#define MT_CRXV_HE_SR2_MASK GENMASK(20, 17) 1248c2ecf20Sopenharmony_ci#define MT_CRXV_HE_SR3_MASK GENMASK(24, 21) 1258c2ecf20Sopenharmony_ci 1268c2ecf20Sopenharmony_ci#define MT_CRXV_HE_BSS_COLOR GENMASK(5, 0) 1278c2ecf20Sopenharmony_ci#define MT_CRXV_HE_TXOP_DUR GENMASK(12, 6) 1288c2ecf20Sopenharmony_ci#define MT_CRXV_HE_BEAM_CHNG BIT(13) 1298c2ecf20Sopenharmony_ci#define MT_CRXV_HE_DOPPLER BIT(16) 1308c2ecf20Sopenharmony_ci 1318c2ecf20Sopenharmony_cienum tx_header_format { 1328c2ecf20Sopenharmony_ci MT_HDR_FORMAT_802_3, 1338c2ecf20Sopenharmony_ci MT_HDR_FORMAT_CMD, 1348c2ecf20Sopenharmony_ci MT_HDR_FORMAT_802_11, 1358c2ecf20Sopenharmony_ci MT_HDR_FORMAT_802_11_EXT, 1368c2ecf20Sopenharmony_ci}; 1378c2ecf20Sopenharmony_ci 1388c2ecf20Sopenharmony_cienum tx_pkt_type { 1398c2ecf20Sopenharmony_ci MT_TX_TYPE_CT, 1408c2ecf20Sopenharmony_ci MT_TX_TYPE_SF, 1418c2ecf20Sopenharmony_ci MT_TX_TYPE_CMD, 1428c2ecf20Sopenharmony_ci MT_TX_TYPE_FW, 1438c2ecf20Sopenharmony_ci}; 1448c2ecf20Sopenharmony_ci 1458c2ecf20Sopenharmony_cienum tx_port_idx { 1468c2ecf20Sopenharmony_ci MT_TX_PORT_IDX_LMAC, 1478c2ecf20Sopenharmony_ci MT_TX_PORT_IDX_MCU 1488c2ecf20Sopenharmony_ci}; 1498c2ecf20Sopenharmony_ci 1508c2ecf20Sopenharmony_cienum tx_mcu_port_q_idx { 1518c2ecf20Sopenharmony_ci MT_TX_MCU_PORT_RX_Q0 = 0x20, 1528c2ecf20Sopenharmony_ci MT_TX_MCU_PORT_RX_Q1, 1538c2ecf20Sopenharmony_ci MT_TX_MCU_PORT_RX_Q2, 1548c2ecf20Sopenharmony_ci MT_TX_MCU_PORT_RX_Q3, 1558c2ecf20Sopenharmony_ci MT_TX_MCU_PORT_RX_FWDL = 0x3e 1568c2ecf20Sopenharmony_ci}; 1578c2ecf20Sopenharmony_ci 1588c2ecf20Sopenharmony_ci#define MT_CT_INFO_APPLY_TXD BIT(0) 1598c2ecf20Sopenharmony_ci#define MT_CT_INFO_COPY_HOST_TXD_ALL BIT(1) 1608c2ecf20Sopenharmony_ci#define MT_CT_INFO_MGMT_FRAME BIT(2) 1618c2ecf20Sopenharmony_ci#define MT_CT_INFO_NONE_CIPHER_FRAME BIT(3) 1628c2ecf20Sopenharmony_ci#define MT_CT_INFO_HSR2_TX BIT(4) 1638c2ecf20Sopenharmony_ci 1648c2ecf20Sopenharmony_ci#define MT_TXD_SIZE (8 * 4) 1658c2ecf20Sopenharmony_ci 1668c2ecf20Sopenharmony_ci#define MT_TXD0_Q_IDX GENMASK(31, 25) 1678c2ecf20Sopenharmony_ci#define MT_TXD0_PKT_FMT GENMASK(24, 23) 1688c2ecf20Sopenharmony_ci#define MT_TXD0_ETH_TYPE_OFFSET GENMASK(22, 16) 1698c2ecf20Sopenharmony_ci#define MT_TXD0_TX_BYTES GENMASK(15, 0) 1708c2ecf20Sopenharmony_ci 1718c2ecf20Sopenharmony_ci#define MT_TXD1_LONG_FORMAT BIT(31) 1728c2ecf20Sopenharmony_ci#define MT_TXD1_TGID BIT(30) 1738c2ecf20Sopenharmony_ci#define MT_TXD1_OWN_MAC GENMASK(29, 24) 1748c2ecf20Sopenharmony_ci#define MT_TXD1_AMSDU BIT(23) 1758c2ecf20Sopenharmony_ci#define MT_TXD1_TID GENMASK(22, 20) 1768c2ecf20Sopenharmony_ci#define MT_TXD1_HDR_PAD GENMASK(19, 18) 1778c2ecf20Sopenharmony_ci#define MT_TXD1_HDR_FORMAT GENMASK(17, 16) 1788c2ecf20Sopenharmony_ci#define MT_TXD1_HDR_INFO GENMASK(15, 11) 1798c2ecf20Sopenharmony_ci#define MT_TXD1_VTA BIT(10) 1808c2ecf20Sopenharmony_ci#define MT_TXD1_WLAN_IDX GENMASK(9, 0) 1818c2ecf20Sopenharmony_ci 1828c2ecf20Sopenharmony_ci#define MT_TXD2_FIX_RATE BIT(31) 1838c2ecf20Sopenharmony_ci#define MT_TXD2_FIXED_RATE BIT(30) 1848c2ecf20Sopenharmony_ci#define MT_TXD2_POWER_OFFSET GENMASK(29, 24) 1858c2ecf20Sopenharmony_ci#define MT_TXD2_MAX_TX_TIME GENMASK(23, 16) 1868c2ecf20Sopenharmony_ci#define MT_TXD2_FRAG GENMASK(15, 14) 1878c2ecf20Sopenharmony_ci#define MT_TXD2_HTC_VLD BIT(13) 1888c2ecf20Sopenharmony_ci#define MT_TXD2_DURATION BIT(12) 1898c2ecf20Sopenharmony_ci#define MT_TXD2_BIP BIT(11) 1908c2ecf20Sopenharmony_ci#define MT_TXD2_MULTICAST BIT(10) 1918c2ecf20Sopenharmony_ci#define MT_TXD2_RTS BIT(9) 1928c2ecf20Sopenharmony_ci#define MT_TXD2_SOUNDING BIT(8) 1938c2ecf20Sopenharmony_ci#define MT_TXD2_NDPA BIT(7) 1948c2ecf20Sopenharmony_ci#define MT_TXD2_NDP BIT(6) 1958c2ecf20Sopenharmony_ci#define MT_TXD2_FRAME_TYPE GENMASK(5, 4) 1968c2ecf20Sopenharmony_ci#define MT_TXD2_SUB_TYPE GENMASK(3, 0) 1978c2ecf20Sopenharmony_ci 1988c2ecf20Sopenharmony_ci#define MT_TXD3_SN_VALID BIT(31) 1998c2ecf20Sopenharmony_ci#define MT_TXD3_PN_VALID BIT(30) 2008c2ecf20Sopenharmony_ci#define MT_TXD3_SW_POWER_MGMT BIT(29) 2018c2ecf20Sopenharmony_ci#define MT_TXD3_BA_DISABLE BIT(28) 2028c2ecf20Sopenharmony_ci#define MT_TXD3_SEQ GENMASK(27, 16) 2038c2ecf20Sopenharmony_ci#define MT_TXD3_REM_TX_COUNT GENMASK(15, 11) 2048c2ecf20Sopenharmony_ci#define MT_TXD3_TX_COUNT GENMASK(10, 6) 2058c2ecf20Sopenharmony_ci#define MT_TXD3_TIMING_MEASURE BIT(5) 2068c2ecf20Sopenharmony_ci#define MT_TXD3_DAS BIT(4) 2078c2ecf20Sopenharmony_ci#define MT_TXD3_EEOSP BIT(3) 2088c2ecf20Sopenharmony_ci#define MT_TXD3_EMRD BIT(2) 2098c2ecf20Sopenharmony_ci#define MT_TXD3_PROTECT_FRAME BIT(1) 2108c2ecf20Sopenharmony_ci#define MT_TXD3_NO_ACK BIT(0) 2118c2ecf20Sopenharmony_ci 2128c2ecf20Sopenharmony_ci#define MT_TXD4_PN_LOW GENMASK(31, 0) 2138c2ecf20Sopenharmony_ci 2148c2ecf20Sopenharmony_ci#define MT_TXD5_PN_HIGH GENMASK(31, 16) 2158c2ecf20Sopenharmony_ci#define MT_TXD5_MD BIT(15) 2168c2ecf20Sopenharmony_ci#define MT_TXD5_ADD_BA BIT(14) 2178c2ecf20Sopenharmony_ci#define MT_TXD5_TX_STATUS_HOST BIT(10) 2188c2ecf20Sopenharmony_ci#define MT_TXD5_TX_STATUS_MCU BIT(9) 2198c2ecf20Sopenharmony_ci#define MT_TXD5_TX_STATUS_FMT BIT(8) 2208c2ecf20Sopenharmony_ci#define MT_TXD5_PID GENMASK(7, 0) 2218c2ecf20Sopenharmony_ci 2228c2ecf20Sopenharmony_ci#define MT_TXD6_TX_IBF BIT(31) 2238c2ecf20Sopenharmony_ci#define MT_TXD6_TX_EBF BIT(30) 2248c2ecf20Sopenharmony_ci#define MT_TXD6_TX_RATE GENMASK(29, 16) 2258c2ecf20Sopenharmony_ci#define MT_TXD6_SGI GENMASK(15, 14) 2268c2ecf20Sopenharmony_ci#define MT_TXD6_HELTF GENMASK(13, 12) 2278c2ecf20Sopenharmony_ci#define MT_TXD6_LDPC BIT(11) 2288c2ecf20Sopenharmony_ci#define MT_TXD6_SPE_ID_IDX BIT(10) 2298c2ecf20Sopenharmony_ci#define MT_TXD6_ANT_ID GENMASK(7, 4) 2308c2ecf20Sopenharmony_ci#define MT_TXD6_DYN_BW BIT(3) 2318c2ecf20Sopenharmony_ci#define MT_TXD6_FIXED_BW BIT(2) 2328c2ecf20Sopenharmony_ci#define MT_TXD6_BW GENMASK(2, 0) 2338c2ecf20Sopenharmony_ci 2348c2ecf20Sopenharmony_ci#define MT_TXD7_TXD_LEN GENMASK(31, 30) 2358c2ecf20Sopenharmony_ci#define MT_TXD7_UDP_TCP_SUM BIT(29) 2368c2ecf20Sopenharmony_ci#define MT_TXD7_IP_SUM BIT(28) 2378c2ecf20Sopenharmony_ci 2388c2ecf20Sopenharmony_ci#define MT_TXD7_TYPE GENMASK(21, 20) 2398c2ecf20Sopenharmony_ci#define MT_TXD7_SUB_TYPE GENMASK(19, 16) 2408c2ecf20Sopenharmony_ci 2418c2ecf20Sopenharmony_ci#define MT_TXD7_PSE_FID GENMASK(27, 16) 2428c2ecf20Sopenharmony_ci#define MT_TXD7_SPE_IDX GENMASK(15, 11) 2438c2ecf20Sopenharmony_ci#define MT_TXD7_HW_AMSDU BIT(10) 2448c2ecf20Sopenharmony_ci#define MT_TXD7_TX_TIME GENMASK(9, 0) 2458c2ecf20Sopenharmony_ci 2468c2ecf20Sopenharmony_ci#define MT_TX_RATE_STBC BIT(13) 2478c2ecf20Sopenharmony_ci#define MT_TX_RATE_NSS GENMASK(12, 10) 2488c2ecf20Sopenharmony_ci#define MT_TX_RATE_MODE GENMASK(9, 6) 2498c2ecf20Sopenharmony_ci#define MT_TX_RATE_IDX GENMASK(5, 0) 2508c2ecf20Sopenharmony_ci 2518c2ecf20Sopenharmony_ci#define MT_TXP_MAX_BUF_NUM 6 2528c2ecf20Sopenharmony_ci 2538c2ecf20Sopenharmony_cistruct mt7915_txp { 2548c2ecf20Sopenharmony_ci __le16 flags; 2558c2ecf20Sopenharmony_ci __le16 token; 2568c2ecf20Sopenharmony_ci u8 bss_idx; 2578c2ecf20Sopenharmony_ci u8 rept_wds_wcid; 2588c2ecf20Sopenharmony_ci u8 rsv; 2598c2ecf20Sopenharmony_ci u8 nbuf; 2608c2ecf20Sopenharmony_ci __le32 buf[MT_TXP_MAX_BUF_NUM]; 2618c2ecf20Sopenharmony_ci __le16 len[MT_TXP_MAX_BUF_NUM]; 2628c2ecf20Sopenharmony_ci} __packed __aligned(4); 2638c2ecf20Sopenharmony_ci 2648c2ecf20Sopenharmony_cistruct mt7915_tx_free { 2658c2ecf20Sopenharmony_ci __le16 rx_byte_cnt; 2668c2ecf20Sopenharmony_ci __le16 ctrl; 2678c2ecf20Sopenharmony_ci u8 txd_cnt; 2688c2ecf20Sopenharmony_ci u8 rsv[3]; 2698c2ecf20Sopenharmony_ci __le32 info[]; 2708c2ecf20Sopenharmony_ci} __packed __aligned(4); 2718c2ecf20Sopenharmony_ci 2728c2ecf20Sopenharmony_ci#define MT_TX_FREE_MSDU_CNT GENMASK(9, 0) 2738c2ecf20Sopenharmony_ci#define MT_TX_FREE_WLAN_ID GENMASK(23, 14) 2748c2ecf20Sopenharmony_ci#define MT_TX_FREE_LATENCY GENMASK(12, 0) 2758c2ecf20Sopenharmony_ci/* 0: success, others: dropped */ 2768c2ecf20Sopenharmony_ci#define MT_TX_FREE_STATUS GENMASK(14, 13) 2778c2ecf20Sopenharmony_ci#define MT_TX_FREE_MSDU_ID GENMASK(30, 16) 2788c2ecf20Sopenharmony_ci#define MT_TX_FREE_PAIR BIT(31) 2798c2ecf20Sopenharmony_ci/* will support this field in further revision */ 2808c2ecf20Sopenharmony_ci#define MT_TX_FREE_RATE GENMASK(13, 0) 2818c2ecf20Sopenharmony_ci 2828c2ecf20Sopenharmony_cistruct mt7915_dfs_pulse { 2838c2ecf20Sopenharmony_ci u32 max_width; /* us */ 2848c2ecf20Sopenharmony_ci int max_pwr; /* dbm */ 2858c2ecf20Sopenharmony_ci int min_pwr; /* dbm */ 2868c2ecf20Sopenharmony_ci u32 min_stgr_pri; /* us */ 2878c2ecf20Sopenharmony_ci u32 max_stgr_pri; /* us */ 2888c2ecf20Sopenharmony_ci u32 min_cr_pri; /* us */ 2898c2ecf20Sopenharmony_ci u32 max_cr_pri; /* us */ 2908c2ecf20Sopenharmony_ci}; 2918c2ecf20Sopenharmony_ci 2928c2ecf20Sopenharmony_cistruct mt7915_dfs_pattern { 2938c2ecf20Sopenharmony_ci u8 enb; 2948c2ecf20Sopenharmony_ci u8 stgr; 2958c2ecf20Sopenharmony_ci u8 min_crpn; 2968c2ecf20Sopenharmony_ci u8 max_crpn; 2978c2ecf20Sopenharmony_ci u8 min_crpr; 2988c2ecf20Sopenharmony_ci u8 min_pw; 2998c2ecf20Sopenharmony_ci u32 min_pri; 3008c2ecf20Sopenharmony_ci u32 max_pri; 3018c2ecf20Sopenharmony_ci u8 max_pw; 3028c2ecf20Sopenharmony_ci u8 min_crbn; 3038c2ecf20Sopenharmony_ci u8 max_crbn; 3048c2ecf20Sopenharmony_ci u8 min_stgpn; 3058c2ecf20Sopenharmony_ci u8 max_stgpn; 3068c2ecf20Sopenharmony_ci u8 min_stgpr; 3078c2ecf20Sopenharmony_ci u8 rsv[2]; 3088c2ecf20Sopenharmony_ci u32 min_stgpr_diff; 3098c2ecf20Sopenharmony_ci} __packed; 3108c2ecf20Sopenharmony_ci 3118c2ecf20Sopenharmony_cistruct mt7915_dfs_radar_spec { 3128c2ecf20Sopenharmony_ci struct mt7915_dfs_pulse pulse_th; 3138c2ecf20Sopenharmony_ci struct mt7915_dfs_pattern radar_pattern[16]; 3148c2ecf20Sopenharmony_ci}; 3158c2ecf20Sopenharmony_ci 3168c2ecf20Sopenharmony_cistatic inline struct mt7915_txp * 3178c2ecf20Sopenharmony_cimt7915_txwi_to_txp(struct mt76_dev *dev, struct mt76_txwi_cache *t) 3188c2ecf20Sopenharmony_ci{ 3198c2ecf20Sopenharmony_ci u8 *txwi; 3208c2ecf20Sopenharmony_ci 3218c2ecf20Sopenharmony_ci if (!t) 3228c2ecf20Sopenharmony_ci return NULL; 3238c2ecf20Sopenharmony_ci 3248c2ecf20Sopenharmony_ci txwi = mt76_get_txwi_ptr(dev, t); 3258c2ecf20Sopenharmony_ci 3268c2ecf20Sopenharmony_ci return (struct mt7915_txp *)(txwi + MT_TXD_SIZE); 3278c2ecf20Sopenharmony_ci} 3288c2ecf20Sopenharmony_ci 3298c2ecf20Sopenharmony_ci#endif 330