wifi.h 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2010 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. * 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. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. * Contact Information:
  22. * wlanfae <wlanfae@realtek.com>
  23. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  24. * Hsinchu 300, Taiwan.
  25. *
  26. * Larry Finger <Larry.Finger@lwfinger.net>
  27. *
  28. *****************************************************************************/
  29. #ifndef __RTL_WIFI_H__
  30. #define __RTL_WIFI_H__
  31. #include <linux/sched.h>
  32. #include <linux/firmware.h>
  33. #include <linux/version.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/usb.h>
  36. #include <net/mac80211.h>
  37. #include "debug.h"
  38. #define RF_CHANGE_BY_INIT 0
  39. #define RF_CHANGE_BY_IPS BIT(28)
  40. #define RF_CHANGE_BY_PS BIT(29)
  41. #define RF_CHANGE_BY_HW BIT(30)
  42. #define RF_CHANGE_BY_SW BIT(31)
  43. #define IQK_ADDA_REG_NUM 16
  44. #define IQK_MAC_REG_NUM 4
  45. #define MAX_KEY_LEN 61
  46. #define KEY_BUF_SIZE 5
  47. /* QoS related. */
  48. /*aci: 0x00 Best Effort*/
  49. /*aci: 0x01 Background*/
  50. /*aci: 0x10 Video*/
  51. /*aci: 0x11 Voice*/
  52. /*Max: define total number.*/
  53. #define AC0_BE 0
  54. #define AC1_BK 1
  55. #define AC2_VI 2
  56. #define AC3_VO 3
  57. #define AC_MAX 4
  58. #define QOS_QUEUE_NUM 4
  59. #define RTL_MAC80211_NUM_QUEUE 5
  60. #define QBSS_LOAD_SIZE 5
  61. #define MAX_WMMELE_LENGTH 64
  62. /*slot time for 11g. */
  63. #define RTL_SLOT_TIME_9 9
  64. #define RTL_SLOT_TIME_20 20
  65. /*related with tcp/ip. */
  66. /*if_ehther.h*/
  67. #define ETH_P_PAE 0x888E /*Port Access Entity (IEEE 802.1X) */
  68. #define ETH_P_IP 0x0800 /*Internet Protocol packet */
  69. #define ETH_P_ARP 0x0806 /*Address Resolution packet */
  70. #define SNAP_SIZE 6
  71. #define PROTOC_TYPE_SIZE 2
  72. /*related with 802.11 frame*/
  73. #define MAC80211_3ADDR_LEN 24
  74. #define MAC80211_4ADDR_LEN 30
  75. #define CHANNEL_MAX_NUMBER (14 + 24 + 21) /* 14 is the max channel no */
  76. #define CHANNEL_GROUP_MAX (3 + 9) /* ch1~3, 4~9, 10~14 = three groups */
  77. #define MAX_PG_GROUP 13
  78. #define CHANNEL_GROUP_MAX_2G 3
  79. #define CHANNEL_GROUP_IDX_5GL 3
  80. #define CHANNEL_GROUP_IDX_5GM 6
  81. #define CHANNEL_GROUP_IDX_5GH 9
  82. #define CHANNEL_GROUP_MAX_5G 9
  83. #define CHANNEL_MAX_NUMBER_2G 14
  84. #define AVG_THERMAL_NUM 8
  85. /* for early mode */
  86. #define EM_HDR_LEN 8
  87. enum intf_type {
  88. INTF_PCI = 0,
  89. INTF_USB = 1,
  90. };
  91. enum radio_path {
  92. RF90_PATH_A = 0,
  93. RF90_PATH_B = 1,
  94. RF90_PATH_C = 2,
  95. RF90_PATH_D = 3,
  96. };
  97. enum rt_eeprom_type {
  98. EEPROM_93C46,
  99. EEPROM_93C56,
  100. EEPROM_BOOT_EFUSE,
  101. };
  102. enum rtl_status {
  103. RTL_STATUS_INTERFACE_START = 0,
  104. };
  105. enum hardware_type {
  106. HARDWARE_TYPE_RTL8192E,
  107. HARDWARE_TYPE_RTL8192U,
  108. HARDWARE_TYPE_RTL8192SE,
  109. HARDWARE_TYPE_RTL8192SU,
  110. HARDWARE_TYPE_RTL8192CE,
  111. HARDWARE_TYPE_RTL8192CU,
  112. HARDWARE_TYPE_RTL8192DE,
  113. HARDWARE_TYPE_RTL8192DU,
  114. HARDWARE_TYPE_RTL8723E,
  115. HARDWARE_TYPE_RTL8723U,
  116. /* keep it last */
  117. HARDWARE_TYPE_NUM
  118. };
  119. #define IS_HARDWARE_TYPE_8192SU(rtlhal) \
  120. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SU)
  121. #define IS_HARDWARE_TYPE_8192SE(rtlhal) \
  122. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE)
  123. #define IS_HARDWARE_TYPE_8192CE(rtlhal) \
  124. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CE)
  125. #define IS_HARDWARE_TYPE_8192CU(rtlhal) \
  126. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192CU)
  127. #define IS_HARDWARE_TYPE_8192DE(rtlhal) \
  128. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DE)
  129. #define IS_HARDWARE_TYPE_8192DU(rtlhal) \
  130. (rtlhal->hw_type == HARDWARE_TYPE_RTL8192DU)
  131. #define IS_HARDWARE_TYPE_8723E(rtlhal) \
  132. (rtlhal->hw_type == HARDWARE_TYPE_RTL8723E)
  133. #define IS_HARDWARE_TYPE_8723U(rtlhal) \
  134. (rtlhal->hw_type == HARDWARE_TYPE_RTL8723U)
  135. #define IS_HARDWARE_TYPE_8192S(rtlhal) \
  136. (IS_HARDWARE_TYPE_8192SE(rtlhal) || IS_HARDWARE_TYPE_8192SU(rtlhal))
  137. #define IS_HARDWARE_TYPE_8192C(rtlhal) \
  138. (IS_HARDWARE_TYPE_8192CE(rtlhal) || IS_HARDWARE_TYPE_8192CU(rtlhal))
  139. #define IS_HARDWARE_TYPE_8192D(rtlhal) \
  140. (IS_HARDWARE_TYPE_8192DE(rtlhal) || IS_HARDWARE_TYPE_8192DU(rtlhal))
  141. #define IS_HARDWARE_TYPE_8723(rtlhal) \
  142. (IS_HARDWARE_TYPE_8723E(rtlhal) || IS_HARDWARE_TYPE_8723U(rtlhal))
  143. enum scan_operation_backup_opt {
  144. SCAN_OPT_BACKUP = 0,
  145. SCAN_OPT_RESTORE,
  146. SCAN_OPT_MAX
  147. };
  148. /*RF state.*/
  149. enum rf_pwrstate {
  150. ERFON,
  151. ERFSLEEP,
  152. ERFOFF
  153. };
  154. struct bb_reg_def {
  155. u32 rfintfs;
  156. u32 rfintfi;
  157. u32 rfintfo;
  158. u32 rfintfe;
  159. u32 rf3wire_offset;
  160. u32 rflssi_select;
  161. u32 rftxgain_stage;
  162. u32 rfhssi_para1;
  163. u32 rfhssi_para2;
  164. u32 rfswitch_control;
  165. u32 rfagc_control1;
  166. u32 rfagc_control2;
  167. u32 rfrxiq_imbalance;
  168. u32 rfrx_afe;
  169. u32 rftxiq_imbalance;
  170. u32 rftx_afe;
  171. u32 rflssi_readback;
  172. u32 rflssi_readbackpi;
  173. };
  174. enum io_type {
  175. IO_CMD_PAUSE_DM_BY_SCAN = 0,
  176. IO_CMD_RESUME_DM_BY_SCAN = 1,
  177. };
  178. enum hw_variables {
  179. HW_VAR_ETHER_ADDR,
  180. HW_VAR_MULTICAST_REG,
  181. HW_VAR_BASIC_RATE,
  182. HW_VAR_BSSID,
  183. HW_VAR_MEDIA_STATUS,
  184. HW_VAR_SECURITY_CONF,
  185. HW_VAR_BEACON_INTERVAL,
  186. HW_VAR_ATIM_WINDOW,
  187. HW_VAR_LISTEN_INTERVAL,
  188. HW_VAR_CS_COUNTER,
  189. HW_VAR_DEFAULTKEY0,
  190. HW_VAR_DEFAULTKEY1,
  191. HW_VAR_DEFAULTKEY2,
  192. HW_VAR_DEFAULTKEY3,
  193. HW_VAR_SIFS,
  194. HW_VAR_DIFS,
  195. HW_VAR_EIFS,
  196. HW_VAR_SLOT_TIME,
  197. HW_VAR_ACK_PREAMBLE,
  198. HW_VAR_CW_CONFIG,
  199. HW_VAR_CW_VALUES,
  200. HW_VAR_RATE_FALLBACK_CONTROL,
  201. HW_VAR_CONTENTION_WINDOW,
  202. HW_VAR_RETRY_COUNT,
  203. HW_VAR_TR_SWITCH,
  204. HW_VAR_COMMAND,
  205. HW_VAR_WPA_CONFIG,
  206. HW_VAR_AMPDU_MIN_SPACE,
  207. HW_VAR_SHORTGI_DENSITY,
  208. HW_VAR_AMPDU_FACTOR,
  209. HW_VAR_MCS_RATE_AVAILABLE,
  210. HW_VAR_AC_PARAM,
  211. HW_VAR_ACM_CTRL,
  212. HW_VAR_DIS_Req_Qsize,
  213. HW_VAR_CCX_CHNL_LOAD,
  214. HW_VAR_CCX_NOISE_HISTOGRAM,
  215. HW_VAR_CCX_CLM_NHM,
  216. HW_VAR_TxOPLimit,
  217. HW_VAR_TURBO_MODE,
  218. HW_VAR_RF_STATE,
  219. HW_VAR_RF_OFF_BY_HW,
  220. HW_VAR_BUS_SPEED,
  221. HW_VAR_SET_DEV_POWER,
  222. HW_VAR_RCR,
  223. HW_VAR_RATR_0,
  224. HW_VAR_RRSR,
  225. HW_VAR_CPU_RST,
  226. HW_VAR_CECHK_BSSID,
  227. HW_VAR_LBK_MODE,
  228. HW_VAR_AES_11N_FIX,
  229. HW_VAR_USB_RX_AGGR,
  230. HW_VAR_USER_CONTROL_TURBO_MODE,
  231. HW_VAR_RETRY_LIMIT,
  232. HW_VAR_INIT_TX_RATE,
  233. HW_VAR_TX_RATE_REG,
  234. HW_VAR_EFUSE_USAGE,
  235. HW_VAR_EFUSE_BYTES,
  236. HW_VAR_AUTOLOAD_STATUS,
  237. HW_VAR_RF_2R_DISABLE,
  238. HW_VAR_SET_RPWM,
  239. HW_VAR_H2C_FW_PWRMODE,
  240. HW_VAR_H2C_FW_JOINBSSRPT,
  241. HW_VAR_FW_PSMODE_STATUS,
  242. HW_VAR_1X1_RECV_COMBINE,
  243. HW_VAR_STOP_SEND_BEACON,
  244. HW_VAR_TSF_TIMER,
  245. HW_VAR_IO_CMD,
  246. HW_VAR_RF_RECOVERY,
  247. HW_VAR_H2C_FW_UPDATE_GTK,
  248. HW_VAR_WF_MASK,
  249. HW_VAR_WF_CRC,
  250. HW_VAR_WF_IS_MAC_ADDR,
  251. HW_VAR_H2C_FW_OFFLOAD,
  252. HW_VAR_RESET_WFCRC,
  253. HW_VAR_HANDLE_FW_C2H,
  254. HW_VAR_DL_FW_RSVD_PAGE,
  255. HW_VAR_AID,
  256. HW_VAR_HW_SEQ_ENABLE,
  257. HW_VAR_CORRECT_TSF,
  258. HW_VAR_BCN_VALID,
  259. HW_VAR_FWLPS_RF_ON,
  260. HW_VAR_DUAL_TSF_RST,
  261. HW_VAR_SWITCH_EPHY_WoWLAN,
  262. HW_VAR_INT_MIGRATION,
  263. HW_VAR_INT_AC,
  264. HW_VAR_RF_TIMING,
  265. HW_VAR_MRC,
  266. HW_VAR_MGT_FILTER,
  267. HW_VAR_CTRL_FILTER,
  268. HW_VAR_DATA_FILTER,
  269. };
  270. enum _RT_MEDIA_STATUS {
  271. RT_MEDIA_DISCONNECT = 0,
  272. RT_MEDIA_CONNECT = 1
  273. };
  274. enum rt_oem_id {
  275. RT_CID_DEFAULT = 0,
  276. RT_CID_8187_ALPHA0 = 1,
  277. RT_CID_8187_SERCOMM_PS = 2,
  278. RT_CID_8187_HW_LED = 3,
  279. RT_CID_8187_NETGEAR = 4,
  280. RT_CID_WHQL = 5,
  281. RT_CID_819x_CAMEO = 6,
  282. RT_CID_819x_RUNTOP = 7,
  283. RT_CID_819x_Senao = 8,
  284. RT_CID_TOSHIBA = 9,
  285. RT_CID_819x_Netcore = 10,
  286. RT_CID_Nettronix = 11,
  287. RT_CID_DLINK = 12,
  288. RT_CID_PRONET = 13,
  289. RT_CID_COREGA = 14,
  290. RT_CID_819x_ALPHA = 15,
  291. RT_CID_819x_Sitecom = 16,
  292. RT_CID_CCX = 17,
  293. RT_CID_819x_Lenovo = 18,
  294. RT_CID_819x_QMI = 19,
  295. RT_CID_819x_Edimax_Belkin = 20,
  296. RT_CID_819x_Sercomm_Belkin = 21,
  297. RT_CID_819x_CAMEO1 = 22,
  298. RT_CID_819x_MSI = 23,
  299. RT_CID_819x_Acer = 24,
  300. RT_CID_819x_HP = 27,
  301. RT_CID_819x_CLEVO = 28,
  302. RT_CID_819x_Arcadyan_Belkin = 29,
  303. RT_CID_819x_SAMSUNG = 30,
  304. RT_CID_819x_WNC_COREGA = 31,
  305. RT_CID_819x_Foxcoon = 32,
  306. RT_CID_819x_DELL = 33,
  307. };
  308. enum hw_descs {
  309. HW_DESC_OWN,
  310. HW_DESC_RXOWN,
  311. HW_DESC_TX_NEXTDESC_ADDR,
  312. HW_DESC_TXBUFF_ADDR,
  313. HW_DESC_RXBUFF_ADDR,
  314. HW_DESC_RXPKT_LEN,
  315. HW_DESC_RXERO,
  316. };
  317. enum prime_sc {
  318. PRIME_CHNL_OFFSET_DONT_CARE = 0,
  319. PRIME_CHNL_OFFSET_LOWER = 1,
  320. PRIME_CHNL_OFFSET_UPPER = 2,
  321. };
  322. enum rf_type {
  323. RF_1T1R = 0,
  324. RF_1T2R = 1,
  325. RF_2T2R = 2,
  326. RF_2T2R_GREEN = 3,
  327. };
  328. enum ht_channel_width {
  329. HT_CHANNEL_WIDTH_20 = 0,
  330. HT_CHANNEL_WIDTH_20_40 = 1,
  331. };
  332. /* Ref: 802.11i sepc D10.0 7.3.2.25.1
  333. Cipher Suites Encryption Algorithms */
  334. enum rt_enc_alg {
  335. NO_ENCRYPTION = 0,
  336. WEP40_ENCRYPTION = 1,
  337. TKIP_ENCRYPTION = 2,
  338. RSERVED_ENCRYPTION = 3,
  339. AESCCMP_ENCRYPTION = 4,
  340. WEP104_ENCRYPTION = 5,
  341. };
  342. enum rtl_hal_state {
  343. _HAL_STATE_STOP = 0,
  344. _HAL_STATE_START = 1,
  345. };
  346. enum rtl_var_map {
  347. /*reg map */
  348. SYS_ISO_CTRL = 0,
  349. SYS_FUNC_EN,
  350. SYS_CLK,
  351. MAC_RCR_AM,
  352. MAC_RCR_AB,
  353. MAC_RCR_ACRC32,
  354. MAC_RCR_ACF,
  355. MAC_RCR_AAP,
  356. /*efuse map */
  357. EFUSE_TEST,
  358. EFUSE_CTRL,
  359. EFUSE_CLK,
  360. EFUSE_CLK_CTRL,
  361. EFUSE_PWC_EV12V,
  362. EFUSE_FEN_ELDR,
  363. EFUSE_LOADER_CLK_EN,
  364. EFUSE_ANA8M,
  365. EFUSE_HWSET_MAX_SIZE,
  366. EFUSE_MAX_SECTION_MAP,
  367. EFUSE_REAL_CONTENT_SIZE,
  368. /*CAM map */
  369. RWCAM,
  370. WCAMI,
  371. RCAMO,
  372. CAMDBG,
  373. SECR,
  374. SEC_CAM_NONE,
  375. SEC_CAM_WEP40,
  376. SEC_CAM_TKIP,
  377. SEC_CAM_AES,
  378. SEC_CAM_WEP104,
  379. /*IMR map */
  380. RTL_IMR_BCNDMAINT6, /*Beacon DMA Interrupt 6 */
  381. RTL_IMR_BCNDMAINT5, /*Beacon DMA Interrupt 5 */
  382. RTL_IMR_BCNDMAINT4, /*Beacon DMA Interrupt 4 */
  383. RTL_IMR_BCNDMAINT3, /*Beacon DMA Interrupt 3 */
  384. RTL_IMR_BCNDMAINT2, /*Beacon DMA Interrupt 2 */
  385. RTL_IMR_BCNDMAINT1, /*Beacon DMA Interrupt 1 */
  386. RTL_IMR_BCNDOK8, /*Beacon Queue DMA OK Interrup 8 */
  387. RTL_IMR_BCNDOK7, /*Beacon Queue DMA OK Interrup 7 */
  388. RTL_IMR_BCNDOK6, /*Beacon Queue DMA OK Interrup 6 */
  389. RTL_IMR_BCNDOK5, /*Beacon Queue DMA OK Interrup 5 */
  390. RTL_IMR_BCNDOK4, /*Beacon Queue DMA OK Interrup 4 */
  391. RTL_IMR_BCNDOK3, /*Beacon Queue DMA OK Interrup 3 */
  392. RTL_IMR_BCNDOK2, /*Beacon Queue DMA OK Interrup 2 */
  393. RTL_IMR_BCNDOK1, /*Beacon Queue DMA OK Interrup 1 */
  394. RTL_IMR_TIMEOUT2, /*Timeout interrupt 2 */
  395. RTL_IMR_TIMEOUT1, /*Timeout interrupt 1 */
  396. RTL_IMR_TXFOVW, /*Transmit FIFO Overflow */
  397. RTL_IMR_PSTIMEOUT, /*Power save time out interrupt */
  398. RTL_IMR_BcnInt, /*Beacon DMA Interrupt 0 */
  399. RTL_IMR_RXFOVW, /*Receive FIFO Overflow */
  400. RTL_IMR_RDU, /*Receive Descriptor Unavailable */
  401. RTL_IMR_ATIMEND, /*For 92C,ATIM Window End Interrupt */
  402. RTL_IMR_BDOK, /*Beacon Queue DMA OK Interrup */
  403. RTL_IMR_HIGHDOK, /*High Queue DMA OK Interrupt */
  404. RTL_IMR_COMDOK, /*Command Queue DMA OK Interrupt*/
  405. RTL_IMR_TBDOK, /*Transmit Beacon OK interrup */
  406. RTL_IMR_MGNTDOK, /*Management Queue DMA OK Interrupt */
  407. RTL_IMR_TBDER, /*For 92C,Transmit Beacon Error Interrupt */
  408. RTL_IMR_BKDOK, /*AC_BK DMA OK Interrupt */
  409. RTL_IMR_BEDOK, /*AC_BE DMA OK Interrupt */
  410. RTL_IMR_VIDOK, /*AC_VI DMA OK Interrupt */
  411. RTL_IMR_VODOK, /*AC_VO DMA Interrupt */
  412. RTL_IMR_ROK, /*Receive DMA OK Interrupt */
  413. RTL_IBSS_INT_MASKS, /*(RTL_IMR_BcnInt | RTL_IMR_TBDOK |
  414. * RTL_IMR_TBDER) */
  415. /*CCK Rates, TxHT = 0 */
  416. RTL_RC_CCK_RATE1M,
  417. RTL_RC_CCK_RATE2M,
  418. RTL_RC_CCK_RATE5_5M,
  419. RTL_RC_CCK_RATE11M,
  420. /*OFDM Rates, TxHT = 0 */
  421. RTL_RC_OFDM_RATE6M,
  422. RTL_RC_OFDM_RATE9M,
  423. RTL_RC_OFDM_RATE12M,
  424. RTL_RC_OFDM_RATE18M,
  425. RTL_RC_OFDM_RATE24M,
  426. RTL_RC_OFDM_RATE36M,
  427. RTL_RC_OFDM_RATE48M,
  428. RTL_RC_OFDM_RATE54M,
  429. RTL_RC_HT_RATEMCS7,
  430. RTL_RC_HT_RATEMCS15,
  431. /*keep it last */
  432. RTL_VAR_MAP_MAX,
  433. };
  434. /*Firmware PS mode for control LPS.*/
  435. enum _fw_ps_mode {
  436. FW_PS_ACTIVE_MODE = 0,
  437. FW_PS_MIN_MODE = 1,
  438. FW_PS_MAX_MODE = 2,
  439. FW_PS_DTIM_MODE = 3,
  440. FW_PS_VOIP_MODE = 4,
  441. FW_PS_UAPSD_WMM_MODE = 5,
  442. FW_PS_UAPSD_MODE = 6,
  443. FW_PS_IBSS_MODE = 7,
  444. FW_PS_WWLAN_MODE = 8,
  445. FW_PS_PM_Radio_Off = 9,
  446. FW_PS_PM_Card_Disable = 10,
  447. };
  448. enum rt_psmode {
  449. EACTIVE, /*Active/Continuous access. */
  450. EMAXPS, /*Max power save mode. */
  451. EFASTPS, /*Fast power save mode. */
  452. EAUTOPS, /*Auto power save mode. */
  453. };
  454. /*LED related.*/
  455. enum led_ctl_mode {
  456. LED_CTL_POWER_ON = 1,
  457. LED_CTL_LINK = 2,
  458. LED_CTL_NO_LINK = 3,
  459. LED_CTL_TX = 4,
  460. LED_CTL_RX = 5,
  461. LED_CTL_SITE_SURVEY = 6,
  462. LED_CTL_POWER_OFF = 7,
  463. LED_CTL_START_TO_LINK = 8,
  464. LED_CTL_START_WPS = 9,
  465. LED_CTL_STOP_WPS = 10,
  466. };
  467. enum rtl_led_pin {
  468. LED_PIN_GPIO0,
  469. LED_PIN_LED0,
  470. LED_PIN_LED1,
  471. LED_PIN_LED2
  472. };
  473. /*QoS related.*/
  474. /*acm implementation method.*/
  475. enum acm_method {
  476. eAcmWay0_SwAndHw = 0,
  477. eAcmWay1_HW = 1,
  478. eAcmWay2_SW = 2,
  479. };
  480. enum macphy_mode {
  481. SINGLEMAC_SINGLEPHY = 0,
  482. DUALMAC_DUALPHY,
  483. DUALMAC_SINGLEPHY,
  484. };
  485. enum band_type {
  486. BAND_ON_2_4G = 0,
  487. BAND_ON_5G,
  488. BAND_ON_BOTH,
  489. BANDMAX
  490. };
  491. /*aci/aifsn Field.
  492. Ref: WMM spec 2.2.2: WME Parameter Element, p.12.*/
  493. union aci_aifsn {
  494. u8 char_data;
  495. struct {
  496. u8 aifsn:4;
  497. u8 acm:1;
  498. u8 aci:2;
  499. u8 reserved:1;
  500. } f; /* Field */
  501. };
  502. /*mlme related.*/
  503. enum wireless_mode {
  504. WIRELESS_MODE_UNKNOWN = 0x00,
  505. WIRELESS_MODE_A = 0x01,
  506. WIRELESS_MODE_B = 0x02,
  507. WIRELESS_MODE_G = 0x04,
  508. WIRELESS_MODE_AUTO = 0x08,
  509. WIRELESS_MODE_N_24G = 0x10,
  510. WIRELESS_MODE_N_5G = 0x20
  511. };
  512. #define IS_WIRELESS_MODE_A(wirelessmode) \
  513. (wirelessmode == WIRELESS_MODE_A)
  514. #define IS_WIRELESS_MODE_B(wirelessmode) \
  515. (wirelessmode == WIRELESS_MODE_B)
  516. #define IS_WIRELESS_MODE_G(wirelessmode) \
  517. (wirelessmode == WIRELESS_MODE_G)
  518. #define IS_WIRELESS_MODE_N_24G(wirelessmode) \
  519. (wirelessmode == WIRELESS_MODE_N_24G)
  520. #define IS_WIRELESS_MODE_N_5G(wirelessmode) \
  521. (wirelessmode == WIRELESS_MODE_N_5G)
  522. enum ratr_table_mode {
  523. RATR_INX_WIRELESS_NGB = 0,
  524. RATR_INX_WIRELESS_NG = 1,
  525. RATR_INX_WIRELESS_NB = 2,
  526. RATR_INX_WIRELESS_N = 3,
  527. RATR_INX_WIRELESS_GB = 4,
  528. RATR_INX_WIRELESS_G = 5,
  529. RATR_INX_WIRELESS_B = 6,
  530. RATR_INX_WIRELESS_MC = 7,
  531. RATR_INX_WIRELESS_A = 8,
  532. };
  533. enum rtl_link_state {
  534. MAC80211_NOLINK = 0,
  535. MAC80211_LINKING = 1,
  536. MAC80211_LINKED = 2,
  537. MAC80211_LINKED_SCANNING = 3,
  538. };
  539. enum act_category {
  540. ACT_CAT_QOS = 1,
  541. ACT_CAT_DLS = 2,
  542. ACT_CAT_BA = 3,
  543. ACT_CAT_HT = 7,
  544. ACT_CAT_WMM = 17,
  545. };
  546. enum ba_action {
  547. ACT_ADDBAREQ = 0,
  548. ACT_ADDBARSP = 1,
  549. ACT_DELBA = 2,
  550. };
  551. struct octet_string {
  552. u8 *octet;
  553. u16 length;
  554. };
  555. struct rtl_hdr_3addr {
  556. __le16 frame_ctl;
  557. __le16 duration_id;
  558. u8 addr1[ETH_ALEN];
  559. u8 addr2[ETH_ALEN];
  560. u8 addr3[ETH_ALEN];
  561. __le16 seq_ctl;
  562. u8 payload[0];
  563. } __packed;
  564. struct rtl_info_element {
  565. u8 id;
  566. u8 len;
  567. u8 data[0];
  568. } __packed;
  569. struct rtl_probe_rsp {
  570. struct rtl_hdr_3addr header;
  571. u32 time_stamp[2];
  572. __le16 beacon_interval;
  573. __le16 capability;
  574. /*SSID, supported rates, FH params, DS params,
  575. CF params, IBSS params, TIM (if beacon), RSN */
  576. struct rtl_info_element info_element[0];
  577. } __packed;
  578. /*LED related.*/
  579. /*ledpin Identify how to implement this SW led.*/
  580. struct rtl_led {
  581. void *hw;
  582. enum rtl_led_pin ledpin;
  583. bool ledon;
  584. };
  585. struct rtl_led_ctl {
  586. bool led_opendrain;
  587. struct rtl_led sw_led0;
  588. struct rtl_led sw_led1;
  589. };
  590. struct rtl_qos_parameters {
  591. __le16 cw_min;
  592. __le16 cw_max;
  593. u8 aifs;
  594. u8 flag;
  595. __le16 tx_op;
  596. } __packed;
  597. struct rt_smooth_data {
  598. u32 elements[100]; /*array to store values */
  599. u32 index; /*index to current array to store */
  600. u32 total_num; /*num of valid elements */
  601. u32 total_val; /*sum of valid elements */
  602. };
  603. struct false_alarm_statistics {
  604. u32 cnt_parity_fail;
  605. u32 cnt_rate_illegal;
  606. u32 cnt_crc8_fail;
  607. u32 cnt_mcs_fail;
  608. u32 cnt_fast_fsync_fail;
  609. u32 cnt_sb_search_fail;
  610. u32 cnt_ofdm_fail;
  611. u32 cnt_cck_fail;
  612. u32 cnt_all;
  613. };
  614. struct init_gain {
  615. u8 xaagccore1;
  616. u8 xbagccore1;
  617. u8 xcagccore1;
  618. u8 xdagccore1;
  619. u8 cca;
  620. };
  621. struct wireless_stats {
  622. unsigned long txbytesunicast;
  623. unsigned long txbytesmulticast;
  624. unsigned long txbytesbroadcast;
  625. unsigned long rxbytesunicast;
  626. long rx_snr_db[4];
  627. /*Correct smoothed ss in Dbm, only used
  628. in driver to report real power now. */
  629. long recv_signal_power;
  630. long signal_quality;
  631. long last_sigstrength_inpercent;
  632. u32 rssi_calculate_cnt;
  633. /*Transformed, in dbm. Beautified signal
  634. strength for UI, not correct. */
  635. long signal_strength;
  636. u8 rx_rssi_percentage[4];
  637. u8 rx_evm_percentage[2];
  638. struct rt_smooth_data ui_rssi;
  639. struct rt_smooth_data ui_link_quality;
  640. };
  641. struct rate_adaptive {
  642. u8 rate_adaptive_disabled;
  643. u8 ratr_state;
  644. u16 reserve;
  645. u32 high_rssi_thresh_for_ra;
  646. u32 high2low_rssi_thresh_for_ra;
  647. u8 low2high_rssi_thresh_for_ra40m;
  648. u32 low_rssi_thresh_for_ra40M;
  649. u8 low2high_rssi_thresh_for_ra20m;
  650. u32 low_rssi_thresh_for_ra20M;
  651. u32 upper_rssi_threshold_ratr;
  652. u32 middleupper_rssi_threshold_ratr;
  653. u32 middle_rssi_threshold_ratr;
  654. u32 middlelow_rssi_threshold_ratr;
  655. u32 low_rssi_threshold_ratr;
  656. u32 ultralow_rssi_threshold_ratr;
  657. u32 low_rssi_threshold_ratr_40m;
  658. u32 low_rssi_threshold_ratr_20m;
  659. u8 ping_rssi_enable;
  660. u32 ping_rssi_ratr;
  661. u32 ping_rssi_thresh_for_ra;
  662. u32 last_ratr;
  663. u8 pre_ratr_state;
  664. };
  665. struct regd_pair_mapping {
  666. u16 reg_dmnenum;
  667. u16 reg_5ghz_ctl;
  668. u16 reg_2ghz_ctl;
  669. };
  670. struct rtl_regulatory {
  671. char alpha2[2];
  672. u16 country_code;
  673. u16 max_power_level;
  674. u32 tp_scale;
  675. u16 current_rd;
  676. u16 current_rd_ext;
  677. int16_t power_limit;
  678. struct regd_pair_mapping *regpair;
  679. };
  680. struct rtl_rfkill {
  681. bool rfkill_state; /*0 is off, 1 is on */
  682. };
  683. #define IQK_MATRIX_REG_NUM 8
  684. #define IQK_MATRIX_SETTINGS_NUM (1 + 24 + 21)
  685. struct iqk_matrix_regs {
  686. bool b_iqk_done;
  687. long value[1][IQK_MATRIX_REG_NUM];
  688. };
  689. struct phy_parameters {
  690. u16 length;
  691. u32 *pdata;
  692. };
  693. enum hw_param_tab_index {
  694. PHY_REG_2T,
  695. PHY_REG_1T,
  696. PHY_REG_PG,
  697. RADIOA_2T,
  698. RADIOB_2T,
  699. RADIOA_1T,
  700. RADIOB_1T,
  701. MAC_REG,
  702. AGCTAB_2T,
  703. AGCTAB_1T,
  704. MAX_TAB
  705. };
  706. struct rtl_phy {
  707. struct bb_reg_def phyreg_def[4]; /*Radio A/B/C/D */
  708. struct init_gain initgain_backup;
  709. enum io_type current_io_type;
  710. u8 rf_mode;
  711. u8 rf_type;
  712. u8 current_chan_bw;
  713. u8 set_bwmode_inprogress;
  714. u8 sw_chnl_inprogress;
  715. u8 sw_chnl_stage;
  716. u8 sw_chnl_step;
  717. u8 current_channel;
  718. u8 h2c_box_num;
  719. u8 set_io_inprogress;
  720. u8 lck_inprogress;
  721. /* record for power tracking */
  722. s32 reg_e94;
  723. s32 reg_e9c;
  724. s32 reg_ea4;
  725. s32 reg_eac;
  726. s32 reg_eb4;
  727. s32 reg_ebc;
  728. s32 reg_ec4;
  729. s32 reg_ecc;
  730. u8 rfpienable;
  731. u8 reserve_0;
  732. u16 reserve_1;
  733. u32 reg_c04, reg_c08, reg_874;
  734. u32 adda_backup[16];
  735. u32 iqk_mac_backup[IQK_MAC_REG_NUM];
  736. u32 iqk_bb_backup[10];
  737. /* Dual mac */
  738. bool need_iqk;
  739. struct iqk_matrix_regs iqk_matrix_regsetting[IQK_MATRIX_SETTINGS_NUM];
  740. bool rfpi_enable;
  741. u8 pwrgroup_cnt;
  742. u8 cck_high_power;
  743. /* MAX_PG_GROUP groups of pwr diff by rates */
  744. u32 mcs_txpwrlevel_origoffset[MAX_PG_GROUP][16];
  745. u8 default_initialgain[4];
  746. /* the current Tx power level */
  747. u8 cur_cck_txpwridx;
  748. u8 cur_ofdm24g_txpwridx;
  749. u32 rfreg_chnlval[2];
  750. bool apk_done;
  751. u32 reg_rf3c[2]; /* pathA / pathB */
  752. u8 framesync;
  753. u32 framesync_c34;
  754. u8 num_total_rfpath;
  755. struct phy_parameters hwparam_tables[MAX_TAB];
  756. u16 rf_pathmap;
  757. };
  758. #define MAX_TID_COUNT 9
  759. #define RTL_AGG_OFF 0
  760. #define RTL_AGG_ON 1
  761. #define RTL_AGG_EMPTYING_HW_QUEUE_ADDBA 2
  762. #define RTL_AGG_EMPTYING_HW_QUEUE_DELBA 3
  763. struct rtl_ht_agg {
  764. u16 txq_id;
  765. u16 wait_for_ba;
  766. u16 start_idx;
  767. u64 bitmap;
  768. u32 rate_n_flags;
  769. u8 agg_state;
  770. };
  771. struct rtl_tid_data {
  772. u16 seq_number;
  773. struct rtl_ht_agg agg;
  774. };
  775. struct rtl_priv;
  776. struct rtl_io {
  777. struct device *dev;
  778. struct mutex bb_mutex;
  779. /*PCI MEM map */
  780. unsigned long pci_mem_end; /*shared mem end */
  781. unsigned long pci_mem_start; /*shared mem start */
  782. /*PCI IO map */
  783. unsigned long pci_base_addr; /*device I/O address */
  784. void (*write8_async) (struct rtl_priv *rtlpriv, u32 addr, u8 val);
  785. void (*write16_async) (struct rtl_priv *rtlpriv, u32 addr, u16 val);
  786. void (*write32_async) (struct rtl_priv *rtlpriv, u32 addr, u32 val);
  787. int (*writeN_async) (struct rtl_priv *rtlpriv, u32 addr, u16 len,
  788. u8 *pdata);
  789. u8(*read8_sync) (struct rtl_priv *rtlpriv, u32 addr);
  790. u16(*read16_sync) (struct rtl_priv *rtlpriv, u32 addr);
  791. u32(*read32_sync) (struct rtl_priv *rtlpriv, u32 addr);
  792. int (*readN_sync) (struct rtl_priv *rtlpriv, u32 addr, u16 len,
  793. u8 *pdata);
  794. };
  795. struct rtl_mac {
  796. u8 mac_addr[ETH_ALEN];
  797. u8 mac80211_registered;
  798. u8 beacon_enabled;
  799. u32 tx_ss_num;
  800. u32 rx_ss_num;
  801. struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
  802. struct ieee80211_hw *hw;
  803. struct ieee80211_vif *vif;
  804. enum nl80211_iftype opmode;
  805. /*Probe Beacon management */
  806. struct rtl_tid_data tids[MAX_TID_COUNT];
  807. enum rtl_link_state link_state;
  808. int n_channels;
  809. int n_bitrates;
  810. /*filters */
  811. u32 rx_conf;
  812. u16 rx_mgt_filter;
  813. u16 rx_ctrl_filter;
  814. u16 rx_data_filter;
  815. bool act_scanning;
  816. u8 cnt_after_linked;
  817. /* early mode */
  818. /* skb wait queue */
  819. struct sk_buff_head skb_waitq[MAX_TID_COUNT];
  820. u8 earlymode_threshold;
  821. /*RDG*/
  822. bool rdg_en;
  823. /*AP*/
  824. u8 bssid[6];
  825. u32 vendor;
  826. u8 mcs[16]; /* 16 bytes mcs for HT rates. */
  827. u32 basic_rates; /* b/g rates */
  828. u8 ht_enable;
  829. u8 sgi_40;
  830. u8 sgi_20;
  831. u8 bw_40;
  832. u8 mode; /* wireless mode */
  833. u8 slot_time;
  834. u8 short_preamble;
  835. u8 use_cts_protect;
  836. u8 cur_40_prime_sc;
  837. u8 cur_40_prime_sc_bk;
  838. u64 tsf;
  839. u8 retry_short;
  840. u8 retry_long;
  841. u16 assoc_id;
  842. /*IBSS*/
  843. int beacon_interval;
  844. /*AMPDU*/
  845. u8 min_space_cfg; /*For Min spacing configurations */
  846. u8 max_mss_density;
  847. u8 current_ampdu_factor;
  848. u8 current_ampdu_density;
  849. /*QOS & EDCA */
  850. struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE];
  851. struct rtl_qos_parameters ac[AC_MAX];
  852. };
  853. struct rtl_hal {
  854. struct ieee80211_hw *hw;
  855. enum intf_type interface;
  856. u16 hw_type; /*92c or 92d or 92s and so on */
  857. u8 ic_class;
  858. u8 oem_id;
  859. u32 version; /*version of chip */
  860. u8 state; /*stop 0, start 1 */
  861. /*firmware */
  862. u32 fwsize;
  863. u8 *pfirmware;
  864. u16 fw_version;
  865. u16 fw_subversion;
  866. bool h2c_setinprogress;
  867. u8 last_hmeboxnum;
  868. bool fw_ready;
  869. /*Reserve page start offset except beacon in TxQ. */
  870. u8 fw_rsvdpage_startoffset;
  871. u8 h2c_txcmd_seq;
  872. /* FW Cmd IO related */
  873. u16 fwcmd_iomap;
  874. u32 fwcmd_ioparam;
  875. bool set_fwcmd_inprogress;
  876. u8 current_fwcmd_io;
  877. /**/
  878. bool driver_going2unload;
  879. /*AMPDU init min space*/
  880. u8 minspace_cfg; /*For Min spacing configurations */
  881. /* Dual mac */
  882. enum macphy_mode macphymode;
  883. enum band_type current_bandtype; /* 0:2.4G, 1:5G */
  884. enum band_type current_bandtypebackup;
  885. enum band_type bandset;
  886. /* dual MAC 0--Mac0 1--Mac1 */
  887. u32 interfaceindex;
  888. /* just for DualMac S3S4 */
  889. u8 macphyctl_reg;
  890. bool earlymode_enable;
  891. /* Dual mac*/
  892. bool during_mac0init_radiob;
  893. bool during_mac1init_radioa;
  894. bool reloadtxpowerindex;
  895. /* True if IMR or IQK have done
  896. for 2.4G in scan progress */
  897. bool load_imrandiqk_setting_for2g;
  898. bool disable_amsdu_8k;
  899. };
  900. struct rtl_security {
  901. /*default 0 */
  902. bool use_sw_sec;
  903. bool being_setkey;
  904. bool use_defaultkey;
  905. /*Encryption Algorithm for Unicast Packet */
  906. enum rt_enc_alg pairwise_enc_algorithm;
  907. /*Encryption Algorithm for Brocast/Multicast */
  908. enum rt_enc_alg group_enc_algorithm;
  909. /*local Key buffer, indx 0 is for
  910. pairwise key 1-4 is for agoup key. */
  911. u8 key_buf[KEY_BUF_SIZE][MAX_KEY_LEN];
  912. u8 key_len[KEY_BUF_SIZE];
  913. /*The pointer of Pairwise Key,
  914. it always points to KeyBuf[4] */
  915. u8 *pairwise_key;
  916. };
  917. struct rtl_dm {
  918. /*PHY status for Dynamic Management */
  919. long entry_min_undecoratedsmoothed_pwdb;
  920. long undecorated_smoothed_pwdb; /*out dm */
  921. long entry_max_undecoratedsmoothed_pwdb;
  922. bool dm_initialgain_enable;
  923. bool dynamic_txpower_enable;
  924. bool current_turbo_edca;
  925. bool is_any_nonbepkts; /*out dm */
  926. bool is_cur_rdlstate;
  927. bool txpower_trackingInit;
  928. bool disable_framebursting;
  929. bool cck_inch14;
  930. bool txpower_tracking;
  931. bool useramask;
  932. bool rfpath_rxenable[4];
  933. bool inform_fw_driverctrldm;
  934. bool current_mrc_switch;
  935. u8 txpowercount;
  936. u8 thermalvalue_rxgain;
  937. u8 thermalvalue_iqk;
  938. u8 thermalvalue_lck;
  939. u8 thermalvalue;
  940. u8 last_dtp_lvl;
  941. u8 thermalvalue_avg[AVG_THERMAL_NUM];
  942. u8 thermalvalue_avg_index;
  943. bool done_txpower;
  944. u8 dynamic_txhighpower_lvl; /*Tx high power level */
  945. u8 dm_flag; /*Indicate each dynamic mechanism's status. */
  946. u8 dm_type;
  947. u8 txpower_track_control;
  948. bool interrupt_migration;
  949. bool disable_tx_int;
  950. char ofdm_index[2];
  951. char cck_index;
  952. u8 power_index_backup[6];
  953. };
  954. #define EFUSE_MAX_LOGICAL_SIZE 256
  955. struct rtl_efuse {
  956. bool autoLoad_ok;
  957. bool bootfromefuse;
  958. u16 max_physical_size;
  959. u8 efuse_map[2][EFUSE_MAX_LOGICAL_SIZE];
  960. u16 efuse_usedbytes;
  961. u8 efuse_usedpercentage;
  962. #ifdef EFUSE_REPG_WORKAROUND
  963. bool efuse_re_pg_sec1flag;
  964. u8 efuse_re_pg_data[8];
  965. #endif
  966. u8 autoload_failflag;
  967. u8 autoload_status;
  968. short epromtype;
  969. u16 eeprom_vid;
  970. u16 eeprom_did;
  971. u16 eeprom_svid;
  972. u16 eeprom_smid;
  973. u8 eeprom_oemid;
  974. u16 eeprom_channelplan;
  975. u8 eeprom_version;
  976. u8 board_type;
  977. u8 external_pa;
  978. u8 dev_addr[6];
  979. bool txpwr_fromeprom;
  980. u8 eeprom_crystalcap;
  981. u8 eeprom_tssi[2];
  982. u8 eeprom_tssi_5g[3][2]; /* for 5GL/5GM/5GH band. */
  983. u8 eeprom_pwrlimit_ht20[CHANNEL_GROUP_MAX];
  984. u8 eeprom_pwrlimit_ht40[CHANNEL_GROUP_MAX];
  985. u8 eeprom_chnlarea_txpwr_cck[2][CHANNEL_GROUP_MAX_2G];
  986. u8 eeprom_chnlarea_txpwr_ht40_1s[2][CHANNEL_GROUP_MAX];
  987. u8 eeprom_chnlarea_txpwr_ht40_2sdiif[2][CHANNEL_GROUP_MAX];
  988. u8 txpwrlevel_cck[2][CHANNEL_MAX_NUMBER_2G];
  989. u8 txpwrlevel_ht40_1s[2][CHANNEL_MAX_NUMBER]; /*For HT 40MHZ pwr */
  990. u8 txpwrlevel_ht40_2s[2][CHANNEL_MAX_NUMBER]; /*For HT 40MHZ pwr */
  991. u8 internal_pa_5g[2]; /* pathA / pathB */
  992. u8 eeprom_c9;
  993. u8 eeprom_cc;
  994. /*For power group */
  995. u8 eeprom_pwrgroup[2][3];
  996. u8 pwrgroup_ht20[2][CHANNEL_MAX_NUMBER];
  997. u8 pwrgroup_ht40[2][CHANNEL_MAX_NUMBER];
  998. char txpwr_ht20diff[2][CHANNEL_MAX_NUMBER]; /*HT 20<->40 Pwr diff */
  999. /*For HT<->legacy pwr diff*/
  1000. u8 txpwr_legacyhtdiff[2][CHANNEL_MAX_NUMBER];
  1001. u8 txpwr_safetyflag; /* Band edge enable flag */
  1002. u16 eeprom_txpowerdiff;
  1003. u8 legacy_httxpowerdiff; /* Legacy to HT rate power diff */
  1004. u8 antenna_txpwdiff[3];
  1005. u8 eeprom_regulatory;
  1006. u8 eeprom_thermalmeter;
  1007. u8 thermalmeter[2]; /*ThermalMeter, index 0 for RFIC0, 1 for RFIC1 */
  1008. u16 tssi_13dbm;
  1009. u8 crystalcap; /* CrystalCap. */
  1010. u8 delta_iqk;
  1011. u8 delta_lck;
  1012. u8 legacy_ht_txpowerdiff; /*Legacy to HT rate power diff */
  1013. bool apk_thermalmeterignore;
  1014. bool b1x1_recvcombine;
  1015. bool b1ss_support;
  1016. /*channel plan */
  1017. u8 channel_plan;
  1018. };
  1019. struct rtl_ps_ctl {
  1020. bool pwrdomain_protect;
  1021. bool set_rfpowerstate_inprogress;
  1022. bool in_powersavemode;
  1023. bool rfchange_inprogress;
  1024. bool swrf_processing;
  1025. bool hwradiooff;
  1026. /*
  1027. * just for PCIE ASPM
  1028. * If it supports ASPM, Offset[560h] = 0x40,
  1029. * otherwise Offset[560h] = 0x00.
  1030. * */
  1031. bool support_aspm;
  1032. bool support_backdoor;
  1033. /*for LPS */
  1034. enum rt_psmode dot11_psmode; /*Power save mode configured. */
  1035. bool swctrl_lps;
  1036. bool leisure_ps;
  1037. bool fwctrl_lps;
  1038. u8 fwctrl_psmode;
  1039. /*For Fw control LPS mode */
  1040. u8 reg_fwctrl_lps;
  1041. /*Record Fw PS mode status. */
  1042. bool fw_current_inpsmode;
  1043. u8 reg_max_lps_awakeintvl;
  1044. bool report_linked;
  1045. /*for IPS */
  1046. bool inactiveps;
  1047. u32 rfoff_reason;
  1048. /*RF OFF Level */
  1049. u32 cur_ps_level;
  1050. u32 reg_rfps_level;
  1051. /*just for PCIE ASPM */
  1052. u8 const_amdpci_aspm;
  1053. bool pwrdown_mode;
  1054. enum rf_pwrstate inactive_pwrstate;
  1055. enum rf_pwrstate rfpwr_state; /*cur power state */
  1056. /* for SW LPS*/
  1057. bool sw_ps_enabled;
  1058. bool state;
  1059. bool state_inap;
  1060. bool multi_buffered;
  1061. u16 nullfunc_seq;
  1062. unsigned int dtim_counter;
  1063. unsigned int sleep_ms;
  1064. unsigned long last_sleep_jiffies;
  1065. unsigned long last_awake_jiffies;
  1066. unsigned long last_delaylps_stamp_jiffies;
  1067. unsigned long last_dtim;
  1068. unsigned long last_beacon;
  1069. unsigned long last_action;
  1070. unsigned long last_slept;
  1071. };
  1072. struct rtl_stats {
  1073. u32 mac_time[2];
  1074. s8 rssi;
  1075. u8 signal;
  1076. u8 noise;
  1077. u16 rate; /*in 100 kbps */
  1078. u8 received_channel;
  1079. u8 control;
  1080. u8 mask;
  1081. u8 freq;
  1082. u16 len;
  1083. u64 tsf;
  1084. u32 beacon_time;
  1085. u8 nic_type;
  1086. u16 length;
  1087. u8 signalquality; /*in 0-100 index. */
  1088. /*
  1089. * Real power in dBm for this packet,
  1090. * no beautification and aggregation.
  1091. * */
  1092. s32 recvsignalpower;
  1093. s8 rxpower; /*in dBm Translate from PWdB */
  1094. u8 signalstrength; /*in 0-100 index. */
  1095. u16 hwerror:1;
  1096. u16 crc:1;
  1097. u16 icv:1;
  1098. u16 shortpreamble:1;
  1099. u16 antenna:1;
  1100. u16 decrypted:1;
  1101. u16 wakeup:1;
  1102. u32 timestamp_low;
  1103. u32 timestamp_high;
  1104. u8 rx_drvinfo_size;
  1105. u8 rx_bufshift;
  1106. bool isampdu;
  1107. bool isfirst_ampdu;
  1108. bool rx_is40Mhzpacket;
  1109. u32 rx_pwdb_all;
  1110. u8 rx_mimo_signalstrength[4]; /*in 0~100 index */
  1111. s8 rx_mimo_signalquality[2];
  1112. bool packet_matchbssid;
  1113. bool is_cck;
  1114. bool packet_toself;
  1115. bool packet_beacon; /*for rssi */
  1116. char cck_adc_pwdb[4]; /*for rx path selection */
  1117. };
  1118. struct rt_link_detect {
  1119. u32 num_tx_in4period[4];
  1120. u32 num_rx_in4period[4];
  1121. u32 num_tx_inperiod;
  1122. u32 num_rx_inperiod;
  1123. bool busytraffic;
  1124. bool higher_busytraffic;
  1125. bool higher_busyrxtraffic;
  1126. };
  1127. struct rtl_tcb_desc {
  1128. u8 packet_bw:1;
  1129. u8 multicast:1;
  1130. u8 broadcast:1;
  1131. u8 rts_stbc:1;
  1132. u8 rts_enable:1;
  1133. u8 cts_enable:1;
  1134. u8 rts_use_shortpreamble:1;
  1135. u8 rts_use_shortgi:1;
  1136. u8 rts_sc:1;
  1137. u8 rts_bw:1;
  1138. u8 rts_rate;
  1139. u8 use_shortgi:1;
  1140. u8 use_shortpreamble:1;
  1141. u8 use_driver_rate:1;
  1142. u8 disable_ratefallback:1;
  1143. u8 ratr_index;
  1144. u8 mac_id;
  1145. u8 hw_rate;
  1146. u8 last_inipkt:1;
  1147. u8 cmd_or_init:1;
  1148. u8 queue_index;
  1149. /* early mode */
  1150. u8 empkt_num;
  1151. /* The max value by HW */
  1152. u32 empkt_len[5];
  1153. };
  1154. struct rtl_hal_ops {
  1155. int (*init_sw_vars) (struct ieee80211_hw *hw);
  1156. void (*deinit_sw_vars) (struct ieee80211_hw *hw);
  1157. void (*read_chip_version)(struct ieee80211_hw *hw);
  1158. void (*read_eeprom_info) (struct ieee80211_hw *hw);
  1159. void (*interrupt_recognized) (struct ieee80211_hw *hw,
  1160. u32 *p_inta, u32 *p_intb);
  1161. int (*hw_init) (struct ieee80211_hw *hw);
  1162. void (*hw_disable) (struct ieee80211_hw *hw);
  1163. void (*hw_suspend) (struct ieee80211_hw *hw);
  1164. void (*hw_resume) (struct ieee80211_hw *hw);
  1165. void (*enable_interrupt) (struct ieee80211_hw *hw);
  1166. void (*disable_interrupt) (struct ieee80211_hw *hw);
  1167. int (*set_network_type) (struct ieee80211_hw *hw,
  1168. enum nl80211_iftype type);
  1169. void (*set_chk_bssid)(struct ieee80211_hw *hw,
  1170. bool check_bssid);
  1171. void (*set_bw_mode) (struct ieee80211_hw *hw,
  1172. enum nl80211_channel_type ch_type);
  1173. u8(*switch_channel) (struct ieee80211_hw *hw);
  1174. void (*set_qos) (struct ieee80211_hw *hw, int aci);
  1175. void (*set_bcn_reg) (struct ieee80211_hw *hw);
  1176. void (*set_bcn_intv) (struct ieee80211_hw *hw);
  1177. void (*update_interrupt_mask) (struct ieee80211_hw *hw,
  1178. u32 add_msr, u32 rm_msr);
  1179. void (*get_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val);
  1180. void (*set_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val);
  1181. void (*update_rate_table) (struct ieee80211_hw *hw);
  1182. void (*update_rate_mask) (struct ieee80211_hw *hw, u8 rssi_level);
  1183. void (*fill_tx_desc) (struct ieee80211_hw *hw,
  1184. struct ieee80211_hdr *hdr, u8 *pdesc_tx,
  1185. struct ieee80211_tx_info *info,
  1186. struct sk_buff *skb, unsigned int queue_index);
  1187. void (*fill_fake_txdesc) (struct ieee80211_hw *hw, u8 * pDesc,
  1188. u32 buffer_len, bool bIsPsPoll);
  1189. void (*fill_tx_cmddesc) (struct ieee80211_hw *hw, u8 *pdesc,
  1190. bool firstseg, bool lastseg,
  1191. struct sk_buff *skb);
  1192. bool (*cmd_send_packet)(struct ieee80211_hw *hw, struct sk_buff *skb);
  1193. bool (*query_rx_desc) (struct ieee80211_hw *hw,
  1194. struct rtl_stats *stats,
  1195. struct ieee80211_rx_status *rx_status,
  1196. u8 *pdesc, struct sk_buff *skb);
  1197. void (*set_channel_access) (struct ieee80211_hw *hw);
  1198. bool (*radio_onoff_checking) (struct ieee80211_hw *hw, u8 *valid);
  1199. void (*dm_watchdog) (struct ieee80211_hw *hw);
  1200. void (*scan_operation_backup) (struct ieee80211_hw *hw, u8 operation);
  1201. bool (*set_rf_power_state) (struct ieee80211_hw *hw,
  1202. enum rf_pwrstate rfpwr_state);
  1203. void (*led_control) (struct ieee80211_hw *hw,
  1204. enum led_ctl_mode ledaction);
  1205. void (*set_desc) (u8 *pdesc, bool istx, u8 desc_name, u8 *val);
  1206. u32 (*get_desc) (u8 *pdesc, bool istx, u8 desc_name);
  1207. void (*tx_polling) (struct ieee80211_hw *hw, unsigned int hw_queue);
  1208. void (*enable_hw_sec) (struct ieee80211_hw *hw);
  1209. void (*set_key) (struct ieee80211_hw *hw, u32 key_index,
  1210. u8 *p_macaddr, bool is_group, u8 enc_algo,
  1211. bool is_wepkey, bool clear_all);
  1212. void (*init_sw_leds) (struct ieee80211_hw *hw);
  1213. void (*deinit_sw_leds) (struct ieee80211_hw *hw);
  1214. u32 (*get_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
  1215. void (*set_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
  1216. u32 data);
  1217. u32 (*get_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath,
  1218. u32 regaddr, u32 bitmask);
  1219. void (*set_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath,
  1220. u32 regaddr, u32 bitmask, u32 data);
  1221. };
  1222. struct rtl_intf_ops {
  1223. /*com */
  1224. void (*read_efuse_byte)(struct ieee80211_hw *hw, u16 _offset, u8 *pbuf);
  1225. int (*adapter_start) (struct ieee80211_hw *hw);
  1226. void (*adapter_stop) (struct ieee80211_hw *hw);
  1227. int (*adapter_tx) (struct ieee80211_hw *hw, struct sk_buff *skb);
  1228. int (*reset_trx_ring) (struct ieee80211_hw *hw);
  1229. bool (*waitq_insert) (struct ieee80211_hw *hw, struct sk_buff *skb);
  1230. /*pci */
  1231. void (*disable_aspm) (struct ieee80211_hw *hw);
  1232. void (*enable_aspm) (struct ieee80211_hw *hw);
  1233. /*usb */
  1234. };
  1235. struct rtl_mod_params {
  1236. /* default: 0 = using hardware encryption */
  1237. int sw_crypto;
  1238. };
  1239. struct rtl_hal_usbint_cfg {
  1240. /* data - rx */
  1241. u32 in_ep_num;
  1242. u32 rx_urb_num;
  1243. u32 rx_max_size;
  1244. /* op - rx */
  1245. void (*usb_rx_hdl)(struct ieee80211_hw *, struct sk_buff *);
  1246. void (*usb_rx_segregate_hdl)(struct ieee80211_hw *, struct sk_buff *,
  1247. struct sk_buff_head *);
  1248. /* tx */
  1249. void (*usb_tx_cleanup)(struct ieee80211_hw *, struct sk_buff *);
  1250. int (*usb_tx_post_hdl)(struct ieee80211_hw *, struct urb *,
  1251. struct sk_buff *);
  1252. struct sk_buff *(*usb_tx_aggregate_hdl)(struct ieee80211_hw *,
  1253. struct sk_buff_head *);
  1254. /* endpoint mapping */
  1255. int (*usb_endpoint_mapping)(struct ieee80211_hw *hw);
  1256. u16 (*usb_mq_to_hwq)(u16 fc, u16 mac80211_queue_index);
  1257. };
  1258. struct rtl_hal_cfg {
  1259. u8 bar_id;
  1260. char *name;
  1261. char *fw_name;
  1262. struct rtl_hal_ops *ops;
  1263. struct rtl_mod_params *mod_params;
  1264. struct rtl_hal_usbint_cfg *usb_interface_cfg;
  1265. /*this map used for some registers or vars
  1266. defined int HAL but used in MAIN */
  1267. u32 maps[RTL_VAR_MAP_MAX];
  1268. };
  1269. struct rtl_locks {
  1270. /* mutex */
  1271. struct mutex conf_mutex;
  1272. /*spin lock */
  1273. spinlock_t ips_lock;
  1274. spinlock_t irq_th_lock;
  1275. spinlock_t h2c_lock;
  1276. spinlock_t rf_ps_lock;
  1277. spinlock_t rf_lock;
  1278. spinlock_t lps_lock;
  1279. spinlock_t waitq_lock;
  1280. spinlock_t tx_urb_lock;
  1281. /*Dual mac*/
  1282. spinlock_t cck_and_rw_pagea_lock;
  1283. };
  1284. struct rtl_works {
  1285. struct ieee80211_hw *hw;
  1286. /*timer */
  1287. struct timer_list watchdog_timer;
  1288. /*task */
  1289. struct tasklet_struct irq_tasklet;
  1290. struct tasklet_struct irq_prepare_bcn_tasklet;
  1291. /*work queue */
  1292. struct workqueue_struct *rtl_wq;
  1293. struct delayed_work watchdog_wq;
  1294. struct delayed_work ips_nic_off_wq;
  1295. /* For SW LPS */
  1296. struct delayed_work ps_work;
  1297. struct delayed_work ps_rfon_wq;
  1298. };
  1299. struct rtl_debug {
  1300. u32 dbgp_type[DBGP_TYPE_MAX];
  1301. u32 global_debuglevel;
  1302. u64 global_debugcomponents;
  1303. /* add for proc debug */
  1304. struct proc_dir_entry *proc_dir;
  1305. char proc_name[20];
  1306. };
  1307. struct rtl_priv {
  1308. struct rtl_locks locks;
  1309. struct rtl_works works;
  1310. struct rtl_mac mac80211;
  1311. struct rtl_hal rtlhal;
  1312. struct rtl_regulatory regd;
  1313. struct rtl_rfkill rfkill;
  1314. struct rtl_io io;
  1315. struct rtl_phy phy;
  1316. struct rtl_dm dm;
  1317. struct rtl_security sec;
  1318. struct rtl_efuse efuse;
  1319. struct rtl_ps_ctl psc;
  1320. struct rate_adaptive ra;
  1321. struct wireless_stats stats;
  1322. struct rt_link_detect link_info;
  1323. struct false_alarm_statistics falsealm_cnt;
  1324. struct rtl_rate_priv *rate_priv;
  1325. struct rtl_debug dbg;
  1326. /*
  1327. *hal_cfg : for diff cards
  1328. *intf_ops : for diff interrface usb/pcie
  1329. */
  1330. struct rtl_hal_cfg *cfg;
  1331. struct rtl_intf_ops *intf_ops;
  1332. /*this var will be set by set_bit,
  1333. and was used to indicate status of
  1334. interface or hardware */
  1335. unsigned long status;
  1336. /*This must be the last item so
  1337. that it points to the data allocated
  1338. beyond this structure like:
  1339. rtl_pci_priv or rtl_usb_priv */
  1340. u8 priv[0];
  1341. };
  1342. #define rtl_priv(hw) (((struct rtl_priv *)(hw)->priv))
  1343. #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211))
  1344. #define rtl_hal(rtlpriv) (&((rtlpriv)->rtlhal))
  1345. #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse))
  1346. #define rtl_psc(rtlpriv) (&((rtlpriv)->psc))
  1347. /***************************************
  1348. Bluetooth Co-existance Related
  1349. ****************************************/
  1350. enum bt_ant_num {
  1351. ANT_X2 = 0,
  1352. ANT_X1 = 1,
  1353. };
  1354. enum bt_co_type {
  1355. BT_2WIRE = 0,
  1356. BT_ISSC_3WIRE = 1,
  1357. BT_ACCEL = 2,
  1358. BT_CSR_BC4 = 3,
  1359. BT_CSR_BC8 = 4,
  1360. BT_RTL8756 = 5,
  1361. };
  1362. enum bt_cur_state {
  1363. BT_OFF = 0,
  1364. BT_ON = 1,
  1365. };
  1366. enum bt_service_type {
  1367. BT_SCO = 0,
  1368. BT_A2DP = 1,
  1369. BT_HID = 2,
  1370. BT_HID_IDLE = 3,
  1371. BT_SCAN = 4,
  1372. BT_IDLE = 5,
  1373. BT_OTHER_ACTION = 6,
  1374. BT_BUSY = 7,
  1375. BT_OTHERBUSY = 8,
  1376. BT_PAN = 9,
  1377. };
  1378. enum bt_radio_shared {
  1379. BT_RADIO_SHARED = 0,
  1380. BT_RADIO_INDIVIDUAL = 1,
  1381. };
  1382. struct bt_coexist_info {
  1383. /* EEPROM BT info. */
  1384. u8 eeprom_bt_coexist;
  1385. u8 eeprom_bt_type;
  1386. u8 eeprom_bt_ant_num;
  1387. u8 eeprom_bt_ant_isolation;
  1388. u8 eeprom_bt_radio_shared;
  1389. u8 bt_coexistence;
  1390. u8 bt_ant_num;
  1391. u8 bt_coexist_type;
  1392. u8 bt_state;
  1393. u8 bt_cur_state; /* 0:on, 1:off */
  1394. u8 bt_ant_isolation; /* 0:good, 1:bad */
  1395. u8 bt_pape_ctrl; /* 0:SW, 1:SW/HW dynamic */
  1396. u8 bt_service;
  1397. u8 bt_radio_shared_type;
  1398. u8 bt_rfreg_origin_1e;
  1399. u8 bt_rfreg_origin_1f;
  1400. u8 bt_rssi_state;
  1401. u32 ratio_tx;
  1402. u32 ratio_pri;
  1403. u32 bt_edca_ul;
  1404. u32 bt_edca_dl;
  1405. bool b_init_set;
  1406. bool b_bt_busy_traffic;
  1407. bool b_bt_traffic_mode_set;
  1408. bool b_bt_non_traffic_mode_set;
  1409. bool b_fw_coexist_all_off;
  1410. bool b_sw_coexist_all_off;
  1411. u32 current_state;
  1412. u32 previous_state;
  1413. u8 bt_pre_rssi_state;
  1414. u8 b_reg_bt_iso;
  1415. u8 b_reg_bt_sco;
  1416. };
  1417. /****************************************
  1418. mem access macro define start
  1419. Call endian free function when
  1420. 1. Read/write packet content.
  1421. 2. Before write integer to IO.
  1422. 3. After read integer from IO.
  1423. ****************************************/
  1424. /* Convert little data endian to host */
  1425. #define EF1BYTE(_val) \
  1426. ((u8)(_val))
  1427. #define EF2BYTE(_val) \
  1428. (le16_to_cpu(_val))
  1429. #define EF4BYTE(_val) \
  1430. (le32_to_cpu(_val))
  1431. /* Read data from memory */
  1432. #define READEF1BYTE(_ptr) \
  1433. EF1BYTE(*((u8 *)(_ptr)))
  1434. #define READEF2BYTE(_ptr) \
  1435. EF2BYTE(*((u16 *)(_ptr)))
  1436. #define READEF4BYTE(_ptr) \
  1437. EF4BYTE(*((u32 *)(_ptr)))
  1438. /* Write data to memory */
  1439. #define WRITEEF1BYTE(_ptr, _val) \
  1440. (*((u8 *)(_ptr))) = EF1BYTE(_val)
  1441. #define WRITEEF2BYTE(_ptr, _val) \
  1442. (*((u16 *)(_ptr))) = EF2BYTE(_val)
  1443. #define WRITEEF4BYTE(_ptr, _val) \
  1444. (*((u32 *)(_ptr))) = EF4BYTE(_val)
  1445. /*Example:
  1446. BIT_LEN_MASK_32(0) => 0x00000000
  1447. BIT_LEN_MASK_32(1) => 0x00000001
  1448. BIT_LEN_MASK_32(2) => 0x00000003
  1449. BIT_LEN_MASK_32(32) => 0xFFFFFFFF*/
  1450. #define BIT_LEN_MASK_32(__bitlen) \
  1451. (0xFFFFFFFF >> (32 - (__bitlen)))
  1452. #define BIT_LEN_MASK_16(__bitlen) \
  1453. (0xFFFF >> (16 - (__bitlen)))
  1454. #define BIT_LEN_MASK_8(__bitlen) \
  1455. (0xFF >> (8 - (__bitlen)))
  1456. /*Example:
  1457. BIT_OFFSET_LEN_MASK_32(0, 2) => 0x00000003
  1458. BIT_OFFSET_LEN_MASK_32(16, 2) => 0x00030000*/
  1459. #define BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen) \
  1460. (BIT_LEN_MASK_32(__bitlen) << (__bitoffset))
  1461. #define BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen) \
  1462. (BIT_LEN_MASK_16(__bitlen) << (__bitoffset))
  1463. #define BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen) \
  1464. (BIT_LEN_MASK_8(__bitlen) << (__bitoffset))
  1465. /*Description:
  1466. Return 4-byte value in host byte ordering from
  1467. 4-byte pointer in little-endian system.*/
  1468. #define LE_P4BYTE_TO_HOST_4BYTE(__pstart) \
  1469. (EF4BYTE(*((u32 *)(__pstart))))
  1470. #define LE_P2BYTE_TO_HOST_2BYTE(__pstart) \
  1471. (EF2BYTE(*((u16 *)(__pstart))))
  1472. #define LE_P1BYTE_TO_HOST_1BYTE(__pstart) \
  1473. (EF1BYTE(*((u8 *)(__pstart))))
  1474. /*Description:
  1475. Translate subfield (continuous bits in little-endian) of 4-byte
  1476. value to host byte ordering.*/
  1477. #define LE_BITS_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
  1478. ( \
  1479. (LE_P4BYTE_TO_HOST_4BYTE(__pstart) >> (__bitoffset)) & \
  1480. BIT_LEN_MASK_32(__bitlen) \
  1481. )
  1482. #define LE_BITS_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
  1483. ( \
  1484. (LE_P2BYTE_TO_HOST_2BYTE(__pstart) >> (__bitoffset)) & \
  1485. BIT_LEN_MASK_16(__bitlen) \
  1486. )
  1487. #define LE_BITS_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
  1488. ( \
  1489. (LE_P1BYTE_TO_HOST_1BYTE(__pstart) >> (__bitoffset)) & \
  1490. BIT_LEN_MASK_8(__bitlen) \
  1491. )
  1492. /*Description:
  1493. Mask subfield (continuous bits in little-endian) of 4-byte value
  1494. and return the result in 4-byte value in host byte ordering.*/
  1495. #define LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
  1496. ( \
  1497. LE_P4BYTE_TO_HOST_4BYTE(__pstart) & \
  1498. (~BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen)) \
  1499. )
  1500. #define LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
  1501. ( \
  1502. LE_P2BYTE_TO_HOST_2BYTE(__pstart) & \
  1503. (~BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen)) \
  1504. )
  1505. #define LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
  1506. ( \
  1507. LE_P1BYTE_TO_HOST_1BYTE(__pstart) & \
  1508. (~BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen)) \
  1509. )
  1510. /*Description:
  1511. Set subfield of little-endian 4-byte value to specified value. */
  1512. #define SET_BITS_TO_LE_4BYTE(__pstart, __bitoffset, __bitlen, __val) \
  1513. *((u32 *)(__pstart)) = EF4BYTE \
  1514. ( \
  1515. LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) | \
  1516. ((((u32)__val) & BIT_LEN_MASK_32(__bitlen)) << (__bitoffset)) \
  1517. );
  1518. #define SET_BITS_TO_LE_2BYTE(__pstart, __bitoffset, __bitlen, __val) \
  1519. *((u16 *)(__pstart)) = EF2BYTE \
  1520. ( \
  1521. LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) | \
  1522. ((((u16)__val) & BIT_LEN_MASK_16(__bitlen)) << (__bitoffset)) \
  1523. );
  1524. #define SET_BITS_TO_LE_1BYTE(__pstart, __bitoffset, __bitlen, __val) \
  1525. *((u8 *)(__pstart)) = EF1BYTE \
  1526. ( \
  1527. LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) | \
  1528. ((((u8)__val) & BIT_LEN_MASK_8(__bitlen)) << (__bitoffset)) \
  1529. );
  1530. #define N_BYTE_ALIGMENT(__value, __aligment) ((__aligment == 1) ? \
  1531. (__value) : (((__value + __aligment - 1) / __aligment) * __aligment))
  1532. /****************************************
  1533. mem access macro define end
  1534. ****************************************/
  1535. #define byte(x, n) ((x >> (8 * n)) & 0xff)
  1536. #define packet_get_type(_packet) (EF1BYTE((_packet).octet[0]) & 0xFC)
  1537. #define RTL_WATCH_DOG_TIME 2000
  1538. #define MSECS(t) msecs_to_jiffies(t)
  1539. #define WLAN_FC_GET_VERS(fc) ((fc) & IEEE80211_FCTL_VERS)
  1540. #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
  1541. #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
  1542. #define WLAN_FC_MORE_DATA(fc) ((fc) & IEEE80211_FCTL_MOREDATA)
  1543. #define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
  1544. #define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
  1545. #define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
  1546. #define RT_RF_OFF_LEVL_ASPM BIT(0) /*PCI ASPM */
  1547. #define RT_RF_OFF_LEVL_CLK_REQ BIT(1) /*PCI clock request */
  1548. #define RT_RF_OFF_LEVL_PCI_D3 BIT(2) /*PCI D3 mode */
  1549. /*NIC halt, re-initialize hw parameters*/
  1550. #define RT_RF_OFF_LEVL_HALT_NIC BIT(3)
  1551. #define RT_RF_OFF_LEVL_FREE_FW BIT(4) /*FW free, re-download the FW */
  1552. #define RT_RF_OFF_LEVL_FW_32K BIT(5) /*FW in 32k */
  1553. /*Always enable ASPM and Clock Req in initialization.*/
  1554. #define RT_RF_PS_LEVEL_ALWAYS_ASPM BIT(6)
  1555. /* no matter RFOFF or SLEEP we set PS_ASPM_LEVL*/
  1556. #define RT_PS_LEVEL_ASPM BIT(7)
  1557. /*When LPS is on, disable 2R if no packet is received or transmittd.*/
  1558. #define RT_RF_LPS_DISALBE_2R BIT(30)
  1559. #define RT_RF_LPS_LEVEL_ASPM BIT(31) /*LPS with ASPM */
  1560. #define RT_IN_PS_LEVEL(ppsc, _ps_flg) \
  1561. ((ppsc->cur_ps_level & _ps_flg) ? true : false)
  1562. #define RT_CLEAR_PS_LEVEL(ppsc, _ps_flg) \
  1563. (ppsc->cur_ps_level &= (~(_ps_flg)))
  1564. #define RT_SET_PS_LEVEL(ppsc, _ps_flg) \
  1565. (ppsc->cur_ps_level |= _ps_flg)
  1566. #define container_of_dwork_rtl(x, y, z) \
  1567. container_of(container_of(x, struct delayed_work, work), y, z)
  1568. #define FILL_OCTET_STRING(_os, _octet, _len) \
  1569. do { \
  1570. (_os). octet = (u8 *)(_octet); \
  1571. (_os). length = (_len); \
  1572. } while (0);
  1573. #define CP_MACADDR(des, src) \
  1574. memcpy((des), (src), ETH_ALEN)
  1575. static inline u8 rtl_read_byte(struct rtl_priv *rtlpriv, u32 addr)
  1576. {
  1577. return rtlpriv->io.read8_sync(rtlpriv, addr);
  1578. }
  1579. static inline u16 rtl_read_word(struct rtl_priv *rtlpriv, u32 addr)
  1580. {
  1581. return rtlpriv->io.read16_sync(rtlpriv, addr);
  1582. }
  1583. static inline u32 rtl_read_dword(struct rtl_priv *rtlpriv, u32 addr)
  1584. {
  1585. return rtlpriv->io.read32_sync(rtlpriv, addr);
  1586. }
  1587. static inline void rtl_write_byte(struct rtl_priv *rtlpriv, u32 addr, u8 val8)
  1588. {
  1589. rtlpriv->io.write8_async(rtlpriv, addr, val8);
  1590. }
  1591. static inline void rtl_write_word(struct rtl_priv *rtlpriv, u32 addr, u16 val16)
  1592. {
  1593. rtlpriv->io.write16_async(rtlpriv, addr, val16);
  1594. }
  1595. static inline void rtl_write_dword(struct rtl_priv *rtlpriv,
  1596. u32 addr, u32 val32)
  1597. {
  1598. rtlpriv->io.write32_async(rtlpriv, addr, val32);
  1599. }
  1600. static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw,
  1601. u32 regaddr, u32 bitmask)
  1602. {
  1603. return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_bbreg(hw,
  1604. regaddr,
  1605. bitmask);
  1606. }
  1607. static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr,
  1608. u32 bitmask, u32 data)
  1609. {
  1610. ((struct rtl_priv *)(hw)->priv)->cfg->ops->set_bbreg(hw,
  1611. regaddr, bitmask,
  1612. data);
  1613. }
  1614. static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw,
  1615. enum radio_path rfpath, u32 regaddr,
  1616. u32 bitmask)
  1617. {
  1618. return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_rfreg(hw,
  1619. rfpath,
  1620. regaddr,
  1621. bitmask);
  1622. }
  1623. static inline void rtl_set_rfreg(struct ieee80211_hw *hw,
  1624. enum radio_path rfpath, u32 regaddr,
  1625. u32 bitmask, u32 data)
  1626. {
  1627. ((struct rtl_priv *)(hw)->priv)->cfg->ops->set_rfreg(hw,
  1628. rfpath, regaddr,
  1629. bitmask, data);
  1630. }
  1631. static inline bool is_hal_stop(struct rtl_hal *rtlhal)
  1632. {
  1633. return (_HAL_STATE_STOP == rtlhal->state);
  1634. }
  1635. static inline void set_hal_start(struct rtl_hal *rtlhal)
  1636. {
  1637. rtlhal->state = _HAL_STATE_START;
  1638. }
  1639. static inline void set_hal_stop(struct rtl_hal *rtlhal)
  1640. {
  1641. rtlhal->state = _HAL_STATE_STOP;
  1642. }
  1643. static inline u8 get_rf_type(struct rtl_phy *rtlphy)
  1644. {
  1645. return rtlphy->rf_type;
  1646. }
  1647. #endif