1 /* SPDX-License-Identifier: GPL-2.0 */
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
5  *
6  ******************************************************************************/
7 #ifndef __HAL_PHY_H__
8 #define __HAL_PHY_H__
9 /*  */
10 /*  Antenna detection method, i.e., using single tone detection or RSSI reported from each antenna detected. */
11 /*  Added by Roger, 2013.05.22. */
12 /*  */
13 #define ANT_DETECT_BY_SINGLE_TONE	BIT0
14 #define ANT_DETECT_BY_RSSI				BIT1
15 #define IS_ANT_DETECT_SUPPORT_SINGLE_TONE(__Adapter)		((GET_HAL_DATA(__Adapter)->AntDetection) & ANT_DETECT_BY_SINGLE_TONE)
16 #define IS_ANT_DETECT_SUPPORT_RSSI(__Adapter)		((GET_HAL_DATA(__Adapter)->AntDetection) & ANT_DETECT_BY_RSSI)
17 
18 
19 /*--------------------------Define Parameters-------------------------------*/
20 enum {
21 	RF_TYPE_MIN = 0,	/*  0 */
22 	RF_8225 = 1,		/*  1 11b/g RF for verification only */
23 	RF_8256 = 2,		/*  2 11b/g/n */
24 	RF_8258 = 3,		/*  3 11a/b/g/n RF */
25 	RF_6052 = 4,		/*  4 11b/g/n RF */
26 	RF_PSEUDO_11N = 5,	/*  5, It is a temporality RF. */
27 	RF_TYPE_MAX
28 };
29 
30 enum rf_path {
31 	RF_PATH_A = 0,
32 	RF_PATH_B,
33 	RF_PATH_C,
34 	RF_PATH_D
35 };
36 
37 #define	TX_1S			0
38 #define	TX_2S			1
39 #define	TX_3S			2
40 #define	TX_4S			3
41 
42 #define	RF_PATH_MAX_92C_88E		2
43 #define	RF_PATH_MAX_90_8812		4	/* Max RF number 90 support */
44 
45 enum wireless_mode {
46 	WIRELESS_MODE_UNKNOWN = 0x00,
47 	WIRELESS_MODE_B = 0x02,
48 	WIRELESS_MODE_G = 0x04,
49 	WIRELESS_MODE_AUTO = 0x08,
50 	WIRELESS_MODE_N_24G = 0x10,
51 	WIRELESS_MODE_AC_24G  = 0x80,
52 	WIRELESS_MODE_AC_ONLY  = 0x100,
53 };
54 
55 enum SwChnlCmdID {
56 	CmdID_End,
57 	CmdID_SetTxPowerLevel,
58 	CmdID_BBRegWrite10,
59 	CmdID_WritePortUlong,
60 	CmdID_WritePortUshort,
61 	CmdID_WritePortUchar,
62 	CmdID_RF_WriteReg,
63 };
64 
65 struct SwChnlCmd {
66 	enum SwChnlCmdID	CmdID;
67 	u32 			Para1;
68 	u32 			Para2;
69 	u32 			msDelay;
70 };
71 
72 /*--------------------------Exported Function prototype---------------------*/
73 
74 #endif /* __HAL_COMMON_H__ */
75