wifi.h 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213
  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. * The full GNU General Public License is included in this distribution in the
  15. * file called LICENSE.
  16. *
  17. * Contact Information:
  18. * wlanfae <wlanfae@realtek.com>
  19. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  20. * Hsinchu 300, Taiwan.
  21. *
  22. * Larry Finger <Larry.Finger@lwfinger.net>
  23. *
  24. *****************************************************************************/
  25. #ifndef __RTL_WIFI_H__
  26. #define __RTL_WIFI_H__
  27. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  28. #include <linux/sched.h>
  29. #include <linux/firmware.h>
  30. #include <linux/etherdevice.h>
  31. #include <linux/vmalloc.h>
  32. #include <linux/usb.h>
  33. #include <net/mac80211.h>
  34. #include <linux/completion.h>
  35. #include "debug.h"
  36. #define MASKBYTE0 0xff
  37. #define MASKBYTE1 0xff00
  38. #define MASKBYTE2 0xff0000
  39. #define MASKBYTE3 0xff000000
  40. #define MASKHWORD 0xffff0000
  41. #define MASKLWORD 0x0000ffff
  42. #define MASKDWORD 0xffffffff
  43. #define MASK12BITS 0xfff
  44. #define MASKH4BITS 0xf0000000
  45. #define MASKOFDM_D 0xffc00000
  46. #define MASKCCK 0x3f3f3f3f
  47. #define MASK4BITS 0x0f
  48. #define MASK20BITS 0xfffff
  49. #define RFREG_OFFSET_MASK 0xfffff
  50. #define MASKBYTE0 0xff
  51. #define MASKBYTE1 0xff00
  52. #define MASKBYTE2 0xff0000
  53. #define MASKBYTE3 0xff000000
  54. #define MASKHWORD 0xffff0000
  55. #define MASKLWORD 0x0000ffff
  56. #define MASKDWORD 0xffffffff
  57. #define MASK12BITS 0xfff
  58. #define MASKH4BITS 0xf0000000
  59. #define MASKOFDM_D 0xffc00000
  60. #define MASKCCK 0x3f3f3f3f
  61. #define MASK4BITS 0x0f
  62. #define MASK20BITS 0xfffff
  63. #define RFREG_OFFSET_MASK 0xfffff
  64. #define RF_CHANGE_BY_INIT 0
  65. #define RF_CHANGE_BY_IPS BIT(28)
  66. #define RF_CHANGE_BY_PS BIT(29)
  67. #define RF_CHANGE_BY_HW BIT(30)
  68. #define RF_CHANGE_BY_SW BIT(31)
  69. #define IQK_ADDA_REG_NUM 16
  70. #define IQK_MAC_REG_NUM 4
  71. #define IQK_THRESHOLD 8
  72. #define MAX_KEY_LEN 61
  73. #define KEY_BUF_SIZE 5
  74. /* QoS related. */
  75. /*aci: 0x00 Best Effort*/
  76. /*aci: 0x01 Background*/
  77. /*aci: 0x10 Video*/
  78. /*aci: 0x11 Voice*/
  79. /*Max: define total number.*/
  80. #define AC0_BE 0
  81. #define AC1_BK 1
  82. #define AC2_VI 2
  83. #define AC3_VO 3
  84. #define AC_MAX 4
  85. #define QOS_QUEUE_NUM 4
  86. #define RTL_MAC80211_NUM_QUEUE 5
  87. #define REALTEK_USB_VENQT_MAX_BUF_SIZE 254
  88. #define RTL_USB_MAX_RX_COUNT 100
  89. #define QBSS_LOAD_SIZE 5
  90. #define MAX_WMMELE_LENGTH 64
  91. #define ASPM_L1_LATENCY 7
  92. #define TOTAL_CAM_ENTRY 32
  93. /*slot time for 11g. */
  94. #define RTL_SLOT_TIME_9 9
  95. #define RTL_SLOT_TIME_20 20
  96. /*related to tcp/ip. */
  97. #define SNAP_SIZE 6
  98. #define PROTOC_TYPE_SIZE 2
  99. /*related with 802.11 frame*/
  100. #define MAC80211_3ADDR_LEN 24
  101. #define MAC80211_4ADDR_LEN 30
  102. #define CHANNEL_MAX_NUMBER (14 + 24 + 21) /* 14 is the max channel no */
  103. #define CHANNEL_MAX_NUMBER_2G 14
  104. #define CHANNEL_MAX_NUMBER_5G 49 /* Please refer to
  105. *"phy_GetChnlGroup8812A" and
  106. * "Hal_ReadTxPowerInfo8812A"
  107. */
  108. #define CHANNEL_MAX_NUMBER_5G_80M 7
  109. #define CHANNEL_GROUP_MAX (3 + 9) /* ch1~3, 4~9, 10~14 = three groups */
  110. #define MAX_PG_GROUP 13
  111. #define CHANNEL_GROUP_MAX_2G 3
  112. #define CHANNEL_GROUP_IDX_5GL 3
  113. #define CHANNEL_GROUP_IDX_5GM 6
  114. #define CHANNEL_GROUP_IDX_5GH 9
  115. #define CHANNEL_GROUP_MAX_5G 9
  116. #define CHANNEL_MAX_NUMBER_2G 14
  117. #define AVG_THERMAL_NUM 8
  118. #define AVG_THERMAL_NUM_88E 4
  119. #define AVG_THERMAL_NUM_8723BE 4
  120. #define MAX_TID_COUNT 9
  121. /* for early mode */
  122. #define FCS_LEN 4
  123. #define EM_HDR_LEN 8
  124. enum rtl8192c_h2c_cmd {
  125. H2C_AP_OFFLOAD = 0,
  126. H2C_SETPWRMODE = 1,
  127. H2C_JOINBSSRPT = 2,
  128. H2C_RSVDPAGE = 3,
  129. H2C_RSSI_REPORT = 5,
  130. H2C_RA_MASK = 6,
  131. H2C_MACID_PS_MODE = 7,
  132. H2C_P2P_PS_OFFLOAD = 8,
  133. H2C_MAC_MODE_SEL = 9,
  134. H2C_PWRM = 15,
  135. H2C_P2P_PS_CTW_CMD = 24,
  136. MAX_H2CCMD
  137. };
  138. enum {
  139. H2C_BT_PORT_ID = 0x71,
  140. };
  141. #define GET_TX_REPORT_SN_V1(c2h) (c2h[6])
  142. #define GET_TX_REPORT_ST_V1(c2h) (c2h[0] & 0xC0)
  143. #define GET_TX_REPORT_RETRY_V1(c2h) (c2h[2] & 0x3F)
  144. #define GET_TX_REPORT_SN_V2(c2h) (c2h[6])
  145. #define GET_TX_REPORT_ST_V2(c2h) (c2h[7] & 0xC0)
  146. #define GET_TX_REPORT_RETRY_V2(c2h) (c2h[8] & 0x3F)
  147. #define MAX_TX_COUNT 4
  148. #define MAX_REGULATION_NUM 4
  149. #define MAX_RF_PATH_NUM 4
  150. #define MAX_RATE_SECTION_NUM 6 /* = MAX_RATE_SECTION */
  151. #define MAX_2_4G_BANDWIDTH_NUM 4
  152. #define MAX_5G_BANDWIDTH_NUM 4
  153. #define MAX_RF_PATH 4
  154. #define MAX_CHNL_GROUP_24G 6
  155. #define MAX_CHNL_GROUP_5G 14
  156. #define TX_PWR_BY_RATE_NUM_BAND 2
  157. #define TX_PWR_BY_RATE_NUM_RF 4
  158. #define TX_PWR_BY_RATE_NUM_SECTION 12
  159. #define TX_PWR_BY_RATE_NUM_RATE 84 /* >= TX_PWR_BY_RATE_NUM_SECTION */
  160. #define MAX_BASE_NUM_IN_PHY_REG_PG_24G 6 /* MAX_RATE_SECTION */
  161. #define MAX_BASE_NUM_IN_PHY_REG_PG_5G 5 /* MAX_RATE_SECTION -1 */
  162. #define BUFDESC_SEG_NUM 1 /* 0:2 seg, 1: 4 seg, 2: 8 seg */
  163. #define DEL_SW_IDX_SZ 30
  164. /* For now, it's just for 8192ee
  165. * but not OK yet, keep it 0
  166. */
  167. #define RTL8192EE_SEG_NUM BUFDESC_SEG_NUM
  168. enum rf_tx_num {
  169. RF_1TX = 0,
  170. RF_2TX,
  171. RF_MAX_TX_NUM,
  172. RF_TX_NUM_NONIMPLEMENT,
  173. };
  174. #define PACKET_NORMAL 0
  175. #define PACKET_DHCP 1
  176. #define PACKET_ARP 2
  177. #define PACKET_EAPOL 3
  178. #define MAX_SUPPORT_WOL_PATTERN_NUM 16
  179. #define RSVD_WOL_PATTERN_NUM 1
  180. #define WKFMCAM_ADDR_NUM 6
  181. #define WKFMCAM_SIZE 24
  182. #define MAX_WOL_BIT_MASK_SIZE 16
  183. /* MIN LEN keeps 13 here */
  184. #define MIN_WOL_PATTERN_SIZE 13
  185. #define MAX_WOL_PATTERN_SIZE 128
  186. #define WAKE_ON_MAGIC_PACKET BIT(0)
  187. #define WAKE_ON_PATTERN_MATCH BIT(1)
  188. #define WOL_REASON_PTK_UPDATE BIT(0)
  189. #define WOL_REASON_GTK_UPDATE BIT(1)
  190. #define WOL_REASON_DISASSOC BIT(2)
  191. #define WOL_REASON_DEAUTH BIT(3)
  192. #define WOL_REASON_AP_LOST BIT(4)
  193. #define WOL_REASON_MAGIC_PKT BIT(5)
  194. #define WOL_REASON_UNICAST_PKT BIT(6)
  195. #define WOL_REASON_PATTERN_PKT BIT(7)
  196. #define WOL_REASON_RTD3_SSID_MATCH BIT(8)
  197. #define WOL_REASON_REALWOW_V2_WAKEUPPKT BIT(9)
  198. #define WOL_REASON_REALWOW_V2_ACKLOST BIT(10)
  199. struct rtlwifi_firmware_header {
  200. __le16 signature;
  201. u8 category;
  202. u8 function;
  203. __le16 version;
  204. u8 subversion;
  205. u8 rsvd1;
  206. u8 month;
  207. u8 date;
  208. u8 hour;
  209. u8 minute;
  210. __le16 ramcodeSize;
  211. __le16 rsvd2;
  212. __le32 svnindex;
  213. __le32 rsvd3;
  214. __le32 rsvd4;
  215. __le32 rsvd5;
  216. };
  217. struct txpower_info_2g {
  218. u8 index_cck_base[MAX_RF_PATH][MAX_CHNL_GROUP_24G];
  219. u8 index_bw40_base[MAX_RF_PATH][MAX_CHNL_GROUP_24G];
  220. /*If only one tx, only BW20 and OFDM are used.*/
  221. u8 cck_diff[MAX_RF_PATH][MAX_TX_COUNT];
  222. u8 ofdm_diff[MAX_RF_PATH][MAX_TX_COUNT];
  223. u8 bw20_diff[MAX_RF_PATH][MAX_TX_COUNT];
  224. u8 bw40_diff[MAX_RF_PATH][MAX_TX_COUNT];
  225. u8 bw80_diff[MAX_RF_PATH][MAX_TX_COUNT];
  226. u8 bw160_diff[MAX_RF_PATH][MAX_TX_COUNT];
  227. };
  228. struct txpower_info_5g {
  229. u8 index_bw40_base[MAX_RF_PATH][MAX_CHNL_GROUP_5G];
  230. /*If only one tx, only BW20, OFDM, BW80 and BW160 are used.*/
  231. u8 ofdm_diff[MAX_RF_PATH][MAX_TX_COUNT];
  232. u8 bw20_diff[MAX_RF_PATH][MAX_TX_COUNT];
  233. u8 bw40_diff[MAX_RF_PATH][MAX_TX_COUNT];
  234. u8 bw80_diff[MAX_RF_PATH][MAX_TX_COUNT];
  235. u8 bw160_diff[MAX_RF_PATH][MAX_TX_COUNT];
  236. };
  237. enum rate_section {
  238. CCK = 0,
  239. OFDM,
  240. HT_MCS0_MCS7,
  241. HT_MCS8_MCS15,
  242. VHT_1SSMCS0_1SSMCS9,
  243. VHT_2SSMCS0_2SSMCS9,
  244. MAX_RATE_SECTION,
  245. };
  246. enum intf_type {
  247. INTF_PCI = 0,
  248. INTF_USB = 1,
  249. };
  250. enum radio_path {
  251. RF90_PATH_A = 0,
  252. RF90_PATH_B = 1,
  253. RF90_PATH_C = 2,
  254. RF90_PATH_D = 3,
  255. };
  256. enum radio_mask {
  257. RF_MASK_A = BIT(0),
  258. RF_MASK_B = BIT(1),
  259. RF_MASK_C = BIT(2),
  260. RF_MASK_D = BIT(3),
  261. };
  262. enum regulation_txpwr_lmt {
  263. TXPWR_LMT_FCC = 0,
  264. TXPWR_LMT_MKK = 1,
  265. TXPWR_LMT_ETSI = 2,
  266. TXPWR_LMT_WW = 3,
  267. TXPWR_LMT_MAX_REGULATION_NUM = 4
  268. };
  269. enum rt_eeprom_type {
  270. EEPROM_93C46,
  271. EEPROM_93C56,
  272. EEPROM_BOOT_EFUSE,
  273. };
  274. enum ttl_status {
  275. RTL_STATUS_INTERFACE_START = 0,
  276. };
  277. enum hardware_type {
  278. HARDWARE_TYPE_RTL8192E,
  279. HARDWARE_TYPE_RTL8192U,
  280. HARDWARE_TYPE_RTL8192SE,
  281. HARDWARE_TYPE_RTL8192SU,
  282. HARDWARE_TYPE_RTL8192CE,
  283. HARDWARE_TYPE_RTL8192CU,
  284. HARDWARE_TYPE_RTL8192DE,
  285. HARDWARE_TYPE_RTL8192DU,
  286. HARDWARE_TYPE_RTL8723AE,
  287. HARDWARE_TYPE_RTL8723U,
  288. HARDWARE_TYPE_RTL8188EE,
  289. HARDWARE_TYPE_RTL8723BE,
  290. HARDWARE_TYPE_RTL8192EE,
  291. HARDWARE_TYPE_RTL8821AE,
  292. HARDWARE_TYPE_RTL8812AE,
  293. HARDWARE_TYPE_RTL8822BE,
  294. /* keep it last */
  295. HARDWARE_TYPE_NUM
  296. };
  297. #define RTL_HW_TYPE(rtlpriv) (rtl_hal((struct rtl_priv *)rtlpriv)->hw_type)
  298. #define IS_NEW_GENERATION_IC(rtlpriv) \
  299. (RTL_HW_TYPE(rtlpriv) >= HARDWARE_TYPE_RTL8192EE)
  300. #define IS_HARDWARE_TYPE_8192CE(rtlpriv) \
  301. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8192CE)
  302. #define IS_HARDWARE_TYPE_8812(rtlpriv) \
  303. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8812AE)
  304. #define IS_HARDWARE_TYPE_8821(rtlpriv) \
  305. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8821AE)
  306. #define IS_HARDWARE_TYPE_8723A(rtlpriv) \
  307. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8723AE)
  308. #define IS_HARDWARE_TYPE_8723B(rtlpriv) \
  309. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8723BE)
  310. #define IS_HARDWARE_TYPE_8192E(rtlpriv) \
  311. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8192EE)
  312. #define IS_HARDWARE_TYPE_8822B(rtlpriv) \
  313. (RTL_HW_TYPE(rtlpriv) == HARDWARE_TYPE_RTL8822BE)
  314. #define RX_HAL_IS_CCK_RATE(rxmcs) \
  315. ((rxmcs) == DESC_RATE1M || \
  316. (rxmcs) == DESC_RATE2M || \
  317. (rxmcs) == DESC_RATE5_5M || \
  318. (rxmcs) == DESC_RATE11M)
  319. enum scan_operation_backup_opt {
  320. SCAN_OPT_BACKUP = 0,
  321. SCAN_OPT_BACKUP_BAND0 = 0,
  322. SCAN_OPT_BACKUP_BAND1,
  323. SCAN_OPT_RESTORE,
  324. SCAN_OPT_MAX
  325. };
  326. /*RF state.*/
  327. enum rf_pwrstate {
  328. ERFON,
  329. ERFSLEEP,
  330. ERFOFF
  331. };
  332. struct bb_reg_def {
  333. u32 rfintfs;
  334. u32 rfintfi;
  335. u32 rfintfo;
  336. u32 rfintfe;
  337. u32 rf3wire_offset;
  338. u32 rflssi_select;
  339. u32 rftxgain_stage;
  340. u32 rfhssi_para1;
  341. u32 rfhssi_para2;
  342. u32 rfsw_ctrl;
  343. u32 rfagc_control1;
  344. u32 rfagc_control2;
  345. u32 rfrxiq_imbal;
  346. u32 rfrx_afe;
  347. u32 rftxiq_imbal;
  348. u32 rftx_afe;
  349. u32 rf_rb; /* rflssi_readback */
  350. u32 rf_rbpi; /* rflssi_readbackpi */
  351. };
  352. enum io_type {
  353. IO_CMD_PAUSE_DM_BY_SCAN = 0,
  354. IO_CMD_PAUSE_BAND0_DM_BY_SCAN = 0,
  355. IO_CMD_PAUSE_BAND1_DM_BY_SCAN = 1,
  356. IO_CMD_RESUME_DM_BY_SCAN = 2,
  357. };
  358. enum hw_variables {
  359. HW_VAR_ETHER_ADDR = 0x0,
  360. HW_VAR_MULTICAST_REG = 0x1,
  361. HW_VAR_BASIC_RATE = 0x2,
  362. HW_VAR_BSSID = 0x3,
  363. HW_VAR_MEDIA_STATUS= 0x4,
  364. HW_VAR_SECURITY_CONF= 0x5,
  365. HW_VAR_BEACON_INTERVAL = 0x6,
  366. HW_VAR_ATIM_WINDOW = 0x7,
  367. HW_VAR_LISTEN_INTERVAL = 0x8,
  368. HW_VAR_CS_COUNTER = 0x9,
  369. HW_VAR_DEFAULTKEY0 = 0xa,
  370. HW_VAR_DEFAULTKEY1 = 0xb,
  371. HW_VAR_DEFAULTKEY2 = 0xc,
  372. HW_VAR_DEFAULTKEY3 = 0xd,
  373. HW_VAR_SIFS = 0xe,
  374. HW_VAR_R2T_SIFS = 0xf,
  375. HW_VAR_DIFS = 0x10,
  376. HW_VAR_EIFS = 0x11,
  377. HW_VAR_SLOT_TIME = 0x12,
  378. HW_VAR_ACK_PREAMBLE = 0x13,
  379. HW_VAR_CW_CONFIG = 0x14,
  380. HW_VAR_CW_VALUES = 0x15,
  381. HW_VAR_RATE_FALLBACK_CONTROL= 0x16,
  382. HW_VAR_CONTENTION_WINDOW = 0x17,
  383. HW_VAR_RETRY_COUNT = 0x18,
  384. HW_VAR_TR_SWITCH = 0x19,
  385. HW_VAR_COMMAND = 0x1a,
  386. HW_VAR_WPA_CONFIG = 0x1b,
  387. HW_VAR_AMPDU_MIN_SPACE = 0x1c,
  388. HW_VAR_SHORTGI_DENSITY = 0x1d,
  389. HW_VAR_AMPDU_FACTOR = 0x1e,
  390. HW_VAR_MCS_RATE_AVAILABLE = 0x1f,
  391. HW_VAR_AC_PARAM = 0x20,
  392. HW_VAR_ACM_CTRL = 0x21,
  393. HW_VAR_DIS_Req_Qsize = 0x22,
  394. HW_VAR_CCX_CHNL_LOAD = 0x23,
  395. HW_VAR_CCX_NOISE_HISTOGRAM = 0x24,
  396. HW_VAR_CCX_CLM_NHM = 0x25,
  397. HW_VAR_TxOPLimit = 0x26,
  398. HW_VAR_TURBO_MODE = 0x27,
  399. HW_VAR_RF_STATE = 0x28,
  400. HW_VAR_RF_OFF_BY_HW = 0x29,
  401. HW_VAR_BUS_SPEED = 0x2a,
  402. HW_VAR_SET_DEV_POWER = 0x2b,
  403. HW_VAR_RCR = 0x2c,
  404. HW_VAR_RATR_0 = 0x2d,
  405. HW_VAR_RRSR = 0x2e,
  406. HW_VAR_CPU_RST = 0x2f,
  407. HW_VAR_CHECK_BSSID = 0x30,
  408. HW_VAR_LBK_MODE = 0x31,
  409. HW_VAR_AES_11N_FIX = 0x32,
  410. HW_VAR_USB_RX_AGGR = 0x33,
  411. HW_VAR_USER_CONTROL_TURBO_MODE = 0x34,
  412. HW_VAR_RETRY_LIMIT = 0x35,
  413. HW_VAR_INIT_TX_RATE = 0x36,
  414. HW_VAR_TX_RATE_REG = 0x37,
  415. HW_VAR_EFUSE_USAGE = 0x38,
  416. HW_VAR_EFUSE_BYTES = 0x39,
  417. HW_VAR_AUTOLOAD_STATUS = 0x3a,
  418. HW_VAR_RF_2R_DISABLE = 0x3b,
  419. HW_VAR_SET_RPWM = 0x3c,
  420. HW_VAR_H2C_FW_PWRMODE = 0x3d,
  421. HW_VAR_H2C_FW_JOINBSSRPT = 0x3e,
  422. HW_VAR_H2C_FW_MEDIASTATUSRPT = 0x3f,
  423. HW_VAR_H2C_FW_P2P_PS_OFFLOAD = 0x40,
  424. HW_VAR_FW_PSMODE_STATUS = 0x41,
  425. HW_VAR_INIT_RTS_RATE = 0x42,
  426. HW_VAR_RESUME_CLK_ON = 0x43,
  427. HW_VAR_FW_LPS_ACTION = 0x44,
  428. HW_VAR_1X1_RECV_COMBINE = 0x45,
  429. HW_VAR_STOP_SEND_BEACON = 0x46,
  430. HW_VAR_TSF_TIMER = 0x47,
  431. HW_VAR_IO_CMD = 0x48,
  432. HW_VAR_RF_RECOVERY = 0x49,
  433. HW_VAR_H2C_FW_UPDATE_GTK = 0x4a,
  434. HW_VAR_WF_MASK = 0x4b,
  435. HW_VAR_WF_CRC = 0x4c,
  436. HW_VAR_WF_IS_MAC_ADDR = 0x4d,
  437. HW_VAR_H2C_FW_OFFLOAD = 0x4e,
  438. HW_VAR_RESET_WFCRC = 0x4f,
  439. HW_VAR_HANDLE_FW_C2H = 0x50,
  440. HW_VAR_DL_FW_RSVD_PAGE = 0x51,
  441. HW_VAR_AID = 0x52,
  442. HW_VAR_HW_SEQ_ENABLE = 0x53,
  443. HW_VAR_CORRECT_TSF = 0x54,
  444. HW_VAR_BCN_VALID = 0x55,
  445. HW_VAR_FWLPS_RF_ON = 0x56,
  446. HW_VAR_DUAL_TSF_RST = 0x57,
  447. HW_VAR_SWITCH_EPHY_WoWLAN = 0x58,
  448. HW_VAR_INT_MIGRATION = 0x59,
  449. HW_VAR_INT_AC = 0x5a,
  450. HW_VAR_RF_TIMING = 0x5b,
  451. HAL_DEF_WOWLAN = 0x5c,
  452. HW_VAR_MRC = 0x5d,
  453. HW_VAR_KEEP_ALIVE = 0x5e,
  454. HW_VAR_NAV_UPPER = 0x5f,
  455. HW_VAR_MGT_FILTER = 0x60,
  456. HW_VAR_CTRL_FILTER = 0x61,
  457. HW_VAR_DATA_FILTER = 0x62,
  458. };
  459. enum rt_media_status {
  460. RT_MEDIA_DISCONNECT = 0,
  461. RT_MEDIA_CONNECT = 1
  462. };
  463. enum rt_oem_id {
  464. RT_CID_DEFAULT = 0,
  465. RT_CID_8187_ALPHA0 = 1,
  466. RT_CID_8187_SERCOMM_PS = 2,
  467. RT_CID_8187_HW_LED = 3,
  468. RT_CID_8187_NETGEAR = 4,
  469. RT_CID_WHQL = 5,
  470. RT_CID_819X_CAMEO = 6,
  471. RT_CID_819X_RUNTOP = 7,
  472. RT_CID_819X_SENAO = 8,
  473. RT_CID_TOSHIBA = 9,
  474. RT_CID_819X_NETCORE = 10,
  475. RT_CID_NETTRONIX = 11,
  476. RT_CID_DLINK = 12,
  477. RT_CID_PRONET = 13,
  478. RT_CID_COREGA = 14,
  479. RT_CID_819X_ALPHA = 15,
  480. RT_CID_819X_SITECOM = 16,
  481. RT_CID_CCX = 17,
  482. RT_CID_819X_LENOVO = 18,
  483. RT_CID_819X_QMI = 19,
  484. RT_CID_819X_EDIMAX_BELKIN = 20,
  485. RT_CID_819X_SERCOMM_BELKIN = 21,
  486. RT_CID_819X_CAMEO1 = 22,
  487. RT_CID_819X_MSI = 23,
  488. RT_CID_819X_ACER = 24,
  489. RT_CID_819X_HP = 27,
  490. RT_CID_819X_CLEVO = 28,
  491. RT_CID_819X_ARCADYAN_BELKIN = 29,
  492. RT_CID_819X_SAMSUNG = 30,
  493. RT_CID_819X_WNC_COREGA = 31,
  494. RT_CID_819X_FOXCOON = 32,
  495. RT_CID_819X_DELL = 33,
  496. RT_CID_819X_PRONETS = 34,
  497. RT_CID_819X_EDIMAX_ASUS = 35,
  498. RT_CID_NETGEAR = 36,
  499. RT_CID_PLANEX = 37,
  500. RT_CID_CC_C = 38,
  501. RT_CID_LENOVO_CHINA = 40,
  502. };
  503. enum hw_descs {
  504. HW_DESC_OWN,
  505. HW_DESC_RXOWN,
  506. HW_DESC_TX_NEXTDESC_ADDR,
  507. HW_DESC_TXBUFF_ADDR,
  508. HW_DESC_RXBUFF_ADDR,
  509. HW_DESC_RXPKT_LEN,
  510. HW_DESC_RXERO,
  511. HW_DESC_RX_PREPARE,
  512. };
  513. enum prime_sc {
  514. PRIME_CHNL_OFFSET_DONT_CARE = 0,
  515. PRIME_CHNL_OFFSET_LOWER = 1,
  516. PRIME_CHNL_OFFSET_UPPER = 2,
  517. };
  518. enum rf_type {
  519. RF_1T1R = 0,
  520. RF_1T2R = 1,
  521. RF_2T2R = 2,
  522. RF_2T2R_GREEN = 3,
  523. RF_2T3R = 4,
  524. RF_2T4R = 5,
  525. RF_3T3R = 6,
  526. RF_3T4R = 7,
  527. RF_4T4R = 8,
  528. };
  529. enum ht_channel_width {
  530. HT_CHANNEL_WIDTH_20 = 0,
  531. HT_CHANNEL_WIDTH_20_40 = 1,
  532. HT_CHANNEL_WIDTH_80 = 2,
  533. HT_CHANNEL_WIDTH_MAX,
  534. };
  535. /* Ref: 802.11i sepc D10.0 7.3.2.25.1
  536. Cipher Suites Encryption Algorithms */
  537. enum rt_enc_alg {
  538. NO_ENCRYPTION = 0,
  539. WEP40_ENCRYPTION = 1,
  540. TKIP_ENCRYPTION = 2,
  541. RSERVED_ENCRYPTION = 3,
  542. AESCCMP_ENCRYPTION = 4,
  543. WEP104_ENCRYPTION = 5,
  544. AESCMAC_ENCRYPTION = 6, /*IEEE802.11w */
  545. };
  546. enum rtl_hal_state {
  547. _HAL_STATE_STOP = 0,
  548. _HAL_STATE_START = 1,
  549. };
  550. enum rtl_desc_rate {
  551. DESC_RATE1M = 0x00,
  552. DESC_RATE2M = 0x01,
  553. DESC_RATE5_5M = 0x02,
  554. DESC_RATE11M = 0x03,
  555. DESC_RATE6M = 0x04,
  556. DESC_RATE9M = 0x05,
  557. DESC_RATE12M = 0x06,
  558. DESC_RATE18M = 0x07,
  559. DESC_RATE24M = 0x08,
  560. DESC_RATE36M = 0x09,
  561. DESC_RATE48M = 0x0a,
  562. DESC_RATE54M = 0x0b,
  563. DESC_RATEMCS0 = 0x0c,
  564. DESC_RATEMCS1 = 0x0d,
  565. DESC_RATEMCS2 = 0x0e,
  566. DESC_RATEMCS3 = 0x0f,
  567. DESC_RATEMCS4 = 0x10,
  568. DESC_RATEMCS5 = 0x11,
  569. DESC_RATEMCS6 = 0x12,
  570. DESC_RATEMCS7 = 0x13,
  571. DESC_RATEMCS8 = 0x14,
  572. DESC_RATEMCS9 = 0x15,
  573. DESC_RATEMCS10 = 0x16,
  574. DESC_RATEMCS11 = 0x17,
  575. DESC_RATEMCS12 = 0x18,
  576. DESC_RATEMCS13 = 0x19,
  577. DESC_RATEMCS14 = 0x1a,
  578. DESC_RATEMCS15 = 0x1b,
  579. DESC_RATEMCS15_SG = 0x1c,
  580. DESC_RATEMCS32 = 0x20,
  581. DESC_RATEVHT1SS_MCS0 = 0x2c,
  582. DESC_RATEVHT1SS_MCS1 = 0x2d,
  583. DESC_RATEVHT1SS_MCS2 = 0x2e,
  584. DESC_RATEVHT1SS_MCS3 = 0x2f,
  585. DESC_RATEVHT1SS_MCS4 = 0x30,
  586. DESC_RATEVHT1SS_MCS5 = 0x31,
  587. DESC_RATEVHT1SS_MCS6 = 0x32,
  588. DESC_RATEVHT1SS_MCS7 = 0x33,
  589. DESC_RATEVHT1SS_MCS8 = 0x34,
  590. DESC_RATEVHT1SS_MCS9 = 0x35,
  591. DESC_RATEVHT2SS_MCS0 = 0x36,
  592. DESC_RATEVHT2SS_MCS1 = 0x37,
  593. DESC_RATEVHT2SS_MCS2 = 0x38,
  594. DESC_RATEVHT2SS_MCS3 = 0x39,
  595. DESC_RATEVHT2SS_MCS4 = 0x3a,
  596. DESC_RATEVHT2SS_MCS5 = 0x3b,
  597. DESC_RATEVHT2SS_MCS6 = 0x3c,
  598. DESC_RATEVHT2SS_MCS7 = 0x3d,
  599. DESC_RATEVHT2SS_MCS8 = 0x3e,
  600. DESC_RATEVHT2SS_MCS9 = 0x3f,
  601. };
  602. enum rtl_var_map {
  603. /*reg map */
  604. SYS_ISO_CTRL = 0,
  605. SYS_FUNC_EN,
  606. SYS_CLK,
  607. MAC_RCR_AM,
  608. MAC_RCR_AB,
  609. MAC_RCR_ACRC32,
  610. MAC_RCR_ACF,
  611. MAC_RCR_AAP,
  612. MAC_HIMR,
  613. MAC_HIMRE,
  614. MAC_HSISR,
  615. /*efuse map */
  616. EFUSE_TEST,
  617. EFUSE_CTRL,
  618. EFUSE_CLK,
  619. EFUSE_CLK_CTRL,
  620. EFUSE_PWC_EV12V,
  621. EFUSE_FEN_ELDR,
  622. EFUSE_LOADER_CLK_EN,
  623. EFUSE_ANA8M,
  624. EFUSE_HWSET_MAX_SIZE,
  625. EFUSE_MAX_SECTION_MAP,
  626. EFUSE_REAL_CONTENT_SIZE,
  627. EFUSE_OOB_PROTECT_BYTES_LEN,
  628. EFUSE_ACCESS,
  629. /*CAM map */
  630. RWCAM,
  631. WCAMI,
  632. RCAMO,
  633. CAMDBG,
  634. SECR,
  635. SEC_CAM_NONE,
  636. SEC_CAM_WEP40,
  637. SEC_CAM_TKIP,
  638. SEC_CAM_AES,
  639. SEC_CAM_WEP104,
  640. /*IMR map */
  641. RTL_IMR_BCNDMAINT6, /*Beacon DMA Interrupt 6 */
  642. RTL_IMR_BCNDMAINT5, /*Beacon DMA Interrupt 5 */
  643. RTL_IMR_BCNDMAINT4, /*Beacon DMA Interrupt 4 */
  644. RTL_IMR_BCNDMAINT3, /*Beacon DMA Interrupt 3 */
  645. RTL_IMR_BCNDMAINT2, /*Beacon DMA Interrupt 2 */
  646. RTL_IMR_BCNDMAINT1, /*Beacon DMA Interrupt 1 */
  647. RTL_IMR_BCNDOK8, /*Beacon Queue DMA OK Interrup 8 */
  648. RTL_IMR_BCNDOK7, /*Beacon Queue DMA OK Interrup 7 */
  649. RTL_IMR_BCNDOK6, /*Beacon Queue DMA OK Interrup 6 */
  650. RTL_IMR_BCNDOK5, /*Beacon Queue DMA OK Interrup 5 */
  651. RTL_IMR_BCNDOK4, /*Beacon Queue DMA OK Interrup 4 */
  652. RTL_IMR_BCNDOK3, /*Beacon Queue DMA OK Interrup 3 */
  653. RTL_IMR_BCNDOK2, /*Beacon Queue DMA OK Interrup 2 */
  654. RTL_IMR_BCNDOK1, /*Beacon Queue DMA OK Interrup 1 */
  655. RTL_IMR_TIMEOUT2, /*Timeout interrupt 2 */
  656. RTL_IMR_TIMEOUT1, /*Timeout interrupt 1 */
  657. RTL_IMR_TXFOVW, /*Transmit FIFO Overflow */
  658. RTL_IMR_PSTIMEOUT, /*Power save time out interrupt */
  659. RTL_IMR_BCNINT, /*Beacon DMA Interrupt 0 */
  660. RTL_IMR_RXFOVW, /*Receive FIFO Overflow */
  661. RTL_IMR_RDU, /*Receive Descriptor Unavailable */
  662. RTL_IMR_ATIMEND, /*For 92C,ATIM Window End Interrupt */
  663. RTL_IMR_H2CDOK, /*H2C Queue DMA OK Interrupt */
  664. RTL_IMR_BDOK, /*Beacon Queue DMA OK Interrup */
  665. RTL_IMR_HIGHDOK, /*High Queue DMA OK Interrupt */
  666. RTL_IMR_COMDOK, /*Command Queue DMA OK Interrupt*/
  667. RTL_IMR_TBDOK, /*Transmit Beacon OK interrup */
  668. RTL_IMR_MGNTDOK, /*Management Queue DMA OK Interrupt */
  669. RTL_IMR_TBDER, /*For 92C,Transmit Beacon Error Interrupt */
  670. RTL_IMR_BKDOK, /*AC_BK DMA OK Interrupt */
  671. RTL_IMR_BEDOK, /*AC_BE DMA OK Interrupt */
  672. RTL_IMR_VIDOK, /*AC_VI DMA OK Interrupt */
  673. RTL_IMR_VODOK, /*AC_VO DMA Interrupt */
  674. RTL_IMR_ROK, /*Receive DMA OK Interrupt */
  675. RTL_IMR_HSISR_IND, /*HSISR Interrupt*/
  676. RTL_IBSS_INT_MASKS, /*(RTL_IMR_BCNINT | RTL_IMR_TBDOK |
  677. * RTL_IMR_TBDER) */
  678. RTL_IMR_C2HCMD, /*fw interrupt*/
  679. /*CCK Rates, TxHT = 0 */
  680. RTL_RC_CCK_RATE1M,
  681. RTL_RC_CCK_RATE2M,
  682. RTL_RC_CCK_RATE5_5M,
  683. RTL_RC_CCK_RATE11M,
  684. /*OFDM Rates, TxHT = 0 */
  685. RTL_RC_OFDM_RATE6M,
  686. RTL_RC_OFDM_RATE9M,
  687. RTL_RC_OFDM_RATE12M,
  688. RTL_RC_OFDM_RATE18M,
  689. RTL_RC_OFDM_RATE24M,
  690. RTL_RC_OFDM_RATE36M,
  691. RTL_RC_OFDM_RATE48M,
  692. RTL_RC_OFDM_RATE54M,
  693. RTL_RC_HT_RATEMCS7,
  694. RTL_RC_HT_RATEMCS15,
  695. RTL_RC_VHT_RATE_1SS_MCS7,
  696. RTL_RC_VHT_RATE_1SS_MCS8,
  697. RTL_RC_VHT_RATE_1SS_MCS9,
  698. RTL_RC_VHT_RATE_2SS_MCS7,
  699. RTL_RC_VHT_RATE_2SS_MCS8,
  700. RTL_RC_VHT_RATE_2SS_MCS9,
  701. /*keep it last */
  702. RTL_VAR_MAP_MAX,
  703. };
  704. /*Firmware PS mode for control LPS.*/
  705. enum _fw_ps_mode {
  706. FW_PS_ACTIVE_MODE = 0,
  707. FW_PS_MIN_MODE = 1,
  708. FW_PS_MAX_MODE = 2,
  709. FW_PS_DTIM_MODE = 3,
  710. FW_PS_VOIP_MODE = 4,
  711. FW_PS_UAPSD_WMM_MODE = 5,
  712. FW_PS_UAPSD_MODE = 6,
  713. FW_PS_IBSS_MODE = 7,
  714. FW_PS_WWLAN_MODE = 8,
  715. FW_PS_PM_Radio_Off = 9,
  716. FW_PS_PM_Card_Disable = 10,
  717. };
  718. enum rt_psmode {
  719. EACTIVE, /*Active/Continuous access. */
  720. EMAXPS, /*Max power save mode. */
  721. EFASTPS, /*Fast power save mode. */
  722. EAUTOPS, /*Auto power save mode. */
  723. };
  724. /*LED related.*/
  725. enum led_ctl_mode {
  726. LED_CTL_POWER_ON = 1,
  727. LED_CTL_LINK = 2,
  728. LED_CTL_NO_LINK = 3,
  729. LED_CTL_TX = 4,
  730. LED_CTL_RX = 5,
  731. LED_CTL_SITE_SURVEY = 6,
  732. LED_CTL_POWER_OFF = 7,
  733. LED_CTL_START_TO_LINK = 8,
  734. LED_CTL_START_WPS = 9,
  735. LED_CTL_STOP_WPS = 10,
  736. };
  737. enum rtl_led_pin {
  738. LED_PIN_GPIO0,
  739. LED_PIN_LED0,
  740. LED_PIN_LED1,
  741. LED_PIN_LED2
  742. };
  743. /*QoS related.*/
  744. /*acm implementation method.*/
  745. enum acm_method {
  746. eAcmWay0_SwAndHw = 0,
  747. eAcmWay1_HW = 1,
  748. EACMWAY2_SW = 2,
  749. };
  750. enum macphy_mode {
  751. SINGLEMAC_SINGLEPHY = 0,
  752. DUALMAC_DUALPHY,
  753. DUALMAC_SINGLEPHY,
  754. };
  755. enum band_type {
  756. BAND_ON_2_4G = 0,
  757. BAND_ON_5G,
  758. BAND_ON_BOTH,
  759. BANDMAX
  760. };
  761. /*aci/aifsn Field.
  762. Ref: WMM spec 2.2.2: WME Parameter Element, p.12.*/
  763. union aci_aifsn {
  764. u8 char_data;
  765. struct {
  766. u8 aifsn:4;
  767. u8 acm:1;
  768. u8 aci:2;
  769. u8 reserved:1;
  770. } f; /* Field */
  771. };
  772. /*mlme related.*/
  773. enum wireless_mode {
  774. WIRELESS_MODE_UNKNOWN = 0x00,
  775. WIRELESS_MODE_A = 0x01,
  776. WIRELESS_MODE_B = 0x02,
  777. WIRELESS_MODE_G = 0x04,
  778. WIRELESS_MODE_AUTO = 0x08,
  779. WIRELESS_MODE_N_24G = 0x10,
  780. WIRELESS_MODE_N_5G = 0x20,
  781. WIRELESS_MODE_AC_5G = 0x40,
  782. WIRELESS_MODE_AC_24G = 0x80,
  783. WIRELESS_MODE_AC_ONLY = 0x100,
  784. WIRELESS_MODE_MAX = 0x800
  785. };
  786. #define IS_WIRELESS_MODE_A(wirelessmode) \
  787. (wirelessmode == WIRELESS_MODE_A)
  788. #define IS_WIRELESS_MODE_B(wirelessmode) \
  789. (wirelessmode == WIRELESS_MODE_B)
  790. #define IS_WIRELESS_MODE_G(wirelessmode) \
  791. (wirelessmode == WIRELESS_MODE_G)
  792. #define IS_WIRELESS_MODE_N_24G(wirelessmode) \
  793. (wirelessmode == WIRELESS_MODE_N_24G)
  794. #define IS_WIRELESS_MODE_N_5G(wirelessmode) \
  795. (wirelessmode == WIRELESS_MODE_N_5G)
  796. enum ratr_table_mode {
  797. RATR_INX_WIRELESS_NGB = 0,
  798. RATR_INX_WIRELESS_NG = 1,
  799. RATR_INX_WIRELESS_NB = 2,
  800. RATR_INX_WIRELESS_N = 3,
  801. RATR_INX_WIRELESS_GB = 4,
  802. RATR_INX_WIRELESS_G = 5,
  803. RATR_INX_WIRELESS_B = 6,
  804. RATR_INX_WIRELESS_MC = 7,
  805. RATR_INX_WIRELESS_A = 8,
  806. RATR_INX_WIRELESS_AC_5N = 8,
  807. RATR_INX_WIRELESS_AC_24N = 9,
  808. };
  809. enum ratr_table_mode_new {
  810. RATEID_IDX_BGN_40M_2SS = 0,
  811. RATEID_IDX_BGN_40M_1SS = 1,
  812. RATEID_IDX_BGN_20M_2SS_BN = 2,
  813. RATEID_IDX_BGN_20M_1SS_BN = 3,
  814. RATEID_IDX_GN_N2SS = 4,
  815. RATEID_IDX_GN_N1SS = 5,
  816. RATEID_IDX_BG = 6,
  817. RATEID_IDX_G = 7,
  818. RATEID_IDX_B = 8,
  819. RATEID_IDX_VHT_2SS = 9,
  820. RATEID_IDX_VHT_1SS = 10,
  821. RATEID_IDX_MIX1 = 11,
  822. RATEID_IDX_MIX2 = 12,
  823. RATEID_IDX_VHT_3SS = 13,
  824. RATEID_IDX_BGN_3SS = 14,
  825. };
  826. enum rtl_link_state {
  827. MAC80211_NOLINK = 0,
  828. MAC80211_LINKING = 1,
  829. MAC80211_LINKED = 2,
  830. MAC80211_LINKED_SCANNING = 3,
  831. };
  832. enum act_category {
  833. ACT_CAT_QOS = 1,
  834. ACT_CAT_DLS = 2,
  835. ACT_CAT_BA = 3,
  836. ACT_CAT_HT = 7,
  837. ACT_CAT_WMM = 17,
  838. };
  839. enum ba_action {
  840. ACT_ADDBAREQ = 0,
  841. ACT_ADDBARSP = 1,
  842. ACT_DELBA = 2,
  843. };
  844. enum rt_polarity_ctl {
  845. RT_POLARITY_LOW_ACT = 0,
  846. RT_POLARITY_HIGH_ACT = 1,
  847. };
  848. /* After 8188E, we use V2 reason define. 88C/8723A use V1 reason. */
  849. enum fw_wow_reason_v2 {
  850. FW_WOW_V2_PTK_UPDATE_EVENT = 0x01,
  851. FW_WOW_V2_GTK_UPDATE_EVENT = 0x02,
  852. FW_WOW_V2_DISASSOC_EVENT = 0x04,
  853. FW_WOW_V2_DEAUTH_EVENT = 0x08,
  854. FW_WOW_V2_FW_DISCONNECT_EVENT = 0x10,
  855. FW_WOW_V2_MAGIC_PKT_EVENT = 0x21,
  856. FW_WOW_V2_UNICAST_PKT_EVENT = 0x22,
  857. FW_WOW_V2_PATTERN_PKT_EVENT = 0x23,
  858. FW_WOW_V2_RTD3_SSID_MATCH_EVENT = 0x24,
  859. FW_WOW_V2_REALWOW_V2_WAKEUPPKT = 0x30,
  860. FW_WOW_V2_REALWOW_V2_ACKLOST = 0x31,
  861. FW_WOW_V2_REASON_MAX = 0xff,
  862. };
  863. enum wolpattern_type {
  864. UNICAST_PATTERN = 0,
  865. MULTICAST_PATTERN = 1,
  866. BROADCAST_PATTERN = 2,
  867. DONT_CARE_DA = 3,
  868. UNKNOWN_TYPE = 4,
  869. };
  870. enum package_type {
  871. PACKAGE_DEFAULT,
  872. PACKAGE_QFN68,
  873. PACKAGE_TFBGA90,
  874. PACKAGE_TFBGA80,
  875. PACKAGE_TFBGA79
  876. };
  877. enum rtl_spec_ver {
  878. RTL_SPEC_NEW_RATEID = BIT(0), /* use ratr_table_mode_new */
  879. RTL_SPEC_SUPPORT_VHT = BIT(1), /* support VHT */
  880. RTL_SPEC_EXT_C2H = BIT(2), /* extend FW C2H (e.g. TX REPORT) */
  881. };
  882. enum dm_info_query {
  883. DM_INFO_FA_OFDM,
  884. DM_INFO_FA_CCK,
  885. DM_INFO_FA_TOTAL,
  886. DM_INFO_CCA_OFDM,
  887. DM_INFO_CCA_CCK,
  888. DM_INFO_CCA_ALL,
  889. DM_INFO_CRC32_OK_VHT,
  890. DM_INFO_CRC32_OK_HT,
  891. DM_INFO_CRC32_OK_LEGACY,
  892. DM_INFO_CRC32_OK_CCK,
  893. DM_INFO_CRC32_ERROR_VHT,
  894. DM_INFO_CRC32_ERROR_HT,
  895. DM_INFO_CRC32_ERROR_LEGACY,
  896. DM_INFO_CRC32_ERROR_CCK,
  897. DM_INFO_EDCCA_FLAG,
  898. DM_INFO_OFDM_ENABLE,
  899. DM_INFO_CCK_ENABLE,
  900. DM_INFO_CRC32_OK_HT_AGG,
  901. DM_INFO_CRC32_ERROR_HT_AGG,
  902. DM_INFO_DBG_PORT_0,
  903. DM_INFO_CURR_IGI,
  904. DM_INFO_RSSI_MIN,
  905. DM_INFO_RSSI_MAX,
  906. DM_INFO_CLM_RATIO,
  907. DM_INFO_NHM_RATIO,
  908. DM_INFO_IQK_ALL,
  909. DM_INFO_IQK_OK,
  910. DM_INFO_IQK_NG,
  911. DM_INFO_SIZE,
  912. };
  913. struct octet_string {
  914. u8 *octet;
  915. u16 length;
  916. };
  917. struct rtl_hdr_3addr {
  918. __le16 frame_ctl;
  919. __le16 duration_id;
  920. u8 addr1[ETH_ALEN];
  921. u8 addr2[ETH_ALEN];
  922. u8 addr3[ETH_ALEN];
  923. __le16 seq_ctl;
  924. u8 payload[0];
  925. } __packed;
  926. struct rtl_info_element {
  927. u8 id;
  928. u8 len;
  929. u8 data[0];
  930. } __packed;
  931. struct rtl_probe_rsp {
  932. struct rtl_hdr_3addr header;
  933. u32 time_stamp[2];
  934. __le16 beacon_interval;
  935. __le16 capability;
  936. /*SSID, supported rates, FH params, DS params,
  937. CF params, IBSS params, TIM (if beacon), RSN */
  938. struct rtl_info_element info_element[0];
  939. } __packed;
  940. /*LED related.*/
  941. /*ledpin Identify how to implement this SW led.*/
  942. struct rtl_led {
  943. void *hw;
  944. enum rtl_led_pin ledpin;
  945. bool ledon;
  946. };
  947. struct rtl_led_ctl {
  948. bool led_opendrain;
  949. struct rtl_led sw_led0;
  950. struct rtl_led sw_led1;
  951. };
  952. struct rtl_qos_parameters {
  953. __le16 cw_min;
  954. __le16 cw_max;
  955. u8 aifs;
  956. u8 flag;
  957. __le16 tx_op;
  958. } __packed;
  959. struct rt_smooth_data {
  960. u32 elements[100]; /*array to store values */
  961. u32 index; /*index to current array to store */
  962. u32 total_num; /*num of valid elements */
  963. u32 total_val; /*sum of valid elements */
  964. };
  965. struct false_alarm_statistics {
  966. u32 cnt_parity_fail;
  967. u32 cnt_rate_illegal;
  968. u32 cnt_crc8_fail;
  969. u32 cnt_mcs_fail;
  970. u32 cnt_fast_fsync_fail;
  971. u32 cnt_sb_search_fail;
  972. u32 cnt_ofdm_fail;
  973. u32 cnt_cck_fail;
  974. u32 cnt_all;
  975. u32 cnt_ofdm_cca;
  976. u32 cnt_cck_cca;
  977. u32 cnt_cca_all;
  978. u32 cnt_bw_usc;
  979. u32 cnt_bw_lsc;
  980. };
  981. struct init_gain {
  982. u8 xaagccore1;
  983. u8 xbagccore1;
  984. u8 xcagccore1;
  985. u8 xdagccore1;
  986. u8 cca;
  987. };
  988. struct wireless_stats {
  989. u64 txbytesunicast;
  990. u64 txbytesmulticast;
  991. u64 txbytesbroadcast;
  992. u64 rxbytesunicast;
  993. u64 txbytesunicast_inperiod;
  994. u64 rxbytesunicast_inperiod;
  995. u32 txbytesunicast_inperiod_tp;
  996. u32 rxbytesunicast_inperiod_tp;
  997. u64 txbytesunicast_last;
  998. u64 rxbytesunicast_last;
  999. long rx_snr_db[4];
  1000. /*Correct smoothed ss in Dbm, only used
  1001. in driver to report real power now. */
  1002. long recv_signal_power;
  1003. long signal_quality;
  1004. long last_sigstrength_inpercent;
  1005. u32 rssi_calculate_cnt;
  1006. u32 pwdb_all_cnt;
  1007. /*Transformed, in dbm. Beautified signal
  1008. strength for UI, not correct. */
  1009. long signal_strength;
  1010. u8 rx_rssi_percentage[4];
  1011. u8 rx_evm_dbm[4];
  1012. u8 rx_evm_percentage[2];
  1013. u16 rx_cfo_short[4];
  1014. u16 rx_cfo_tail[4];
  1015. struct rt_smooth_data ui_rssi;
  1016. struct rt_smooth_data ui_link_quality;
  1017. };
  1018. struct rate_adaptive {
  1019. u8 rate_adaptive_disabled;
  1020. u8 ratr_state;
  1021. u16 reserve;
  1022. u32 high_rssi_thresh_for_ra;
  1023. u32 high2low_rssi_thresh_for_ra;
  1024. u8 low2high_rssi_thresh_for_ra40m;
  1025. u32 low_rssi_thresh_for_ra40m;
  1026. u8 low2high_rssi_thresh_for_ra20m;
  1027. u32 low_rssi_thresh_for_ra20m;
  1028. u32 upper_rssi_threshold_ratr;
  1029. u32 middleupper_rssi_threshold_ratr;
  1030. u32 middle_rssi_threshold_ratr;
  1031. u32 middlelow_rssi_threshold_ratr;
  1032. u32 low_rssi_threshold_ratr;
  1033. u32 ultralow_rssi_threshold_ratr;
  1034. u32 low_rssi_threshold_ratr_40m;
  1035. u32 low_rssi_threshold_ratr_20m;
  1036. u8 ping_rssi_enable;
  1037. u32 ping_rssi_ratr;
  1038. u32 ping_rssi_thresh_for_ra;
  1039. u32 last_ratr;
  1040. u8 pre_ratr_state;
  1041. u8 ldpc_thres;
  1042. bool use_ldpc;
  1043. bool lower_rts_rate;
  1044. bool is_special_data;
  1045. };
  1046. struct regd_pair_mapping {
  1047. u16 reg_dmnenum;
  1048. u16 reg_5ghz_ctl;
  1049. u16 reg_2ghz_ctl;
  1050. };
  1051. struct dynamic_primary_cca {
  1052. u8 pricca_flag;
  1053. u8 intf_flag;
  1054. u8 intf_type;
  1055. u8 dup_rts_flag;
  1056. u8 monitor_flag;
  1057. u8 ch_offset;
  1058. u8 mf_state;
  1059. };
  1060. struct rtl_regulatory {
  1061. s8 alpha2[2];
  1062. u16 country_code;
  1063. u16 max_power_level;
  1064. u32 tp_scale;
  1065. u16 current_rd;
  1066. u16 current_rd_ext;
  1067. int16_t power_limit;
  1068. struct regd_pair_mapping *regpair;
  1069. };
  1070. struct rtl_rfkill {
  1071. bool rfkill_state; /*0 is off, 1 is on */
  1072. };
  1073. /*for P2P PS**/
  1074. #define P2P_MAX_NOA_NUM 2
  1075. enum p2p_role {
  1076. P2P_ROLE_DISABLE = 0,
  1077. P2P_ROLE_DEVICE = 1,
  1078. P2P_ROLE_CLIENT = 2,
  1079. P2P_ROLE_GO = 3
  1080. };
  1081. enum p2p_ps_state {
  1082. P2P_PS_DISABLE = 0,
  1083. P2P_PS_ENABLE = 1,
  1084. P2P_PS_SCAN = 2,
  1085. P2P_PS_SCAN_DONE = 3,
  1086. P2P_PS_ALLSTASLEEP = 4, /* for P2P GO */
  1087. };
  1088. enum p2p_ps_mode {
  1089. P2P_PS_NONE = 0,
  1090. P2P_PS_CTWINDOW = 1,
  1091. P2P_PS_NOA = 2,
  1092. P2P_PS_MIX = 3, /* CTWindow and NoA */
  1093. };
  1094. struct rtl_p2p_ps_info {
  1095. enum p2p_ps_mode p2p_ps_mode; /* indicate p2p ps mode */
  1096. enum p2p_ps_state p2p_ps_state; /* indicate p2p ps state */
  1097. u8 noa_index; /* Identifies instance of Notice of Absence timing. */
  1098. /* Client traffic window. A period of time in TU after TBTT. */
  1099. u8 ctwindow;
  1100. u8 opp_ps; /* opportunistic power save. */
  1101. u8 noa_num; /* number of NoA descriptor in P2P IE. */
  1102. /* Count for owner, Type of client. */
  1103. u8 noa_count_type[P2P_MAX_NOA_NUM];
  1104. /* Max duration for owner, preferred or min acceptable duration
  1105. * for client.
  1106. */
  1107. u32 noa_duration[P2P_MAX_NOA_NUM];
  1108. /* Length of interval for owner, preferred or max acceptable intervali
  1109. * of client.
  1110. */
  1111. u32 noa_interval[P2P_MAX_NOA_NUM];
  1112. /* schedule in terms of the lower 4 bytes of the TSF timer. */
  1113. u32 noa_start_time[P2P_MAX_NOA_NUM];
  1114. };
  1115. struct p2p_ps_offload_t {
  1116. u8 offload_en:1;
  1117. u8 role:1; /* 1: Owner, 0: Client */
  1118. u8 ctwindow_en:1;
  1119. u8 noa0_en:1;
  1120. u8 noa1_en:1;
  1121. u8 allstasleep:1;
  1122. u8 discovery:1;
  1123. u8 reserved:1;
  1124. };
  1125. #define IQK_MATRIX_REG_NUM 8
  1126. #define IQK_MATRIX_SETTINGS_NUM (1 + 24 + 21)
  1127. struct iqk_matrix_regs {
  1128. bool iqk_done;
  1129. long value[1][IQK_MATRIX_REG_NUM];
  1130. };
  1131. struct phy_parameters {
  1132. u16 length;
  1133. u32 *pdata;
  1134. };
  1135. enum hw_param_tab_index {
  1136. PHY_REG_2T,
  1137. PHY_REG_1T,
  1138. PHY_REG_PG,
  1139. RADIOA_2T,
  1140. RADIOB_2T,
  1141. RADIOA_1T,
  1142. RADIOB_1T,
  1143. MAC_REG,
  1144. AGCTAB_2T,
  1145. AGCTAB_1T,
  1146. MAX_TAB
  1147. };
  1148. struct rtl_phy {
  1149. struct bb_reg_def phyreg_def[4]; /*Radio A/B/C/D */
  1150. struct init_gain initgain_backup;
  1151. enum io_type current_io_type;
  1152. u8 rf_mode;
  1153. u8 rf_type;
  1154. u8 current_chan_bw;
  1155. u8 set_bwmode_inprogress;
  1156. u8 sw_chnl_inprogress;
  1157. u8 sw_chnl_stage;
  1158. u8 sw_chnl_step;
  1159. u8 current_channel;
  1160. u8 h2c_box_num;
  1161. u8 set_io_inprogress;
  1162. u8 lck_inprogress;
  1163. /* record for power tracking */
  1164. s32 reg_e94;
  1165. s32 reg_e9c;
  1166. s32 reg_ea4;
  1167. s32 reg_eac;
  1168. s32 reg_eb4;
  1169. s32 reg_ebc;
  1170. s32 reg_ec4;
  1171. s32 reg_ecc;
  1172. u8 rfpienable;
  1173. u8 reserve_0;
  1174. u16 reserve_1;
  1175. u32 reg_c04, reg_c08, reg_874;
  1176. u32 adda_backup[16];
  1177. u32 iqk_mac_backup[IQK_MAC_REG_NUM];
  1178. u32 iqk_bb_backup[10];
  1179. bool iqk_initialized;
  1180. bool rfpath_rx_enable[MAX_RF_PATH];
  1181. u8 reg_837;
  1182. /* Dual mac */
  1183. bool need_iqk;
  1184. struct iqk_matrix_regs iqk_matrix[IQK_MATRIX_SETTINGS_NUM];
  1185. bool rfpi_enable;
  1186. bool iqk_in_progress;
  1187. u8 pwrgroup_cnt;
  1188. u8 cck_high_power;
  1189. /* this is for 88E & 8723A */
  1190. u32 mcs_txpwrlevel_origoffset[MAX_PG_GROUP][16];
  1191. /* MAX_PG_GROUP groups of pwr diff by rates */
  1192. u32 mcs_offset[MAX_PG_GROUP][16];
  1193. u32 tx_power_by_rate_offset[TX_PWR_BY_RATE_NUM_BAND]
  1194. [TX_PWR_BY_RATE_NUM_RF]
  1195. [TX_PWR_BY_RATE_NUM_RF]
  1196. [TX_PWR_BY_RATE_NUM_RATE];
  1197. u8 txpwr_by_rate_base_24g[TX_PWR_BY_RATE_NUM_RF]
  1198. [TX_PWR_BY_RATE_NUM_RF]
  1199. [MAX_BASE_NUM_IN_PHY_REG_PG_24G];
  1200. u8 txpwr_by_rate_base_5g[TX_PWR_BY_RATE_NUM_RF]
  1201. [TX_PWR_BY_RATE_NUM_RF]
  1202. [MAX_BASE_NUM_IN_PHY_REG_PG_5G];
  1203. u8 default_initialgain[4];
  1204. /* the current Tx power level */
  1205. u8 cur_cck_txpwridx;
  1206. u8 cur_ofdm24g_txpwridx;
  1207. u8 cur_bw20_txpwridx;
  1208. u8 cur_bw40_txpwridx;
  1209. s8 txpwr_limit_2_4g[MAX_REGULATION_NUM]
  1210. [MAX_2_4G_BANDWIDTH_NUM]
  1211. [MAX_RATE_SECTION_NUM]
  1212. [CHANNEL_MAX_NUMBER_2G]
  1213. [MAX_RF_PATH_NUM];
  1214. s8 txpwr_limit_5g[MAX_REGULATION_NUM]
  1215. [MAX_5G_BANDWIDTH_NUM]
  1216. [MAX_RATE_SECTION_NUM]
  1217. [CHANNEL_MAX_NUMBER_5G]
  1218. [MAX_RF_PATH_NUM];
  1219. u32 rfreg_chnlval[2];
  1220. bool apk_done;
  1221. u32 reg_rf3c[2]; /* pathA / pathB */
  1222. u32 backup_rf_0x1a;/*92ee*/
  1223. /* bfsync */
  1224. u8 framesync;
  1225. u32 framesync_c34;
  1226. u8 num_total_rfpath;
  1227. struct phy_parameters hwparam_tables[MAX_TAB];
  1228. u16 rf_pathmap;
  1229. u8 hw_rof_enable; /*Enable GPIO[9] as WL RF HW PDn source*/
  1230. enum rt_polarity_ctl polarity_ctl;
  1231. };
  1232. #define MAX_TID_COUNT 9
  1233. #define RTL_AGG_STOP 0
  1234. #define RTL_AGG_PROGRESS 1
  1235. #define RTL_AGG_START 2
  1236. #define RTL_AGG_OPERATIONAL 3
  1237. #define RTL_AGG_OFF 0
  1238. #define RTL_AGG_ON 1
  1239. #define RTL_RX_AGG_START 1
  1240. #define RTL_RX_AGG_STOP 0
  1241. #define RTL_AGG_EMPTYING_HW_QUEUE_ADDBA 2
  1242. #define RTL_AGG_EMPTYING_HW_QUEUE_DELBA 3
  1243. struct rtl_ht_agg {
  1244. u16 txq_id;
  1245. u16 wait_for_ba;
  1246. u16 start_idx;
  1247. u64 bitmap;
  1248. u32 rate_n_flags;
  1249. u8 agg_state;
  1250. u8 rx_agg_state;
  1251. };
  1252. struct rssi_sta {
  1253. long undec_sm_pwdb;
  1254. long undec_sm_cck;
  1255. };
  1256. struct rtl_tid_data {
  1257. struct rtl_ht_agg agg;
  1258. };
  1259. struct rtl_sta_info {
  1260. struct list_head list;
  1261. struct rtl_tid_data tids[MAX_TID_COUNT];
  1262. /* just used for ap adhoc or mesh*/
  1263. struct rssi_sta rssi_stat;
  1264. u8 rssi_level;
  1265. u16 wireless_mode;
  1266. u8 ratr_index;
  1267. u8 mimo_ps;
  1268. u8 mac_addr[ETH_ALEN];
  1269. } __packed;
  1270. struct rtl_priv;
  1271. struct rtl_io {
  1272. struct device *dev;
  1273. struct mutex bb_mutex;
  1274. /*PCI MEM map */
  1275. unsigned long pci_mem_end; /*shared mem end */
  1276. unsigned long pci_mem_start; /*shared mem start */
  1277. /*PCI IO map */
  1278. unsigned long pci_base_addr; /*device I/O address */
  1279. void (*write8_async) (struct rtl_priv *rtlpriv, u32 addr, u8 val);
  1280. void (*write16_async) (struct rtl_priv *rtlpriv, u32 addr, u16 val);
  1281. void (*write32_async) (struct rtl_priv *rtlpriv, u32 addr, u32 val);
  1282. void (*writeN_sync) (struct rtl_priv *rtlpriv, u32 addr, void *buf,
  1283. u16 len);
  1284. u8(*read8_sync) (struct rtl_priv *rtlpriv, u32 addr);
  1285. u16(*read16_sync) (struct rtl_priv *rtlpriv, u32 addr);
  1286. u32(*read32_sync) (struct rtl_priv *rtlpriv, u32 addr);
  1287. };
  1288. struct rtl_mac {
  1289. u8 mac_addr[ETH_ALEN];
  1290. u8 mac80211_registered;
  1291. u8 beacon_enabled;
  1292. u32 tx_ss_num;
  1293. u32 rx_ss_num;
  1294. struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
  1295. struct ieee80211_hw *hw;
  1296. struct ieee80211_vif *vif;
  1297. enum nl80211_iftype opmode;
  1298. /*Probe Beacon management */
  1299. struct rtl_tid_data tids[MAX_TID_COUNT];
  1300. enum rtl_link_state link_state;
  1301. int n_channels;
  1302. int n_bitrates;
  1303. bool offchan_delay;
  1304. u8 p2p; /*using p2p role*/
  1305. bool p2p_in_use;
  1306. /*filters */
  1307. u32 rx_conf;
  1308. u16 rx_mgt_filter;
  1309. u16 rx_ctrl_filter;
  1310. u16 rx_data_filter;
  1311. bool act_scanning;
  1312. u8 cnt_after_linked;
  1313. bool skip_scan;
  1314. /* early mode */
  1315. /* skb wait queue */
  1316. struct sk_buff_head skb_waitq[MAX_TID_COUNT];
  1317. u8 ht_stbc_cap;
  1318. u8 ht_cur_stbc;
  1319. /*vht support*/
  1320. u8 vht_enable;
  1321. u8 bw_80;
  1322. u8 vht_cur_ldpc;
  1323. u8 vht_cur_stbc;
  1324. u8 vht_stbc_cap;
  1325. u8 vht_ldpc_cap;
  1326. /*RDG*/
  1327. bool rdg_en;
  1328. /*AP*/
  1329. u8 bssid[ETH_ALEN] __aligned(2);
  1330. u32 vendor;
  1331. u8 mcs[16]; /* 16 bytes mcs for HT rates. */
  1332. u32 basic_rates; /* b/g rates */
  1333. u8 ht_enable;
  1334. u8 sgi_40;
  1335. u8 sgi_20;
  1336. u8 bw_40;
  1337. u16 mode; /* wireless mode */
  1338. u8 slot_time;
  1339. u8 short_preamble;
  1340. u8 use_cts_protect;
  1341. u8 cur_40_prime_sc;
  1342. u8 cur_40_prime_sc_bk;
  1343. u8 cur_80_prime_sc;
  1344. u64 tsf;
  1345. u8 retry_short;
  1346. u8 retry_long;
  1347. u16 assoc_id;
  1348. bool hiddenssid;
  1349. /*IBSS*/
  1350. int beacon_interval;
  1351. /*AMPDU*/
  1352. u8 min_space_cfg; /*For Min spacing configurations */
  1353. u8 max_mss_density;
  1354. u8 current_ampdu_factor;
  1355. u8 current_ampdu_density;
  1356. /*QOS & EDCA */
  1357. struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE];
  1358. struct rtl_qos_parameters ac[AC_MAX];
  1359. /* counters */
  1360. u64 last_txok_cnt;
  1361. u64 last_rxok_cnt;
  1362. u32 last_bt_edca_ul;
  1363. u32 last_bt_edca_dl;
  1364. };
  1365. struct btdm_8723 {
  1366. bool all_off;
  1367. bool agc_table_en;
  1368. bool adc_back_off_on;
  1369. bool b2_ant_hid_en;
  1370. bool low_penalty_rate_adaptive;
  1371. bool rf_rx_lpf_shrink;
  1372. bool reject_aggre_pkt;
  1373. bool tra_tdma_on;
  1374. u8 tra_tdma_nav;
  1375. u8 tra_tdma_ant;
  1376. bool tdma_on;
  1377. u8 tdma_ant;
  1378. u8 tdma_nav;
  1379. u8 tdma_dac_swing;
  1380. u8 fw_dac_swing_lvl;
  1381. bool ps_tdma_on;
  1382. u8 ps_tdma_byte[5];
  1383. bool pta_on;
  1384. u32 val_0x6c0;
  1385. u32 val_0x6c8;
  1386. u32 val_0x6cc;
  1387. bool sw_dac_swing_on;
  1388. u32 sw_dac_swing_lvl;
  1389. u32 wlan_act_hi;
  1390. u32 wlan_act_lo;
  1391. u32 bt_retry_index;
  1392. bool dec_bt_pwr;
  1393. bool ignore_wlan_act;
  1394. };
  1395. struct bt_coexist_8723 {
  1396. u32 high_priority_tx;
  1397. u32 high_priority_rx;
  1398. u32 low_priority_tx;
  1399. u32 low_priority_rx;
  1400. u8 c2h_bt_info;
  1401. bool c2h_bt_info_req_sent;
  1402. bool c2h_bt_inquiry_page;
  1403. u32 bt_inq_page_start_time;
  1404. u8 bt_retry_cnt;
  1405. u8 c2h_bt_info_original;
  1406. u8 bt_inquiry_page_cnt;
  1407. struct btdm_8723 btdm;
  1408. };
  1409. struct rtl_hal {
  1410. struct ieee80211_hw *hw;
  1411. bool driver_is_goingto_unload;
  1412. bool up_first_time;
  1413. bool first_init;
  1414. bool being_init_adapter;
  1415. bool bbrf_ready;
  1416. bool mac_func_enable;
  1417. bool pre_edcca_enable;
  1418. struct bt_coexist_8723 hal_coex_8723;
  1419. enum intf_type interface;
  1420. u16 hw_type; /*92c or 92d or 92s and so on */
  1421. u8 ic_class;
  1422. u8 oem_id;
  1423. u32 version; /*version of chip */
  1424. u8 state; /*stop 0, start 1 */
  1425. u8 board_type;
  1426. u8 package_type;
  1427. u8 external_pa;
  1428. u8 pa_mode;
  1429. u8 pa_type_2g;
  1430. u8 pa_type_5g;
  1431. u8 lna_type_2g;
  1432. u8 lna_type_5g;
  1433. u8 external_pa_2g;
  1434. u8 external_lna_2g;
  1435. u8 external_pa_5g;
  1436. u8 external_lna_5g;
  1437. u8 type_glna;
  1438. u8 type_gpa;
  1439. u8 type_alna;
  1440. u8 type_apa;
  1441. u8 rfe_type;
  1442. /*firmware */
  1443. u32 fwsize;
  1444. u8 *pfirmware;
  1445. u16 fw_version;
  1446. u16 fw_subversion;
  1447. bool h2c_setinprogress;
  1448. u8 last_hmeboxnum;
  1449. bool fw_ready;
  1450. /*Reserve page start offset except beacon in TxQ. */
  1451. u8 fw_rsvdpage_startoffset;
  1452. u8 h2c_txcmd_seq;
  1453. u8 current_ra_rate;
  1454. /* FW Cmd IO related */
  1455. u16 fwcmd_iomap;
  1456. u32 fwcmd_ioparam;
  1457. bool set_fwcmd_inprogress;
  1458. u8 current_fwcmd_io;
  1459. struct p2p_ps_offload_t p2p_ps_offload;
  1460. bool fw_clk_change_in_progress;
  1461. bool allow_sw_to_change_hwclc;
  1462. u8 fw_ps_state;
  1463. /**/
  1464. bool driver_going2unload;
  1465. /*AMPDU init min space*/
  1466. u8 minspace_cfg; /*For Min spacing configurations */
  1467. /* Dual mac */
  1468. enum macphy_mode macphymode;
  1469. enum band_type current_bandtype; /* 0:2.4G, 1:5G */
  1470. enum band_type current_bandtypebackup;
  1471. enum band_type bandset;
  1472. /* dual MAC 0--Mac0 1--Mac1 */
  1473. u32 interfaceindex;
  1474. /* just for DualMac S3S4 */
  1475. u8 macphyctl_reg;
  1476. bool earlymode_enable;
  1477. u8 max_earlymode_num;
  1478. /* Dual mac*/
  1479. bool during_mac0init_radiob;
  1480. bool during_mac1init_radioa;
  1481. bool reloadtxpowerindex;
  1482. /* True if IMR or IQK have done
  1483. for 2.4G in scan progress */
  1484. bool load_imrandiqk_setting_for2g;
  1485. bool disable_amsdu_8k;
  1486. bool master_of_dmsp;
  1487. bool slave_of_dmsp;
  1488. u16 rx_tag;/*for 92ee*/
  1489. u8 rts_en;
  1490. /*for wowlan*/
  1491. bool wow_enable;
  1492. bool enter_pnp_sleep;
  1493. bool wake_from_pnp_sleep;
  1494. bool wow_enabled;
  1495. time64_t last_suspend_sec;
  1496. u32 wowlan_fwsize;
  1497. u8 *wowlan_firmware;
  1498. u8 hw_rof_enable; /*Enable GPIO[9] as WL RF HW PDn source*/
  1499. bool real_wow_v2_enable;
  1500. bool re_init_llt_table;
  1501. };
  1502. struct rtl_security {
  1503. /*default 0 */
  1504. bool use_sw_sec;
  1505. bool being_setkey;
  1506. bool use_defaultkey;
  1507. /*Encryption Algorithm for Unicast Packet */
  1508. enum rt_enc_alg pairwise_enc_algorithm;
  1509. /*Encryption Algorithm for Brocast/Multicast */
  1510. enum rt_enc_alg group_enc_algorithm;
  1511. /*Cam Entry Bitmap */
  1512. u32 hwsec_cam_bitmap;
  1513. u8 hwsec_cam_sta_addr[TOTAL_CAM_ENTRY][ETH_ALEN];
  1514. /*local Key buffer, indx 0 is for
  1515. pairwise key 1-4 is for agoup key. */
  1516. u8 key_buf[KEY_BUF_SIZE][MAX_KEY_LEN];
  1517. u8 key_len[KEY_BUF_SIZE];
  1518. /*The pointer of Pairwise Key,
  1519. it always points to KeyBuf[4] */
  1520. u8 *pairwise_key;
  1521. };
  1522. #define ASSOCIATE_ENTRY_NUM 33
  1523. struct fast_ant_training {
  1524. u8 bssid[6];
  1525. u8 antsel_rx_keep_0;
  1526. u8 antsel_rx_keep_1;
  1527. u8 antsel_rx_keep_2;
  1528. u32 ant_sum[7];
  1529. u32 ant_cnt[7];
  1530. u32 ant_ave[7];
  1531. u8 fat_state;
  1532. u32 train_idx;
  1533. u8 antsel_a[ASSOCIATE_ENTRY_NUM];
  1534. u8 antsel_b[ASSOCIATE_ENTRY_NUM];
  1535. u8 antsel_c[ASSOCIATE_ENTRY_NUM];
  1536. u32 main_ant_sum[ASSOCIATE_ENTRY_NUM];
  1537. u32 aux_ant_sum[ASSOCIATE_ENTRY_NUM];
  1538. u32 main_ant_cnt[ASSOCIATE_ENTRY_NUM];
  1539. u32 aux_ant_cnt[ASSOCIATE_ENTRY_NUM];
  1540. u8 rx_idle_ant;
  1541. bool becomelinked;
  1542. };
  1543. struct dm_phy_dbg_info {
  1544. s8 rx_snrdb[4];
  1545. u64 num_qry_phy_status;
  1546. u64 num_qry_phy_status_cck;
  1547. u64 num_qry_phy_status_ofdm;
  1548. u16 num_qry_beacon_pkt;
  1549. u16 num_non_be_pkt;
  1550. s32 rx_evm[4];
  1551. };
  1552. struct rtl_dm {
  1553. /*PHY status for Dynamic Management */
  1554. long entry_min_undec_sm_pwdb;
  1555. long undec_sm_cck;
  1556. long undec_sm_pwdb; /*out dm */
  1557. long entry_max_undec_sm_pwdb;
  1558. s32 ofdm_pkt_cnt;
  1559. bool dm_initialgain_enable;
  1560. bool dynamic_txpower_enable;
  1561. bool current_turbo_edca;
  1562. bool is_any_nonbepkts; /*out dm */
  1563. bool is_cur_rdlstate;
  1564. bool txpower_trackinginit;
  1565. bool disable_framebursting;
  1566. bool cck_inch14;
  1567. bool txpower_tracking;
  1568. bool useramask;
  1569. bool rfpath_rxenable[4];
  1570. bool inform_fw_driverctrldm;
  1571. bool current_mrc_switch;
  1572. u8 txpowercount;
  1573. u8 powerindex_backup[6];
  1574. u8 thermalvalue_rxgain;
  1575. u8 thermalvalue_iqk;
  1576. u8 thermalvalue_lck;
  1577. u8 thermalvalue;
  1578. u8 last_dtp_lvl;
  1579. u8 thermalvalue_avg[AVG_THERMAL_NUM];
  1580. u8 thermalvalue_avg_index;
  1581. u8 tm_trigger;
  1582. bool done_txpower;
  1583. u8 dynamic_txhighpower_lvl; /*Tx high power level */
  1584. u8 dm_flag; /*Indicate each dynamic mechanism's status. */
  1585. u8 dm_flag_tmp;
  1586. u8 dm_type;
  1587. u8 dm_rssi_sel;
  1588. u8 txpower_track_control;
  1589. bool interrupt_migration;
  1590. bool disable_tx_int;
  1591. s8 ofdm_index[MAX_RF_PATH];
  1592. u8 default_ofdm_index;
  1593. u8 default_cck_index;
  1594. s8 cck_index;
  1595. s8 delta_power_index[MAX_RF_PATH];
  1596. s8 delta_power_index_last[MAX_RF_PATH];
  1597. s8 power_index_offset[MAX_RF_PATH];
  1598. s8 absolute_ofdm_swing_idx[MAX_RF_PATH];
  1599. s8 remnant_ofdm_swing_idx[MAX_RF_PATH];
  1600. s8 remnant_cck_idx;
  1601. bool modify_txagc_flag_path_a;
  1602. bool modify_txagc_flag_path_b;
  1603. bool one_entry_only;
  1604. struct dm_phy_dbg_info dbginfo;
  1605. /* Dynamic ATC switch */
  1606. bool atc_status;
  1607. bool large_cfo_hit;
  1608. bool is_freeze;
  1609. int cfo_tail[2];
  1610. int cfo_ave_pre;
  1611. int crystal_cap;
  1612. u8 cfo_threshold;
  1613. u32 packet_count;
  1614. u32 packet_count_pre;
  1615. u8 tx_rate;
  1616. /*88e tx power tracking*/
  1617. u8 swing_idx_ofdm[MAX_RF_PATH];
  1618. u8 swing_idx_ofdm_cur;
  1619. u8 swing_idx_ofdm_base[MAX_RF_PATH];
  1620. bool swing_flag_ofdm;
  1621. u8 swing_idx_cck;
  1622. u8 swing_idx_cck_cur;
  1623. u8 swing_idx_cck_base;
  1624. bool swing_flag_cck;
  1625. s8 swing_diff_2g;
  1626. s8 swing_diff_5g;
  1627. /* DMSP */
  1628. bool supp_phymode_switch;
  1629. /* DulMac */
  1630. struct fast_ant_training fat_table;
  1631. u8 resp_tx_path;
  1632. u8 path_sel;
  1633. u32 patha_sum;
  1634. u32 pathb_sum;
  1635. u32 patha_cnt;
  1636. u32 pathb_cnt;
  1637. u8 pre_channel;
  1638. u8 *p_channel;
  1639. u8 linked_interval;
  1640. u64 last_tx_ok_cnt;
  1641. u64 last_rx_ok_cnt;
  1642. };
  1643. #define EFUSE_MAX_LOGICAL_SIZE 512
  1644. struct rtl_efuse {
  1645. const struct rtl_efuse_ops *efuse_ops;
  1646. bool autoLoad_ok;
  1647. bool bootfromefuse;
  1648. u16 max_physical_size;
  1649. u8 efuse_map[2][EFUSE_MAX_LOGICAL_SIZE];
  1650. u16 efuse_usedbytes;
  1651. u8 efuse_usedpercentage;
  1652. #ifdef EFUSE_REPG_WORKAROUND
  1653. bool efuse_re_pg_sec1flag;
  1654. u8 efuse_re_pg_data[8];
  1655. #endif
  1656. u8 autoload_failflag;
  1657. u8 autoload_status;
  1658. short epromtype;
  1659. u16 eeprom_vid;
  1660. u16 eeprom_did;
  1661. u16 eeprom_svid;
  1662. u16 eeprom_smid;
  1663. u8 eeprom_oemid;
  1664. u16 eeprom_channelplan;
  1665. u8 eeprom_version;
  1666. u8 board_type;
  1667. u8 external_pa;
  1668. u8 dev_addr[6];
  1669. u8 wowlan_enable;
  1670. u8 antenna_div_cfg;
  1671. u8 antenna_div_type;
  1672. bool txpwr_fromeprom;
  1673. u8 eeprom_crystalcap;
  1674. u8 eeprom_tssi[2];
  1675. u8 eeprom_tssi_5g[3][2]; /* for 5GL/5GM/5GH band. */
  1676. u8 eeprom_pwrlimit_ht20[CHANNEL_GROUP_MAX];
  1677. u8 eeprom_pwrlimit_ht40[CHANNEL_GROUP_MAX];
  1678. u8 eeprom_chnlarea_txpwr_cck[MAX_RF_PATH][CHANNEL_GROUP_MAX_2G];
  1679. u8 eeprom_chnlarea_txpwr_ht40_1s[MAX_RF_PATH][CHANNEL_GROUP_MAX];
  1680. u8 eprom_chnl_txpwr_ht40_2sdf[MAX_RF_PATH][CHANNEL_GROUP_MAX];
  1681. u8 internal_pa_5g[2]; /* pathA / pathB */
  1682. u8 eeprom_c9;
  1683. u8 eeprom_cc;
  1684. /*For power group */
  1685. u8 eeprom_pwrgroup[2][3];
  1686. u8 pwrgroup_ht20[2][CHANNEL_MAX_NUMBER];
  1687. u8 pwrgroup_ht40[2][CHANNEL_MAX_NUMBER];
  1688. u8 txpwrlevel_cck[MAX_RF_PATH][CHANNEL_MAX_NUMBER_2G];
  1689. /*For HT 40MHZ pwr */
  1690. u8 txpwrlevel_ht40_1s[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1691. /*For HT 40MHZ pwr */
  1692. u8 txpwrlevel_ht40_2s[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1693. /*--------------------------------------------------------*
  1694. * 8192CE\8192SE\8192DE\8723AE use the following 4 arrays,
  1695. * other ICs (8188EE\8723BE\8192EE\8812AE...)
  1696. * define new arrays in Windows code.
  1697. * BUT, in linux code, we use the same array for all ICs.
  1698. *
  1699. * The Correspondance relation between two arrays is:
  1700. * txpwr_cckdiff[][] == CCK_24G_Diff[][]
  1701. * txpwr_ht20diff[][] == BW20_24G_Diff[][]
  1702. * txpwr_ht40diff[][] == BW40_24G_Diff[][]
  1703. * txpwr_legacyhtdiff[][] == OFDM_24G_Diff[][]
  1704. *
  1705. * Sizes of these arrays are decided by the larger ones.
  1706. */
  1707. s8 txpwr_cckdiff[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1708. s8 txpwr_ht20diff[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1709. s8 txpwr_ht40diff[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1710. s8 txpwr_legacyhtdiff[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1711. u8 txpwr_5g_bw40base[MAX_RF_PATH][CHANNEL_MAX_NUMBER];
  1712. u8 txpwr_5g_bw80base[MAX_RF_PATH][CHANNEL_MAX_NUMBER_5G_80M];
  1713. s8 txpwr_5g_ofdmdiff[MAX_RF_PATH][MAX_TX_COUNT];
  1714. s8 txpwr_5g_bw20diff[MAX_RF_PATH][MAX_TX_COUNT];
  1715. s8 txpwr_5g_bw40diff[MAX_RF_PATH][MAX_TX_COUNT];
  1716. s8 txpwr_5g_bw80diff[MAX_RF_PATH][MAX_TX_COUNT];
  1717. u8 txpwr_safetyflag; /* Band edge enable flag */
  1718. u16 eeprom_txpowerdiff;
  1719. u8 legacy_httxpowerdiff; /* Legacy to HT rate power diff */
  1720. u8 antenna_txpwdiff[3];
  1721. u8 eeprom_regulatory;
  1722. u8 eeprom_thermalmeter;
  1723. u8 thermalmeter[2]; /*ThermalMeter, index 0 for RFIC0, 1 for RFIC1 */
  1724. u16 tssi_13dbm;
  1725. u8 crystalcap; /* CrystalCap. */
  1726. u8 delta_iqk;
  1727. u8 delta_lck;
  1728. u8 legacy_ht_txpowerdiff; /*Legacy to HT rate power diff */
  1729. bool apk_thermalmeterignore;
  1730. bool b1x1_recvcombine;
  1731. bool b1ss_support;
  1732. /*channel plan */
  1733. u8 channel_plan;
  1734. };
  1735. struct rtl_efuse_ops {
  1736. int (*efuse_onebyte_read)(struct ieee80211_hw *hw, u16 addr, u8 *data);
  1737. void (*efuse_logical_map_read)(struct ieee80211_hw *hw, u8 type,
  1738. u16 offset, u32 *value);
  1739. };
  1740. struct rtl_tx_report {
  1741. atomic_t sn;
  1742. u16 last_sent_sn;
  1743. unsigned long last_sent_time;
  1744. u16 last_recv_sn;
  1745. };
  1746. struct rtl_ps_ctl {
  1747. bool pwrdomain_protect;
  1748. bool in_powersavemode;
  1749. bool rfchange_inprogress;
  1750. bool swrf_processing;
  1751. bool hwradiooff;
  1752. /*
  1753. * just for PCIE ASPM
  1754. * If it supports ASPM, Offset[560h] = 0x40,
  1755. * otherwise Offset[560h] = 0x00.
  1756. * */
  1757. bool support_aspm;
  1758. bool support_backdoor;
  1759. /*for LPS */
  1760. enum rt_psmode dot11_psmode; /*Power save mode configured. */
  1761. bool swctrl_lps;
  1762. bool leisure_ps;
  1763. bool fwctrl_lps;
  1764. u8 fwctrl_psmode;
  1765. /*For Fw control LPS mode */
  1766. u8 reg_fwctrl_lps;
  1767. /*Record Fw PS mode status. */
  1768. bool fw_current_inpsmode;
  1769. u8 reg_max_lps_awakeintvl;
  1770. bool report_linked;
  1771. bool low_power_enable;/*for 32k*/
  1772. /*for IPS */
  1773. bool inactiveps;
  1774. u32 rfoff_reason;
  1775. /*RF OFF Level */
  1776. u32 cur_ps_level;
  1777. u32 reg_rfps_level;
  1778. /*just for PCIE ASPM */
  1779. u8 const_amdpci_aspm;
  1780. bool pwrdown_mode;
  1781. enum rf_pwrstate inactive_pwrstate;
  1782. enum rf_pwrstate rfpwr_state; /*cur power state */
  1783. /* for SW LPS*/
  1784. bool sw_ps_enabled;
  1785. bool state;
  1786. bool state_inap;
  1787. bool multi_buffered;
  1788. u16 nullfunc_seq;
  1789. unsigned int dtim_counter;
  1790. unsigned int sleep_ms;
  1791. unsigned long last_sleep_jiffies;
  1792. unsigned long last_awake_jiffies;
  1793. unsigned long last_delaylps_stamp_jiffies;
  1794. unsigned long last_dtim;
  1795. unsigned long last_beacon;
  1796. unsigned long last_action;
  1797. unsigned long last_slept;
  1798. /*For P2P PS */
  1799. struct rtl_p2p_ps_info p2p_ps_info;
  1800. u8 pwr_mode;
  1801. u8 smart_ps;
  1802. /* wake up on line */
  1803. u8 wo_wlan_mode;
  1804. u8 arp_offload_enable;
  1805. u8 gtk_offload_enable;
  1806. /* Used for WOL, indicates the reason for waking event.*/
  1807. u32 wakeup_reason;
  1808. };
  1809. struct rtl_stats {
  1810. u8 psaddr[ETH_ALEN];
  1811. u32 mac_time[2];
  1812. s8 rssi;
  1813. u8 signal;
  1814. u8 noise;
  1815. u8 rate; /* hw desc rate */
  1816. u8 received_channel;
  1817. u8 control;
  1818. u8 mask;
  1819. u8 freq;
  1820. u16 len;
  1821. u64 tsf;
  1822. u32 beacon_time;
  1823. u8 nic_type;
  1824. u16 length;
  1825. u8 signalquality; /*in 0-100 index. */
  1826. /*
  1827. * Real power in dBm for this packet,
  1828. * no beautification and aggregation.
  1829. * */
  1830. s32 recvsignalpower;
  1831. s8 rxpower; /*in dBm Translate from PWdB */
  1832. u8 signalstrength; /*in 0-100 index. */
  1833. u16 hwerror:1;
  1834. u16 crc:1;
  1835. u16 icv:1;
  1836. u16 shortpreamble:1;
  1837. u16 antenna:1;
  1838. u16 decrypted:1;
  1839. u16 wakeup:1;
  1840. u32 timestamp_low;
  1841. u32 timestamp_high;
  1842. bool shift;
  1843. u8 rx_drvinfo_size;
  1844. u8 rx_bufshift;
  1845. bool isampdu;
  1846. bool isfirst_ampdu;
  1847. bool rx_is40Mhzpacket;
  1848. u8 rx_packet_bw;
  1849. u32 rx_pwdb_all;
  1850. u8 rx_mimo_signalstrength[4]; /*in 0~100 index */
  1851. s8 rx_mimo_signalquality[4];
  1852. u8 rx_mimo_evm_dbm[4];
  1853. u16 cfo_short[4]; /* per-path's Cfo_short */
  1854. u16 cfo_tail[4];
  1855. s8 rx_mimo_sig_qual[4];
  1856. u8 rx_pwr[4]; /* per-path's pwdb */
  1857. u8 rx_snr[4]; /* per-path's SNR */
  1858. u8 bandwidth;
  1859. u8 bt_coex_pwr_adjust;
  1860. bool packet_matchbssid;
  1861. bool is_cck;
  1862. bool is_ht;
  1863. bool packet_toself;
  1864. bool packet_beacon; /*for rssi */
  1865. s8 cck_adc_pwdb[4]; /*for rx path selection */
  1866. bool is_vht;
  1867. bool is_short_gi;
  1868. u8 vht_nss;
  1869. u8 packet_report_type;
  1870. u32 macid;
  1871. u8 wake_match;
  1872. u32 bt_rx_rssi_percentage;
  1873. u32 macid_valid_entry[2];
  1874. };
  1875. struct rt_link_detect {
  1876. /* count for roaming */
  1877. u32 bcn_rx_inperiod;
  1878. u32 roam_times;
  1879. u32 num_tx_in4period[4];
  1880. u32 num_rx_in4period[4];
  1881. u32 num_tx_inperiod;
  1882. u32 num_rx_inperiod;
  1883. bool busytraffic;
  1884. bool tx_busy_traffic;
  1885. bool rx_busy_traffic;
  1886. bool higher_busytraffic;
  1887. bool higher_busyrxtraffic;
  1888. u32 tidtx_in4period[MAX_TID_COUNT][4];
  1889. u32 tidtx_inperiod[MAX_TID_COUNT];
  1890. bool higher_busytxtraffic[MAX_TID_COUNT];
  1891. };
  1892. struct rtl_tcb_desc {
  1893. u8 packet_bw:2;
  1894. u8 multicast:1;
  1895. u8 broadcast:1;
  1896. u8 rts_stbc:1;
  1897. u8 rts_enable:1;
  1898. u8 cts_enable:1;
  1899. u8 rts_use_shortpreamble:1;
  1900. u8 rts_use_shortgi:1;
  1901. u8 rts_sc:1;
  1902. u8 rts_bw:1;
  1903. u8 rts_rate;
  1904. u8 use_shortgi:1;
  1905. u8 use_shortpreamble:1;
  1906. u8 use_driver_rate:1;
  1907. u8 disable_ratefallback:1;
  1908. u8 use_spe_rpt:1;
  1909. u8 ratr_index;
  1910. u8 mac_id;
  1911. u8 hw_rate;
  1912. u8 last_inipkt:1;
  1913. u8 cmd_or_init:1;
  1914. u8 queue_index;
  1915. /* early mode */
  1916. u8 empkt_num;
  1917. /* The max value by HW */
  1918. u32 empkt_len[10];
  1919. bool tx_enable_sw_calc_duration;
  1920. };
  1921. struct rtl_wow_pattern {
  1922. u8 type;
  1923. u16 crc;
  1924. u32 mask[4];
  1925. };
  1926. /* struct to store contents of interrupt vectors */
  1927. struct rtl_int {
  1928. u32 inta;
  1929. u32 intb;
  1930. u32 intc;
  1931. u32 intd;
  1932. };
  1933. struct rtl_hal_ops {
  1934. int (*init_sw_vars) (struct ieee80211_hw *hw);
  1935. void (*deinit_sw_vars) (struct ieee80211_hw *hw);
  1936. void (*read_chip_version)(struct ieee80211_hw *hw);
  1937. void (*read_eeprom_info) (struct ieee80211_hw *hw);
  1938. void (*interrupt_recognized) (struct ieee80211_hw *hw,
  1939. struct rtl_int *intvec);
  1940. int (*hw_init) (struct ieee80211_hw *hw);
  1941. void (*hw_disable) (struct ieee80211_hw *hw);
  1942. void (*hw_suspend) (struct ieee80211_hw *hw);
  1943. void (*hw_resume) (struct ieee80211_hw *hw);
  1944. void (*enable_interrupt) (struct ieee80211_hw *hw);
  1945. void (*disable_interrupt) (struct ieee80211_hw *hw);
  1946. int (*set_network_type) (struct ieee80211_hw *hw,
  1947. enum nl80211_iftype type);
  1948. void (*set_chk_bssid)(struct ieee80211_hw *hw,
  1949. bool check_bssid);
  1950. void (*set_bw_mode) (struct ieee80211_hw *hw,
  1951. enum nl80211_channel_type ch_type);
  1952. u8(*switch_channel) (struct ieee80211_hw *hw);
  1953. void (*set_qos) (struct ieee80211_hw *hw, int aci);
  1954. void (*set_bcn_reg) (struct ieee80211_hw *hw);
  1955. void (*set_bcn_intv) (struct ieee80211_hw *hw);
  1956. void (*update_interrupt_mask) (struct ieee80211_hw *hw,
  1957. u32 add_msr, u32 rm_msr);
  1958. void (*get_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val);
  1959. void (*set_hw_reg) (struct ieee80211_hw *hw, u8 variable, u8 *val);
  1960. void (*update_rate_tbl) (struct ieee80211_hw *hw,
  1961. struct ieee80211_sta *sta, u8 rssi_leve,
  1962. bool update_bw);
  1963. void (*pre_fill_tx_bd_desc)(struct ieee80211_hw *hw, u8 *tx_bd_desc,
  1964. u8 *desc, u8 queue_index,
  1965. struct sk_buff *skb, dma_addr_t addr);
  1966. void (*update_rate_mask) (struct ieee80211_hw *hw, u8 rssi_level);
  1967. u16 (*rx_desc_buff_remained_cnt)(struct ieee80211_hw *hw,
  1968. u8 queue_index);
  1969. void (*rx_check_dma_ok)(struct ieee80211_hw *hw, u8 *header_desc,
  1970. u8 queue_index);
  1971. void (*fill_tx_desc) (struct ieee80211_hw *hw,
  1972. struct ieee80211_hdr *hdr, u8 *pdesc_tx,
  1973. u8 *pbd_desc_tx,
  1974. struct ieee80211_tx_info *info,
  1975. struct ieee80211_sta *sta,
  1976. struct sk_buff *skb, u8 hw_queue,
  1977. struct rtl_tcb_desc *ptcb_desc);
  1978. void (*fill_fake_txdesc) (struct ieee80211_hw *hw, u8 *pDesc,
  1979. u32 buffer_len, bool bIsPsPoll);
  1980. void (*fill_tx_cmddesc) (struct ieee80211_hw *hw, u8 *pdesc,
  1981. bool firstseg, bool lastseg,
  1982. struct sk_buff *skb);
  1983. void (*fill_tx_special_desc)(struct ieee80211_hw *hw,
  1984. u8 *pdesc, u8 *pbd_desc,
  1985. struct sk_buff *skb, u8 hw_queue);
  1986. bool (*query_rx_desc) (struct ieee80211_hw *hw,
  1987. struct rtl_stats *stats,
  1988. struct ieee80211_rx_status *rx_status,
  1989. u8 *pdesc, struct sk_buff *skb);
  1990. void (*set_channel_access) (struct ieee80211_hw *hw);
  1991. bool (*radio_onoff_checking) (struct ieee80211_hw *hw, u8 *valid);
  1992. void (*dm_watchdog) (struct ieee80211_hw *hw);
  1993. void (*scan_operation_backup) (struct ieee80211_hw *hw, u8 operation);
  1994. bool (*set_rf_power_state) (struct ieee80211_hw *hw,
  1995. enum rf_pwrstate rfpwr_state);
  1996. void (*led_control) (struct ieee80211_hw *hw,
  1997. enum led_ctl_mode ledaction);
  1998. void (*set_desc)(struct ieee80211_hw *hw, u8 *pdesc, bool istx,
  1999. u8 desc_name, u8 *val);
  2000. u64 (*get_desc)(struct ieee80211_hw *hw, u8 *pdesc, bool istx,
  2001. u8 desc_name);
  2002. bool (*is_tx_desc_closed) (struct ieee80211_hw *hw,
  2003. u8 hw_queue, u16 index);
  2004. void (*tx_polling) (struct ieee80211_hw *hw, u8 hw_queue);
  2005. void (*enable_hw_sec) (struct ieee80211_hw *hw);
  2006. void (*set_key) (struct ieee80211_hw *hw, u32 key_index,
  2007. u8 *macaddr, bool is_group, u8 enc_algo,
  2008. bool is_wepkey, bool clear_all);
  2009. void (*init_sw_leds) (struct ieee80211_hw *hw);
  2010. void (*deinit_sw_leds) (struct ieee80211_hw *hw);
  2011. u32 (*get_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
  2012. void (*set_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
  2013. u32 data);
  2014. u32 (*get_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath,
  2015. u32 regaddr, u32 bitmask);
  2016. void (*set_rfreg) (struct ieee80211_hw *hw, enum radio_path rfpath,
  2017. u32 regaddr, u32 bitmask, u32 data);
  2018. void (*linked_set_reg) (struct ieee80211_hw *hw);
  2019. void (*chk_switch_dmdp) (struct ieee80211_hw *hw);
  2020. void (*dualmac_easy_concurrent) (struct ieee80211_hw *hw);
  2021. void (*dualmac_switch_to_dmdp) (struct ieee80211_hw *hw);
  2022. bool (*phy_rf6052_config) (struct ieee80211_hw *hw);
  2023. void (*phy_rf6052_set_cck_txpower) (struct ieee80211_hw *hw,
  2024. u8 *powerlevel);
  2025. void (*phy_rf6052_set_ofdm_txpower) (struct ieee80211_hw *hw,
  2026. u8 *ppowerlevel, u8 channel);
  2027. bool (*config_bb_with_headerfile) (struct ieee80211_hw *hw,
  2028. u8 configtype);
  2029. bool (*config_bb_with_pgheaderfile) (struct ieee80211_hw *hw,
  2030. u8 configtype);
  2031. void (*phy_lc_calibrate) (struct ieee80211_hw *hw, bool is2t);
  2032. void (*phy_set_bw_mode_callback) (struct ieee80211_hw *hw);
  2033. void (*dm_dynamic_txpower) (struct ieee80211_hw *hw);
  2034. void (*c2h_command_handle) (struct ieee80211_hw *hw);
  2035. void (*bt_wifi_media_status_notify) (struct ieee80211_hw *hw,
  2036. bool mstate);
  2037. void (*bt_coex_off_before_lps) (struct ieee80211_hw *hw);
  2038. void (*fill_h2c_cmd) (struct ieee80211_hw *hw, u8 element_id,
  2039. u32 cmd_len, u8 *p_cmdbuffer);
  2040. void (*set_default_port_id_cmd)(struct ieee80211_hw *hw);
  2041. bool (*get_btc_status) (void);
  2042. bool (*is_fw_header)(struct rtlwifi_firmware_header *hdr);
  2043. u32 (*rx_command_packet)(struct ieee80211_hw *hw,
  2044. const struct rtl_stats *status, struct sk_buff *skb);
  2045. void (*add_wowlan_pattern)(struct ieee80211_hw *hw,
  2046. struct rtl_wow_pattern *rtl_pattern,
  2047. u8 index);
  2048. u16 (*get_available_desc)(struct ieee80211_hw *hw, u8 q_idx);
  2049. void (*c2h_content_parsing)(struct ieee80211_hw *hw, u8 tag, u8 len,
  2050. u8 *val);
  2051. };
  2052. struct rtl_intf_ops {
  2053. /*com */
  2054. void (*read_efuse_byte)(struct ieee80211_hw *hw, u16 _offset, u8 *pbuf);
  2055. int (*adapter_start) (struct ieee80211_hw *hw);
  2056. void (*adapter_stop) (struct ieee80211_hw *hw);
  2057. bool (*check_buddy_priv)(struct ieee80211_hw *hw,
  2058. struct rtl_priv **buddy_priv);
  2059. int (*adapter_tx) (struct ieee80211_hw *hw,
  2060. struct ieee80211_sta *sta,
  2061. struct sk_buff *skb,
  2062. struct rtl_tcb_desc *ptcb_desc);
  2063. void (*flush)(struct ieee80211_hw *hw, u32 queues, bool drop);
  2064. int (*reset_trx_ring) (struct ieee80211_hw *hw);
  2065. bool (*waitq_insert) (struct ieee80211_hw *hw,
  2066. struct ieee80211_sta *sta,
  2067. struct sk_buff *skb);
  2068. /*pci */
  2069. void (*disable_aspm) (struct ieee80211_hw *hw);
  2070. void (*enable_aspm) (struct ieee80211_hw *hw);
  2071. /*usb */
  2072. };
  2073. struct rtl_mod_params {
  2074. /* default: 0,0 */
  2075. u64 debug_mask;
  2076. /* default: 0 = using hardware encryption */
  2077. bool sw_crypto;
  2078. /* default: 0 = DBG_EMERG (0)*/
  2079. int debug_level;
  2080. /* default: 1 = using no linked power save */
  2081. bool inactiveps;
  2082. /* default: 1 = using linked sw power save */
  2083. bool swctrl_lps;
  2084. /* default: 1 = using linked fw power save */
  2085. bool fwctrl_lps;
  2086. /* default: 0 = not using MSI interrupts mode
  2087. * submodules should set their own default value
  2088. */
  2089. bool msi_support;
  2090. /* default: 0 = dma 32 */
  2091. bool dma64;
  2092. /* default: 1 = enable aspm */
  2093. int aspm_support;
  2094. /* default 0: 1 means disable */
  2095. bool disable_watchdog;
  2096. /* default 0: 1 means do not disable interrupts */
  2097. bool int_clear;
  2098. /* select antenna */
  2099. int ant_sel;
  2100. };
  2101. struct rtl_hal_usbint_cfg {
  2102. /* data - rx */
  2103. u32 in_ep_num;
  2104. u32 rx_urb_num;
  2105. u32 rx_max_size;
  2106. /* op - rx */
  2107. void (*usb_rx_hdl)(struct ieee80211_hw *, struct sk_buff *);
  2108. void (*usb_rx_segregate_hdl)(struct ieee80211_hw *, struct sk_buff *,
  2109. struct sk_buff_head *);
  2110. /* tx */
  2111. void (*usb_tx_cleanup)(struct ieee80211_hw *, struct sk_buff *);
  2112. int (*usb_tx_post_hdl)(struct ieee80211_hw *, struct urb *,
  2113. struct sk_buff *);
  2114. struct sk_buff *(*usb_tx_aggregate_hdl)(struct ieee80211_hw *,
  2115. struct sk_buff_head *);
  2116. /* endpoint mapping */
  2117. int (*usb_endpoint_mapping)(struct ieee80211_hw *hw);
  2118. u16 (*usb_mq_to_hwq)(__le16 fc, u16 mac80211_queue_index);
  2119. };
  2120. struct rtl_hal_cfg {
  2121. u8 bar_id;
  2122. bool write_readback;
  2123. char *name;
  2124. char *alt_fw_name;
  2125. struct rtl_hal_ops *ops;
  2126. struct rtl_mod_params *mod_params;
  2127. struct rtl_hal_usbint_cfg *usb_interface_cfg;
  2128. enum rtl_spec_ver spec_ver;
  2129. /*this map used for some registers or vars
  2130. defined int HAL but used in MAIN */
  2131. u32 maps[RTL_VAR_MAP_MAX];
  2132. };
  2133. struct rtl_locks {
  2134. /* mutex */
  2135. struct mutex conf_mutex;
  2136. struct mutex ips_mutex; /* mutex for enter/leave IPS */
  2137. struct mutex lps_mutex; /* mutex for enter/leave LPS */
  2138. /*spin lock */
  2139. spinlock_t irq_th_lock;
  2140. spinlock_t h2c_lock;
  2141. spinlock_t rf_ps_lock;
  2142. spinlock_t rf_lock;
  2143. spinlock_t waitq_lock;
  2144. spinlock_t entry_list_lock;
  2145. spinlock_t usb_lock;
  2146. spinlock_t c2hcmd_lock;
  2147. spinlock_t scan_list_lock; /* lock for the scan list */
  2148. /*FW clock change */
  2149. spinlock_t fw_ps_lock;
  2150. /*Dual mac*/
  2151. spinlock_t cck_and_rw_pagea_lock;
  2152. spinlock_t iqk_lock;
  2153. };
  2154. struct rtl_works {
  2155. struct ieee80211_hw *hw;
  2156. /*timer */
  2157. struct timer_list watchdog_timer;
  2158. struct timer_list dualmac_easyconcurrent_retrytimer;
  2159. struct timer_list fw_clockoff_timer;
  2160. struct timer_list fast_antenna_training_timer;
  2161. /*task */
  2162. struct tasklet_struct irq_tasklet;
  2163. struct tasklet_struct irq_prepare_bcn_tasklet;
  2164. /*work queue */
  2165. struct workqueue_struct *rtl_wq;
  2166. struct delayed_work watchdog_wq;
  2167. struct delayed_work ips_nic_off_wq;
  2168. struct delayed_work c2hcmd_wq;
  2169. /* For SW LPS */
  2170. struct delayed_work ps_work;
  2171. struct delayed_work ps_rfon_wq;
  2172. struct delayed_work fwevt_wq;
  2173. struct work_struct lps_change_work;
  2174. struct work_struct fill_h2c_cmd;
  2175. };
  2176. struct rtl_debug {
  2177. /* add for debug */
  2178. struct dentry *debugfs_dir;
  2179. char debugfs_name[20];
  2180. };
  2181. #define MIMO_PS_STATIC 0
  2182. #define MIMO_PS_DYNAMIC 1
  2183. #define MIMO_PS_NOLIMIT 3
  2184. struct rtl_dualmac_easy_concurrent_ctl {
  2185. enum band_type currentbandtype_backfordmdp;
  2186. bool close_bbandrf_for_dmsp;
  2187. bool change_to_dmdp;
  2188. bool change_to_dmsp;
  2189. bool switch_in_process;
  2190. };
  2191. struct rtl_dmsp_ctl {
  2192. bool activescan_for_slaveofdmsp;
  2193. bool scan_for_anothermac_fordmsp;
  2194. bool scan_for_itself_fordmsp;
  2195. bool writedig_for_anothermacofdmsp;
  2196. u32 curdigvalue_for_anothermacofdmsp;
  2197. bool changecckpdstate_for_anothermacofdmsp;
  2198. u8 curcckpdstate_for_anothermacofdmsp;
  2199. bool changetxhighpowerlvl_for_anothermacofdmsp;
  2200. u8 curtxhighlvl_for_anothermacofdmsp;
  2201. long rssivalmin_for_anothermacofdmsp;
  2202. };
  2203. struct ps_t {
  2204. u8 pre_ccastate;
  2205. u8 cur_ccasate;
  2206. u8 pre_rfstate;
  2207. u8 cur_rfstate;
  2208. u8 initialize;
  2209. long rssi_val_min;
  2210. };
  2211. struct dig_t {
  2212. u32 rssi_lowthresh;
  2213. u32 rssi_highthresh;
  2214. u32 fa_lowthresh;
  2215. u32 fa_highthresh;
  2216. long last_min_undec_pwdb_for_dm;
  2217. long rssi_highpower_lowthresh;
  2218. long rssi_highpower_highthresh;
  2219. u32 recover_cnt;
  2220. u32 pre_igvalue;
  2221. u32 cur_igvalue;
  2222. long rssi_val;
  2223. u8 dig_enable_flag;
  2224. u8 dig_ext_port_stage;
  2225. u8 dig_algorithm;
  2226. u8 dig_twoport_algorithm;
  2227. u8 dig_dbgmode;
  2228. u8 dig_slgorithm_switch;
  2229. u8 cursta_cstate;
  2230. u8 presta_cstate;
  2231. u8 curmultista_cstate;
  2232. u8 stop_dig;
  2233. s8 back_val;
  2234. s8 back_range_max;
  2235. s8 back_range_min;
  2236. u8 rx_gain_max;
  2237. u8 rx_gain_min;
  2238. u8 min_undec_pwdb_for_dm;
  2239. u8 rssi_val_min;
  2240. u8 pre_cck_cca_thres;
  2241. u8 cur_cck_cca_thres;
  2242. u8 pre_cck_pd_state;
  2243. u8 cur_cck_pd_state;
  2244. u8 pre_cck_fa_state;
  2245. u8 cur_cck_fa_state;
  2246. u8 pre_ccastate;
  2247. u8 cur_ccasate;
  2248. u8 large_fa_hit;
  2249. u8 forbidden_igi;
  2250. u8 dig_state;
  2251. u8 dig_highpwrstate;
  2252. u8 cur_sta_cstate;
  2253. u8 pre_sta_cstate;
  2254. u8 cur_ap_cstate;
  2255. u8 pre_ap_cstate;
  2256. u8 cur_pd_thstate;
  2257. u8 pre_pd_thstate;
  2258. u8 cur_cs_ratiostate;
  2259. u8 pre_cs_ratiostate;
  2260. u8 backoff_enable_flag;
  2261. s8 backoffval_range_max;
  2262. s8 backoffval_range_min;
  2263. u8 dig_min_0;
  2264. u8 dig_min_1;
  2265. u8 bt30_cur_igi;
  2266. bool media_connect_0;
  2267. bool media_connect_1;
  2268. u32 antdiv_rssi_max;
  2269. u32 rssi_max;
  2270. };
  2271. struct rtl_global_var {
  2272. /* from this list we can get
  2273. * other adapter's rtl_priv */
  2274. struct list_head glb_priv_list;
  2275. spinlock_t glb_list_lock;
  2276. };
  2277. #define IN_4WAY_TIMEOUT_TIME (30 * MSEC_PER_SEC) /* 30 seconds */
  2278. struct rtl_btc_info {
  2279. u8 bt_type;
  2280. u8 btcoexist;
  2281. u8 ant_num;
  2282. u8 single_ant_path;
  2283. u8 ap_num;
  2284. bool in_4way;
  2285. unsigned long in_4way_ts;
  2286. };
  2287. struct bt_coexist_info {
  2288. struct rtl_btc_ops *btc_ops;
  2289. struct rtl_btc_info btc_info;
  2290. /* btc context */
  2291. void *btc_context;
  2292. void *wifi_only_context;
  2293. /* EEPROM BT info. */
  2294. u8 eeprom_bt_coexist;
  2295. u8 eeprom_bt_type;
  2296. u8 eeprom_bt_ant_num;
  2297. u8 eeprom_bt_ant_isol;
  2298. u8 eeprom_bt_radio_shared;
  2299. u8 bt_coexistence;
  2300. u8 bt_ant_num;
  2301. u8 bt_coexist_type;
  2302. u8 bt_state;
  2303. u8 bt_cur_state; /* 0:on, 1:off */
  2304. u8 bt_ant_isolation; /* 0:good, 1:bad */
  2305. u8 bt_pape_ctrl; /* 0:SW, 1:SW/HW dynamic */
  2306. u8 bt_service;
  2307. u8 bt_radio_shared_type;
  2308. u8 bt_rfreg_origin_1e;
  2309. u8 bt_rfreg_origin_1f;
  2310. u8 bt_rssi_state;
  2311. u32 ratio_tx;
  2312. u32 ratio_pri;
  2313. u32 bt_edca_ul;
  2314. u32 bt_edca_dl;
  2315. bool init_set;
  2316. bool bt_busy_traffic;
  2317. bool bt_traffic_mode_set;
  2318. bool bt_non_traffic_mode_set;
  2319. bool fw_coexist_all_off;
  2320. bool sw_coexist_all_off;
  2321. bool hw_coexist_all_off;
  2322. u32 cstate;
  2323. u32 previous_state;
  2324. u32 cstate_h;
  2325. u32 previous_state_h;
  2326. u8 bt_pre_rssi_state;
  2327. u8 bt_pre_rssi_state1;
  2328. u8 reg_bt_iso;
  2329. u8 reg_bt_sco;
  2330. bool balance_on;
  2331. u8 bt_active_zero_cnt;
  2332. bool cur_bt_disabled;
  2333. bool pre_bt_disabled;
  2334. u8 bt_profile_case;
  2335. u8 bt_profile_action;
  2336. bool bt_busy;
  2337. bool hold_for_bt_operation;
  2338. u8 lps_counter;
  2339. };
  2340. struct rtl_btc_ops {
  2341. void (*btc_init_variables) (struct rtl_priv *rtlpriv);
  2342. void (*btc_init_variables_wifi_only)(struct rtl_priv *rtlpriv);
  2343. void (*btc_deinit_variables)(struct rtl_priv *rtlpriv);
  2344. void (*btc_init_hal_vars) (struct rtl_priv *rtlpriv);
  2345. void (*btc_power_on_setting)(struct rtl_priv *rtlpriv);
  2346. void (*btc_init_hw_config) (struct rtl_priv *rtlpriv);
  2347. void (*btc_init_hw_config_wifi_only)(struct rtl_priv *rtlpriv);
  2348. void (*btc_ips_notify) (struct rtl_priv *rtlpriv, u8 type);
  2349. void (*btc_lps_notify)(struct rtl_priv *rtlpriv, u8 type);
  2350. void (*btc_scan_notify) (struct rtl_priv *rtlpriv, u8 scantype);
  2351. void (*btc_scan_notify_wifi_only)(struct rtl_priv *rtlpriv,
  2352. u8 scantype);
  2353. void (*btc_connect_notify) (struct rtl_priv *rtlpriv, u8 action);
  2354. void (*btc_mediastatus_notify) (struct rtl_priv *rtlpriv,
  2355. enum rt_media_status mstatus);
  2356. void (*btc_periodical) (struct rtl_priv *rtlpriv);
  2357. void (*btc_halt_notify)(struct rtl_priv *rtlpriv);
  2358. void (*btc_btinfo_notify) (struct rtl_priv *rtlpriv,
  2359. u8 *tmp_buf, u8 length);
  2360. void (*btc_btmpinfo_notify)(struct rtl_priv *rtlpriv,
  2361. u8 *tmp_buf, u8 length);
  2362. bool (*btc_is_limited_dig) (struct rtl_priv *rtlpriv);
  2363. bool (*btc_is_disable_edca_turbo) (struct rtl_priv *rtlpriv);
  2364. bool (*btc_is_bt_disabled) (struct rtl_priv *rtlpriv);
  2365. void (*btc_special_packet_notify)(struct rtl_priv *rtlpriv,
  2366. u8 pkt_type);
  2367. void (*btc_switch_band_notify)(struct rtl_priv *rtlpriv, u8 type,
  2368. bool scanning);
  2369. void (*btc_switch_band_notify_wifi_only)(struct rtl_priv *rtlpriv,
  2370. u8 type, bool scanning);
  2371. void (*btc_display_bt_coex_info)(struct rtl_priv *rtlpriv,
  2372. struct seq_file *m);
  2373. void (*btc_record_pwr_mode)(struct rtl_priv *rtlpriv, u8 *buf, u8 len);
  2374. u8 (*btc_get_lps_val)(struct rtl_priv *rtlpriv);
  2375. u8 (*btc_get_rpwm_val)(struct rtl_priv *rtlpriv);
  2376. bool (*btc_is_bt_ctrl_lps)(struct rtl_priv *rtlpriv);
  2377. void (*btc_get_ampdu_cfg)(struct rtl_priv *rtlpriv, u8 *reject_agg,
  2378. u8 *ctrl_agg_size, u8 *agg_size);
  2379. bool (*btc_is_bt_lps_on)(struct rtl_priv *rtlpriv);
  2380. };
  2381. struct proxim {
  2382. bool proxim_on;
  2383. void *proximity_priv;
  2384. int (*proxim_rx)(struct ieee80211_hw *hw, struct rtl_stats *status,
  2385. struct sk_buff *skb);
  2386. u8 (*proxim_get_var)(struct ieee80211_hw *hw, u8 type);
  2387. };
  2388. struct rtl_c2hcmd {
  2389. struct list_head list;
  2390. u8 tag;
  2391. u8 len;
  2392. u8 *val;
  2393. };
  2394. struct rtl_bssid_entry {
  2395. struct list_head list;
  2396. u8 bssid[ETH_ALEN];
  2397. u32 age;
  2398. };
  2399. struct rtl_scan_list {
  2400. int num;
  2401. struct list_head list; /* sort by age */
  2402. };
  2403. struct rtl_priv {
  2404. struct ieee80211_hw *hw;
  2405. struct completion firmware_loading_complete;
  2406. struct list_head list;
  2407. struct rtl_priv *buddy_priv;
  2408. struct rtl_global_var *glb_var;
  2409. struct rtl_dualmac_easy_concurrent_ctl easy_concurrent_ctl;
  2410. struct rtl_dmsp_ctl dmsp_ctl;
  2411. struct rtl_locks locks;
  2412. struct rtl_works works;
  2413. struct rtl_mac mac80211;
  2414. struct rtl_hal rtlhal;
  2415. struct rtl_regulatory regd;
  2416. struct rtl_rfkill rfkill;
  2417. struct rtl_io io;
  2418. struct rtl_phy phy;
  2419. struct rtl_dm dm;
  2420. struct rtl_security sec;
  2421. struct rtl_efuse efuse;
  2422. struct rtl_led_ctl ledctl;
  2423. struct rtl_tx_report tx_report;
  2424. struct rtl_scan_list scan_list;
  2425. struct rtl_ps_ctl psc;
  2426. struct rate_adaptive ra;
  2427. struct dynamic_primary_cca primarycca;
  2428. struct wireless_stats stats;
  2429. struct rt_link_detect link_info;
  2430. struct false_alarm_statistics falsealm_cnt;
  2431. struct rtl_rate_priv *rate_priv;
  2432. /* sta entry list for ap adhoc or mesh */
  2433. struct list_head entry_list;
  2434. /* c2hcmd list for kthread level access */
  2435. struct list_head c2hcmd_list;
  2436. struct rtl_debug dbg;
  2437. int max_fw_size;
  2438. /*
  2439. *hal_cfg : for diff cards
  2440. *intf_ops : for diff interrface usb/pcie
  2441. */
  2442. struct rtl_hal_cfg *cfg;
  2443. const struct rtl_intf_ops *intf_ops;
  2444. /*this var will be set by set_bit,
  2445. and was used to indicate status of
  2446. interface or hardware */
  2447. unsigned long status;
  2448. /* tables for dm */
  2449. struct dig_t dm_digtable;
  2450. struct ps_t dm_pstable;
  2451. u32 reg_874;
  2452. u32 reg_c70;
  2453. u32 reg_85c;
  2454. u32 reg_a74;
  2455. bool reg_init; /* true if regs saved */
  2456. bool bt_operation_on;
  2457. __le32 *usb_data;
  2458. int usb_data_index;
  2459. bool initialized;
  2460. bool enter_ps; /* true when entering PS */
  2461. u8 rate_mask[5];
  2462. /* intel Proximity, should be alloc mem
  2463. * in intel Proximity module and can only
  2464. * be used in intel Proximity mode
  2465. */
  2466. struct proxim proximity;
  2467. /*for bt coexist use*/
  2468. struct bt_coexist_info btcoexist;
  2469. /* separate 92ee from other ICs,
  2470. * 92ee use new trx flow.
  2471. */
  2472. bool use_new_trx_flow;
  2473. #ifdef CONFIG_PM
  2474. struct wiphy_wowlan_support wowlan;
  2475. #endif
  2476. /*This must be the last item so
  2477. that it points to the data allocated
  2478. beyond this structure like:
  2479. rtl_pci_priv or rtl_usb_priv */
  2480. u8 priv[0] __aligned(sizeof(void *));
  2481. };
  2482. #define rtl_priv(hw) (((struct rtl_priv *)(hw)->priv))
  2483. #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211))
  2484. #define rtl_hal(rtlpriv) (&((rtlpriv)->rtlhal))
  2485. #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse))
  2486. #define rtl_psc(rtlpriv) (&((rtlpriv)->psc))
  2487. /***************************************
  2488. Bluetooth Co-existence Related
  2489. ****************************************/
  2490. enum bt_ant_num {
  2491. ANT_X2 = 0,
  2492. ANT_X1 = 1,
  2493. };
  2494. enum bt_ant_path {
  2495. ANT_MAIN = 0,
  2496. ANT_AUX = 1,
  2497. };
  2498. enum bt_co_type {
  2499. BT_2WIRE = 0,
  2500. BT_ISSC_3WIRE = 1,
  2501. BT_ACCEL = 2,
  2502. BT_CSR_BC4 = 3,
  2503. BT_CSR_BC8 = 4,
  2504. BT_RTL8756 = 5,
  2505. BT_RTL8723A = 6,
  2506. BT_RTL8821A = 7,
  2507. BT_RTL8723B = 8,
  2508. BT_RTL8192E = 9,
  2509. BT_RTL8812A = 11,
  2510. };
  2511. enum bt_total_ant_num {
  2512. ANT_TOTAL_X2 = 0,
  2513. ANT_TOTAL_X1 = 1
  2514. };
  2515. enum bt_cur_state {
  2516. BT_OFF = 0,
  2517. BT_ON = 1,
  2518. };
  2519. enum bt_service_type {
  2520. BT_SCO = 0,
  2521. BT_A2DP = 1,
  2522. BT_HID = 2,
  2523. BT_HID_IDLE = 3,
  2524. BT_SCAN = 4,
  2525. BT_IDLE = 5,
  2526. BT_OTHER_ACTION = 6,
  2527. BT_BUSY = 7,
  2528. BT_OTHERBUSY = 8,
  2529. BT_PAN = 9,
  2530. };
  2531. enum bt_radio_shared {
  2532. BT_RADIO_SHARED = 0,
  2533. BT_RADIO_INDIVIDUAL = 1,
  2534. };
  2535. /****************************************
  2536. mem access macro define start
  2537. Call endian free function when
  2538. 1. Read/write packet content.
  2539. 2. Before write integer to IO.
  2540. 3. After read integer from IO.
  2541. ****************************************/
  2542. /* Convert little data endian to host ordering */
  2543. #define EF1BYTE(_val) \
  2544. ((u8)(_val))
  2545. #define EF2BYTE(_val) \
  2546. (le16_to_cpu(_val))
  2547. #define EF4BYTE(_val) \
  2548. (le32_to_cpu(_val))
  2549. /* Read data from memory */
  2550. #define READEF1BYTE(_ptr) \
  2551. EF1BYTE(*((u8 *)(_ptr)))
  2552. /* Read le16 data from memory and convert to host ordering */
  2553. #define READEF2BYTE(_ptr) \
  2554. EF2BYTE(*(_ptr))
  2555. #define READEF4BYTE(_ptr) \
  2556. EF4BYTE(*(_ptr))
  2557. /* Create a bit mask
  2558. * Examples:
  2559. * BIT_LEN_MASK_32(0) => 0x00000000
  2560. * BIT_LEN_MASK_32(1) => 0x00000001
  2561. * BIT_LEN_MASK_32(2) => 0x00000003
  2562. * BIT_LEN_MASK_32(32) => 0xFFFFFFFF
  2563. */
  2564. #define BIT_LEN_MASK_32(__bitlen) \
  2565. (0xFFFFFFFF >> (32 - (__bitlen)))
  2566. #define BIT_LEN_MASK_16(__bitlen) \
  2567. (0xFFFF >> (16 - (__bitlen)))
  2568. #define BIT_LEN_MASK_8(__bitlen) \
  2569. (0xFF >> (8 - (__bitlen)))
  2570. /* Create an offset bit mask
  2571. * Examples:
  2572. * BIT_OFFSET_LEN_MASK_32(0, 2) => 0x00000003
  2573. * BIT_OFFSET_LEN_MASK_32(16, 2) => 0x00030000
  2574. */
  2575. #define BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen) \
  2576. (BIT_LEN_MASK_32(__bitlen) << (__bitoffset))
  2577. #define BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen) \
  2578. (BIT_LEN_MASK_16(__bitlen) << (__bitoffset))
  2579. #define BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen) \
  2580. (BIT_LEN_MASK_8(__bitlen) << (__bitoffset))
  2581. /*Description:
  2582. * Return 4-byte value in host byte ordering from
  2583. * 4-byte pointer in little-endian system.
  2584. */
  2585. #define LE_P4BYTE_TO_HOST_4BYTE(__pstart) \
  2586. (EF4BYTE(*((__le32 *)(__pstart))))
  2587. #define LE_P2BYTE_TO_HOST_2BYTE(__pstart) \
  2588. (EF2BYTE(*((__le16 *)(__pstart))))
  2589. #define LE_P1BYTE_TO_HOST_1BYTE(__pstart) \
  2590. (EF1BYTE(*((u8 *)(__pstart))))
  2591. /*Description:
  2592. Translate subfield (continuous bits in little-endian) of 4-byte
  2593. value to host byte ordering.*/
  2594. #define LE_BITS_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
  2595. ( \
  2596. (LE_P4BYTE_TO_HOST_4BYTE(__pstart) >> (__bitoffset)) & \
  2597. BIT_LEN_MASK_32(__bitlen) \
  2598. )
  2599. #define LE_BITS_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
  2600. ( \
  2601. (LE_P2BYTE_TO_HOST_2BYTE(__pstart) >> (__bitoffset)) & \
  2602. BIT_LEN_MASK_16(__bitlen) \
  2603. )
  2604. #define LE_BITS_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
  2605. ( \
  2606. (LE_P1BYTE_TO_HOST_1BYTE(__pstart) >> (__bitoffset)) & \
  2607. BIT_LEN_MASK_8(__bitlen) \
  2608. )
  2609. /* Description:
  2610. * Mask subfield (continuous bits in little-endian) of 4-byte value
  2611. * and return the result in 4-byte value in host byte ordering.
  2612. */
  2613. #define LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) \
  2614. ( \
  2615. LE_P4BYTE_TO_HOST_4BYTE(__pstart) & \
  2616. (~BIT_OFFSET_LEN_MASK_32(__bitoffset, __bitlen)) \
  2617. )
  2618. #define LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) \
  2619. ( \
  2620. LE_P2BYTE_TO_HOST_2BYTE(__pstart) & \
  2621. (~BIT_OFFSET_LEN_MASK_16(__bitoffset, __bitlen)) \
  2622. )
  2623. #define LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) \
  2624. ( \
  2625. LE_P1BYTE_TO_HOST_1BYTE(__pstart) & \
  2626. (~BIT_OFFSET_LEN_MASK_8(__bitoffset, __bitlen)) \
  2627. )
  2628. /* Description:
  2629. * Set subfield of little-endian 4-byte value to specified value.
  2630. */
  2631. #define SET_BITS_TO_LE_4BYTE(__pstart, __bitoffset, __bitlen, __val) \
  2632. *((__le32 *)(__pstart)) = \
  2633. cpu_to_le32( \
  2634. LE_BITS_CLEARED_TO_4BYTE(__pstart, __bitoffset, __bitlen) | \
  2635. ((((u32)__val) & BIT_LEN_MASK_32(__bitlen)) << (__bitoffset)) \
  2636. )
  2637. #define SET_BITS_TO_LE_2BYTE(__pstart, __bitoffset, __bitlen, __val) \
  2638. *((__le16 *)(__pstart)) = \
  2639. cpu_to_le16( \
  2640. LE_BITS_CLEARED_TO_2BYTE(__pstart, __bitoffset, __bitlen) | \
  2641. ((((u16)__val) & BIT_LEN_MASK_16(__bitlen)) << (__bitoffset)) \
  2642. )
  2643. #define SET_BITS_TO_LE_1BYTE(__pstart, __bitoffset, __bitlen, __val) \
  2644. *((u8 *)(__pstart)) = EF1BYTE \
  2645. ( \
  2646. LE_BITS_CLEARED_TO_1BYTE(__pstart, __bitoffset, __bitlen) | \
  2647. ((((u8)__val) & BIT_LEN_MASK_8(__bitlen)) << (__bitoffset)) \
  2648. )
  2649. #define N_BYTE_ALIGMENT(__value, __aligment) ((__aligment == 1) ? \
  2650. (__value) : (((__value + __aligment - 1) / __aligment) * __aligment))
  2651. /****************************************
  2652. mem access macro define end
  2653. ****************************************/
  2654. #define byte(x, n) ((x >> (8 * n)) & 0xff)
  2655. #define packet_get_type(_packet) (EF1BYTE((_packet).octet[0]) & 0xFC)
  2656. #define RTL_WATCH_DOG_TIME 2000
  2657. #define MSECS(t) msecs_to_jiffies(t)
  2658. #define WLAN_FC_GET_VERS(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_VERS)
  2659. #define WLAN_FC_GET_TYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_FTYPE)
  2660. #define WLAN_FC_GET_STYPE(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_STYPE)
  2661. #define WLAN_FC_MORE_DATA(fc) (le16_to_cpu(fc) & IEEE80211_FCTL_MOREDATA)
  2662. #define rtl_dm(rtlpriv) (&((rtlpriv)->dm))
  2663. #define RT_RF_OFF_LEVL_ASPM BIT(0) /*PCI ASPM */
  2664. #define RT_RF_OFF_LEVL_CLK_REQ BIT(1) /*PCI clock request */
  2665. #define RT_RF_OFF_LEVL_PCI_D3 BIT(2) /*PCI D3 mode */
  2666. /*NIC halt, re-initialize hw parameters*/
  2667. #define RT_RF_OFF_LEVL_HALT_NIC BIT(3)
  2668. #define RT_RF_OFF_LEVL_FREE_FW BIT(4) /*FW free, re-download the FW */
  2669. #define RT_RF_OFF_LEVL_FW_32K BIT(5) /*FW in 32k */
  2670. /*Always enable ASPM and Clock Req in initialization.*/
  2671. #define RT_RF_PS_LEVEL_ALWAYS_ASPM BIT(6)
  2672. /* no matter RFOFF or SLEEP we set PS_ASPM_LEVL*/
  2673. #define RT_PS_LEVEL_ASPM BIT(7)
  2674. /*When LPS is on, disable 2R if no packet is received or transmittd.*/
  2675. #define RT_RF_LPS_DISALBE_2R BIT(30)
  2676. #define RT_RF_LPS_LEVEL_ASPM BIT(31) /*LPS with ASPM */
  2677. #define RT_IN_PS_LEVEL(ppsc, _ps_flg) \
  2678. ((ppsc->cur_ps_level & _ps_flg) ? true : false)
  2679. #define RT_CLEAR_PS_LEVEL(ppsc, _ps_flg) \
  2680. (ppsc->cur_ps_level &= (~(_ps_flg)))
  2681. #define RT_SET_PS_LEVEL(ppsc, _ps_flg) \
  2682. (ppsc->cur_ps_level |= _ps_flg)
  2683. #define container_of_dwork_rtl(x, y, z) \
  2684. container_of(to_delayed_work(x), y, z)
  2685. #define FILL_OCTET_STRING(_os, _octet, _len) \
  2686. (_os).octet = (u8 *)(_octet); \
  2687. (_os).length = (_len);
  2688. #define CP_MACADDR(des, src) \
  2689. ((des)[0] = (src)[0], (des)[1] = (src)[1],\
  2690. (des)[2] = (src)[2], (des)[3] = (src)[3],\
  2691. (des)[4] = (src)[4], (des)[5] = (src)[5])
  2692. #define LDPC_HT_ENABLE_RX BIT(0)
  2693. #define LDPC_HT_ENABLE_TX BIT(1)
  2694. #define LDPC_HT_TEST_TX_ENABLE BIT(2)
  2695. #define LDPC_HT_CAP_TX BIT(3)
  2696. #define STBC_HT_ENABLE_RX BIT(0)
  2697. #define STBC_HT_ENABLE_TX BIT(1)
  2698. #define STBC_HT_TEST_TX_ENABLE BIT(2)
  2699. #define STBC_HT_CAP_TX BIT(3)
  2700. #define LDPC_VHT_ENABLE_RX BIT(0)
  2701. #define LDPC_VHT_ENABLE_TX BIT(1)
  2702. #define LDPC_VHT_TEST_TX_ENABLE BIT(2)
  2703. #define LDPC_VHT_CAP_TX BIT(3)
  2704. #define STBC_VHT_ENABLE_RX BIT(0)
  2705. #define STBC_VHT_ENABLE_TX BIT(1)
  2706. #define STBC_VHT_TEST_TX_ENABLE BIT(2)
  2707. #define STBC_VHT_CAP_TX BIT(3)
  2708. extern u8 channel5g[CHANNEL_MAX_NUMBER_5G];
  2709. extern u8 channel5g_80m[CHANNEL_MAX_NUMBER_5G_80M];
  2710. static inline u8 rtl_read_byte(struct rtl_priv *rtlpriv, u32 addr)
  2711. {
  2712. return rtlpriv->io.read8_sync(rtlpriv, addr);
  2713. }
  2714. static inline u16 rtl_read_word(struct rtl_priv *rtlpriv, u32 addr)
  2715. {
  2716. return rtlpriv->io.read16_sync(rtlpriv, addr);
  2717. }
  2718. static inline u32 rtl_read_dword(struct rtl_priv *rtlpriv, u32 addr)
  2719. {
  2720. return rtlpriv->io.read32_sync(rtlpriv, addr);
  2721. }
  2722. static inline void rtl_write_byte(struct rtl_priv *rtlpriv, u32 addr, u8 val8)
  2723. {
  2724. rtlpriv->io.write8_async(rtlpriv, addr, val8);
  2725. if (rtlpriv->cfg->write_readback)
  2726. rtlpriv->io.read8_sync(rtlpriv, addr);
  2727. }
  2728. static inline void rtl_write_byte_with_val32(struct ieee80211_hw *hw,
  2729. u32 addr, u32 val8)
  2730. {
  2731. struct rtl_priv *rtlpriv = rtl_priv(hw);
  2732. rtl_write_byte(rtlpriv, addr, (u8)val8);
  2733. }
  2734. static inline void rtl_write_word(struct rtl_priv *rtlpriv, u32 addr, u16 val16)
  2735. {
  2736. rtlpriv->io.write16_async(rtlpriv, addr, val16);
  2737. if (rtlpriv->cfg->write_readback)
  2738. rtlpriv->io.read16_sync(rtlpriv, addr);
  2739. }
  2740. static inline void rtl_write_dword(struct rtl_priv *rtlpriv,
  2741. u32 addr, u32 val32)
  2742. {
  2743. rtlpriv->io.write32_async(rtlpriv, addr, val32);
  2744. if (rtlpriv->cfg->write_readback)
  2745. rtlpriv->io.read32_sync(rtlpriv, addr);
  2746. }
  2747. static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw,
  2748. u32 regaddr, u32 bitmask)
  2749. {
  2750. struct rtl_priv *rtlpriv = hw->priv;
  2751. return rtlpriv->cfg->ops->get_bbreg(hw, regaddr, bitmask);
  2752. }
  2753. static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr,
  2754. u32 bitmask, u32 data)
  2755. {
  2756. struct rtl_priv *rtlpriv = hw->priv;
  2757. rtlpriv->cfg->ops->set_bbreg(hw, regaddr, bitmask, data);
  2758. }
  2759. static inline void rtl_set_bbreg_with_dwmask(struct ieee80211_hw *hw,
  2760. u32 regaddr, u32 data)
  2761. {
  2762. rtl_set_bbreg(hw, regaddr, 0xffffffff, data);
  2763. }
  2764. static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw,
  2765. enum radio_path rfpath, u32 regaddr,
  2766. u32 bitmask)
  2767. {
  2768. struct rtl_priv *rtlpriv = hw->priv;
  2769. return rtlpriv->cfg->ops->get_rfreg(hw, rfpath, regaddr, bitmask);
  2770. }
  2771. static inline void rtl_set_rfreg(struct ieee80211_hw *hw,
  2772. enum radio_path rfpath, u32 regaddr,
  2773. u32 bitmask, u32 data)
  2774. {
  2775. struct rtl_priv *rtlpriv = hw->priv;
  2776. rtlpriv->cfg->ops->set_rfreg(hw, rfpath, regaddr, bitmask, data);
  2777. }
  2778. static inline bool is_hal_stop(struct rtl_hal *rtlhal)
  2779. {
  2780. return (_HAL_STATE_STOP == rtlhal->state);
  2781. }
  2782. static inline void set_hal_start(struct rtl_hal *rtlhal)
  2783. {
  2784. rtlhal->state = _HAL_STATE_START;
  2785. }
  2786. static inline void set_hal_stop(struct rtl_hal *rtlhal)
  2787. {
  2788. rtlhal->state = _HAL_STATE_STOP;
  2789. }
  2790. static inline u8 get_rf_type(struct rtl_phy *rtlphy)
  2791. {
  2792. return rtlphy->rf_type;
  2793. }
  2794. static inline struct ieee80211_hdr *rtl_get_hdr(struct sk_buff *skb)
  2795. {
  2796. return (struct ieee80211_hdr *)(skb->data);
  2797. }
  2798. static inline __le16 rtl_get_fc(struct sk_buff *skb)
  2799. {
  2800. return rtl_get_hdr(skb)->frame_control;
  2801. }
  2802. static inline u16 rtl_get_tid_h(struct ieee80211_hdr *hdr)
  2803. {
  2804. return (ieee80211_get_qos_ctl(hdr))[0] & IEEE80211_QOS_CTL_TID_MASK;
  2805. }
  2806. static inline u16 rtl_get_tid(struct sk_buff *skb)
  2807. {
  2808. return rtl_get_tid_h(rtl_get_hdr(skb));
  2809. }
  2810. static inline struct ieee80211_sta *get_sta(struct ieee80211_hw *hw,
  2811. struct ieee80211_vif *vif,
  2812. const u8 *bssid)
  2813. {
  2814. return ieee80211_find_sta(vif, bssid);
  2815. }
  2816. static inline struct ieee80211_sta *rtl_find_sta(struct ieee80211_hw *hw,
  2817. u8 *mac_addr)
  2818. {
  2819. struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
  2820. return ieee80211_find_sta(mac->vif, mac_addr);
  2821. }
  2822. #endif