wifi.h 77 KB

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