wifi.h 48 KB

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