Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
r819xU_phy.h
Go to the documentation of this file.
1 #ifndef _R819XU_PHY_H
2 #define _R819XU_PHY_H
3 
4 /* Channel switch:The size of command tables for switch channel*/
5 #define MAX_PRECMD_CNT 16
6 #define MAX_RFDEPENDCMD_CNT 16
7 #define MAX_POSTCMD_CNT 16
8 
9 typedef enum _SwChnlCmdID{
18 
19 /*--------------------------------Define structure--------------------------------*/
20 /* 1. Switch channel related */
21 typedef struct _SwChnlCmd{
26 }__attribute__ ((packed)) SwChnlCmd;
27 
31 extern u32 rtl819XRadioA_Array[];
32 extern u32 rtl819XRadioB_Array[];
33 extern u32 rtl819XRadioC_Array[];
34 extern u32 rtl819XRadioD_Array[];
35 
36 typedef enum _HW90_BLOCK{
41  HW90_BLOCK_MAXIMUM = 4, // Never use this
43 
44 typedef enum _RF90_RADIO_PATH{
45  RF90_PATH_A = 0, //Radio Path A
46  RF90_PATH_B = 1, //Radio Path B
47  RF90_PATH_C = 2, //Radio Path C
48  RF90_PATH_D = 3, //Radio Path D
49  RF90_PATH_MAX //Max RF number 92 support
51 
52 #define bMaskByte0 0xff
53 #define bMaskByte1 0xff00
54 #define bMaskByte2 0xff0000
55 #define bMaskByte3 0xff000000
56 #define bMaskHWord 0xffff0000
57 #define bMaskLWord 0x0000ffff
58 #define bMaskDWord 0xffffffff
59 
60 //extern u32 rtl8192_CalculateBitShift(u32 dwBitMask);
61 extern u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device* dev, u32 eRFPath);
62 extern void rtl8192_setBBreg(struct net_device* dev, u32 dwRegAddr, u32 dwBitMask, u32 dwData);
63 extern u32 rtl8192_QueryBBReg(struct net_device* dev, u32 dwRegAddr, u32 dwBitMask);
64 //extern u32 rtl8192_phy_RFSerialRead(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 Offset);
65 //extern void rtl8192_phy_RFSerialWrite(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 Offset, u32 Data);
66 extern void rtl8192_phy_SetRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 RegAddr, u32 BitMask, u32 Data);
67 extern u32 rtl8192_phy_QueryRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 RegAddr, u32 BitMask);
68 extern void rtl8192_phy_configmac(struct net_device* dev);
69 extern void rtl8192_phyConfigBB(struct net_device* dev, u8 ConfigType);
70 //extern void rtl8192_InitBBRFRegDef(struct net_device* dev);
71 extern u8 rtl8192_phy_checkBBAndRF(struct net_device* dev, HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath);
72 //extern void rtl8192_BB_Config_ParaFile(struct net_device* dev);
73 extern void rtl8192_BBConfig(struct net_device* dev);
74 extern void rtl8192_phy_getTxPower(struct net_device* dev);
75 extern void rtl8192_phy_setTxPower(struct net_device* dev, u8 channel);
76 extern void rtl8192_phy_RFConfig(struct net_device* dev);
77 extern void rtl8192_phy_updateInitGain(struct net_device* dev);
79 
80 extern u8 rtl8192_phy_SwChnl(struct net_device* dev, u8 channel);
81 extern void rtl8192_SetBWMode(struct net_device *dev, HT_CHANNEL_WIDTH Bandwidth, HT_EXTCHNL_OFFSET Offset);
82 extern void rtl8192_SwChnl_WorkItem(struct net_device *dev);
84 extern bool rtl8192_SetRFPowerState(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState);
85 //added by amy
86 extern void InitialGain819xUsb(struct net_device *dev, u8 Operation);
87 
89 
90 #endif