mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-26 07:04:12 +00:00
Code cleanup + more debug ++
This commit is contained in:
parent
605ecfa886
commit
b8e3b80e4f
16
Makefile
16
Makefile
@ -86,7 +86,7 @@ CONFIG_HIGH_ACTIVE = n
|
||||
CONFIG_PNO_SUPPORT = n
|
||||
CONFIG_PNO_SET_DEBUG = n
|
||||
CONFIG_AP_WOWLAN = n
|
||||
######### Notify SDIO Host Keep Power During Syspend ##########
|
||||
######### Notify SDIO Host Keep Power During Suspend ##########
|
||||
CONFIG_RTW_SDIO_PM_KEEP_POWER = y
|
||||
###################### MP HW TX MODE FOR VHT #######################
|
||||
CONFIG_MP_VHT_HW_TX_MODE = n
|
||||
@ -175,12 +175,12 @@ CONFIG_RTL8814A = y
|
||||
endif
|
||||
|
||||
ifeq ($(DEBUG), 1)
|
||||
EXTRA_CFLAGS += -DDBG=1 -DCONFIG_RTW_DEBUG -DCONFIG_DBG_COUNTER -DRTW_LOG_LEVEL=5
|
||||
EXTRA_CFLAGS += -DDBG=1 -DCONFIG_RTW_DEBUG -DCONFIG_DBG_COUNTER -DRTW_LOG_LEVEL=5
|
||||
EXTRA_CFLAGS += -DCONFIG_RADIOTAP_WITH_RXDESC
|
||||
else ifeq ($(DEBUG), 2)
|
||||
EXTRA_CFLAGS += -DDBG=1 -DCONFIG_RTW_DEBUG -DCONFIG_DBG_COUNTER -DRTW_LOG_LEVEL=5
|
||||
EXTRA_CFLAGS += -DCONFIG_DEBUG_RTL871X
|
||||
EXTRA_CFLAGS += -DCONFIG_RADIOTAP_WITH_RXDESC
|
||||
EXTRA_CFLAGS += -DCONFIG_DEBUG_RTL871X
|
||||
EXTRA_CFLAGS += -DCONFIG_RADIOTAP_WITH_RXDESC
|
||||
else
|
||||
EXTRA_CFLAGS += -DDBG=0
|
||||
endif
|
||||
@ -226,7 +226,7 @@ _HAL_INTFS_FILES := hal/hal_intf.o \
|
||||
hal/hal_hci/hal_$(HCI_NAME).o \
|
||||
hal/led/hal_$(HCI_NAME)_led.o
|
||||
|
||||
|
||||
|
||||
_OUTSRC_FILES := hal/phydm/phydm_debug.o \
|
||||
hal/phydm/phydm_antdiv.o\
|
||||
hal/phydm/phydm_antdect.o\
|
||||
@ -517,7 +517,7 @@ _OUTSRC_FILES += hal/phydm/rtl8821a/halhwimg8821a_fw.o\
|
||||
hal/phydm/rtl8821a/phydm_rtl8821a.o\
|
||||
hal/phydm/rtl8821a/phydm_iqk_8821a_ce.o\
|
||||
hal/phydm/txbf/haltxbfjaguar.o
|
||||
|
||||
|
||||
endif
|
||||
|
||||
endif
|
||||
@ -609,7 +609,7 @@ _HAL_INTFS_FILES += hal/$(RTL871X)/$(RTL871X)_hal_init.o \
|
||||
hal/$(RTL871X)/$(RTL871X)_rf6052.o \
|
||||
hal/$(RTL871X)/$(RTL871X)_dm.o \
|
||||
hal/$(RTL871X)/$(RTL871X)_rxdesc.o \
|
||||
hal/$(RTL871X)/$(RTL871X)_cmd.o
|
||||
hal/$(RTL871X)/$(RTL871X)_cmd.o
|
||||
# hal/$(RTL871X)/hal8814a_fw.o
|
||||
|
||||
|
||||
@ -1837,7 +1837,7 @@ rtk_core := core/rtw_cmd.o \
|
||||
core/rtw_btcoex.o \
|
||||
core/rtw_beamforming.o \
|
||||
core/rtw_odm.o \
|
||||
core/efuse/rtw_efuse.o
|
||||
core/efuse/rtw_efuse.o
|
||||
|
||||
ifeq ($(CONFIG_SDIO_HCI), y)
|
||||
rtk_core += core/rtw_sdio.o
|
||||
|
@ -94,6 +94,10 @@ $ sudo modprobe 8812au rtw_led_ctrl=1
|
||||
|
||||
## Credits
|
||||
```
|
||||
astsam - for the main work + monitor/injection support - https://github.com/astsam
|
||||
evilphish - for great patching (USB3, VHT + txpower control +++) - https://github.com/evilphish
|
||||
astsam - for the main work + monitor/injection support - https://github.com/astsam
|
||||
evilphish - for great patching (USB3, VHT + txpower control +++) - https://github.com/evilphish
|
||||
jcard0na - for fixing the "sluggish" / broken injection - https://github.com/jcard0na
|
||||
dpShaker - for adding support for pre-configured SeqNum (RadioTap)
|
||||
CGarces - for providing kernel support patch (v4.15)
|
||||
brimstone - for providing kernel support patch (v4.14)
|
||||
```
|
||||
|
@ -554,7 +554,6 @@ PHY_ConfigBB_8814A(
|
||||
}
|
||||
|
||||
|
||||
|
||||
//2 3.3 RF Config
|
||||
|
||||
s32
|
||||
@ -1157,7 +1156,7 @@ PHY_GetTxPowerIndex_8814A(
|
||||
tpt_offset = PHY_GetTxPowerTrackingOffset(pAdapter, RFPath, Rate);
|
||||
|
||||
powerDiffByRate = powerDiffByRate > limit ? limit : powerDiffByRate;
|
||||
/*RTW_INFO("Rate-0x%x: (TxPower, PowerDiffByRate Path-%c) = (0x%X, %d)\n", Rate, ((RFPath==0)?'A':(RFPath==1)?'B':(RFPath==2)?'C':'D'), txPower, powerDiffByRate);*/
|
||||
RTW_INFO("Rate-0x%x: (TxPower, PowerDiffByRate Path-%c) = (0x%X, %d)\n", Rate, ((RFPath==0)?'A':(RFPath==1)?'B':(RFPath==2)?'C':'D'), txPower, powerDiffByRate);
|
||||
|
||||
txPower += powerDiffByRate;
|
||||
|
||||
@ -1184,8 +1183,8 @@ PHY_GetTxPowerIndex_8814A(
|
||||
//(pHalData->bautoload_fail_flag || pHalData->EfuseMap[EFUSE_INIT_MAP][EEPROM_TX_PWR_INX_JAGUAR] == 0xFF))
|
||||
//txPower = 0x12;
|
||||
|
||||
/*RTW_INFO("Final Tx Power(RF-%c, Channel: %d) = %d(0x%X)\n", ((RFPath==0)?'A':(RFPath==1)?'B':(RFPath==2)?'C':'D'), Channel,
|
||||
txPower, txPower);*/
|
||||
RTW_INFO("Final Tx Power(RF-%c, Channel: %d) = %d(0x%X)\n", ((RFPath==0)?'A':(RFPath==1)?'B':(RFPath==2)?'C':'D'), Channel,
|
||||
txPower, txPower);
|
||||
|
||||
return (u8) txPower;
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ void rtl8814_sreset_linked_status_check(_adapter *padapter)
|
||||
regc58 = rtw_read32(padapter,0xc58);
|
||||
reg824 = rtw_read32(padapter,0x824);
|
||||
reg800 = rtw_read32(padapter,0x800);
|
||||
if( ((regc50&0xFFFFFF00)!= 0x69543400)||
|
||||
if ( ((regc50&0xFFFFFF00)!= 0x69543400)||
|
||||
((regc58&0xFFFFFF00)!= 0x69543400)||
|
||||
(((reg824&0xFFFFFF00)!= 0x00390000)&&(((reg824&0xFFFFFF00)!= 0x80390000)))||
|
||||
( ((reg800&0xFFFFFF00)!= 0x03040000)&&((reg800&0xFFFFFF00)!= 0x83040000)))
|
||||
|
@ -172,7 +172,6 @@ InsertEMContent_8814(
|
||||
}
|
||||
|
||||
|
||||
|
||||
void UpdateEarlyModeInfo8814(struct xmit_priv *pxmitpriv,struct xmit_buf *pxmitbuf )
|
||||
{
|
||||
//_adapter *padapter, struct xmit_frame *pxmitframe,struct tx_servq *ptxservq
|
||||
@ -254,7 +253,6 @@ void rtl8814a_cal_txdesc_chksum(u8 *ptxdesc)
|
||||
u32 index;
|
||||
u16 checksum = 0;
|
||||
|
||||
|
||||
usPtr = (u16*)ptxdesc;
|
||||
// checksume is always calculated by first 32 bytes,
|
||||
// and it doesn't depend on TX DESC length.
|
||||
@ -439,7 +437,7 @@ BWMapping_8814(
|
||||
else
|
||||
BWSettingOfDesc = 0;
|
||||
}
|
||||
else if(pHalData->CurrentChannelBW== CHANNEL_WIDTH_40) {
|
||||
else if (pHalData->CurrentChannelBW== CHANNEL_WIDTH_40) {
|
||||
if ((pattrib->bwmode == CHANNEL_WIDTH_40) || (pattrib->bwmode == CHANNEL_WIDTH_80))
|
||||
BWSettingOfDesc = 1;
|
||||
else
|
||||
|
@ -61,7 +61,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
|
||||
#ifndef CONFIG_USE_USB_BUFFER_ALLOC_TX
|
||||
if (padapter->registrypriv.mp_mode == 0) {
|
||||
if((PACKET_OFFSET_SZ != 0) && (!bagg_pkt) &&(rtw_usb_bulk_size_boundary(padapter,TXDESC_SIZE+sz)==_FALSE)) {
|
||||
if ((PACKET_OFFSET_SZ != 0) && (!bagg_pkt) &&(rtw_usb_bulk_size_boundary(padapter,TXDESC_SIZE+sz)==_FALSE)) {
|
||||
ptxdesc = (pmem+PACKET_OFFSET_SZ);
|
||||
//RTW_INFO("==> non-agg-pkt,shift pointer...\n");
|
||||
pull = 1;
|
||||
@ -94,10 +94,9 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
}
|
||||
|
||||
#ifndef CONFIG_USE_USB_BUFFER_ALLOC_TX
|
||||
if (padapter->registrypriv.mp_mode == 0)
|
||||
{
|
||||
if((PACKET_OFFSET_SZ != 0) && (!bagg_pkt)){
|
||||
if((pull) && (pxmitframe->pkt_offset>0)) {
|
||||
if (padapter->registrypriv.mp_mode == 0) {
|
||||
if ((PACKET_OFFSET_SZ != 0) && (!bagg_pkt)) {
|
||||
if ((pull) && (pxmitframe->pkt_offset>0)) {
|
||||
pxmitframe->pkt_offset = pxmitframe->pkt_offset -1;
|
||||
}
|
||||
}
|
||||
@ -130,8 +129,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
SET_TX_DESC_SEQ_8814A(ptxdesc, pattrib->seqnum);
|
||||
}
|
||||
|
||||
if((pxmitframe->frame_tag&0x0f) == DATA_FRAMETAG)
|
||||
{
|
||||
if ((pxmitframe->frame_tag&0x0f) == DATA_FRAMETAG) {
|
||||
//RTW_INFO("pxmitframe->frame_tag == DATA_FRAMETAG\n");
|
||||
|
||||
rtl8814a_fill_txdesc_sectype(pattrib, ptxdesc);
|
||||
@ -189,7 +187,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
if (padapter->fix_rate != 0xFF) { // modify data rate by iwpriv
|
||||
SET_TX_DESC_USE_RATE_8814A(ptxdesc, 1);
|
||||
DriverFixedRate = 0x01;
|
||||
if(padapter->fix_rate & BIT(7))
|
||||
if (padapter->fix_rate & BIT(7))
|
||||
SET_TX_DESC_DATA_SHORT_8814A(ptxdesc, 1);
|
||||
|
||||
SET_TX_DESC_TX_RATE_8814A(ptxdesc, (padapter->fix_rate & 0x7F));
|
||||
@ -202,7 +200,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
if (pattrib->stbc)
|
||||
SET_TX_DESC_DATA_STBC_8814A(ptxdesc, 1);
|
||||
|
||||
//work arond before fixing RA
|
||||
//work around before fixing RA
|
||||
//SET_TX_DESC_USE_RATE_8814A(ptxdesc, 1);
|
||||
//SET_TX_DESC_TX_RATE_8814A(ptxdesc, 0x10);
|
||||
} else {
|
||||
@ -253,7 +251,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
||||
SET_TX_DESC_DATA_RETRY_LIMIT_8814A(ptxdesc, 5);
|
||||
SET_TX_DESC_DISABLE_FB_8814A(ptxdesc, 1);
|
||||
|
||||
//if(pattrib->rts_cca)
|
||||
//if (pattrib->rts_cca)
|
||||
//{
|
||||
// SET_TX_DESC_NDPA_8812(ptxdesc, 2);
|
||||
//}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
* published by the Free Software Foundation.
|
||||
@ -24,17 +24,16 @@
|
||||
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8814au(_adapter *padapter,u16 pkt_len,u8 *pbuf)
|
||||
{
|
||||
{
|
||||
HAL_DATA_TYPE *pHalData=GET_HAL_DATA(padapter);
|
||||
struct reportpwrstate_parm pwr_rpt;
|
||||
|
||||
if ( pkt_len != INTERRUPT_MSG_FORMAT_LEN )
|
||||
{
|
||||
|
||||
if ( pkt_len != INTERRUPT_MSG_FORMAT_LEN ) {
|
||||
RTW_INFO("%s Invalid interrupt content length (%d)!\n", __FUNCTION__, pkt_len);
|
||||
return ;
|
||||
}
|
||||
|
||||
// HISR
|
||||
// HISR
|
||||
_rtw_memcpy(&(pHalData->IntArray[0]), &(pbuf[USB_INTR_CONTENT_HISR_OFFSET]), 4);
|
||||
_rtw_memcpy(&(pHalData->IntArray[1]), &(pbuf[USB_INTR_CONTENT_HISRE_OFFSET]), 4);
|
||||
|
||||
@ -42,25 +41,24 @@ void interrupt_handler_8814au(_adapter *padapter,u16 pkt_len,u8 *pbuf)
|
||||
{
|
||||
u32 hisr=0 ,hisr_ex=0;
|
||||
_rtw_memcpy(&hisr,&(pHalData->IntArray[0]),4);
|
||||
hisr = le32_to_cpu(hisr);
|
||||
|
||||
hisr = le32_to_cpu(hisr);
|
||||
|
||||
_rtw_memcpy(&hisr_ex,&(pHalData->IntArray[1]),4);
|
||||
hisr_ex = le32_to_cpu(hisr_ex);
|
||||
|
||||
if((hisr != 0) || (hisr_ex!=0))
|
||||
|
||||
if ((hisr != 0) || (hisr_ex!=0))
|
||||
RTW_INFO("===> %s hisr:0x%08x ,hisr_ex:0x%08x \n",__FUNCTION__,hisr,hisr_ex);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef CONFIG_LPS_LCLK
|
||||
if( pHalData->IntArray[0] & IMR_CPWM_88E )
|
||||
{
|
||||
if ( pHalData->IntArray[0] & IMR_CPWM_88E ) {
|
||||
_rtw_memcpy(&pwr_rpt.state, &(pbuf[USB_INTR_CONTENT_CPWM1_OFFSET]), 1);
|
||||
//_rtw_memcpy(&pwr_rpt.state2, &(pbuf[USB_INTR_CONTENT_CPWM2_OFFSET]), 1);
|
||||
|
||||
//88e's cpwm value only change BIT0, so driver need to add PS_STATE_S2 for LPS flow.
|
||||
pwr_rpt.state |= PS_STATE_S2;
|
||||
//88e's cpwm value only change BIT0, so driver need to add PS_STATE_S2 for LPS flow.
|
||||
pwr_rpt.state |= PS_STATE_S2;
|
||||
_set_workitem(&(adapter_to_pwrctl(padapter)->cpwm_event));
|
||||
}
|
||||
#endif//CONFIG_LPS_LCLK
|
||||
@ -72,40 +70,38 @@ void interrupt_handler_8814au(_adapter *padapter,u16 pkt_len,u8 *pbuf)
|
||||
#endif
|
||||
#ifdef CONFIG_INTERRUPT_BASED_TXBCN_BCN_OK_ERR
|
||||
if (pHalData->IntArray[0] & (IMR_TBDER_88E|IMR_TBDOK_88E))
|
||||
#endif
|
||||
{
|
||||
#endif
|
||||
{
|
||||
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
||||
#if 0
|
||||
if(pHalData->IntArray[0] & IMR_BCNDMAINT0_88E)
|
||||
if (pHalData->IntArray[0] & IMR_BCNDMAINT0_88E)
|
||||
RTW_INFO("%s: HISR_BCNERLY_INT\n", __func__);
|
||||
if(pHalData->IntArray[0] & IMR_TBDOK_88E)
|
||||
if (pHalData->IntArray[0] & IMR_TBDOK_88E)
|
||||
RTW_INFO("%s: HISR_TXBCNOK\n", __func__);
|
||||
if(pHalData->IntArray[0] & IMR_TBDER_88E)
|
||||
if (pHalData->IntArray[0] & IMR_TBDER_88E)
|
||||
RTW_INFO("%s: HISR_TXBCNERR\n", __func__);
|
||||
#endif
|
||||
|
||||
|
||||
if(check_fwstate(pmlmepriv, WIFI_AP_STATE))
|
||||
{
|
||||
|
||||
if (check_fwstate(pmlmepriv, WIFI_AP_STATE)) {
|
||||
//send_beacon(padapter);
|
||||
if(pmlmepriv->update_bcn == _TRUE)
|
||||
if (pmlmepriv->update_bcn == _TRUE)
|
||||
{
|
||||
//tx_beacon_hdl(padapter, NULL);
|
||||
set_tx_beacon_cmd(padapter);
|
||||
}
|
||||
}
|
||||
#ifdef CONFIG_CONCURRENT_MODE
|
||||
if(check_buddy_fwstate(padapter, WIFI_AP_STATE))
|
||||
{
|
||||
if (check_buddy_fwstate(padapter, WIFI_AP_STATE)) {
|
||||
//send_beacon(padapter);
|
||||
if(padapter->pbuddy_adapter->mlmepriv.update_bcn == _TRUE)
|
||||
if (padapter->pbuddy_adapter->mlmepriv.update_bcn == _TRUE)
|
||||
{
|
||||
//tx_beacon_hdl(padapter, NULL);
|
||||
set_tx_beacon_cmd(padapter->pbuddy_adapter);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
}
|
||||
#endif //CONFIG_INTERRUPT_BASED_TXBCN
|
||||
|
||||
|
@ -355,4 +355,4 @@
|
||||
|
||||
/*#define DBG_MEMORY_LEAK*/
|
||||
#define DBG_RX_DFRAME_RAW_DATA
|
||||
/*#define CONFIG_USE_EXTERNAL_POWER */ /* NOT USB2.0 power, so no 500mA power constraint, no limitation in Power by Rate*/
|
||||
#define CONFIG_USE_EXTERNAL_POWER /* NOT USB2.0 power, so no 500mA power constraint, no limitation in Power by Rate */
|
||||
|
0
include/hal_data.h
Executable file → Normal file
0
include/hal_data.h
Executable file → Normal file
@ -1,652 +0,0 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
#ifndef __HAL_DATA_H__
|
||||
#define __HAL_DATA_H__
|
||||
|
||||
#if 1//def CONFIG_SINGLE_IMG
|
||||
|
||||
#include "../hal/phydm/phydm_precomp.h"
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
#include <hal_btcoex.h>
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SDIO_HCI
|
||||
#include <hal_sdio.h>
|
||||
#endif
|
||||
#ifdef CONFIG_GSPI_HCI
|
||||
#include <hal_gspi.h>
|
||||
#endif
|
||||
//
|
||||
// <Roger_Notes> For RTL8723 WiFi/BT/GPS multi-function configuration. 2010.10.06.
|
||||
//
|
||||
typedef enum _RT_MULTI_FUNC{
|
||||
RT_MULTI_FUNC_NONE = 0x00,
|
||||
RT_MULTI_FUNC_WIFI = 0x01,
|
||||
RT_MULTI_FUNC_BT = 0x02,
|
||||
RT_MULTI_FUNC_GPS = 0x04,
|
||||
}RT_MULTI_FUNC,*PRT_MULTI_FUNC;
|
||||
//
|
||||
// <Roger_Notes> For RTL8723 WiFi PDn/GPIO polarity control configuration. 2010.10.08.
|
||||
//
|
||||
typedef enum _RT_POLARITY_CTL {
|
||||
RT_POLARITY_LOW_ACT = 0,
|
||||
RT_POLARITY_HIGH_ACT = 1,
|
||||
} RT_POLARITY_CTL, *PRT_POLARITY_CTL;
|
||||
|
||||
// For RTL8723 regulator mode. by tynli. 2011.01.14.
|
||||
typedef enum _RT_REGULATOR_MODE {
|
||||
RT_SWITCHING_REGULATOR = 0,
|
||||
RT_LDO_REGULATOR = 1,
|
||||
} RT_REGULATOR_MODE, *PRT_REGULATOR_MODE;
|
||||
|
||||
//
|
||||
// Interface type.
|
||||
//
|
||||
typedef enum _INTERFACE_SELECT_PCIE{
|
||||
INTF_SEL0_SOLO_MINICARD = 0, // WiFi solo-mCard
|
||||
INTF_SEL1_BT_COMBO_MINICARD = 1, // WiFi+BT combo-mCard
|
||||
INTF_SEL2_PCIe = 2, // PCIe Card
|
||||
} INTERFACE_SELECT_PCIE, *PINTERFACE_SELECT_PCIE;
|
||||
|
||||
|
||||
typedef enum _INTERFACE_SELECT_USB{
|
||||
INTF_SEL0_USB = 0, // USB
|
||||
INTF_SEL1_USB_High_Power = 1, // USB with high power PA
|
||||
INTF_SEL2_MINICARD = 2, // Minicard
|
||||
INTF_SEL3_USB_Solo = 3, // USB solo-Slim module
|
||||
INTF_SEL4_USB_Combo = 4, // USB Combo-Slim module
|
||||
INTF_SEL5_USB_Combo_MF = 5, // USB WiFi+BT Multi-Function Combo, i.e., Proprietary layout(AS-VAU) which is the same as SDIO card
|
||||
} INTERFACE_SELECT_USB, *PINTERFACE_SELECT_USB;
|
||||
|
||||
typedef enum _RT_AMPDU_BRUST_MODE{
|
||||
RT_AMPDU_BRUST_NONE = 0,
|
||||
RT_AMPDU_BRUST_92D = 1,
|
||||
RT_AMPDU_BRUST_88E = 2,
|
||||
RT_AMPDU_BRUST_8812_4 = 3,
|
||||
RT_AMPDU_BRUST_8812_8 = 4,
|
||||
RT_AMPDU_BRUST_8812_12 = 5,
|
||||
RT_AMPDU_BRUST_8812_15 = 6,
|
||||
RT_AMPDU_BRUST_8723B = 7,
|
||||
}RT_AMPDU_BRUST,*PRT_AMPDU_BRUST_MODE;
|
||||
|
||||
/*
|
||||
#define CHANNEL_MAX_NUMBER 14+24+21 // 14 is the max channel number
|
||||
*/
|
||||
#define CHANNEL_GROUP_MAX (3 + 9) /* ch1~3, ch4~9, ch10~14 total three groups */
|
||||
#define MAX_PG_GROUP 13
|
||||
|
||||
// Tx Power Limit Table Size
|
||||
#define MAX_REGULATION_NUM 4
|
||||
#define MAX_RF_PATH_NUM_IN_POWER_LIMIT_TABLE 4
|
||||
#define MAX_2_4G_BANDWIDTH_NUM 2
|
||||
#define MAX_RATE_SECTION_NUM 10
|
||||
#define MAX_5G_BANDWIDTH_NUM 4
|
||||
|
||||
#define MAX_BASE_NUM_IN_PHY_REG_PG_2_4G 10 // CCK:1,OFDM:1, HT:4, VHT:4
|
||||
#define MAX_BASE_NUM_IN_PHY_REG_PG_5G 9 // OFDM:1, HT:4, VHT:4
|
||||
|
||||
|
||||
//###### duplicate code,will move to ODM #########
|
||||
//#define IQK_MAC_REG_NUM 4
|
||||
//#define IQK_ADDA_REG_NUM 16
|
||||
|
||||
//#define IQK_BB_REG_NUM 10
|
||||
#define IQK_BB_REG_NUM_92C 9
|
||||
#define IQK_BB_REG_NUM_92D 10
|
||||
#define IQK_BB_REG_NUM_test 6
|
||||
|
||||
#define IQK_Matrix_Settings_NUM_92D 1+24+21
|
||||
|
||||
//#define HP_THERMAL_NUM 8
|
||||
//###### duplicate code,will move to ODM #########
|
||||
|
||||
#ifdef CONFIG_USB_RX_AGGREGATION
|
||||
typedef enum _USB_RX_AGG_MODE{
|
||||
USB_RX_AGG_DISABLE,
|
||||
USB_RX_AGG_DMA,
|
||||
USB_RX_AGG_USB,
|
||||
USB_RX_AGG_MIX
|
||||
}USB_RX_AGG_MODE;
|
||||
|
||||
//#define MAX_RX_DMA_BUFFER_SIZE 10240 // 10K for 8192C RX DMA buffer
|
||||
|
||||
#endif
|
||||
|
||||
/* For store initial value of BB register */
|
||||
typedef struct _BB_INIT_REGISTER {
|
||||
u16 offset;
|
||||
u32 value;
|
||||
|
||||
} BB_INIT_REGISTER, *PBB_INIT_REGISTER;
|
||||
|
||||
#define PAGE_SIZE_128 128
|
||||
#define PAGE_SIZE_256 256
|
||||
#define PAGE_SIZE_512 512
|
||||
|
||||
#define HCI_SUS_ENTER 0
|
||||
#define HCI_SUS_LEAVING 1
|
||||
#define HCI_SUS_LEAVE 2
|
||||
#define HCI_SUS_ENTERING 3
|
||||
#define HCI_SUS_ERR 4
|
||||
|
||||
#ifdef CONFIG_AUTO_CHNL_SEL_NHM
|
||||
typedef enum _ACS_OP {
|
||||
ACS_INIT, /*ACS - Variable init*/
|
||||
ACS_RESET, /*ACS - NHM Counter reset*/
|
||||
ACS_SELECT, /*ACS - NHM Counter Statistics */
|
||||
} ACS_OP;
|
||||
|
||||
typedef enum _ACS_STATE {
|
||||
ACS_DISABLE,
|
||||
ACS_ENABLE,
|
||||
} ACS_STATE;
|
||||
|
||||
struct auto_chan_sel {
|
||||
ATOMIC_T state;
|
||||
u8 ch; /* previous channel*/
|
||||
};
|
||||
#endif /*CONFIG_AUTO_CHNL_SEL_NHM*/
|
||||
|
||||
#define EFUSE_FILE_UNUSED 0
|
||||
#define EFUSE_FILE_FAILED 1
|
||||
#define EFUSE_FILE_LOADED 2
|
||||
|
||||
#define MACADDR_FILE_UNUSED 0
|
||||
#define MACADDR_FILE_FAILED 1
|
||||
#define MACADDR_FILE_LOADED 2
|
||||
|
||||
#define KFREE_FLAG_ON BIT0
|
||||
#define KFREE_FLAG_THERMAL_K_ON BIT1
|
||||
|
||||
struct kfree_data_t {
|
||||
u8 flag;
|
||||
s8 bb_gain[BB_GAIN_NUM][RF_PATH_MAX];
|
||||
|
||||
#ifdef CONFIG_IEEE80211_BAND_5GHZ
|
||||
s8 pa_bias_5g[RF_PATH_MAX];
|
||||
s8 pad_bias_5g[RF_PATH_MAX];
|
||||
#endif
|
||||
s8 thermal;
|
||||
};
|
||||
|
||||
bool kfree_data_is_bb_gain_empty(struct kfree_data_t *data);
|
||||
|
||||
struct hal_spec_t {
|
||||
u8 macid_num;
|
||||
|
||||
u8 sec_cam_ent_num;
|
||||
u8 sec_cap;
|
||||
|
||||
u8 nss_num;
|
||||
u8 band_cap; /* value of BAND_CAP_XXX */
|
||||
u8 bw_cap; /* value of BW_CAP_XXX */
|
||||
|
||||
u8 wl_func; /* value of WL_FUNC_XXX */
|
||||
};
|
||||
|
||||
typedef struct hal_com_data
|
||||
{
|
||||
HAL_VERSION VersionID;
|
||||
RT_MULTI_FUNC MultiFunc; // For multi-function consideration.
|
||||
RT_POLARITY_CTL PolarityCtl; // For Wifi PDn Polarity control.
|
||||
RT_REGULATOR_MODE RegulatorMode; // switching regulator or LDO
|
||||
u8 hw_init_completed;
|
||||
/****** FW related ******/
|
||||
u16 FirmwareVersion;
|
||||
u16 FirmwareVersionRev;
|
||||
u16 FirmwareSubVersion;
|
||||
u16 FirmwareSignature;
|
||||
u8 RegFWOffload;
|
||||
u8 fw_ractrl;
|
||||
u8 FwRsvdPageStartOffset; /* 2010.06.23. Added by tynli. Reserve page start offset except beacon in TxQ.*/
|
||||
u8 LastHMEBoxNum; /* H2C - for host message to fw */
|
||||
|
||||
/****** current WIFI_PHY values ******/
|
||||
WIRELESS_MODE CurrentWirelessMode;
|
||||
CHANNEL_WIDTH CurrentChannelBW;
|
||||
BAND_TYPE CurrentBandType; /* 0:2.4G, 1:5G */
|
||||
BAND_TYPE BandSet;
|
||||
u8 CurrentChannel;
|
||||
u8 CurrentCenterFrequencyIndex1;
|
||||
u8 nCur40MhzPrimeSC; /* Control channel sub-carrier */
|
||||
u8 nCur80MhzPrimeSC; /* used for primary 40MHz of 80MHz mode */
|
||||
BOOLEAN bSwChnlAndSetBWInProgress;
|
||||
u8 bDisableSWChannelPlan; /* flag of disable software change channel plan */
|
||||
u16 BasicRateSet;
|
||||
u32 ReceiveConfig;
|
||||
BOOLEAN bSwChnl;
|
||||
BOOLEAN bSetChnlBW;
|
||||
BOOLEAN bChnlBWInitialized;
|
||||
#ifdef CONFIG_AUTO_CHNL_SEL_NHM
|
||||
struct auto_chan_sel acs;
|
||||
#endif
|
||||
/****** rf_ctrl *****/
|
||||
u8 rf_chip;
|
||||
u8 rf_type;
|
||||
u8 PackageType;
|
||||
u8 NumTotalRFPath;
|
||||
|
||||
/****** Debug ******/
|
||||
u16 ForcedDataRate; /* Force Data Rate. 0: Auto, 0x02: 1M ~ 0x6C: 54M. */
|
||||
u8 u1ForcedIgiLb; /* forced IGI lower bound */
|
||||
u8 bDumpRxPkt;
|
||||
u8 bDumpTxPkt;
|
||||
u8 bDisableTXPowerTraining;
|
||||
|
||||
|
||||
/****** EEPROM setting.******/
|
||||
u8 bautoload_fail_flag;
|
||||
u8 efuse_file_status;
|
||||
u8 macaddr_file_status;
|
||||
u8 EepromOrEfuse;
|
||||
u8 efuse_eeprom_data[EEPROM_MAX_SIZE]; /*92C:256bytes, 88E:512bytes, we use union set (512bytes)*/
|
||||
u8 InterfaceSel; /* board type kept in eFuse */
|
||||
u16 CustomerID;
|
||||
|
||||
u16 EEPROMVID;
|
||||
u16 EEPROMSVID;
|
||||
#ifdef CONFIG_USB_HCI
|
||||
u16 EEPROMPID;
|
||||
u16 EEPROMSDID;
|
||||
#endif
|
||||
#ifdef CONFIG_PCI_HCI
|
||||
u16 EEPROMDID;
|
||||
u16 EEPROMSMID;
|
||||
#endif
|
||||
|
||||
u8 EEPROMCustomerID;
|
||||
u8 EEPROMSubCustomerID;
|
||||
u8 EEPROMVersion;
|
||||
u8 EEPROMRegulatory;
|
||||
u8 EEPROMThermalMeter;
|
||||
u8 EEPROMBluetoothCoexist;
|
||||
u8 EEPROMBluetoothType;
|
||||
u8 EEPROMBluetoothAntNum;
|
||||
u8 EEPROMBluetoothAntIsolation;
|
||||
u8 EEPROMBluetoothRadioShared;
|
||||
u8 bTXPowerDataReadFromEEPORM;
|
||||
u8 EEPROMMACAddr[ETH_ALEN];
|
||||
|
||||
#ifdef CONFIG_RF_GAIN_OFFSET
|
||||
u8 EEPROMRFGainOffset;
|
||||
u8 EEPROMRFGainVal;
|
||||
struct kfree_data_t kfree_data;
|
||||
#endif /*CONFIG_RF_GAIN_OFFSET*/
|
||||
|
||||
#if defined(CONFIG_RTL8723B) || defined(CONFIG_RTL8703B)
|
||||
u8 adjuseVoltageVal;
|
||||
#endif
|
||||
u8 EfuseUsedPercentage;
|
||||
u16 EfuseUsedBytes;
|
||||
/*u8 EfuseMap[2][HWSET_MAX_SIZE_JAGUAR];*/
|
||||
EFUSE_HAL EfuseHal;
|
||||
|
||||
/*---------------------------------------------------------------------------------*/
|
||||
//3 [2.4G]
|
||||
u8 Index24G_CCK_Base[MAX_RF_PATH][CENTER_CH_2G_NUM];
|
||||
u8 Index24G_BW40_Base[MAX_RF_PATH][CENTER_CH_2G_NUM];
|
||||
//If only one tx, only BW20 and OFDM are used.
|
||||
s8 CCK_24G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 OFDM_24G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 BW20_24G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 BW40_24G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
//3 [5G]
|
||||
u8 Index5G_BW40_Base[MAX_RF_PATH][CENTER_CH_5G_ALL_NUM];
|
||||
u8 Index5G_BW80_Base[MAX_RF_PATH][CENTER_CH_5G_80M_NUM];
|
||||
s8 OFDM_5G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 BW20_5G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 BW40_5G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
s8 BW80_5G_Diff[MAX_RF_PATH][MAX_TX_COUNT];
|
||||
|
||||
u8 Regulation2_4G;
|
||||
u8 Regulation5G;
|
||||
|
||||
u8 TxPwrInPercentage;
|
||||
|
||||
/********************************
|
||||
* TX power by rate table at most 4RF path.
|
||||
* The register is
|
||||
*
|
||||
* VHT TX power by rate off setArray =
|
||||
* Band:-2G&5G = 0 / 1
|
||||
* RF: at most 4*4 = ABCD=0/1/2/3
|
||||
* CCK=0 OFDM=1/2 HT-MCS 0-15=3/4/56 VHT=7/8/9/10/11
|
||||
**********************************/
|
||||
u8 TxPwrByRateTable;
|
||||
u8 TxPwrByRateBand;
|
||||
s8 TxPwrByRateOffset[TX_PWR_BY_RATE_NUM_BAND]
|
||||
[TX_PWR_BY_RATE_NUM_RF]
|
||||
[TX_PWR_BY_RATE_NUM_RF]
|
||||
[TX_PWR_BY_RATE_NUM_RATE];
|
||||
//---------------------------------------------------------------------------------//
|
||||
|
||||
/*
|
||||
//2 Power Limit Table
|
||||
u8 TxPwrLevelCck[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER];
|
||||
u8 TxPwrLevelHT40_1S[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER]; // For HT 40MHZ pwr
|
||||
u8 TxPwrLevelHT40_2S[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER]; // For HT 40MHZ pwr
|
||||
s8 TxPwrHt20Diff[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER];// HT 20<->40 Pwr diff
|
||||
u8 TxPwrLegacyHtDiff[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER];// For HT<->legacy pwr diff
|
||||
*/
|
||||
|
||||
u8 tx_pwr_lmt_5g_20_40_ref;
|
||||
|
||||
// Power Limit Table for 2.4G
|
||||
s8 TxPwrLimit_2_4G[MAX_REGULATION_NUM]
|
||||
[MAX_2_4G_BANDWIDTH_NUM]
|
||||
[MAX_RATE_SECTION_NUM]
|
||||
[CENTER_CH_2G_NUM]
|
||||
[MAX_RF_PATH];
|
||||
|
||||
// Power Limit Table for 5G
|
||||
s8 TxPwrLimit_5G[MAX_REGULATION_NUM]
|
||||
[MAX_5G_BANDWIDTH_NUM]
|
||||
[MAX_RATE_SECTION_NUM]
|
||||
[CENTER_CH_5G_ALL_NUM]
|
||||
[MAX_RF_PATH];
|
||||
|
||||
|
||||
// Store the original power by rate value of the base of each rate section of rf path A & B
|
||||
u8 TxPwrByRateBase2_4G[TX_PWR_BY_RATE_NUM_RF]
|
||||
[TX_PWR_BY_RATE_NUM_RF]
|
||||
[MAX_BASE_NUM_IN_PHY_REG_PG_2_4G];
|
||||
u8 TxPwrByRateBase5G[TX_PWR_BY_RATE_NUM_RF]
|
||||
[TX_PWR_BY_RATE_NUM_RF]
|
||||
[MAX_BASE_NUM_IN_PHY_REG_PG_5G];
|
||||
|
||||
<<<<<<< .mine
|
||||
u8 TxPwrShadow[MAX_RF_PATH][DESC_RATEMAX];
|
||||
=======
|
||||
u8 txpwr_by_rate_loaded:1;
|
||||
u8 txpwr_by_rate_from_file:1;
|
||||
u8 txpwr_limit_loaded:1;
|
||||
u8 txpwr_limit_from_file:1;
|
||||
|
||||
>>>>>>> .r15056
|
||||
// For power group
|
||||
/*
|
||||
u8 PwrGroupHT20[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER];
|
||||
u8 PwrGroupHT40[RF_PATH_MAX_92C_88E][CHANNEL_MAX_NUMBER];
|
||||
*/
|
||||
u8 PGMaxGroup;
|
||||
|
||||
// The current Tx Power Level
|
||||
u8 CurrentCckTxPwrIdx;
|
||||
u8 CurrentOfdm24GTxPwrIdx;
|
||||
u8 CurrentBW2024GTxPwrIdx;
|
||||
u8 CurrentBW4024GTxPwrIdx;
|
||||
|
||||
// Read/write are allow for following hardware information variables
|
||||
u8 pwrGroupCnt;
|
||||
u32 MCSTxPowerLevelOriginalOffset[MAX_PG_GROUP][16];
|
||||
u32 CCKTxPowerLevelOriginalOffset;
|
||||
|
||||
u8 CrystalCap;
|
||||
|
||||
u8 PAType_2G;
|
||||
u8 PAType_5G;
|
||||
u8 LNAType_2G;
|
||||
u8 LNAType_5G;
|
||||
u8 ExternalPA_2G;
|
||||
u8 ExternalLNA_2G;
|
||||
u8 ExternalPA_5G;
|
||||
u8 ExternalLNA_5G;
|
||||
u16 TypeGLNA;
|
||||
u16 TypeGPA;
|
||||
u16 TypeALNA;
|
||||
u16 TypeAPA;
|
||||
u16 RFEType;
|
||||
|
||||
u8 bLedOpenDrain; /* Support Open-drain arrangement for controlling the LED. Added by Roger, 2009.10.16. */
|
||||
u32 AcParam_BE; /* Original parameter for BE, use for EDCA turbo. */
|
||||
|
||||
BB_REGISTER_DEFINITION_T PHYRegDef[MAX_RF_PATH]; //Radio A/B/C/D
|
||||
|
||||
u32 RfRegChnlVal[MAX_RF_PATH];
|
||||
|
||||
//RDG enable
|
||||
BOOLEAN bRDGEnable;
|
||||
|
||||
u8 RegTxPause;
|
||||
// Beacon function related global variable.
|
||||
u8 RegBcnCtrlVal;
|
||||
u8 RegFwHwTxQCtrl;
|
||||
u8 RegReg542;
|
||||
u8 RegCR_1;
|
||||
u8 Reg837;
|
||||
u16 RegRRSR;
|
||||
|
||||
/****** antenna diversity ******/
|
||||
u8 CurAntenna;
|
||||
u8 AntDivCfg;
|
||||
u8 AntDetection;
|
||||
u8 TRxAntDivType;
|
||||
u8 ant_path; //for 8723B s0/s1 selection
|
||||
u32 AntennaTxPath; /* Antenna path Tx */
|
||||
u32 AntennaRxPath; /* Antenna path Rx */
|
||||
|
||||
/******** PHY DM & DM Section **********/
|
||||
u8 DM_Type;
|
||||
_lock IQKSpinLock;
|
||||
u8 INIDATA_RATE[MACID_NUM_SW_LIMIT];
|
||||
/* Upper and Lower Signal threshold for Rate Adaptive*/
|
||||
int EntryMinUndecoratedSmoothedPWDB;
|
||||
int EntryMaxUndecoratedSmoothedPWDB;
|
||||
int MinUndecoratedPWDBForDM;
|
||||
DM_ODM_T odmpriv;
|
||||
u8 bIQKInitialized;
|
||||
u8 bNeedIQK;
|
||||
/******** PHY DM & DM Section **********/
|
||||
|
||||
|
||||
|
||||
// 2010/08/09 MH Add CU power down mode.
|
||||
BOOLEAN pwrdown;
|
||||
|
||||
// Add for dual MAC 0--Mac0 1--Mac1
|
||||
u32 interfaceIndex;
|
||||
|
||||
#ifdef CONFIG_P2P
|
||||
u8 p2p_ps_offload;
|
||||
#endif
|
||||
/* Auto FSM to Turn On, include clock, isolation, power control for MAC only */
|
||||
u8 bMacPwrCtrlOn;
|
||||
u8 hci_sus_state;
|
||||
|
||||
u8 RegIQKFWOffload;
|
||||
struct submit_ctx iqk_sctx;
|
||||
|
||||
RT_AMPDU_BRUST AMPDUBurstMode; //92C maybe not use, but for compile successfully
|
||||
|
||||
u8 OutEpQueueSel;
|
||||
u8 OutEpNumber;
|
||||
|
||||
#if defined (CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI)
|
||||
//
|
||||
// For SDIO Interface HAL related
|
||||
//
|
||||
|
||||
//
|
||||
// SDIO ISR Related
|
||||
//
|
||||
// u32 IntrMask[1];
|
||||
// u32 IntrMaskToSet[1];
|
||||
// LOG_INTERRUPT InterruptLog;
|
||||
u32 sdio_himr;
|
||||
u32 sdio_hisr;
|
||||
|
||||
//
|
||||
// SDIO Tx FIFO related.
|
||||
//
|
||||
// HIQ, MID, LOW, PUB free pages; padapter->xmitpriv.free_txpg
|
||||
u8 SdioTxFIFOFreePage[SDIO_TX_FREE_PG_QUEUE];
|
||||
_lock SdioTxFIFOFreePageLock;
|
||||
u8 SdioTxOQTMaxFreeSpace;
|
||||
u8 SdioTxOQTFreeSpace;
|
||||
|
||||
//
|
||||
// SDIO Rx FIFO related.
|
||||
//
|
||||
u8 SdioRxFIFOCnt;
|
||||
u16 SdioRxFIFOSize;
|
||||
|
||||
u32 sdio_tx_max_len[SDIO_MAX_TX_QUEUE];// H, N, L, used for sdio tx aggregation max length per queue
|
||||
#endif //CONFIG_SDIO_HCI
|
||||
|
||||
#ifdef CONFIG_USB_HCI
|
||||
|
||||
// 2010/12/10 MH Add for USB aggreation mode dynamic shceme.
|
||||
BOOLEAN UsbRxHighSpeedMode;
|
||||
BOOLEAN UsbTxVeryHighSpeedMode;
|
||||
u32 UsbBulkOutSize;
|
||||
BOOLEAN bSupportUSB3;
|
||||
|
||||
// Interrupt relatd register information.
|
||||
u32 IntArray[3];//HISR0,HISR1,HSISR
|
||||
u32 IntrMask[3];
|
||||
u8 C2hArray[16];
|
||||
#ifdef CONFIG_USB_TX_AGGREGATION
|
||||
u8 UsbTxAggMode;
|
||||
u8 UsbTxAggDescNum;
|
||||
#endif // CONFIG_USB_TX_AGGREGATION
|
||||
|
||||
#ifdef CONFIG_USB_RX_AGGREGATION
|
||||
u16 HwRxPageSize; // Hardware setting
|
||||
u32 MaxUsbRxAggBlock;
|
||||
|
||||
USB_RX_AGG_MODE UsbRxAggMode;
|
||||
u8 UsbRxAggBlockCount; /* FOR USB Mode, USB Block count. Block size is 512-byte in hight speed and 64-byte in full speed */
|
||||
u8 UsbRxAggBlockTimeout;
|
||||
u8 UsbRxAggPageCount; /* FOR DMA Mode, 8192C DMA page count*/
|
||||
u8 UsbRxAggPageTimeout;
|
||||
|
||||
u8 RegAcUsbDmaSize;
|
||||
u8 RegAcUsbDmaTime;
|
||||
#endif//CONFIG_USB_RX_AGGREGATION
|
||||
#endif //CONFIG_USB_HCI
|
||||
|
||||
|
||||
#ifdef CONFIG_PCI_HCI
|
||||
//
|
||||
// EEPROM setting.
|
||||
//
|
||||
u32 TransmitConfig;
|
||||
u32 IntrMaskToSet[2];
|
||||
u32 IntArray[2];
|
||||
u32 IntrMask[2];
|
||||
u32 SysIntArray[1];
|
||||
u32 SysIntrMask[1];
|
||||
u32 IntrMaskReg[2];
|
||||
u32 IntrMaskDefault[2];
|
||||
|
||||
BOOLEAN bL1OffSupport;
|
||||
BOOLEAN bSupportBackDoor;
|
||||
|
||||
u8 bDefaultAntenna;
|
||||
|
||||
u8 bInterruptMigration;
|
||||
u8 bDisableTxInt;
|
||||
|
||||
u16 RxTag;
|
||||
#endif //CONFIG_PCI_HCI
|
||||
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
struct sreset_priv srestpriv;
|
||||
#endif //#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
// For bluetooth co-existance
|
||||
BT_COEXIST bt_coexist;
|
||||
#endif // CONFIG_BT_COEXIST
|
||||
|
||||
#if defined(CONFIG_RTL8723B) || defined(CONFIG_RTL8703B) || defined(CONFIG_RTL8188F)
|
||||
#ifndef CONFIG_PCI_HCI // mutual exclusive with PCI -- so they're SDIO and GSPI
|
||||
// Interrupt relatd register information.
|
||||
u32 SysIntrStatus;
|
||||
u32 SysIntrMask;
|
||||
#endif
|
||||
#endif /*endif CONFIG_RTL8723B */
|
||||
|
||||
#ifdef CONFIG_LOAD_PHY_PARA_FROM_FILE
|
||||
char para_file_buf[MAX_PARA_FILE_BUF_LEN];
|
||||
char *mac_reg;
|
||||
u32 mac_reg_len;
|
||||
char *bb_phy_reg;
|
||||
u32 bb_phy_reg_len;
|
||||
char *bb_agc_tab;
|
||||
u32 bb_agc_tab_len;
|
||||
char *bb_phy_reg_pg;
|
||||
u32 bb_phy_reg_pg_len;
|
||||
char *bb_phy_reg_mp;
|
||||
u32 bb_phy_reg_mp_len;
|
||||
char *rf_radio_a;
|
||||
u32 rf_radio_a_len;
|
||||
char *rf_radio_b;
|
||||
u32 rf_radio_b_len;
|
||||
char *rf_tx_pwr_track;
|
||||
u32 rf_tx_pwr_track_len;
|
||||
char *rf_tx_pwr_lmt;
|
||||
u32 rf_tx_pwr_lmt_len;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BACKGROUND_NOISE_MONITOR
|
||||
s16 noise[ODM_MAX_CHANNEL_NUM];
|
||||
#endif
|
||||
|
||||
struct hal_spec_t hal_spec;
|
||||
|
||||
u8 RfKFreeEnable;
|
||||
u8 RfKFree_ch_group;
|
||||
BOOLEAN bCCKinCH14;
|
||||
BB_INIT_REGISTER RegForRecover[5];
|
||||
|
||||
} HAL_DATA_COMMON, *PHAL_DATA_COMMON;
|
||||
|
||||
|
||||
|
||||
typedef struct hal_com_data HAL_DATA_TYPE, *PHAL_DATA_TYPE;
|
||||
#define GET_HAL_DATA(__pAdapter) ((HAL_DATA_TYPE *)((__pAdapter)->HalData))
|
||||
#define GET_HAL_SPEC(__pAdapter) (&(GET_HAL_DATA((__pAdapter))->hal_spec))
|
||||
|
||||
#define GET_HAL_RFPATH_NUM(__pAdapter) (((HAL_DATA_TYPE *)((__pAdapter)->HalData))->NumTotalRFPath )
|
||||
#define RT_GetInterfaceSelection(_Adapter) (GET_HAL_DATA(_Adapter)->InterfaceSel)
|
||||
#define GET_RF_TYPE(__pAdapter) (GET_HAL_DATA(__pAdapter)->rf_type)
|
||||
#define GET_KFREE_DATA(_adapter) (&(GET_HAL_DATA((_adapter))->kfree_data))
|
||||
|
||||
#define SUPPORT_HW_RADIO_DETECT(Adapter) ( RT_GetInterfaceSelection(Adapter) == INTF_SEL2_MINICARD ||\
|
||||
RT_GetInterfaceSelection(Adapter) == INTF_SEL3_USB_Solo ||\
|
||||
RT_GetInterfaceSelection(Adapter) == INTF_SEL4_USB_Combo)
|
||||
|
||||
#define get_hal_mac_addr(adapter) (GET_HAL_DATA(adapter)->EEPROMMACAddr)
|
||||
#define is_boot_from_eeprom(adapter) (GET_HAL_DATA(adapter)->EepromOrEfuse)
|
||||
#define rtw_get_hw_init_completed(adapter) (GET_HAL_DATA(adapter)->hw_init_completed)
|
||||
#define rtw_is_hw_init_completed(adapter) (GET_HAL_DATA(adapter)->hw_init_completed == _TRUE)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_AUTO_CHNL_SEL_NHM
|
||||
#define GET_ACS_STATE(padapter) (ATOMIC_READ(&GET_HAL_DATA(padapter)->acs.state))
|
||||
#define SET_ACS_STATE(padapter, set_state) (ATOMIC_SET(&GET_HAL_DATA(padapter)->acs.state, set_state))
|
||||
#define rtw_get_acs_channel(padapter) (GET_HAL_DATA(padapter)->acs.ch)
|
||||
#define rtw_set_acs_channel(padapter, survey_ch) (GET_HAL_DATA(padapter)->acs.ch = survey_ch)
|
||||
#endif /*CONFIG_AUTO_CHNL_SEL_NHM*/
|
||||
|
||||
#endif //__HAL_DATA_H__
|
||||
|
0
include/rtl8723b_hal.h
Executable file → Normal file
0
include/rtl8723b_hal.h
Executable file → Normal file
0
include/rtl8723b_led.h
Executable file → Normal file
0
include/rtl8723b_led.h
Executable file → Normal file
0
include/rtl8723b_recv.h
Executable file → Normal file
0
include/rtl8723b_recv.h
Executable file → Normal file
0
include/rtl8723b_spec.h
Executable file → Normal file
0
include/rtl8723b_spec.h
Executable file → Normal file
0
include/rtl8723b_xmit.h
Executable file → Normal file
0
include/rtl8723b_xmit.h
Executable file → Normal file
0
include/rtl8814a_cmd.h
Executable file → Normal file
0
include/rtl8814a_cmd.h
Executable file → Normal file
0
include/rtl8814a_hal.h
Executable file → Normal file
0
include/rtl8814a_hal.h
Executable file → Normal file
0
include/rtl8814a_recv.h
Executable file → Normal file
0
include/rtl8814a_recv.h
Executable file → Normal file
0
include/rtl8814a_spec.h
Executable file → Normal file
0
include/rtl8814a_spec.h
Executable file → Normal file
0
include/rtl8814a_xmit.h
Executable file → Normal file
0
include/rtl8814a_xmit.h
Executable file → Normal file
0
include/rtl8822be_hal.h
Executable file → Normal file
0
include/rtl8822be_hal.h
Executable file → Normal file
Loading…
Reference in New Issue
Block a user