xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189es/include/rtl8723b_hal.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4  *
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.
8  *
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
12  * more details.
13  *
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
17  *
18  *
19  ******************************************************************************/
20 #ifndef __RTL8723B_HAL_H__
21 #define __RTL8723B_HAL_H__
22 
23 #include "hal_data.h"
24 
25 #include "rtl8723b_spec.h"
26 #include "rtl8723b_rf.h"
27 #include "rtl8723b_dm.h"
28 #include "rtl8723b_recv.h"
29 #include "rtl8723b_xmit.h"
30 #include "rtl8723b_cmd.h"
31 #include "rtl8723b_led.h"
32 #include "Hal8723BPwrSeq.h"
33 #include "Hal8723BPhyReg.h"
34 #include "Hal8723BPhyCfg.h"
35 #ifdef DBG_CONFIG_ERROR_DETECT
36 #include "rtl8723b_sreset.h"
37 #endif
38 
39 
40 //---------------------------------------------------------------------
41 //		RTL8723B From file
42 //---------------------------------------------------------------------
43 	#define RTL8723B_FW_IMG					"rtl8723b/FW_NIC.bin"
44 	#define RTL8723B_FW_WW_IMG				"rtl8723b/FW_WoWLAN.bin"
45 	#define RTL8723B_PHY_REG					"rtl8723b/PHY_REG.txt"
46 	#define RTL8723B_PHY_RADIO_A				"rtl8723b/RadioA.txt"
47 	#define RTL8723B_PHY_RADIO_B				"rtl8723b/RadioB.txt"
48 	#define RTL8723B_TXPWR_TRACK				"rtl8723b/TxPowerTrack.txt"
49 	#define RTL8723B_AGC_TAB					"rtl8723b/AGC_TAB.txt"
50 	#define RTL8723B_PHY_MACREG 				"rtl8723b/MAC_REG.txt"
51 	#define RTL8723B_PHY_REG_PG				"rtl8723b/PHY_REG_PG.txt"
52 	#define RTL8723B_PHY_REG_MP				"rtl8723b/PHY_REG_MP.txt"
53 	#define RTL8723B_TXPWR_LMT 				"rtl8723b/TXPWR_LMT.txt"
54 
55 //---------------------------------------------------------------------
56 //		RTL8723B From header
57 //---------------------------------------------------------------------
58 
59 #if MP_DRIVER == 1
60 	#define Rtl8723B_FwBTImgArray				Rtl8723BFwBTImgArray
61 	#define Rtl8723B_FwBTImgArrayLength		Rtl8723BFwBTImgArrayLength
62 
63 	#define Rtl8723B_PHY_REG_Array_MP			Rtl8723B_PHYREG_Array_MP
64 	#define Rtl8723B_PHY_REG_Array_MPLength	Rtl8723B_PHYREG_Array_MPLength
65 #endif
66 
67 
68 #define FW_8723B_SIZE			0x8000
69 #define FW_8723B_START_ADDRESS	0x1000
70 #define FW_8723B_END_ADDRESS		0x1FFF //0x5FFF
71 
72 #define IS_FW_HEADER_EXIST_8723B(_pFwHdr)	((le16_to_cpu(_pFwHdr->Signature)&0xFFF0) == 0x5300)
73 
74 typedef struct _RT_FIRMWARE {
75 	FIRMWARE_SOURCE	eFWSource;
76 #ifdef CONFIG_EMBEDDED_FWIMG
77 	u8*			szFwBuffer;
78 #else
79 	u8			szFwBuffer[FW_8723B_SIZE];
80 #endif
81 	u32			ulFwLength;
82 } RT_FIRMWARE_8723B, *PRT_FIRMWARE_8723B;
83 
84 //
85 // This structure must be cared byte-ordering
86 //
87 // Added by tynli. 2009.12.04.
88 typedef struct _RT_8723B_FIRMWARE_HDR
89 {
90 	// 8-byte alinment required
91 
92 	//--- LONG WORD 0 ----
93 	u16		Signature;	// 92C0: test chip; 92C, 88C0: test chip; 88C1: MP A-cut; 92C1: MP A-cut
94 	u8		Category;	// AP/NIC and USB/PCI
95 	u8		Function;	// Reserved for different FW function indcation, for further use when driver needs to download different FW in different conditions
96 	u16		Version;		// FW Version
97 	u16		Subversion;	// FW Subversion, default 0x00
98 
99 	//--- LONG WORD 1 ----
100 	u8		Month;	// Release time Month field
101 	u8		Date;	// Release time Date field
102 	u8		Hour;	// Release time Hour field
103 	u8		Minute;	// Release time Minute field
104 	u16		RamCodeSize;	// The size of RAM code
105 	u16		Rsvd2;
106 
107 	//--- LONG WORD 2 ----
108 	u32		SvnIdx;	// The SVN entry index
109 	u32		Rsvd3;
110 
111 	//--- LONG WORD 3 ----
112 	u32		Rsvd4;
113 	u32		Rsvd5;
114 }RT_8723B_FIRMWARE_HDR, *PRT_8723B_FIRMWARE_HDR;
115 
116 #define DRIVER_EARLY_INT_TIME_8723B		0x05
117 #define BCN_DMA_ATIME_INT_TIME_8723B		0x02
118 
119 // for 8723B
120 // TX 32K, RX 16K, Page size 128B for TX, 8B for RX
121 #define PAGE_SIZE_TX_8723B			128
122 #define PAGE_SIZE_RX_8723B			8
123 
124 #define TX_DMA_SIZE_8723B			0x8000	/* 32K(TX) */
125 #define RX_DMA_SIZE_8723B			0x4000	/* 16K(RX) */
126 
127 #ifdef CONFIG_WOWLAN
128 #define RESV_FMWF	WKFMCAM_SIZE*MAX_WKFM_NUM /* 16 entries, for each is 24 bytes*/
129 #else
130 #define RESV_FMWF	0
131 #endif
132 
133 #ifdef CONFIG_FW_C2H_DEBUG
134 #define RX_DMA_RESERVED_SIZE_8723B	0x100	// 256B, reserved for c2h debug message
135 #else
136 #define RX_DMA_RESERVED_SIZE_8723B	0x80	// 128B, reserved for tx report
137 #endif
138 #define RX_DMA_BOUNDARY_8723B		(RX_DMA_SIZE_8723B - RX_DMA_RESERVED_SIZE_8723B - 1)
139 
140 
141 // Note: We will divide number of page equally for each queue other than public queue!
142 
143 //For General Reserved Page Number(Beacon Queue is reserved page)
144 //Beacon:2, PS-Poll:1, Null Data:1,Qos Null Data:1,BT Qos Null Data:1
145 #define BCNQ_PAGE_NUM_8723B		0x08
146 #ifdef CONFIG_CONCURRENT_MODE
147 #define BCNQ1_PAGE_NUM_8723B		0x08 // 0x04
148 #else
149 #define BCNQ1_PAGE_NUM_8723B		0x00
150 #endif
151 
152 #ifdef CONFIG_PNO_SUPPORT
153 #undef BCNQ1_PAGE_NUM_8723B
154 #define BCNQ1_PAGE_NUM_8723B		0x00 // 0x04
155 #endif
156 
157 //For WoWLan , more reserved page
158 //ARP Rsp:1, RWC:1, GTK Info:1,GTK RSP:2,GTK EXT MEM:2, PNO: 6
159 #ifdef CONFIG_WOWLAN
160 #define WOWLAN_PAGE_NUM_8723B	0x07
161 #else
162 #define WOWLAN_PAGE_NUM_8723B	0x00
163 #endif
164 
165 #ifdef CONFIG_PNO_SUPPORT
166 #undef WOWLAN_PAGE_NUM_8723B
167 #define WOWLAN_PAGE_NUM_8723B	0x15
168 #endif
169 
170 #ifdef CONFIG_AP_WOWLAN
171 #define AP_WOWLAN_PAGE_NUM_8723B	0x02
172 #endif
173 
174 #define TX_TOTAL_PAGE_NUMBER_8723B	(0xFF - BCNQ_PAGE_NUM_8723B - BCNQ1_PAGE_NUM_8723B - WOWLAN_PAGE_NUM_8723B)
175 #define TX_PAGE_BOUNDARY_8723B		(TX_TOTAL_PAGE_NUMBER_8723B + 1)
176 
177 #define WMM_NORMAL_TX_TOTAL_PAGE_NUMBER_8723B	TX_TOTAL_PAGE_NUMBER_8723B
178 #define WMM_NORMAL_TX_PAGE_BOUNDARY_8723B		(WMM_NORMAL_TX_TOTAL_PAGE_NUMBER_8723B + 1)
179 
180 // For Normal Chip Setting
181 // (HPQ + LPQ + NPQ + PUBQ) shall be TX_TOTAL_PAGE_NUMBER_8723B
182 #define NORMAL_PAGE_NUM_HPQ_8723B		0x0C
183 #define NORMAL_PAGE_NUM_LPQ_8723B		0x02
184 #define NORMAL_PAGE_NUM_NPQ_8723B		0x02
185 
186 // Note: For Normal Chip Setting, modify later
187 #define WMM_NORMAL_PAGE_NUM_HPQ_8723B		0x30
188 #define WMM_NORMAL_PAGE_NUM_LPQ_8723B		0x20
189 #define WMM_NORMAL_PAGE_NUM_NPQ_8723B		0x20
190 
191 
192 #include "HalVerDef.h"
193 #include "hal_com.h"
194 
195 #define EFUSE_OOB_PROTECT_BYTES 		15
196 
197 #define HAL_EFUSE_MEMORY
198 
199 #define HWSET_MAX_SIZE_8723B			512
200 #define EFUSE_REAL_CONTENT_LEN_8723B		512
201 #define EFUSE_MAP_LEN_8723B				512
202 #define EFUSE_MAX_SECTION_8723B			64
203 
204 #define EFUSE_IC_ID_OFFSET			506	//For some inferiority IC purpose. added by Roger, 2009.09.02.
205 #define AVAILABLE_EFUSE_ADDR(addr) 	(addr < EFUSE_REAL_CONTENT_LEN_8723B)
206 
207 #define EFUSE_ACCESS_ON			0x69	// For RTL8723 only.
208 #define EFUSE_ACCESS_OFF			0x00	// For RTL8723 only.
209 
210 //========================================================
211 //			EFUSE for BT definition
212 //========================================================
213 #define EFUSE_BT_REAL_BANK_CONTENT_LEN	512
214 #define EFUSE_BT_REAL_CONTENT_LEN		1536	// 512*3
215 #define EFUSE_BT_MAP_LEN				1024	// 1k bytes
216 #define EFUSE_BT_MAX_SECTION			128		// 1024/8
217 
218 #define EFUSE_PROTECT_BYTES_BANK		16
219 
220 // Description: Determine the types of C2H events that are the same in driver and Fw.
221 // Fisrt constructed by tynli. 2009.10.09.
222 typedef enum _C2H_EVT
223 {
224 	C2H_DBG = 0,
225 	C2H_TSF = 1,
226 	C2H_AP_RPT_RSP = 2,
227 	C2H_CCX_TX_RPT = 3,	// The FW notify the report of the specific tx packet.
228 	C2H_BT_RSSI = 4,
229 	C2H_BT_OP_MODE = 5,
230 	C2H_EXT_RA_RPT = 6,
231 	C2H_8723B_BT_INFO = 9,
232 	C2H_HW_INFO_EXCH = 10,
233 	C2H_8723B_BT_MP_INFO = 11,
234 	C2H_8723B_P2P_RPORT = 0x16,
235 #ifdef CONFIG_FW_C2H_DEBUG
236 	C2H_8723B_FW_DEBUG = 0xff,
237 #endif //CONFIG_FW_C2H_DEBUG
238 	MAX_C2HEVENT
239 } C2H_EVT;
240 
241 typedef struct _C2H_EVT_HDR
242 {
243 	u8	CmdID;
244 	u8	CmdLen;
245 	u8	CmdSeq;
246 } __attribute__((__packed__)) C2H_EVT_HDR, *PC2H_EVT_HDR;
247 
248 typedef enum tag_Package_Definition
249 {
250     PACKAGE_DEFAULT,
251     PACKAGE_QFN68,
252     PACKAGE_TFBGA90,
253     PACKAGE_TFBGA80,
254     PACKAGE_TFBGA79
255 }PACKAGE_TYPE_E;
256 
257 #define INCLUDE_MULTI_FUNC_BT(_Adapter)		(GET_HAL_DATA(_Adapter)->MultiFunc & RT_MULTI_FUNC_BT)
258 #define INCLUDE_MULTI_FUNC_GPS(_Adapter)	(GET_HAL_DATA(_Adapter)->MultiFunc & RT_MULTI_FUNC_GPS)
259 
260 // rtl8723a_hal_init.c
261 s32 rtl8723b_FirmwareDownload(PADAPTER padapter, BOOLEAN  bUsedWoWLANFw);
262 void rtl8723b_FirmwareSelfReset(PADAPTER padapter);
263 void rtl8723b_InitializeFirmwareVars(PADAPTER padapter);
264 
265 void rtl8723b_InitAntenna_Selection(PADAPTER padapter);
266 void rtl8723b_DeinitAntenna_Selection(PADAPTER padapter);
267 void rtl8723b_CheckAntenna_Selection(PADAPTER padapter);
268 void rtl8723b_init_default_value(PADAPTER padapter);
269 
270 s32 rtl8723b_InitLLTTable(PADAPTER padapter);
271 
272 s32 CardDisableHWSM(PADAPTER padapter, u8 resetMCU);
273 s32 CardDisableWithoutHWSM(PADAPTER padapter);
274 
275 // EFuse
276 u8 GetEEPROMSize8723B(PADAPTER padapter);
277 void Hal_InitPGData(PADAPTER padapter, u8 *PROMContent);
278 void Hal_EfuseParseIDCode(PADAPTER padapter, u8 *hwinfo);
279 void Hal_EfuseParseTxPowerInfo_8723B(PADAPTER padapter, u8 *PROMContent, BOOLEAN AutoLoadFail);
280 void Hal_EfuseParseBTCoexistInfo_8723B(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail);
281 void Hal_EfuseParseEEPROMVer_8723B(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail);
282 void Hal_EfuseParseChnlPlan_8723B(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail);
283 void Hal_EfuseParseCustomerID_8723B(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail);
284 void Hal_EfuseParseAntennaDiversity_8723B(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail);
285 void Hal_EfuseParseXtal_8723B(PADAPTER pAdapter, u8 *hwinfo, u8 AutoLoadFail);
286 void Hal_EfuseParseThermalMeter_8723B(PADAPTER padapter, u8 *hwinfo, u8 AutoLoadFail);
287 VOID Hal_EfuseParsePackageType_8723B(PADAPTER pAdapter,u8* hwinfo,BOOLEAN AutoLoadFail);
288 VOID Hal_EfuseParseVoltage_8723B(PADAPTER pAdapter,u8* hwinfo,BOOLEAN 	AutoLoadFail);
289 VOID Hal_EfuseParseBoardType_8723B(PADAPTER Adapter,	u8*	PROMContent,BOOLEAN AutoloadFail);
290 
291 #ifdef CONFIG_C2H_PACKET_EN
292 void rtl8723b_c2h_packet_handler(PADAPTER padapter, u8 *pbuf, u16 length);
293 #endif
294 
295 
296 void rtl8723b_set_hal_ops(struct hal_ops *pHalFunc);
297 void SetHwReg8723B(PADAPTER padapter, u8 variable, u8 *val);
298 void GetHwReg8723B(PADAPTER padapter, u8 variable, u8 *val);
299 #ifdef CONFIG_C2H_PACKET_EN
300 void SetHwRegWithBuf8723B(PADAPTER padapter, u8 variable, u8 *pbuf, int len);
301 #endif // CONFIG_C2H_PACKET_EN
302 u8 SetHalDefVar8723B(PADAPTER padapter, HAL_DEF_VARIABLE variable, void *pval);
303 u8 GetHalDefVar8723B(PADAPTER padapter, HAL_DEF_VARIABLE variable, void *pval);
304 
305 // register
306 void rtl8723b_InitBeaconParameters(PADAPTER padapter);
307 void rtl8723b_InitBeaconMaxError(PADAPTER padapter, u8 InfraMode);
308 void	_InitBurstPktLen_8723BS(PADAPTER Adapter);
309 void _8051Reset8723(PADAPTER padapter);
310 #if defined(CONFIG_WOWLAN) || defined(CONFIG_AP_WOWLAN)
311 void Hal_DetectWoWMode(PADAPTER pAdapter);
312 #endif //CONFIG_WOWLAN
313 
314 void rtl8723b_start_thread(_adapter *padapter);
315 void rtl8723b_stop_thread(_adapter *padapter);
316 
317 #if defined(CONFIG_CHECK_BT_HANG) && defined(CONFIG_BT_COEXIST)
318 void rtl8723bs_init_checkbthang_workqueue(_adapter * adapter);
319 void rtl8723bs_free_checkbthang_workqueue(_adapter * adapter);
320 void rtl8723bs_cancle_checkbthang_workqueue(_adapter * adapter);
321 void rtl8723bs_hal_check_bt_hang(_adapter * adapter);
322 #endif
323 
324 #ifdef CONFIG_GPIO_WAKEUP
325 void HalSetOutPutGPIO(PADAPTER padapter, u8 index, u8 OutPutValue);
326 #endif
327 
328 int FirmwareDownloadBT(IN PADAPTER Adapter, PRT_MP_FIRMWARE pFirmware);
329 
330 void CCX_FwC2HTxRpt_8723b(PADAPTER padapter, u8 *pdata, u8 len);
331 s32 c2h_id_filter_ccx_8723b(u8 *buf);
332 s32 c2h_handler_8723b(PADAPTER padapter, u8 *pC2hEvent);
333 u8 MRateToHwRate8723B(u8  rate);
334 u8 HwRateToMRate8723B(u8	 rate);
335 
336 #ifdef CONFIG_RF_GAIN_OFFSET
337 void Hal_ReadRFGainOffset(PADAPTER pAdapter,u8* hwinfo,BOOLEAN AutoLoadFail);
338 #endif //CONFIG_RF_GAIN_OFFSET
339 
340 #ifdef CONFIG_PCI_HCI
341 BOOLEAN	InterruptRecognized8723BE(PADAPTER Adapter);
342 VOID	UpdateInterruptMask8723BE(PADAPTER Adapter, u32 AddMSR, u32 AddMSR1, u32 RemoveMSR, u32 RemoveMSR1);
343 #endif
344 
345 #endif
346 
347