1 /****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2017 Realtek Corporation. 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 *****************************************************************************/ 15 #ifndef __RTL8188E_HAL_H__ 16 #define __RTL8188E_HAL_H__ 17 18 /* #include "hal_com.h" */ 19 #include "hal_data.h" 20 21 /* include HAL Related header after HAL Related compiling flags */ 22 #include "rtl8188e_spec.h" 23 #include "Hal8188EPhyReg.h" 24 #include "Hal8188EPhyCfg.h" 25 #include "rtl8188e_rf.h" 26 #include "rtl8188e_dm.h" 27 #include "rtl8188e_recv.h" 28 #include "rtl8188e_xmit.h" 29 #include "rtl8188e_cmd.h" 30 #include "rtl8188e_led.h" 31 #include "Hal8188EPwrSeq.h" 32 #ifdef DBG_CONFIG_ERROR_DETECT 33 #include "rtl8188e_sreset.h" 34 #endif 35 36 /* --------------------------------------------------------------------- */ 37 /* RTL8188E Power Configuration CMDs for USB/SDIO/PCIE interfaces */ 38 /* --------------------------------------------------------------------- */ 39 #define Rtl8188E_NIC_PWR_ON_FLOW rtl8188E_power_on_flow 40 #define Rtl8188E_NIC_RF_OFF_FLOW rtl8188E_radio_off_flow 41 #define Rtl8188E_NIC_DISABLE_FLOW rtl8188E_card_disable_flow 42 #define Rtl8188E_NIC_ENABLE_FLOW rtl8188E_card_enable_flow 43 #define Rtl8188E_NIC_SUSPEND_FLOW rtl8188E_suspend_flow 44 #define Rtl8188E_NIC_RESUME_FLOW rtl8188E_resume_flow 45 #define Rtl8188E_NIC_PDN_FLOW rtl8188E_hwpdn_flow 46 #define Rtl8188E_NIC_LPS_ENTER_FLOW rtl8188E_enter_lps_flow 47 #define Rtl8188E_NIC_LPS_LEAVE_FLOW rtl8188E_leave_lps_flow 48 49 50 #if 1 /* download firmware related data structure */ 51 #define MAX_FW_8188E_SIZE 0x8000 /* 32768, 32k / 16384, 16k */ 52 53 #define FW_8188E_SIZE 0x4000 /* 16384, 16k */ 54 #define FW_8188E_SIZE_2 0x8000 /* 32768, 32k */ 55 56 #define FW_8188E_START_ADDRESS 0x1000 57 #define FW_8188E_END_ADDRESS 0x1FFF /* 0x5FFF */ 58 59 60 #define IS_FW_HEADER_EXIST_88E(_pFwHdr) ((le16_to_cpu(_pFwHdr->Signature) & 0xFFF0) == 0x88E0) 61 62 typedef struct _RT_FIRMWARE_8188E { 63 FIRMWARE_SOURCE eFWSource; 64 #ifdef CONFIG_EMBEDDED_FWIMG 65 u8 *szFwBuffer; 66 #else 67 u8 szFwBuffer[MAX_FW_8188E_SIZE]; 68 #endif 69 u32 ulFwLength; 70 } RT_FIRMWARE_8188E, *PRT_FIRMWARE_8188E; 71 72 /* 73 * This structure must be cared byte-ordering 74 * */ 75 76 typedef struct _RT_8188E_FIRMWARE_HDR { 77 /* 8-byte alinment required */ 78 79 /* --- LONG WORD 0 ---- */ 80 u16 Signature; /* 92C0: test chip; 92C, 88C0: test chip; 88C1: MP A-cut; 92C1: MP A-cut */ 81 u8 Category; /* AP/NIC and USB/PCI */ 82 u8 Function; /* Reserved for different FW function indcation, for further use when driver needs to download different FW in different conditions */ 83 u16 Version; /* FW Version */ 84 u8 Subversion; /* FW Subversion, default 0x00 */ 85 u16 Rsvd1; 86 87 88 /* --- LONG WORD 1 ---- */ 89 u8 Month; /* Release time Month field */ 90 u8 Date; /* Release time Date field */ 91 u8 Hour; /* Release time Hour field */ 92 u8 Minute; /* Release time Minute field */ 93 u16 RamCodeSize; /* The size of RAM code */ 94 u8 Foundry; 95 u8 Rsvd2; 96 97 /* --- LONG WORD 2 ---- */ 98 u32 SvnIdx; /* The SVN entry index */ 99 u32 Rsvd3; 100 101 /* --- LONG WORD 3 ---- */ 102 u32 Rsvd4; 103 u32 Rsvd5; 104 } RT_8188E_FIRMWARE_HDR, *PRT_8188E_FIRMWARE_HDR; 105 #endif /* download firmware related data structure */ 106 107 108 #define DRIVER_EARLY_INT_TIME_8188E 0x05 109 #define BCN_DMA_ATIME_INT_TIME_8188E 0x02 110 111 112 /* #define MAX_RX_DMA_BUFFER_SIZE_88E 0x2400 */ /* 9k for 88E nornal chip , */ /* MaxRxBuff=10k-max(TxReportSize(64*8), WOLPattern(16*24)) */ 113 #ifdef CONFIG_USB_HCI 114 #define RX_DMA_SIZE_88E(__Adapter) 0x2800 115 #else 116 #define RX_DMA_SIZE_88E(__Adapter) ((!IS_VENDOR_8188E_I_CUT_SERIES(__Adapter))?0x2800:0x4000) 117 #endif 118 119 #ifdef CONFIG_WOWLAN 120 #define RESV_FMWF (WKFMCAM_SIZE * MAX_WKFM_CAM_NUM) /* 16 entries, for each is 24 bytes*/ 121 #else 122 #define RESV_FMWF 0 123 #endif 124 125 #define RX_DMA_RESERVD_FW_FEATURE 0x200 /* for tx report (64*8) */ 126 127 #define MAX_RX_DMA_BUFFER_SIZE_88E(__Adapter) (RX_DMA_SIZE_88E(__Adapter)-RX_DMA_RESERVD_FW_FEATURE) 128 129 #define MAX_TX_REPORT_BUFFER_SIZE 0x0400 /* 1k */ 130 131 #define PAGE_SIZE_TX_88E PAGE_SIZE_128 132 /* Note: We will divide number of page equally for each queue other than public queue! 133 * 22k = 22528 bytes = 176 pages (@page = 128 bytes) 134 * BCN rsvd_page_num = MAX_BEACON_LEN / PAGE_SIZE_TX_88E 135 * 1 ps-poll / 1 null-data /1 prob_rsp /1 QOS null-data = 4 pages */ 136 137 #define BCNQ_PAGE_NUM_88E (MAX_BEACON_LEN / PAGE_SIZE_TX_88E + 4) /*0x09*/ 138 139 /* For WoWLan , more reserved page */ 140 #ifdef CONFIG_WOWLAN 141 #ifdef CONFIG_WOW_KEEP_ALIVE_PATTERN 142 #define WOWLAN_KEEP_ALIVE_PAGE 0x02 /*for keep alive packet*/ 143 #else 144 #define WOWLAN_KEEP_ALIVE_PAGE 0x00 145 #endif /*CONFIG_WOW_KEEP_ALIVE_PATTERN*/ 146 /* 1 ArpRsp + 2 NbrAdv + 2 NDPInfo + 1 RCI + 1 AOAC = 7 pages */ 147 #define WOWLAN_PAGE_NUM_88E (0x07+ WOWLAN_KEEP_ALIVE_PAGE) 148 #else 149 #define WOWLAN_PAGE_NUM_88E 0x00 150 #endif 151 152 /* Note: 153 Tx FIFO Size : previous CUT:22K /I_CUT after:32KB 154 Tx page Size : 128B 155 Total page numbers : 176(0xB0) / 256(0x100) 156 */ 157 #ifdef CONFIG_USB_HCI 158 #define TOTAL_PAGE_NUMBER_88E(_Adapter) (0xB0 - 1) 159 #else 160 #define TOTAL_PAGE_NUMBER_88E(_Adapter) ((IS_VENDOR_8188E_I_CUT_SERIES(_Adapter)?0x100:0xB0) - 1)/* must reserved 1 page for dma issue */ 161 #endif 162 #define TX_TOTAL_PAGE_NUMBER_88E(_Adapter) (TOTAL_PAGE_NUMBER_88E(_Adapter) - BCNQ_PAGE_NUM_88E - WOWLAN_PAGE_NUM_88E) 163 #define TX_PAGE_BOUNDARY_88E(_Adapter) (TX_TOTAL_PAGE_NUMBER_88E(_Adapter) + 1) /* beacon header start address */ 164 165 #define WMM_NORMAL_TX_TOTAL_PAGE_NUMBER_88E(_Adapter) TX_TOTAL_PAGE_NUMBER_88E(_Adapter) 166 #define WMM_NORMAL_TX_PAGE_BOUNDARY_88E(_Adapter) (WMM_NORMAL_TX_TOTAL_PAGE_NUMBER_88E(_Adapter) + 1) 167 168 /* For Normal Chip Setting 169 * (HPQ + LPQ + NPQ + PUBQ) shall be TX_TOTAL_PAGE_NUMBER_8723B */ 170 #define NORMAL_PAGE_NUM_HPQ_88E 0x0 171 #define NORMAL_PAGE_NUM_LPQ_88E 0x09 172 #define NORMAL_PAGE_NUM_NPQ_88E 0x0 173 174 /* Note: For Normal Chip Setting, modify later */ 175 #define WMM_NORMAL_PAGE_NUM_HPQ_88E 0x29 176 #define WMM_NORMAL_PAGE_NUM_LPQ_88E 0x1C 177 #define WMM_NORMAL_PAGE_NUM_NPQ_88E 0x1C 178 179 180 /* ------------------------------------------------------------------------- 181 * Chip specific 182 * ------------------------------------------------------------------------- */ 183 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22) & 0x3) 184 #define CHIP_BONDING_92C_1T2R 0x1 185 #define CHIP_BONDING_88C_USB_MCARD 0x2 186 #define CHIP_BONDING_88C_USB_HP 0x1 187 188 /* ------------------------------------------------------------------------- 189 * Channel Plan 190 * ------------------------------------------------------------------------- */ 191 192 193 #define EFUSE_REAL_CONTENT_LEN 512 194 #define EFUSE_MAP_LEN 128 195 #define EFUSE_MAX_SECTION 16 196 #define EFUSE_IC_ID_OFFSET 506 /* For some inferiority IC purpose. added by Roger, 2009.09.02. */ 197 #define AVAILABLE_EFUSE_ADDR(addr) (addr < EFUSE_REAL_CONTENT_LEN) 198 /* 199 * <Roger_Notes> 200 * To prevent out of boundary programming case, 201 * leave 1byte and program full section 202 * 9bytes + 1byt + 5bytes and pre 1byte. 203 * For worst case: 204 * | 1byte|----8bytes----|1byte|--5bytes--| 205 * | | Reserved(14bytes) | 206 * */ 207 #define EFUSE_OOB_PROTECT_BYTES 15 /* PG data exclude header, dummy 6 bytes frome CP test and reserved 1byte. */ 208 209 #define EFUSE_REAL_CONTENT_LEN_88E 256 210 #define EFUSE_MAP_LEN_88E 512 211 #define EFUSE_MAX_SECTION_88E 64 212 #define EFUSE_MAX_WORD_UNIT_88E 4 213 #define EFUSE_IC_ID_OFFSET_88E 506 /* For some inferiority IC purpose. added by Roger, 2009.09.02. */ 214 #define AVAILABLE_EFUSE_ADDR_88E(addr) (addr < EFUSE_REAL_CONTENT_LEN_88E) 215 /* <Roger_Notes> To prevent out of boundary programming case, leave 1byte and program full section 216 * 9bytes + 1byt + 5bytes and pre 1byte. 217 * For worst case: 218 * | 2byte|----8bytes----|1byte|--7bytes--| */ /* 92D */ 219 #define EFUSE_OOB_PROTECT_BYTES_88E 18 /* PG data exclude header, dummy 7 bytes frome CP test and reserved 1byte. */ 220 #define EFUSE_PROTECT_BYTES_BANK_88E 16 221 222 223 /* ******************************************************** 224 * EFUSE for BT definition 225 * ******************************************************** */ 226 #define EFUSE_BT_REAL_CONTENT_LEN 1536 /* 512*3 */ 227 #define EFUSE_BT_MAP_LEN 1024 /* 1k bytes */ 228 #define EFUSE_BT_MAX_SECTION 128 /* 1024/8 */ 229 230 #define EFUSE_PROTECT_BYTES_BANK 16 231 232 #define INCLUDE_MULTI_FUNC_BT(_Adapter) (GET_HAL_DATA(_Adapter)->MultiFunc & RT_MULTI_FUNC_BT) 233 #define INCLUDE_MULTI_FUNC_GPS(_Adapter) (GET_HAL_DATA(_Adapter)->MultiFunc & RT_MULTI_FUNC_GPS) 234 235 /* #define IS_MULTI_FUNC_CHIP(_Adapter) (((((PHAL_DATA_TYPE)(_Adapter->HalData))->MultiFunc) & (RT_MULTI_FUNC_BT|RT_MULTI_FUNC_GPS)) ? _TRUE : _FALSE) */ 236 237 /* #define RT_IS_FUNC_DISABLED(__pAdapter, __FuncBits) ( (__pAdapter)->DisabledFunctions & (__FuncBits) ) */ 238 239 #ifdef CONFIG_PCI_HCI 240 /* according to the define in the rtw_xmit.h, rtw_recv.h */ 241 #define TX_DESC_NUM_8188EE TXDESC_NUM /* 128 */ 242 #ifdef CONFIG_CONCURRENT_MODE 243 /*#define BE_QUEUE_TX_DESC_NUM_8188EE (TXDESC_NUM<<1)*/ /* 256 */ 244 #define BE_QUEUE_TX_DESC_NUM_8188EE ((TXDESC_NUM<<1)+(TXDESC_NUM>>1)) /* 320 */ 245 /*#define BE_QUEUE_TX_DESC_NUM_8188EE ((TXDESC_NUM<<1)+TXDESC_NUM)*/ /* 384 */ 246 #else 247 #define BE_QUEUE_TX_DESC_NUM_8188EE TXDESC_NUM /* 128 */ 248 /*#define BE_QUEUE_TX_DESC_NUM_8188EE (TXDESC_NUM+(TXDESC_NUM>>1)) */ /* 192 */ 249 #endif 250 251 void InterruptRecognized8188EE(PADAPTER Adapter, PRT_ISR_CONTENT pIsrContent); 252 void UpdateInterruptMask8188EE(PADAPTER Adapter, u32 AddMSR, u32 AddMSR1, u32 RemoveMSR, u32 RemoveMSR1); 253 #endif /* CONFIG_PCI_HCI */ 254 255 /* rtl8188e_hal_init.c */ 256 257 s32 rtl8188e_FirmwareDownload(PADAPTER padapter, BOOLEAN bUsedWoWLANFw); 258 void _8051Reset88E(PADAPTER padapter); 259 void rtl8188e_InitializeFirmwareVars(PADAPTER padapter); 260 261 262 s32 InitLLTTable(PADAPTER padapter, u8 txpktbuf_bndy); 263 264 /* EFuse */ 265 u8 GetEEPROMSize8188E(PADAPTER padapter); 266 void Hal_InitPGData88E(PADAPTER padapter); 267 void Hal_EfuseParseIDCode88E(PADAPTER padapter, u8 *hwinfo); 268 void Hal_ReadTxPowerInfo88E(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 269 270 void Hal_EfuseParseEEPROMVer88E(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 271 void rtl8188e_EfuseParseChnlPlan(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 272 void Hal_EfuseParseCustomerID88E(PADAPTER padapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 273 void Hal_ReadAntennaDiversity88E(PADAPTER pAdapter, u8 *PROMContent, BOOLEAN AutoLoadFail); 274 void Hal_ReadThermalMeter_88E(PADAPTER Adapter, u8 *PROMContent, BOOLEAN AutoloadFail); 275 void Hal_EfuseParseXtal_8188E(PADAPTER pAdapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 276 void Hal_EfuseParseBoardType88E(PADAPTER pAdapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 277 void Hal_ReadPowerSavingMode88E(PADAPTER pAdapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 278 void Hal_ReadPAType_8188E(PADAPTER Adapter, u8 *PROMContent, BOOLEAN AutoloadFail); 279 void Hal_ReadAmplifierType_8188E(PADAPTER Adapter, u8 *PROMContent, BOOLEAN AutoloadFail); 280 void Hal_ReadRFEType_8188E(PADAPTER Adapter, u8 *PROMContent, BOOLEAN AutoloadFail); 281 282 BOOLEAN HalDetectPwrDownMode88E(PADAPTER Adapter); 283 284 #if defined(CONFIG_WOWLAN) || defined(CONFIG_AP_WOWLAN) 285 void Hal_DetectWoWMode(PADAPTER pAdapter); 286 #endif /* CONFIG_WOWLAN */ 287 288 289 #ifdef CONFIG_RF_POWER_TRIM 290 void Hal_ReadRFGainOffset(PADAPTER pAdapter, u8 *hwinfo, BOOLEAN AutoLoadFail); 291 #endif /*CONFIG_RF_POWER_TRIM*/ 292 293 294 void InitBeaconParameters_8188e(_adapter *adapter); 295 void SetBeaconRelatedRegisters8188E(PADAPTER padapter); 296 297 void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc); 298 void init_hal_spec_8188e(_adapter *adapter); 299 300 void rtl8188e_start_thread(_adapter *padapter); 301 void rtl8188e_stop_thread(_adapter *padapter); 302 303 void rtw_IOL_cmd_tx_pkt_buf_dump(ADAPTER *Adapter, int data_len); 304 #ifdef CONFIG_IOL_EFUSE_PATCH 305 s32 rtl8188e_iol_efuse_patch(PADAPTER padapter); 306 #endif/* CONFIG_IOL_EFUSE_PATCH */ 307 void _InitTransferPageSize(PADAPTER padapter); 308 309 u8 SetHwReg8188E(PADAPTER padapter, u8 variable, u8 *val); 310 void GetHwReg8188E(PADAPTER padapter, u8 variable, u8 *val); 311 312 u8 313 GetHalDefVar8188E( 314 PADAPTER Adapter, 315 HAL_DEF_VARIABLE eVariable, 316 void *pValue 317 ); 318 #ifdef CONFIG_GPIO_API 319 int rtl8188e_GpioFuncCheck(PADAPTER adapter, u8 gpio_num); 320 #endif 321 #endif /* __RTL8188E_HAL_H__ */ 322