/* SPDX-License-Identifier: GPL-2.0 */
|
/*
|
* Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved.
|
*
|
* Contact Information: wlanfae <wlanfae@realtek.com>
|
*/
|
#ifndef _R819XU_PHY_H
|
#define _R819XU_PHY_H
|
|
#define MAX_DOZE_WAITING_TIMES_9x 64
|
|
#define AGCTAB_ArrayLength AGCTAB_ArrayLengthPciE
|
#define MACPHY_ArrayLength MACPHY_ArrayLengthPciE
|
#define RadioA_ArrayLength RadioA_ArrayLengthPciE
|
#define RadioB_ArrayLength RadioB_ArrayLengthPciE
|
#define MACPHY_Array_PGLength MACPHY_Array_PGLengthPciE
|
#define RadioC_ArrayLength RadioC_ArrayLengthPciE
|
#define RadioD_ArrayLength RadioD_ArrayLengthPciE
|
#define PHY_REGArrayLength PHY_REGArrayLengthPciE
|
#define PHY_REG_1T2RArrayLength PHY_REG_1T2RArrayLengthPciE
|
|
#define Rtl819XMACPHY_Array_PG Rtl8192PciEMACPHY_Array_PG
|
#define Rtl819XMACPHY_Array Rtl8192PciEMACPHY_Array
|
#define Rtl819XRadioA_Array Rtl8192PciERadioA_Array
|
#define Rtl819XRadioB_Array Rtl8192PciERadioB_Array
|
#define Rtl819XRadioC_Array Rtl8192PciERadioC_Array
|
#define Rtl819XRadioD_Array Rtl8192PciERadioD_Array
|
#define Rtl819XAGCTAB_Array Rtl8192PciEAGCTAB_Array
|
#define Rtl819XPHY_REGArray Rtl8192PciEPHY_REGArray
|
#define Rtl819XPHY_REG_1T2RArray Rtl8192PciEPHY_REG_1T2RArray
|
|
extern u32 rtl819XAGCTAB_Array[];
|
|
enum hw90_block {
|
HW90_BLOCK_MAC = 0,
|
HW90_BLOCK_PHY0 = 1,
|
HW90_BLOCK_PHY1 = 2,
|
HW90_BLOCK_RF = 3,
|
HW90_BLOCK_MAXIMUM = 4,
|
};
|
|
enum rf90_radio_path {
|
RF90_PATH_A = 0,
|
RF90_PATH_B = 1,
|
RF90_PATH_C = 2,
|
RF90_PATH_D = 3,
|
RF90_PATH_MAX
|
};
|
|
#define bMaskByte0 0xff
|
#define bMaskByte1 0xff00
|
#define bMaskByte2 0xff0000
|
#define bMaskByte3 0xff000000
|
#define bMaskHWord 0xffff0000
|
#define bMaskLWord 0x0000ffff
|
#define bMaskDWord 0xffffffff
|
|
u8 rtl92e_is_legal_rf_path(struct net_device *dev, u32 eRFPath);
|
void rtl92e_set_bb_reg(struct net_device *dev, u32 dwRegAddr,
|
u32 dwBitMask, u32 dwData);
|
u32 rtl92e_get_bb_reg(struct net_device *dev, u32 dwRegAddr, u32 dwBitMask);
|
void rtl92e_set_rf_reg(struct net_device *dev, enum rf90_radio_path eRFPath,
|
u32 RegAddr, u32 BitMask, u32 Data);
|
u32 rtl92e_get_rf_reg(struct net_device *dev, enum rf90_radio_path eRFPath,
|
u32 RegAddr, u32 BitMask);
|
void rtl92e_config_mac(struct net_device *dev);
|
bool rtl92e_check_bb_and_rf(struct net_device *dev,
|
enum hw90_block CheckBlock,
|
enum rf90_radio_path eRFPath);
|
bool rtl92e_config_bb(struct net_device *dev);
|
void rtl92e_get_tx_power(struct net_device *dev);
|
void rtl92e_set_tx_power(struct net_device *dev, u8 channel);
|
bool rtl92e_config_phy(struct net_device *dev);
|
u8 rtl92e_config_rf_path(struct net_device *dev, enum rf90_radio_path eRFPath);
|
|
u8 rtl92e_set_channel(struct net_device *dev, u8 channel);
|
void rtl92e_set_bw_mode(struct net_device *dev,
|
enum ht_channel_width Bandwidth,
|
enum ht_extchnl_offset Offset);
|
void rtl92e_init_gain(struct net_device *dev, u8 Operation);
|
|
void rtl92e_set_rf_off(struct net_device *dev);
|
|
bool rtl92e_set_rf_power_state(struct net_device *dev,
|
enum rt_rf_power_state eRFPowerState);
|
#define PHY_SetRFPowerState rtl92e_set_rf_power_state
|
|
void rtl92e_scan_op_backup(struct net_device *dev, u8 Operation);
|
|
#endif
|