162306a36Sopenharmony_ci/* SPDX-License-Identifier: ISC */ 262306a36Sopenharmony_ci 362306a36Sopenharmony_ci#ifndef __MT7603_MAC_H 462306a36Sopenharmony_ci#define __MT7603_MAC_H 562306a36Sopenharmony_ci 662306a36Sopenharmony_ci#define MT_RXD0_LENGTH GENMASK(15, 0) 762306a36Sopenharmony_ci#define MT_RXD0_PKT_TYPE GENMASK(31, 29) 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#define MT_RXD0_NORMAL_ETH_TYPE_OFS GENMASK(22, 16) 1062306a36Sopenharmony_ci#define MT_RXD0_NORMAL_IP_SUM BIT(23) 1162306a36Sopenharmony_ci#define MT_RXD0_NORMAL_UDP_TCP_SUM BIT(24) 1262306a36Sopenharmony_ci#define MT_RXD0_NORMAL_GROUP_1 BIT(25) 1362306a36Sopenharmony_ci#define MT_RXD0_NORMAL_GROUP_2 BIT(26) 1462306a36Sopenharmony_ci#define MT_RXD0_NORMAL_GROUP_3 BIT(27) 1562306a36Sopenharmony_ci#define MT_RXD0_NORMAL_GROUP_4 BIT(28) 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_cienum rx_pkt_type { 1862306a36Sopenharmony_ci PKT_TYPE_TXS = 0, 1962306a36Sopenharmony_ci PKT_TYPE_TXRXV = 1, 2062306a36Sopenharmony_ci PKT_TYPE_NORMAL = 2, 2162306a36Sopenharmony_ci PKT_TYPE_RX_DUP_RFB = 3, 2262306a36Sopenharmony_ci PKT_TYPE_RX_TMR = 4, 2362306a36Sopenharmony_ci PKT_TYPE_RETRIEVE = 5, 2462306a36Sopenharmony_ci PKT_TYPE_RX_EVENT = 7, 2562306a36Sopenharmony_ci}; 2662306a36Sopenharmony_ci 2762306a36Sopenharmony_ci#define MT_RXD1_NORMAL_BSSID GENMASK(31, 26) 2862306a36Sopenharmony_ci#define MT_RXD1_NORMAL_PAYLOAD_FORMAT GENMASK(25, 24) 2962306a36Sopenharmony_ci#define MT_RXD1_NORMAL_HDR_TRANS BIT(23) 3062306a36Sopenharmony_ci#define MT_RXD1_NORMAL_HDR_OFFSET BIT(22) 3162306a36Sopenharmony_ci#define MT_RXD1_NORMAL_MAC_HDR_LEN GENMASK(21, 16) 3262306a36Sopenharmony_ci#define MT_RXD1_NORMAL_CH_FREQ GENMASK(15, 8) 3362306a36Sopenharmony_ci#define MT_RXD1_NORMAL_KEY_ID GENMASK(7, 6) 3462306a36Sopenharmony_ci#define MT_RXD1_NORMAL_BEACON_UC BIT(5) 3562306a36Sopenharmony_ci#define MT_RXD1_NORMAL_BEACON_MC BIT(4) 3662306a36Sopenharmony_ci#define MT_RXD1_NORMAL_BCAST BIT(3) 3762306a36Sopenharmony_ci#define MT_RXD1_NORMAL_MCAST BIT(2) 3862306a36Sopenharmony_ci#define MT_RXD1_NORMAL_U2M BIT(1) 3962306a36Sopenharmony_ci#define MT_RXD1_NORMAL_HTC_VLD BIT(0) 4062306a36Sopenharmony_ci 4162306a36Sopenharmony_ci#define MT_RXD2_NORMAL_NON_AMPDU BIT(31) 4262306a36Sopenharmony_ci#define MT_RXD2_NORMAL_NON_AMPDU_SUB BIT(30) 4362306a36Sopenharmony_ci#define MT_RXD2_NORMAL_NDATA BIT(29) 4462306a36Sopenharmony_ci#define MT_RXD2_NORMAL_NULL_FRAME BIT(28) 4562306a36Sopenharmony_ci#define MT_RXD2_NORMAL_FRAG BIT(27) 4662306a36Sopenharmony_ci#define MT_RXD2_NORMAL_UDF_VALID BIT(26) 4762306a36Sopenharmony_ci#define MT_RXD2_NORMAL_LLC_MIS BIT(25) 4862306a36Sopenharmony_ci#define MT_RXD2_NORMAL_MAX_LEN_ERROR BIT(24) 4962306a36Sopenharmony_ci#define MT_RXD2_NORMAL_AMSDU_ERR BIT(23) 5062306a36Sopenharmony_ci#define MT_RXD2_NORMAL_LEN_MISMATCH BIT(22) 5162306a36Sopenharmony_ci#define MT_RXD2_NORMAL_TKIP_MIC_ERR BIT(21) 5262306a36Sopenharmony_ci#define MT_RXD2_NORMAL_ICV_ERR BIT(20) 5362306a36Sopenharmony_ci#define MT_RXD2_NORMAL_CLM BIT(19) 5462306a36Sopenharmony_ci#define MT_RXD2_NORMAL_CM BIT(18) 5562306a36Sopenharmony_ci#define MT_RXD2_NORMAL_FCS_ERR BIT(17) 5662306a36Sopenharmony_ci#define MT_RXD2_NORMAL_SW_BIT BIT(16) 5762306a36Sopenharmony_ci#define MT_RXD2_NORMAL_SEC_MODE GENMASK(15, 12) 5862306a36Sopenharmony_ci#define MT_RXD2_NORMAL_TID GENMASK(11, 8) 5962306a36Sopenharmony_ci#define MT_RXD2_NORMAL_WLAN_IDX GENMASK(7, 0) 6062306a36Sopenharmony_ci 6162306a36Sopenharmony_ci#define MT_RXD3_NORMAL_PF_STS GENMASK(31, 30) 6262306a36Sopenharmony_ci#define MT_RXD3_NORMAL_PF_MODE BIT(29) 6362306a36Sopenharmony_ci#define MT_RXD3_NORMAL_CLS_BITMAP GENMASK(28, 19) 6462306a36Sopenharmony_ci#define MT_RXD3_NORMAL_WOL GENMASK(18, 14) 6562306a36Sopenharmony_ci#define MT_RXD3_NORMAL_MAGIC_PKT BIT(13) 6662306a36Sopenharmony_ci#define MT_RXD3_NORMAL_OFLD GENMASK(12, 11) 6762306a36Sopenharmony_ci#define MT_RXD3_NORMAL_CLS BIT(10) 6862306a36Sopenharmony_ci#define MT_RXD3_NORMAL_PATTERN_DROP BIT(9) 6962306a36Sopenharmony_ci#define MT_RXD3_NORMAL_TSF_COMPARE_LOSS BIT(8) 7062306a36Sopenharmony_ci#define MT_RXD3_NORMAL_RXV_SEQ GENMASK(7, 0) 7162306a36Sopenharmony_ci 7262306a36Sopenharmony_ci#define MT_RXV1_VHTA1_B5_B4 GENMASK(31, 30) 7362306a36Sopenharmony_ci#define MT_RXV1_VHTA2_B8_B1 GENMASK(29, 22) 7462306a36Sopenharmony_ci#define MT_RXV1_HT_NO_SOUND BIT(21) 7562306a36Sopenharmony_ci#define MT_RXV1_HT_SMOOTH BIT(20) 7662306a36Sopenharmony_ci#define MT_RXV1_HT_SHORT_GI BIT(19) 7762306a36Sopenharmony_ci#define MT_RXV1_HT_AGGR BIT(18) 7862306a36Sopenharmony_ci#define MT_RXV1_VHTA1_B22 BIT(17) 7962306a36Sopenharmony_ci#define MT_RXV1_FRAME_MODE GENMASK(16, 15) 8062306a36Sopenharmony_ci#define MT_RXV1_TX_MODE GENMASK(14, 12) 8162306a36Sopenharmony_ci#define MT_RXV1_HT_EXT_LTF GENMASK(11, 10) 8262306a36Sopenharmony_ci#define MT_RXV1_HT_AD_CODE BIT(9) 8362306a36Sopenharmony_ci#define MT_RXV1_HT_STBC GENMASK(8, 7) 8462306a36Sopenharmony_ci#define MT_RXV1_TX_RATE GENMASK(6, 0) 8562306a36Sopenharmony_ci 8662306a36Sopenharmony_ci#define MT_RXV2_VHTA1_B16_B6 GENMASK(31, 21) 8762306a36Sopenharmony_ci#define MT_RXV2_LENGTH GENMASK(20, 0) 8862306a36Sopenharmony_ci 8962306a36Sopenharmony_ci#define MT_RXV3_F_AGC1_CAL_GAIN GENMASK(31, 29) 9062306a36Sopenharmony_ci#define MT_RXV3_F_AGC1_EQ_CAL BIT(28) 9162306a36Sopenharmony_ci#define MT_RXV3_RCPI1 GENMASK(27, 20) 9262306a36Sopenharmony_ci#define MT_RXV3_F_AGC0_CAL_GAIN GENMASK(19, 17) 9362306a36Sopenharmony_ci#define MT_RXV3_F_AGC0_EQ_CAL BIT(16) 9462306a36Sopenharmony_ci#define MT_RXV3_RCPI0 GENMASK(15, 8) 9562306a36Sopenharmony_ci#define MT_RXV3_SEL_ANT BIT(7) 9662306a36Sopenharmony_ci#define MT_RXV3_ACI_DET_X BIT(6) 9762306a36Sopenharmony_ci#define MT_RXV3_OFDM_FREQ_TRANS_DETECT BIT(5) 9862306a36Sopenharmony_ci#define MT_RXV3_VHTA1_B21_B17 GENMASK(4, 0) 9962306a36Sopenharmony_ci 10062306a36Sopenharmony_ci#define MT_RXV4_F_AGC_CAL_GAIN GENMASK(31, 29) 10162306a36Sopenharmony_ci#define MT_RXV4_F_AGC2_EQ_CAL BIT(28) 10262306a36Sopenharmony_ci#define MT_RXV4_IB_RSSI1 GENMASK(27, 20) 10362306a36Sopenharmony_ci#define MT_RXV4_F_AGC_LPF_GAIN_X GENMASK(19, 16) 10462306a36Sopenharmony_ci#define MT_RXV4_WB_RSSI_X GENMASK(15, 8) 10562306a36Sopenharmony_ci#define MT_RXV4_IB_RSSI0 GENMASK(7, 0) 10662306a36Sopenharmony_ci 10762306a36Sopenharmony_ci#define MT_RXV5_LTF_SNR0 GENMASK(31, 26) 10862306a36Sopenharmony_ci#define MT_RXV5_LTF_PROC_TIME GENMASK(25, 19) 10962306a36Sopenharmony_ci#define MT_RXV5_FOE GENMASK(18, 7) 11062306a36Sopenharmony_ci#define MT_RXV5_C_AGC_SATE GENMASK(6, 4) 11162306a36Sopenharmony_ci#define MT_RXV5_F_AGC_LNA_GAIN_0 GENMASK(3, 2) 11262306a36Sopenharmony_ci#define MT_RXV5_F_AGC_LNA_GAIN_1 GENMASK(1, 0) 11362306a36Sopenharmony_ci 11462306a36Sopenharmony_ci#define MT_RXV6_C_AGC_STATE GENMASK(30, 28) 11562306a36Sopenharmony_ci#define MT_RXV6_NS_TS_FIELD GENMASK(27, 25) 11662306a36Sopenharmony_ci#define MT_RXV6_RX_VALID BIT(24) 11762306a36Sopenharmony_ci#define MT_RXV6_NF2 GENMASK(23, 16) 11862306a36Sopenharmony_ci#define MT_RXV6_NF1 GENMASK(15, 8) 11962306a36Sopenharmony_ci#define MT_RXV6_NF0 GENMASK(7, 0) 12062306a36Sopenharmony_ci 12162306a36Sopenharmony_cienum mt7603_tx_header_format { 12262306a36Sopenharmony_ci MT_HDR_FORMAT_802_3, 12362306a36Sopenharmony_ci MT_HDR_FORMAT_CMD, 12462306a36Sopenharmony_ci MT_HDR_FORMAT_802_11, 12562306a36Sopenharmony_ci MT_HDR_FORMAT_802_11_EXT, 12662306a36Sopenharmony_ci}; 12762306a36Sopenharmony_ci 12862306a36Sopenharmony_ci#define MT_TXD_SIZE (8 * 4) 12962306a36Sopenharmony_ci 13062306a36Sopenharmony_ci#define MT_TXD0_P_IDX BIT(31) 13162306a36Sopenharmony_ci#define MT_TXD0_Q_IDX GENMASK(30, 27) 13262306a36Sopenharmony_ci#define MT_TXD0_UTXB BIT(26) 13362306a36Sopenharmony_ci#define MT_TXD0_UNXV BIT(25) 13462306a36Sopenharmony_ci#define MT_TXD0_UDP_TCP_SUM BIT(24) 13562306a36Sopenharmony_ci#define MT_TXD0_IP_SUM BIT(23) 13662306a36Sopenharmony_ci#define MT_TXD0_ETH_TYPE_OFFSET GENMASK(22, 16) 13762306a36Sopenharmony_ci#define MT_TXD0_TX_BYTES GENMASK(15, 0) 13862306a36Sopenharmony_ci 13962306a36Sopenharmony_ci#define MT_TXD1_OWN_MAC GENMASK(31, 26) 14062306a36Sopenharmony_ci#define MT_TXD1_PROTECTED BIT(23) 14162306a36Sopenharmony_ci#define MT_TXD1_TID GENMASK(22, 20) 14262306a36Sopenharmony_ci#define MT_TXD1_NO_ACK BIT(19) 14362306a36Sopenharmony_ci#define MT_TXD1_HDR_PAD GENMASK(18, 16) 14462306a36Sopenharmony_ci#define MT_TXD1_LONG_FORMAT BIT(15) 14562306a36Sopenharmony_ci#define MT_TXD1_HDR_FORMAT GENMASK(14, 13) 14662306a36Sopenharmony_ci#define MT_TXD1_HDR_INFO GENMASK(12, 8) 14762306a36Sopenharmony_ci#define MT_TXD1_WLAN_IDX GENMASK(7, 0) 14862306a36Sopenharmony_ci 14962306a36Sopenharmony_ci#define MT_TXD2_FIX_RATE BIT(31) 15062306a36Sopenharmony_ci#define MT_TXD2_TIMING_MEASURE BIT(30) 15162306a36Sopenharmony_ci#define MT_TXD2_BA_DISABLE BIT(29) 15262306a36Sopenharmony_ci#define MT_TXD2_POWER_OFFSET GENMASK(28, 24) 15362306a36Sopenharmony_ci#define MT_TXD2_MAX_TX_TIME GENMASK(23, 16) 15462306a36Sopenharmony_ci#define MT_TXD2_FRAG GENMASK(15, 14) 15562306a36Sopenharmony_ci#define MT_TXD2_HTC_VLD BIT(13) 15662306a36Sopenharmony_ci#define MT_TXD2_DURATION BIT(12) 15762306a36Sopenharmony_ci#define MT_TXD2_BIP BIT(11) 15862306a36Sopenharmony_ci#define MT_TXD2_MULTICAST BIT(10) 15962306a36Sopenharmony_ci#define MT_TXD2_RTS BIT(9) 16062306a36Sopenharmony_ci#define MT_TXD2_SOUNDING BIT(8) 16162306a36Sopenharmony_ci#define MT_TXD2_NDPA BIT(7) 16262306a36Sopenharmony_ci#define MT_TXD2_NDP BIT(6) 16362306a36Sopenharmony_ci#define MT_TXD2_FRAME_TYPE GENMASK(5, 4) 16462306a36Sopenharmony_ci#define MT_TXD2_SUB_TYPE GENMASK(3, 0) 16562306a36Sopenharmony_ci 16662306a36Sopenharmony_ci#define MT_TXD3_SN_VALID BIT(31) 16762306a36Sopenharmony_ci#define MT_TXD3_PN_VALID BIT(30) 16862306a36Sopenharmony_ci#define MT_TXD3_SEQ GENMASK(27, 16) 16962306a36Sopenharmony_ci#define MT_TXD3_REM_TX_COUNT GENMASK(15, 11) 17062306a36Sopenharmony_ci#define MT_TXD3_TX_COUNT GENMASK(10, 6) 17162306a36Sopenharmony_ci 17262306a36Sopenharmony_ci#define MT_TXD4_PN_LOW GENMASK(31, 0) 17362306a36Sopenharmony_ci 17462306a36Sopenharmony_ci#define MT_TXD5_PN_HIGH GENMASK(31, 16) 17562306a36Sopenharmony_ci#define MT_TXD5_SW_POWER_MGMT BIT(13) 17662306a36Sopenharmony_ci#define MT_TXD5_BA_SEQ_CTRL BIT(12) 17762306a36Sopenharmony_ci#define MT_TXD5_DA_SELECT BIT(11) 17862306a36Sopenharmony_ci#define MT_TXD5_TX_STATUS_HOST BIT(10) 17962306a36Sopenharmony_ci#define MT_TXD5_TX_STATUS_MCU BIT(9) 18062306a36Sopenharmony_ci#define MT_TXD5_TX_STATUS_FMT BIT(8) 18162306a36Sopenharmony_ci#define MT_TXD5_PID GENMASK(7, 0) 18262306a36Sopenharmony_ci 18362306a36Sopenharmony_ci#define MT_TXD6_SGI BIT(31) 18462306a36Sopenharmony_ci#define MT_TXD6_LDPC BIT(30) 18562306a36Sopenharmony_ci#define MT_TXD6_TX_RATE GENMASK(29, 18) 18662306a36Sopenharmony_ci#define MT_TXD6_I_TXBF BIT(17) 18762306a36Sopenharmony_ci#define MT_TXD6_E_TXBF BIT(16) 18862306a36Sopenharmony_ci#define MT_TXD6_DYN_BW BIT(15) 18962306a36Sopenharmony_ci#define MT_TXD6_ANT_PRI GENMASK(14, 12) 19062306a36Sopenharmony_ci#define MT_TXD6_SPE_EN BIT(11) 19162306a36Sopenharmony_ci#define MT_TXD6_FIXED_BW BIT(10) 19262306a36Sopenharmony_ci#define MT_TXD6_BW GENMASK(9, 8) 19362306a36Sopenharmony_ci#define MT_TXD6_ANT_ID GENMASK(7, 2) 19462306a36Sopenharmony_ci#define MT_TXD6_FIXED_RATE BIT(0) 19562306a36Sopenharmony_ci 19662306a36Sopenharmony_ci#define MT_TX_RATE_STBC BIT(11) 19762306a36Sopenharmony_ci#define MT_TX_RATE_NSS GENMASK(10, 9) 19862306a36Sopenharmony_ci#define MT_TX_RATE_MODE GENMASK(8, 6) 19962306a36Sopenharmony_ci#define MT_TX_RATE_IDX GENMASK(5, 0) 20062306a36Sopenharmony_ci 20162306a36Sopenharmony_ci#define MT_TXS0_ANTENNA GENMASK(31, 26) 20262306a36Sopenharmony_ci#define MT_TXS0_TID GENMASK(25, 22) 20362306a36Sopenharmony_ci#define MT_TXS0_BA_ERROR BIT(22) 20462306a36Sopenharmony_ci#define MT_TXS0_PS_FLAG BIT(21) 20562306a36Sopenharmony_ci#define MT_TXS0_TXOP_TIMEOUT BIT(20) 20662306a36Sopenharmony_ci#define MT_TXS0_BIP_ERROR BIT(19) 20762306a36Sopenharmony_ci 20862306a36Sopenharmony_ci#define MT_TXS0_QUEUE_TIMEOUT BIT(18) 20962306a36Sopenharmony_ci#define MT_TXS0_RTS_TIMEOUT BIT(17) 21062306a36Sopenharmony_ci#define MT_TXS0_ACK_TIMEOUT BIT(16) 21162306a36Sopenharmony_ci#define MT_TXS0_ACK_ERROR_MASK GENMASK(18, 16) 21262306a36Sopenharmony_ci 21362306a36Sopenharmony_ci#define MT_TXS0_TX_STATUS_HOST BIT(15) 21462306a36Sopenharmony_ci#define MT_TXS0_TX_STATUS_MCU BIT(14) 21562306a36Sopenharmony_ci#define MT_TXS0_TXS_FORMAT BIT(13) 21662306a36Sopenharmony_ci#define MT_TXS0_FIXED_RATE BIT(12) 21762306a36Sopenharmony_ci#define MT_TXS0_TX_RATE GENMASK(11, 0) 21862306a36Sopenharmony_ci 21962306a36Sopenharmony_ci#define MT_TXS1_F0_TIMESTAMP GENMASK(31, 0) 22062306a36Sopenharmony_ci#define MT_TXS1_F1_NOISE_2 GENMASK(23, 16) 22162306a36Sopenharmony_ci#define MT_TXS1_F1_NOISE_1 GENMASK(15, 8) 22262306a36Sopenharmony_ci#define MT_TXS1_F1_NOISE_0 GENMASK(7, 0) 22362306a36Sopenharmony_ci 22462306a36Sopenharmony_ci#define MT_TXS2_F0_FRONT_TIME GENMASK(24, 0) 22562306a36Sopenharmony_ci#define MT_TXS2_F1_RCPI_2 GENMASK(23, 16) 22662306a36Sopenharmony_ci#define MT_TXS2_F1_RCPI_1 GENMASK(15, 8) 22762306a36Sopenharmony_ci#define MT_TXS2_F1_RCPI_0 GENMASK(7, 0) 22862306a36Sopenharmony_ci 22962306a36Sopenharmony_ci#define MT_TXS3_WCID GENMASK(31, 24) 23062306a36Sopenharmony_ci#define MT_TXS3_RXV_SEQNO GENMASK(23, 16) 23162306a36Sopenharmony_ci#define MT_TXS3_TX_DELAY GENMASK(15, 0) 23262306a36Sopenharmony_ci 23362306a36Sopenharmony_ci#define MT_TXS4_LAST_TX_RATE GENMASK(31, 29) 23462306a36Sopenharmony_ci#define MT_TXS4_TX_COUNT GENMASK(28, 24) 23562306a36Sopenharmony_ci#define MT_TXS4_AMPDU BIT(23) 23662306a36Sopenharmony_ci#define MT_TXS4_ACKED_MPDU BIT(22) 23762306a36Sopenharmony_ci#define MT_TXS4_PID GENMASK(21, 14) 23862306a36Sopenharmony_ci#define MT_TXS4_BW GENMASK(13, 12) 23962306a36Sopenharmony_ci#define MT_TXS4_F0_SEQNO GENMASK(11, 0) 24062306a36Sopenharmony_ci#define MT_TXS4_F1_TSSI GENMASK(11, 0) 24162306a36Sopenharmony_ci 24262306a36Sopenharmony_ci#endif 243