#include <lib/libkern/libkern.h>
#define RTW_IDR0 0x00
#define RTW_IDR1 0x04
#define RTW_MAR0 0x08
#define RTW_MAR1 0x0c
#define RTW_TSFTRL 0x18
#define RTW_TSFTRH 0x1c
#define RTW_TLPDA 0x20
#define RTW_TNPDA 0x24
#define RTW_THPDA 0x28
#define RTW_BRSR 0x2c
#define RTW_BRSR_BPLCP __BIT(8)
#define RTW_BRSR_MBR8180_MASK __BITS(1,0)
#define RTW_BRSR_MBR8180_1MBPS __SHIFTIN(0, RTW_BRSR_MBR8180_MASK)
#define RTW_BRSR_MBR8180_2MBPS __SHIFTIN(1, RTW_BRSR_MBR8180_MASK)
#define RTW_BRSR_MBR8180_5MBPS __SHIFTIN(2, RTW_BRSR_MBR8180_MASK)
#define RTW_BRSR_MBR8180_11MBPS __SHIFTIN(3, RTW_BRSR_MBR8180_MASK)
#define RTW_BRSR_MBR8181_1MBPS __BIT(0)
#define RTW_BRSR_MBR8181_2MBPS __BIT(1)
#define RTW_BRSR_MBR8181_5MBPS __BIT(2)
#define RTW_BRSR_MBR8181_11MBPS __BIT(3)
#define RTW_BSSID 0x2e
#define RTW_BSSID16 0x2e
#define RTW_BSSID32 (0x2e + 4)
#define RTW_BSSID0 RTW_BSSID16
#define RTW_BSSID1 (RTW_BSSID0 + 1)
#define RTW_BSSID2 (RTW_BSSID1 + 1)
#define RTW_BSSID3 (RTW_BSSID2 + 1)
#define RTW_BSSID4 (RTW_BSSID3 + 1)
#define RTW_BSSID5 (RTW_BSSID4 + 1)
#define RTW_CR 0x37
#define RTW_CR_RST __BIT(4)
#define RTW_CR_RE __BIT(3)
#define RTW_CR_TE __BIT(2)
#define RTW_CR_MULRW __BIT(0)
#define RTW_IMR 0x3c
#define RTW_ISR 0x3e
#define RTW_INTR_TXFOVW __BIT(15)
#define RTW_INTR_TIMEOUT __BIT(14)
#define RTW_INTR_BCNINT __BIT(13)
#define RTW_INTR_ATIMINT __BIT(12)
#define RTW_INTR_TBDER __BIT(11)
#define RTW_INTR_TBDOK __BIT(10)
#define RTW_INTR_THPDER __BIT(9)
#define RTW_INTR_THPDOK __BIT(8)
#define RTW_INTR_TNPDER __BIT(7)
#define RTW_INTR_TNPDOK __BIT(6)
#define RTW_INTR_RXFOVW __BIT(5)
#define RTW_INTR_RDU __BIT(4)
#define RTW_INTR_TLPDER __BIT(3)
#define RTW_INTR_TLPDOK __BIT(2)
#define RTW_INTR_RER __BIT(1)
#define RTW_INTR_ROK __BIT(0)
#define RTW_INTR_RX (RTW_INTR_RER|RTW_INTR_ROK|RTW_INTR_RDU|RTW_INTR_RXFOVW)
#define RTW_INTR_TX (RTW_INTR_TLPDER|RTW_INTR_TLPDOK|RTW_INTR_THPDER|\
RTW_INTR_THPDOK|RTW_INTR_TNPDER|RTW_INTR_TNPDOK|\
RTW_INTR_TBDER|RTW_INTR_TBDOK)
#define RTW_INTR_BEACON (RTW_INTR_BCNINT|RTW_INTR_TBDER|RTW_INTR_TBDOK)
#define RTW_INTR_IOERROR (RTW_INTR_TXFOVW)
#define RTW_TCR 0x40
#define RTW_TCR_CWMIN __BIT(31)
#define RTW_TCR_SWSEQ __BIT(30)
#define RTW_TCR_HWVERID_MASK __BITS(29, 25)
#define RTW_TCR_HWVERID_D __SHIFTIN(26, RTW_TCR_HWVERID_MASK)
#define RTW_TCR_HWVERID_F __SHIFTIN(27, RTW_TCR_HWVERID_MASK)
#define RTW_TCR_HWVERID_RTL8180 RTW_TCR_HWVERID_F
#define RTW_TCR_SAT __BIT(24)
#define RTW_TCR_MXDMA_MASK __BITS(23,21)
#define RTW_TCR_MXDMA_16 __SHIFTIN(0, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_32 __SHIFTIN(1, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_64 __SHIFTIN(2, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_128 __SHIFTIN(3, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_256 __SHIFTIN(4, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_512 __SHIFTIN(5, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_1024 __SHIFTIN(6, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_MXDMA_2048 __SHIFTIN(7, RTW_TCR_MXDMA_MASK)
#define RTW_TCR_DISCW __BIT(20)
#define RTW_TCR_ICV __BIT(19)
#define RTW_TCR_LBK_MASK __BITS(18,17)
#define RTW_TCR_LBK_NORMAL __SHIFTIN(0, RTW_TCR_LBK_MASK)
#define RTW_TCR_LBK_MAC __SHIFTIN(1, RTW_TCR_LBK_MASK)
#define RTW_TCR_LBK_BBP __SHIFTIN(2, RTW_TCR_LBK_MASK)
#define RTW_TCR_LBK_CONT __SHIFTIN(3, RTW_TCR_LBK_MASK)
#define RTW_TCR_CRC __BIT(16)
#define RTW_TCR_SRL_MASK __BITS(15,8)
#define RTW_TCR_LRL_MASK __BITS(7,0)
#define RTW_RCR 0x44
#define RTW_RCR_ONLYERLPKT __BIT(31)
#define RTW_RCR_ENCS2 __BIT(30)
#define RTW_RCR_ENCS1 __BIT(29)
#define RTW_RCR_ENMARP __BIT(28)
#define RTW_RCR_CBSSID __BIT(23)
#define RTW_RCR_APWRMGT __BIT(22)
#define RTW_RCR_ADD3 __BIT(21)
#define RTW_RCR_AMF __BIT(20)
#define RTW_RCR_ACF __BIT(19)
#define RTW_RCR_ADF __BIT(18)
#define RTW_RCR_RXFTH_MASK __BITS(15,13)
#define RTW_RCR_RXFTH_64 __SHIFTIN(2, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_RXFTH_128 __SHIFTIN(3, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_RXFTH_256 __SHIFTIN(4, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_RXFTH_512 __SHIFTIN(5, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_RXFTH_1024 __SHIFTIN(6, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_RXFTH_WHOLE __SHIFTIN(7, RTW_RCR_RXFTH_MASK)
#define RTW_RCR_AICV __BIT(12)
#define RTW_RCR_MXDMA_MASK __BITS(10,8)
#define RTW_RCR_MXDMA_16 __SHIFTIN(0, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_32 __SHIFTIN(1, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_64 __SHIFTIN(2, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_128 __SHIFTIN(3, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_256 __SHIFTIN(4, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_512 __SHIFTIN(5, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_1024 __SHIFTIN(6, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_MXDMA_UNLIMITED __SHIFTIN(7, RTW_RCR_MXDMA_MASK)
#define RTW_RCR_9356SEL __BIT(6)
#define RTW_RCR_ACRC32 __BIT(5)
#define RTW_RCR_AB __BIT(3)
#define RTW_RCR_AM __BIT(2)
#define RTW_RCR_APM __BIT(1)
#define RTW_RCR_AAP __BIT(0)
#define RTW_RCR_MONITOR ( \
RTW_RCR_AAP | \
RTW_RCR_ACF | \
RTW_RCR_ACRC32 | \
RTW_RCR_AICV | \
0)
#define RTW_RCR_PKTFILTER_MASK (\
RTW_RCR_AAP | \
RTW_RCR_AB | \
RTW_RCR_ACF | \
RTW_RCR_ACRC32 | \
RTW_RCR_ADD3 | \
RTW_RCR_ADF | \
RTW_RCR_AICV | \
RTW_RCR_AM | \
RTW_RCR_AMF | \
RTW_RCR_APM | \
RTW_RCR_APWRMGT | \
0)
#define RTW_RCR_PKTFILTER_DEFAULT ( \
RTW_RCR_ACF | \
RTW_RCR_ADF | \
RTW_RCR_AMF | \
RTW_RCR_APM | \
RTW_RCR_APWRMGT | \
0)
#define RTW_TINT 0x48
#define RTW_TBDA 0x4c
#define RTW_9346CR 0x50
#define RTW_9346CR_EEM_MASK __BITS(7,6)
#define RTW_9346CR_EEM_NORMAL __SHIFTIN(0, RTW_9346CR_EEM_MASK)
#define RTW_9346CR_EEM_AUTOLOAD __SHIFTIN(1, RTW_9346CR_EEM_MASK)
#define RTW_9346CR_EEM_PROGRAM __SHIFTIN(2, RTW_9346CR_EEM_MASK)
#define RTW_9346CR_EEM_CONFIG __SHIFTIN(3, RTW_9346CR_EEM_MASK)
#define RTW_9346CR_EECS __BIT(3)
#define RTW_9346CR_EESK __BIT(2)
#define RTW_9346CR_EEDI __BIT(1)
#define RTW_9346CR_EEDO __BIT(0)
#define RTW_CONFIG0 0x51
#define RTW_CONFIG0_WEP40 __BIT(7)
#define RTW_CONFIG0_WEP104 __BIT(6)
#define RTW_CONFIG0_LEDGPOEN __BIT(4)
#define RTW_CONFIG0_AUXPWR __BIT(3)
#define RTW_CONFIG0_GL_MASK __BITS(1,0)
#define _RTW_CONFIG0_GL_USA __SHIFTIN(3, RTW_CONFIG0_GL_MASK)
#define RTW_CONFIG0_GL_EUROPE __SHIFTIN(2, RTW_CONFIG0_GL_MASK)
#define RTW_CONFIG0_GL_JAPAN __SHIFTIN(1, RTW_CONFIG0_GL_MASK)
#define RTW_CONFIG0_GL_USA __SHIFTIN(0, RTW_CONFIG0_GL_MASK)
#define RTW_CONFIG1 0x52
#define RTW_CONFIG1_LEDS_MASK __BITS(7,6)
#define RTW_CONFIG1_LEDS_ACT_INFRA __SHIFTIN(0, RTW_CONFIG1_LEDS_MASK)
#define RTW_CONFIG1_LEDS_ACT_LINK __SHIFTIN(1, RTW_CONFIG1_LEDS_MASK)
#define RTW_CONFIG1_LEDS_TX_RX __SHIFTIN(2, RTW_CONFIG1_LEDS_MASK)
#define RTW_CONFIG1_LEDS_LINKACT_INFRA __SHIFTIN(3, RTW_CONFIG1_LEDS_MASK)
#define RTW_CONFIG1_LWACT __BIT(4)
#define RTW_CONFIG1_MEMMAP __BIT(3)
#define RTW_CONFIG1_IOMAP __BIT(2)
#define RTW_CONFIG1_VPD __BIT(1)
#define RTW_CONFIG1_PMEN __BIT(0)
#define RTW_CONFIG2 0x53
#define RTW_CONFIG2_LCK __BIT(7)
#define RTW_CONFIG2_ANT __BIT(6)
#define RTW_CONFIG2_DPS __BIT(3)
#define RTW_CONFIG2_PAPESIGN __BIT(2)
#define RTW_CONFIG2_PAPETIME_MASK __BITS(1,0)
#define RTW_ANAPARM 0x54
#define RTW_ANAPARM_RFPOW0_MASK __BITS(30,28)
#define RTW_ANAPARM_RFPOW_MASK \
(RTW_ANAPARM_RFPOW0_MASK|RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_TXDACOFF __BIT(27)
#define RTW_ANAPARM_RFPOW1_MASK __BITS(26,20)
#define RTW_ANAPARM_RFPOW_MAXIM_ON __SHIFTIN(0x8, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_MAXIM_SLEEP __SHIFTIN(0x378, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_MAXIM_OFF __SHIFTIN(0x379, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_RFMD_ON __SHIFTIN(0x408, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_RFMD_SLEEP __SHIFTIN(0x378, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_RFMD_OFF __SHIFTIN(0x379, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_ANA_PHILIPS_ON \
__SHIFTIN(0x328, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_DIG_PHILIPS_ON \
__SHIFTIN(0x008, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_PHILIPS_SLEEP\
__SHIFTIN(0x378, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_PHILIPS_OFF\
__SHIFTIN(0x379, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_RFPOW_PHILIPS_ON __SHIFTIN(0x328, RTW_ANAPARM_RFPOW1_MASK)
#define RTW_ANAPARM_CARDSP_MASK __BITS(19,0)
#define RTW_MSR 0x58
#define RTW_MSR_NETYPE_MASK __BITS(3,2)
#define RTW_MSR_NETYPE_AP_OK __SHIFTIN(3, RTW_MSR_NETYPE_MASK)
#define RTW_MSR_NETYPE_INFRA_OK __SHIFTIN(2, RTW_MSR_NETYPE_MASK)
#define RTW_MSR_NETYPE_ADHOC_OK __SHIFTIN(1, RTW_MSR_NETYPE_MASK)
#define RTW_MSR_NETYPE_NOLINK __SHIFTIN(0, RTW_MSR_NETYPE_MASK)
#define RTW_CONFIG3 0x59
#define RTW_CONFIG3_GNTSEL __BIT(7)
#define RTW_CONFIG3_PARMEN __BIT(6)
#define RTW_CONFIG3_MAGIC __BIT(5)
#define RTW_CONFIG3_CARDBEN __BIT(3)
#define RTW_CONFIG3_CLKRUNEN __BIT(2)
#define RTW_CONFIG3_FUNCREGEN __BIT(1)
#define RTW_CONFIG3_FBTBEN __BIT(0)
#define RTW_CONFIG4 0x5A
#define RTW_CONFIG4_VCOPDN __BIT(7)
#define RTW_CONFIG4_PWROFF __BIT(6)
#define RTW_CONFIG4_PWRMGT __BIT(5)
#define RTW_CONFIG4_LWPME __BIT(4)
#define RTW_CONFIG4_LWPTN __BIT(2)
#define RTW_CONFIG4_RFTYPE_MASK __BITS(1,0)
#define RTW_CONFIG4_RFTYPE_INTERSIL __SHIFTIN(1, RTW_CONFIG4_RFTYPE_MASK)
#define RTW_CONFIG4_RFTYPE_RFMD __SHIFTIN(2, RTW_CONFIG4_RFTYPE_MASK)
#define RTW_CONFIG4_RFTYPE_PHILIPS __SHIFTIN(3, RTW_CONFIG4_RFTYPE_MASK)
#define RTW_TESTR 0x5B
#define RTW_PSR 0x5e
#define RTW_PSR_GPO __BIT(7)
#define RTW_PSR_GPI __BIT(6)
#define RTW_PSR_LEDGPO1 __BIT(5)
#define RTW_PSR_LEDGPO0 __BIT(4)
#define RTW_PSR_UWF __BIT(1)
#define RTW_PSR_PSEN __BIT(0)
#define RTW_SCR 0x5f
#define RTW_SCR_KM_MASK __BITS(5,4)
#define RTW_SCR_KM_WEP104 __SHIFTIN(1, RTW_SCR_KM_MASK)
#define RTW_SCR_KM_WEP40 __SHIFTIN(0, RTW_SCR_KM_MASK)
#define RTW_SCR_TXSECON __BIT(1)
#define RTW_SCR_RXSECON __BIT(0)
#define RTW_BCNITV 0x70
#define RTW_BCNITV_BCNITV_MASK __BITS(9,0)
#define RTW_ATIMWND 0x72
#define RTW_ATIMWND_ATIMWND __BITS(9,0)
#define RTW_BINTRITV 0x74
#define RTW_BINTRITV_BINTRITV __BITS(9,0)
#define RTW_ATIMTRITV 0x76
#define RTW_ATIMTRITV_ATIMTRITV __BITS(9,0)
#define RTW_PHYDELAY 0x78
#define RTW_PHYDELAY_REVC_MAGIC __BIT(3)
#define RTW_PHYDELAY_PHYDELAY __BITS(2,0)
#define RTW_CRCOUNT 0x79
#define RTW_CRCOUNT_MAGIC 0x4c
#define RTW_CRC16ERR 0x7a
#define RTW_BB 0x7c
#define RTW_BB_RD_MASK __BITS(23,16)
#define RTW_BB_WR_MASK __BITS(15,8)
#define RTW_BB_WREN __BIT(7)
#define RTW_BB_ADDR_MASK __BITS(6,0)
#define RTW_PHYADDR 0x7c
#define RTW_PHYDATAW 0x7d
#define RTW_PHYDATAR 0x7e
#define RTW_PHYCFG 0x80
#define RTW_PHYCFG_MAC_POLL __BIT(31)
#define RTW_PHYCFG_HST __BIT(30)
#define RTW_PHYCFG_MAC_RFTYPE_MASK __BITS(29,28)
#define RTW_PHYCFG_MAC_RFTYPE_INTERSIL __SHIFTIN(0, RTW_PHYCFG_MAC_RFTYPE_MASK)
#define RTW_PHYCFG_MAC_RFTYPE_RFMD __SHIFTIN(1, RTW_PHYCFG_MAC_RFTYPE_MASK)
#define RTW_PHYCFG_MAC_RFTYPE_GCT RTW_PHYCFG_MAC_RFTYPE_RFMD
#define RTW_PHYCFG_MAC_RFTYPE_PHILIPS __SHIFTIN(3, RTW_PHYCFG_MAC_RFTYPE_MASK)
#define RTW_PHYCFG_MAC_PHILIPS_ADDR_MASK __BITS(27,24)
#define RTW_PHYCFG_MAC_PHILIPS_DATA_MASK __BITS(23,0)
#define RTW_PHYCFG_MAC_MAXIM_LODATA_MASK __BITS(27,24)
#define RTW_PHYCFG_MAC_MAXIM_ADDR_MASK __BITS(11,8)
#define RTW_PHYCFG_MAC_MAXIM_HIDATA_MASK __BITS(7,0)
#define RTW_PHYCFG_HST_EN __BIT(2)
#define RTW_PHYCFG_HST_CLK __BIT(1)
#define RTW_PHYCFG_HST_DATA __BIT(0)
#define RTW_MAXIM_HIDATA_MASK __BITS(11,4)
#define RTW_MAXIM_LODATA_MASK __BITS(3,0)
#define RTW_WAKEUP0L 0x84
#define RTW_WAKEUP0H 0x88
#define RTW_WAKEUP1L 0x8c
#define RTW_WAKEUP1H 0x90
#define RTW_WAKEUP2LL 0x94
#define RTW_WAKEUP2LH 0x98
#define RTW_WAKEUP2HL 0x9c
#define RTW_WAKEUP2HH 0xa0
#define RTW_WAKEUP3LL 0xa4
#define RTW_WAKEUP3LH 0xa8
#define RTW_WAKEUP3HL 0xac
#define RTW_WAKEUP3HH 0xb0
#define RTW_WAKEUP4LL 0xb4
#define RTW_WAKEUP4LH 0xb8
#define RTW_WAKEUP4HL 0xbc
#define RTW_WAKEUP4HH 0xc0
#define RTW_CRC0 0xc4
#define RTW_CRC1 0xc6
#define RTW_CRC2 0xc8
#define RTW_CRC3 0xca
#define RTW_CRC4 0xcc
#define RTW_DK0 0x90
#define RTW_DK1 0xa0
#define RTW_DK2 0xb0
#define RTW_DK3 0xc0
#define RTW_CONFIG5 0xd8
#define RTW_CONFIG5_TXFIFOOK __BIT(7)
#define RTW_CONFIG5_RXFIFOOK __BIT(6)
#define RTW_CONFIG5_CALON __BIT(5)
#define RTW_CONFIG5_EACPI __BIT(2)
#define RTW_CONFIG5_LANWAKE __BIT(1)
#define RTW_CONFIG5_PMESTS __BIT(0)
#define RTW_TPPOLL 0xd9
#define RTW_TPPOLL_BQ __BIT(7)
#define RTW_TPPOLL_HPQ __BIT(6)
#define RTW_TPPOLL_NPQ __BIT(5)
#define RTW_TPPOLL_LPQ __BIT(4)
#define RTW_TPPOLL_SBQ __BIT(3)
#define RTW_TPPOLL_SHPQ __BIT(2)
#define RTW_TPPOLL_SNPQ __BIT(1)
#define RTW_TPPOLL_SLPQ __BIT(0)
#define RTW_TPPOLL_ALL (RTW_TPPOLL_BQ | RTW_TPPOLL_HPQ | \
RTW_TPPOLL_NPQ | RTW_TPPOLL_LPQ)
#define RTW_TPPOLL_ACTIVE RTW_TPPOLL_ALL
#define RTW_TPPOLL_SALL (RTW_TPPOLL_SBQ | RTW_TPPOLL_SHPQ | \
RTW_TPPOLL_SNPQ | RTW_TPPOLL_SLPQ)
#define RTW_CWR 0xdc
#define RTW_CWR_CW __BITS(9,0)
#define RTW_RETRYCTR 0xde
#define RTW_RETRYCTR_RETRYCT __BITS(7,0)
#define RTW_RDSAR 0xe4
#define RTW_FER 0xf0
#define RTW_FER_INTR __BIT(15)
#define RTW_FER_GWAKE __BIT(4)
#define RTW_FEMR 0xf4
#define RTW_FEMR_INTR __BIT(15)
#define RTW_FEMR_WKUP __BIT(14)
#define RTW_FEMR_GWAKE __BIT(4)
#define RTW_FPSR 0xf8
#define RTW_FPSR_INTR __BIT(15)
#define RTW_FPSR_GWAKE __BIT(4)
#define RTW_FFER 0xfc
#define RTW_FFER_INTR __BIT(15)
#define RTW_FFER_GWAKE __BIT(4)
#define RTW_SR_ID 0x00
#define RTW_SR_VID 0x02
#define RTW_SR_DID 0x04
#define RTW_SR_SVID 0x06
#define RTW_SR_SMID 0x08
#define RTW_SR_MNGNT 0x0a
#define RTW_SR_MXLAT 0x0b
#define RTW_SR_RFCHIPID 0x0c
#define RTW_SR_CONFIG3 0x0d
#define RTW_SR_MAC 0x0e
#define RTW_SR_CONFIG0 0x14
#define RTW_SR_CONFIG1 0x15
#define RTW_SR_PMC 0x16
#define RTW_SR_CONFIG2 0x18
#define RTW_SR_CONFIG4 0x19
#define RTW_SR_ANAPARM 0x1a
#define RTW_SR_TESTR 0x1e
#define RTW_SR_CONFIG5 0x1f
#define RTW_SR_TXPOWER1 0x20
#define RTW_SR_TXPOWER2 0x21
#define RTW_SR_TXPOWER3 0x22
#define RTW_SR_TXPOWER4 0x23
#define RTW_SR_TXPOWER5 0x24
#define RTW_SR_TXPOWER6 0x25
#define RTW_SR_TXPOWER7 0x26
#define RTW_SR_TXPOWER8 0x27
#define RTW_SR_TXPOWER9 0x28
#define RTW_SR_TXPOWER10 0x29
#define RTW_SR_TXPOWER11 0x2a
#define RTW_SR_TXPOWER12 0x2b
#define RTW_SR_TXPOWER13 0x2c
#define RTW_SR_TXPOWER14 0x2d
#define RTW_SR_CHANNELPLAN 0x2e
#define RTW_SR_ENERGYDETTHR 0x2f
#define RTW_SR_ENERGYDETTHR_DEFAULT 0x0c
#define RTW_SR_CISPOINTER 0x30
#define RTW_SR_RFPARM 0x32
#define RTW_SR_RFPARM_DIGPHY __BIT(0)
#define RTW_SR_RFPARM_DFLANTB __BIT(1)
#define RTW_SR_RFPARM_CS_MASK __BITS(2,3)
#define RTW_SR_VERSION 0x3c
#define RTW_SR_CRC 0x3e
#define RTW_SR_VPD 0x40
#define RTW_SR_CIS 0x80
#define RTW_DESC_ALIGNMENT 256
struct rtw_txdesc {
volatile uint32_t td_ctl0;
volatile uint32_t td_ctl1;
volatile uint32_t td_buf;
volatile uint32_t td_len;
volatile uint32_t td_next;
volatile uint32_t td_rsvd[3];
} __packed __aligned(4);
#define td_stat td_ctl0
#define RTW_TXCTL0_OWN __BIT(31)
#define RTW_TXCTL0_RSVD0 __BIT(30)
#define RTW_TXCTL0_FS __BIT(29)
#define RTW_TXCTL0_LS __BIT(28)
#define RTW_TXCTL0_RATE_MASK __BITS(27,24)
#define RTW_TXCTL0_RATE_1MBPS __SHIFTIN(0, RTW_TXCTL0_RATE_MASK)
#define RTW_TXCTL0_RATE_2MBPS __SHIFTIN(1, RTW_TXCTL0_RATE_MASK)
#define RTW_TXCTL0_RATE_5MBPS __SHIFTIN(2, RTW_TXCTL0_RATE_MASK)
#define RTW_TXCTL0_RATE_11MBPS __SHIFTIN(3, RTW_TXCTL0_RATE_MASK)
#define RTW_TXCTL0_RTSEN __BIT(23)
#define RTW_TXCTL0_RTSRATE_MASK __BITS(22,19)
#define RTW_TXCTL0_RTSRATE_1MBPS __SHIFTIN(0, RTW_TXCTL0_RTSRATE_MASK)
#define RTW_TXCTL0_RTSRATE_2MBPS __SHIFTIN(1, RTW_TXCTL0_RTSRATE_MASK)
#define RTW_TXCTL0_RTSRATE_5MBPS __SHIFTIN(2, RTW_TXCTL0_RTSRATE_MASK)
#define RTW_TXCTL0_RTSRATE_11MBPS __SHIFTIN(3, RTW_TXCTL0_RTSRATE_MASK)
#define RTW_TXCTL0_BEACON __BIT(18)
#define RTW_TXCTL0_MOREFRAG __BIT(17)
#define RTW_TXCTL0_SPLCP __BIT(16)
#define RTW_TXCTL0_KEYID_MASK __BITS(15,14)
#define RTW_TXCTL0_RSVD1_MASK __BITS(13,12)
#define RTW_TXCTL0_TPKTSIZE_MASK __BITS(11,0)
#define RTW_TXSTAT_OWN RTW_TXCTL0_OWN
#define RTW_TXSTAT_RSVD0 RTW_TXCTL0_RSVD0
#define RTW_TXSTAT_FS RTW_TXCTL0_FS
#define RTW_TXSTAT_LS RTW_TXCTL0_LS
#define RTW_TXSTAT_RSVD1_MASK __BITS(27,16)
#define RTW_TXSTAT_TOK __BIT(15)
#define RTW_TXSTAT_RTSRETRY_MASK __BITS(14,8)
#define RTW_TXSTAT_DRC_MASK __BITS(7,0)
#define RTW_TXCTL1_LENGEXT __BIT(31)
#define RTW_TXCTL1_LENGTH_MASK __BITS(30,16)
#define RTW_TXCTL1_RTSDUR_MASK __BITS(15,0)
#define RTW_TXLEN_LENGTH_MASK __BITS(11,0)
struct rtw_rxdesc {
volatile uint32_t rd_ctl;
volatile uint32_t rd_rsvd0;
volatile uint32_t rd_buf;
volatile uint32_t rd_rsvd1;
} __packed __aligned(4);
#define rd_stat rd_ctl
#define rd_rssi rd_rsvd0
#define rd_tsftl rd_buf
#define rd_tsfth rd_rsvd1
#define RTW_RXCTL_OWN __BIT(31)
#define RTW_RXCTL_EOR __BIT(30)
#define RTW_RXCTL_FS __BIT(29)
#define RTW_RXCTL_LS __BIT(28)
#define RTW_RXCTL_RSVD0_MASK __BITS(29,12)
#define RTW_RXCTL_LENGTH_MASK __BITS(11,0)
#define RTW_RXSTAT_OWN RTW_RXCTL_OWN
#define RTW_RXSTAT_EOR RTW_RXCTL_EOR
#define RTW_RXSTAT_FS RTW_RXCTL_FS
#define RTW_RXSTAT_LS RTW_RXCTL_LS
#define RTW_RXSTAT_DMAFAIL __BIT(27)
#define RTW_RXSTAT_BOVF __BIT(26)
#define RTW_RXSTAT_SPLCP __BIT(25)
#define RTW_RXSTAT_RSVD1 __BIT(24)
#define RTW_RXSTAT_RATE_MASK __BITS(23,20)
#define RTW_RXSTAT_RATE_1MBPS __SHIFTIN(0, RTW_RXSTAT_RATE_MASK)
#define RTW_RXSTAT_RATE_2MBPS __SHIFTIN(1, RTW_RXSTAT_RATE_MASK)
#define RTW_RXSTAT_RATE_5MBPS __SHIFTIN(2, RTW_RXSTAT_RATE_MASK)
#define RTW_RXSTAT_RATE_11MBPS __SHIFTIN(3, RTW_RXSTAT_RATE_MASK)
#define RTW_RXSTAT_MIC __BIT(19)
#define RTW_RXSTAT_MAR __BIT(18)
#define RTW_RXSTAT_PAR __BIT(17)
#define RTW_RXSTAT_BAR __BIT(16)
#define RTW_RXSTAT_RES __BIT(15)
#define RTW_RXSTAT_PWRMGT __BIT(14)
#define RTW_RXSTAT_CRC16 __BIT(14)
#define RTW_RXSTAT_CRC32 __BIT(13)
#define RTW_RXSTAT_ICV __BIT(12)
#define RTW_RXSTAT_LENGTH_MASK __BITS(11,0)
#define RTW_RXSTAT_ONESEG (RTW_RXSTAT_FS|RTW_RXSTAT_LS)
#define RTW_RXSTAT_IOERROR (RTW_RXSTAT_DMAFAIL|RTW_RXSTAT_BOVF)
#define RTW_RXSTAT_DEBUG (RTW_RXSTAT_SPLCP|RTW_RXSTAT_MAR|\
RTW_RXSTAT_PAR|RTW_RXSTAT_BAR|\
RTW_RXSTAT_PWRMGT|RTW_RXSTAT_CRC32|\
RTW_RXSTAT_ICV)
#define RTW_RXRSSI_VLAN __BITS(31,16)
#define RTW_RXRSSI_RSSI __BITS(15,8)
#define RTW_RXRSSI_IMR_RSSI __BITS(15,9)
#define RTW_RXRSSI_IMR_LNA __BIT(8)
#define RTW_RXRSSI_SQ __BITS(7,0)
#define RTW_READ8(regs, ofs) \
bus_space_read_1((regs)->r_bt, (regs)->r_bh, (ofs))
#define RTW_READ16(regs, ofs) \
bus_space_read_2((regs)->r_bt, (regs)->r_bh, (ofs))
#define RTW_READ(regs, ofs) \
bus_space_read_4((regs)->r_bt, (regs)->r_bh, (ofs))
#define RTW_WRITE8(regs, ofs, val) \
bus_space_write_1((regs)->r_bt, (regs)->r_bh, (ofs), (val))
#define RTW_WRITE16(regs, ofs, val) \
bus_space_write_2((regs)->r_bt, (regs)->r_bh, (ofs), (val))
#define RTW_WRITE(regs, ofs, val) \
bus_space_write_4((regs)->r_bt, (regs)->r_bh, (ofs), (val))
#define RTW_ISSET(regs, reg, mask) \
(RTW_READ((regs), (reg)) & (mask))
#define RTW_CLR(regs, reg, mask) \
RTW_WRITE((regs), (reg), RTW_READ((regs), (reg)) & ~(mask))
#define RTW_BBP_SYS1 0x00
#define RTW_BBP_TXAGC 0x03
#define RTW_BBP_LNADET 0x04
#define RTW_BBP_IFAGCINI 0x05
#define RTW_BBP_IFAGCLIMIT 0x06
#define RTW_BBP_IFAGCDET 0x07
#define RTW_BBP_ANTATTEN 0x10
#define RTW_BBP_ANTATTEN_GCT_MAGIC 0xa3
#define RTW_BBP_ANTATTEN_PHILIPS_MAGIC 0x91
#define RTW_BBP_ANTATTEN_INTERSIL_MAGIC 0x92
#define RTW_BBP_ANTATTEN_RFMD_MAGIC 0x93
#define RTW_BBP_ANTATTEN_MAXIM_MAGIC 0xb3
#define RTW_BBP_ANTATTEN_DFLANTB 0x40
#define RTW_BBP_ANTATTEN_CHAN14 0x0c
#define RTW_BBP_TRL 0x11
#define RTW_BBP_SYS2 0x12
#define RTW_BBP_SYS2_ANTDIV 0x80
#define RTW_BBP_SYS2_RATE_MASK __BITS(5,4)
#define RTW_BBP_SYS3 0x13
#define RTW_BBP_SYS3_CSTHRESH_MASK __BITS(0,3)
#define RTW_BBP_CHESTLIM 0x19
#define RTW_BBP_CHSQLIM 0x1a