1 /******************************************************************************
3 * Copyright(c) 2009-2012 Realtek Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * wlanfae <wlanfae@realtek.com>
23 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24 * Hsinchu 300, Taiwan.
26 * Larry Finger <Larry.Finger@lwfinger.net>
28 *****************************************************************************/
30 #ifndef __RTL92C_DEF_H__
31 #define __RTL92C_DEF_H__
33 #define HAL_RETRY_LIMIT_INFRA 48
34 #define HAL_RETRY_LIMIT_AP_ADHOC 7
36 #define PHY_RSSI_SLID_WIN_MAX 100
37 #define PHY_LINKQUALITY_SLID_WIN_MAX 20
38 #define PHY_BEACON_RSSI_SLID_WIN_MAX 10
40 #define RESET_DELAY_8185 20
42 #define RT_IBSS_INT_MASKS (IMR_BCNINT | IMR_TBDOK | IMR_TBDER)
43 #define RT_AC_INT_MASKS (IMR_VIDOK | IMR_VODOK | IMR_BEDOK|IMR_BKDOK)
45 #define NUM_OF_FIRMWARE_QUEUE 10
46 #define NUM_OF_PAGES_IN_FW 0x100
47 #define NUM_OF_PAGE_IN_FW_QUEUE_BK 0x07
48 #define NUM_OF_PAGE_IN_FW_QUEUE_BE 0x07
49 #define NUM_OF_PAGE_IN_FW_QUEUE_VI 0x07
50 #define NUM_OF_PAGE_IN_FW_QUEUE_VO 0x07
51 #define NUM_OF_PAGE_IN_FW_QUEUE_HCCA 0x0
52 #define NUM_OF_PAGE_IN_FW_QUEUE_CMD 0x0
53 #define NUM_OF_PAGE_IN_FW_QUEUE_MGNT 0x02
54 #define NUM_OF_PAGE_IN_FW_QUEUE_HIGH 0x02
55 #define NUM_OF_PAGE_IN_FW_QUEUE_BCN 0x2
56 #define NUM_OF_PAGE_IN_FW_QUEUE_PUB 0xA1
58 #define NUM_OF_PAGE_IN_FW_QUEUE_BK_DTM 0x026
59 #define NUM_OF_PAGE_IN_FW_QUEUE_BE_DTM 0x048
60 #define NUM_OF_PAGE_IN_FW_QUEUE_VI_DTM 0x048
61 #define NUM_OF_PAGE_IN_FW_QUEUE_VO_DTM 0x026
62 #define NUM_OF_PAGE_IN_FW_QUEUE_PUB_DTM 0x00
64 #define MAX_LINES_HWCONFIG_TXT 1000
65 #define MAX_BYTES_LINE_HWCONFIG_TXT 256
67 #define SW_THREE_WIRE 0
68 #define HW_THREE_WIRE 2
70 #define BT_DEMO_BOARD 0
74 #define RX_SMOOTH_FACTOR 20
76 #define HAL_PRIME_CHNL_OFFSET_DONT_CARE 0
77 #define HAL_PRIME_CHNL_OFFSET_LOWER 1
78 #define HAL_PRIME_CHNL_OFFSET_UPPER 2
80 #define MAX_H2C_QUEUE_NUM 10
82 #define RX_MPDU_QUEUE 0
83 #define RX_CMD_QUEUE 1
84 #define RX_MAX_QUEUE 2
85 #define AC2QUEUEID(_AC) (_AC)
87 #define C2H_RX_CMD_HDR_LEN 8
88 #define GET_C2H_CMD_CMD_LEN(__prxhdr) \
89 LE_BITS_TO_4BYTE((__prxhdr), 0, 16)
90 #define GET_C2H_CMD_ELEMENT_ID(__prxhdr) \
91 LE_BITS_TO_4BYTE((__prxhdr), 16, 8)
92 #define GET_C2H_CMD_CMD_SEQ(__prxhdr) \
93 LE_BITS_TO_4BYTE((__prxhdr), 24, 7)
94 #define GET_C2H_CMD_CONTINUE(__prxhdr) \
95 LE_BITS_TO_4BYTE((__prxhdr), 31, 1)
96 #define GET_C2H_CMD_CONTENT(__prxhdr) \
97 ((u8 *)(__prxhdr) + C2H_RX_CMD_HDR_LEN)
99 #define GET_C2H_CMD_FEEDBACK_ELEMENT_ID(__pcmdfbhdr) \
100 LE_BITS_TO_4BYTE((__pcmdfbhdr), 0, 8)
101 #define GET_C2H_CMD_FEEDBACK_CCX_LEN(__pcmdfbhdr) \
102 LE_BITS_TO_4BYTE((__pcmdfbhdr), 8, 8)
103 #define GET_C2H_CMD_FEEDBACK_CCX_CMD_CNT(__pcmdfbhdr) \
104 LE_BITS_TO_4BYTE((__pcmdfbhdr), 16, 16)
105 #define GET_C2H_CMD_FEEDBACK_CCX_MAC_ID(__pcmdfbhdr) \
106 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 0, 5)
107 #define GET_C2H_CMD_FEEDBACK_CCX_VALID(__pcmdfbhdr) \
108 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 7, 1)
109 #define GET_C2H_CMD_FEEDBACK_CCX_RETRY_CNT(__pcmdfbhdr) \
110 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 8, 5)
111 #define GET_C2H_CMD_FEEDBACK_CCX_TOK(__pcmdfbhdr) \
112 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 15, 1)
113 #define GET_C2H_CMD_FEEDBACK_CCX_QSEL(__pcmdfbhdr) \
114 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 16, 4)
115 #define GET_C2H_CMD_FEEDBACK_CCX_SEQ(__pcmdfbhdr) \
116 LE_BITS_TO_4BYTE(((__pcmdfbhdr) + 4), 20, 12)
117 #define GET_RX_STATUS_DESC_BUFF_ADDR(__pdesc) \
118 SHIFT_AND_MASK_LE(__pdesc + 24, 0, 32)
120 #define CHIP_VER_B BIT(4)
121 #define CHIP_BONDING_IDENTIFIER(_value) (((_value) >> 22) & 0x3)
122 #define CHIP_BONDING_92C_1T2R 0x1
123 #define RF_TYPE_1T2R BIT(1)
124 #define CHIP_92C_BITMASK BIT(0)
125 #define CHIP_UNKNOWN BIT(7)
126 #define CHIP_92C_1T2R 0x03
127 #define CHIP_92C 0x01
128 #define CHIP_88C 0x00
131 VERSION_A_CHIP_92C
= 0x01,
132 VERSION_A_CHIP_88C
= 0x00,
133 VERSION_B_CHIP_92C
= 0x11,
134 VERSION_B_CHIP_88C
= 0x10,
135 VERSION_TEST_CHIP_88C
= 0x00,
136 VERSION_TEST_CHIP_92C
= 0x01,
137 VERSION_NORMAL_TSMC_CHIP_88C
= 0x10,
138 VERSION_NORMAL_TSMC_CHIP_92C
= 0x11,
139 VERSION_NORMAL_TSMC_CHIP_92C_1T2R
= 0x13,
140 VERSION_NORMAL_UMC_CHIP_88C_A_CUT
= 0x30,
141 VERSION_NORMAL_UMC_CHIP_92C_A_CUT
= 0x31,
142 VERSION_NORMAL_UMC_CHIP_92C_1T2R_A_CUT
= 0x33,
143 VERSION_NORMA_UMC_CHIP_8723_1T1R_A_CUT
= 0x34,
144 VERSION_NORMA_UMC_CHIP_8723_1T1R_B_CUT
= 0x3c,
145 VERSION_NORMAL_UMC_CHIP_88C_B_CUT
= 0x70,
146 VERSION_NORMAL_UMC_CHIP_92C_B_CUT
= 0x71,
147 VERSION_NORMAL_UMC_CHIP_92C_1T2R_B_CUT
= 0x73,
148 VERSION_UNKNOWN
= 0x88,
151 enum rtl819x_loopback_e
{
152 RTL819X_NO_LOOPBACK
= 0,
153 RTL819X_MAC_LOOPBACK
= 1,
154 RTL819X_DMA_LOOPBACK
= 2,
155 RTL819X_CCK_LOOPBACK
= 3,
159 RF_OP_BY_SW_3WIRE
= 0,
164 enum rf_power_state
{
171 enum power_save_mode
{
172 POWER_SAVE_MODE_ACTIVE
,
173 POWER_SAVE_MODE_SAVE
,
176 enum power_polocy_config
{
177 POWERCFG_MAX_POWER_SAVINGS
,
178 POWERCFG_GLOBAL_POWER_SAVINGS
,
179 POWERCFG_LOCAL_POWER_SAVINGS
,
183 enum interface_select_pci
{
184 INTF_SEL1_MINICARD
= 0,
190 enum hal_fw_c2h_cmd_id
{
191 HAL_FW_C2H_CMD_Read_MACREG
= 0,
192 HAL_FW_C2H_CMD_Read_BBREG
= 1,
193 HAL_FW_C2H_CMD_Read_RFREG
= 2,
194 HAL_FW_C2H_CMD_Read_EEPROM
= 3,
195 HAL_FW_C2H_CMD_Read_EFUSE
= 4,
196 HAL_FW_C2H_CMD_Read_CAM
= 5,
197 HAL_FW_C2H_CMD_Get_BasicRate
= 6,
198 HAL_FW_C2H_CMD_Get_DataRate
= 7,
199 HAL_FW_C2H_CMD_Survey
= 8,
200 HAL_FW_C2H_CMD_SurveyDone
= 9,
201 HAL_FW_C2H_CMD_JoinBss
= 10,
202 HAL_FW_C2H_CMD_AddSTA
= 11,
203 HAL_FW_C2H_CMD_DelSTA
= 12,
204 HAL_FW_C2H_CMD_AtimDone
= 13,
205 HAL_FW_C2H_CMD_TX_Report
= 14,
206 HAL_FW_C2H_CMD_CCX_Report
= 15,
207 HAL_FW_C2H_CMD_DTM_Report
= 16,
208 HAL_FW_C2H_CMD_TX_Rate_Statistics
= 17,
209 HAL_FW_C2H_CMD_C2HLBK
= 18,
210 HAL_FW_C2H_CMD_C2HDBG
= 19,
211 HAL_FW_C2H_CMD_C2HFEEDBACK
= 20,
226 struct phy_sts_cck_8192s_t
{
232 struct h2c_cmd_8192c
{