mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-01 11:15:31 +00:00
163 lines
3.8 KiB
C
163 lines
3.8 KiB
C
|
/******************************************************************************
|
||
|
*
|
||
|
* 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_PHY_RF_H__
|
||
|
#define __HAL_PHY_RF_H__
|
||
|
|
||
|
#include "phydm_powertracking_ap.h"
|
||
|
#if (RTL8814A_SUPPORT == 1)
|
||
|
#include "rtl8814a/phydm_iqk_8814a.h"
|
||
|
#endif
|
||
|
|
||
|
#if (RTL8822B_SUPPORT == 1)
|
||
|
#include "rtl8822b/phydm_iqk_8822b.h"
|
||
|
#endif
|
||
|
|
||
|
|
||
|
typedef enum _PWRTRACK_CONTROL_METHOD {
|
||
|
BBSWING,
|
||
|
TXAGC,
|
||
|
MIX_MODE,
|
||
|
TSSI_MODE
|
||
|
} PWRTRACK_METHOD;
|
||
|
|
||
|
typedef VOID (*FuncSetPwr)(PVOID, PWRTRACK_METHOD, u1Byte, u1Byte);
|
||
|
typedef VOID(*FuncIQK)(PVOID, u1Byte, u1Byte, u1Byte);
|
||
|
typedef VOID (*FuncLCK)(PVOID);
|
||
|
//refine by YuChen for 8814A
|
||
|
typedef VOID (*FuncSwing)(PVOID, pu1Byte*, pu1Byte*, pu1Byte*, pu1Byte*);
|
||
|
typedef VOID (*FuncSwing8814only)(PVOID, pu1Byte*, pu1Byte*, pu1Byte*, pu1Byte*);
|
||
|
|
||
|
typedef struct _TXPWRTRACK_CFG {
|
||
|
u1Byte SwingTableSize_CCK;
|
||
|
u1Byte SwingTableSize_OFDM;
|
||
|
u1Byte Threshold_IQK;
|
||
|
u1Byte Threshold_DPK;
|
||
|
u1Byte AverageThermalNum;
|
||
|
u1Byte RfPathCount;
|
||
|
u4Byte ThermalRegAddr;
|
||
|
FuncSetPwr ODM_TxPwrTrackSetPwr;
|
||
|
FuncIQK DoIQK;
|
||
|
FuncLCK PHY_LCCalibrate;
|
||
|
FuncSwing GetDeltaSwingTable;
|
||
|
FuncSwing8814only GetDeltaSwingTable8814only;
|
||
|
} TXPWRTRACK_CFG, *PTXPWRTRACK_CFG;
|
||
|
|
||
|
VOID
|
||
|
ConfigureTxpowerTrack(
|
||
|
IN PVOID pDM_VOID,
|
||
|
OUT PTXPWRTRACK_CFG pConfig
|
||
|
);
|
||
|
|
||
|
|
||
|
VOID
|
||
|
ODM_TXPowerTrackingCallback_ThermalMeter(
|
||
|
#if (DM_ODM_SUPPORT_TYPE & ODM_AP)
|
||
|
IN PVOID pDM_VOID
|
||
|
#else
|
||
|
IN PADAPTER Adapter
|
||
|
#endif
|
||
|
);
|
||
|
|
||
|
#if (RTL8192E_SUPPORT==1)
|
||
|
VOID
|
||
|
ODM_TXPowerTrackingCallback_ThermalMeter_92E(
|
||
|
#if (DM_ODM_SUPPORT_TYPE & ODM_AP)
|
||
|
IN PVOID pDM_VOID
|
||
|
#else
|
||
|
IN PADAPTER Adapter
|
||
|
#endif
|
||
|
);
|
||
|
#endif
|
||
|
|
||
|
#if (RTL8814A_SUPPORT == 1)
|
||
|
VOID
|
||
|
ODM_TXPowerTrackingCallback_ThermalMeter_JaguarSeries2(
|
||
|
#if (DM_ODM_SUPPORT_TYPE & ODM_AP)
|
||
|
IN PVOID pDM_VOID
|
||
|
#else
|
||
|
IN PADAPTER Adapter
|
||
|
#endif
|
||
|
);
|
||
|
|
||
|
#elif ODM_IC_11AC_SERIES_SUPPORT
|
||
|
VOID
|
||
|
ODM_TXPowerTrackingCallback_ThermalMeter_JaguarSeries(
|
||
|
#if (DM_ODM_SUPPORT_TYPE & ODM_AP)
|
||
|
IN PVOID pDM_VOID
|
||
|
#else
|
||
|
IN PADAPTER Adapter
|
||
|
#endif
|
||
|
);
|
||
|
#endif
|
||
|
|
||
|
#define IS_CCK_RATE(_rate) (ODM_MGN_1M == _rate || _rate == ODM_MGN_2M || _rate == ODM_MGN_5_5M || _rate == ODM_MGN_11M )
|
||
|
|
||
|
|
||
|
#if(DM_ODM_SUPPORT_TYPE & ODM_WIN)
|
||
|
#define MAX_TOLERANCE 5
|
||
|
#define IQK_DELAY_TIME 1 //ms
|
||
|
|
||
|
//
|
||
|
// BB/MAC/RF other monitor API
|
||
|
//
|
||
|
|
||
|
void PHY_SetMonitorMode8192C(IN PADAPTER pAdapter,
|
||
|
IN BOOLEAN bEnableMonitorMode );
|
||
|
|
||
|
//
|
||
|
// IQ calibrate
|
||
|
//
|
||
|
void
|
||
|
PHY_IQCalibrate_8192C( IN PADAPTER pAdapter,
|
||
|
IN BOOLEAN bReCovery);
|
||
|
|
||
|
//
|
||
|
// LC calibrate
|
||
|
//
|
||
|
void
|
||
|
PHY_LCCalibrate_8192C( IN PADAPTER pAdapter);
|
||
|
|
||
|
//
|
||
|
// AP calibrate
|
||
|
//
|
||
|
void
|
||
|
PHY_APCalibrate_8192C( IN PADAPTER pAdapter,
|
||
|
IN s1Byte delta);
|
||
|
#endif
|
||
|
|
||
|
#define ODM_TARGET_CHNL_NUM_2G_5G 59
|
||
|
|
||
|
|
||
|
VOID
|
||
|
ODM_ResetIQKResult(
|
||
|
IN PVOID pDM_VOID
|
||
|
);
|
||
|
u1Byte
|
||
|
ODM_GetRightChnlPlaceforIQK(
|
||
|
IN u1Byte chnl
|
||
|
);
|
||
|
|
||
|
void phydm_rf_init(IN PVOID pDM_VOID);
|
||
|
void phydm_rf_watchdog(IN PVOID pDM_VOID);
|
||
|
|
||
|
#endif // #ifndef __HAL_PHY_RF_H__
|
||
|
|