wifi.h 54 KB

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