carl9170 firmware: update firmware headers
* reserves feature bit for CCA counters * extends hardware register file definitions Signed-off-by: Christian Lamparter <chunkeey@googlemail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
21ec489d00
commit
43b52a5ae9
|
@ -75,6 +75,9 @@ enum carl9170fw_feature_list {
|
|||
/* Firmware supports PSM in the 5GHZ Band */
|
||||
CARL9170FW_FIXED_5GHZ_PSM,
|
||||
|
||||
/* HW (ANI, CCA, MIB) tally counters */
|
||||
CARL9170FW_HW_COUNTERS,
|
||||
|
||||
/* KEEP LAST */
|
||||
__CARL9170FW_FEATURE_NUM
|
||||
};
|
||||
|
|
|
@ -174,6 +174,7 @@
|
|||
#define AR9170_MAC_SNIFFER_ENABLE_PROMISC BIT(0)
|
||||
#define AR9170_MAC_SNIFFER_DEFAULTS 0x02000000
|
||||
#define AR9170_MAC_REG_ENCRYPTION (AR9170_MAC_REG_BASE + 0x678)
|
||||
#define AR9170_MAC_ENCRYPTION_MGMT_RX_SOFTWARE BIT(2)
|
||||
#define AR9170_MAC_ENCRYPTION_RX_SOFTWARE BIT(3)
|
||||
#define AR9170_MAC_ENCRYPTION_DEFAULTS 0x70
|
||||
|
||||
|
@ -222,6 +223,12 @@
|
|||
#define AR9170_MAC_REG_TX_BLOCKACKS (AR9170_MAC_REG_BASE + 0x6c0)
|
||||
#define AR9170_MAC_REG_NAV_COUNT (AR9170_MAC_REG_BASE + 0x6c4)
|
||||
#define AR9170_MAC_REG_BACKOFF_STATUS (AR9170_MAC_REG_BASE + 0x6c8)
|
||||
#define AR9170_MAC_BACKOFF_CCA BIT(24)
|
||||
#define AR9170_MAC_BACKOFF_TX_PEX BIT(25)
|
||||
#define AR9170_MAC_BACKOFF_RX_PE BIT(26)
|
||||
#define AR9170_MAC_BACKOFF_MD_READY BIT(27)
|
||||
#define AR9170_MAC_BACKOFF_TX_PE BIT(28)
|
||||
|
||||
#define AR9170_MAC_REG_TX_RETRY (AR9170_MAC_REG_BASE + 0x6cc)
|
||||
|
||||
#define AR9170_MAC_REG_TX_COMPLETE (AR9170_MAC_REG_BASE + 0x6d4)
|
||||
|
@ -388,10 +395,40 @@
|
|||
|
||||
#define AR9170_MAC_REG_BCN_CURR_ADDR (AR9170_MAC_REG_BASE + 0xd98)
|
||||
#define AR9170_MAC_REG_BCN_COUNT (AR9170_MAC_REG_BASE + 0xd9c)
|
||||
|
||||
|
||||
#define AR9170_MAC_REG_BCN_HT1 (AR9170_MAC_REG_BASE + 0xda0)
|
||||
#define AR9170_MAC_BCN_HT1_HT_EN BIT(0)
|
||||
#define AR9170_MAC_BCN_HT1_GF_PMB BIT(1)
|
||||
#define AR9170_MAC_BCN_HT1_SP_EXP BIT(2)
|
||||
#define AR9170_MAC_BCN_HT1_TX_BF BIT(3)
|
||||
#define AR9170_MAC_BCN_HT1_PWR_CTRL_S 4
|
||||
#define AR9170_MAC_BCN_HT1_PWR_CTRL 0x70
|
||||
#define AR9170_MAC_BCN_HT1_TX_ANT1 BIT(7)
|
||||
#define AR9170_MAC_BCN_HT1_TX_ANT0 BIT(8)
|
||||
#define AR9170_MAC_BCN_HT1_NUM_LFT_S 9
|
||||
#define AR9170_MAC_BCN_HT1_NUM_LFT 0x600
|
||||
#define AR9170_MAC_BCN_HT1_BWC_20M_EXT BIT(16)
|
||||
#define AR9170_MAC_BCN_HT1_BWC_40M_SHARED BIT(17)
|
||||
#define AR9170_MAC_BCN_HT1_BWC_40M_DUP (BIT(16) | BIT(17))
|
||||
#define AR9170_MAC_BCN_HT1_BF_MCS_S 18
|
||||
#define AR9170_MAC_BCN_HT1_BF_MCS 0x1c0000
|
||||
#define AR9170_MAC_BCN_HT1_TPC_S 21
|
||||
#define AR9170_MAC_BCN_HT1_TPC 0x7e00000
|
||||
#define AR9170_MAC_BCN_HT1_CHAIN_MASK_S 27
|
||||
#define AR9170_MAC_BCN_HT1_CHAIN_MASK 0x38000000
|
||||
|
||||
#define AR9170_MAC_REG_BCN_HT2 (AR9170_MAC_REG_BASE + 0xda4)
|
||||
#define AR9170_MAC_BCN_HT2_MCS_S 0
|
||||
#define AR9170_MAC_BCN_HT2_MCS 0x7f
|
||||
#define AR9170_MAC_BCN_HT2_BW40 BIT(8)
|
||||
#define AR9170_MAC_BCN_HT2_SMOOTHING BIT(9)
|
||||
#define AR9170_MAC_BCN_HT2_SS BIT(10)
|
||||
#define AR9170_MAC_BCN_HT2_NSS BIT(11)
|
||||
#define AR9170_MAC_BCN_HT2_STBC_S 12
|
||||
#define AR9170_MAC_BCN_HT2_STBC 0x3000
|
||||
#define AR9170_MAC_BCN_HT2_ADV_COD BIT(14)
|
||||
#define AR9170_MAC_BCN_HT2_SGI BIT(15)
|
||||
#define AR9170_MAC_BCN_HT2_LEN_S 16
|
||||
#define AR9170_MAC_BCN_HT2_LEN 0xffff0000
|
||||
|
||||
#define AR9170_MAC_REG_DMA_TXQX_ADDR_CURR (AR9170_MAC_REG_BASE + 0xdc0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue