wifi.h 72 KB

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