rx_mpdu_info.h 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919
  1. /*
  2. * Copyright (c) 2016-2017 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. // $ATH_LICENSE_HW_HDR_C$
  19. //
  20. // DO NOT EDIT! This file is automatically generated
  21. // These definitions are tied to a particular hardware layout
  22. #ifndef _RX_MPDU_INFO_H_
  23. #define _RX_MPDU_INFO_H_
  24. #if !defined(__ASSEMBLER__)
  25. #endif
  26. #include "rxpt_classify_info.h"
  27. // ################ START SUMMARY #################
  28. //
  29. // Dword Fields
  30. // 0 rxpcu_mpdu_filter_in_category[1:0], sw_frame_group_id[8:2], ndp_frame[9], phy_err[10], phy_err_during_mpdu_header[11], protocol_version_err[12], ast_based_lookup_valid[13], reserved_0a[15:14], phy_ppdu_id[31:16]
  31. // 1 ast_index[15:0], sw_peer_id[31:16]
  32. // 2 mpdu_frame_control_valid[0], mpdu_duration_valid[1], mac_addr_ad1_valid[2], mac_addr_ad2_valid[3], mac_addr_ad3_valid[4], mac_addr_ad4_valid[5], mpdu_sequence_control_valid[6], mpdu_qos_control_valid[7], mpdu_ht_control_valid[8], frame_encryption_info_valid[9], reserved_2a[15:10], fr_ds[16], to_ds[17], encrypted[18], mpdu_retry[19], mpdu_sequence_number[31:20]
  33. // 3 epd_en[0], all_frames_shall_be_encrypted[1], encrypt_type[5:2], mesh_sta[6], bssid_hit[7], bssid_number[11:8], tid[15:12], reserved_3a[31:16]
  34. // 4 pn_31_0[31:0]
  35. // 5 pn_63_32[31:0]
  36. // 6 pn_95_64[31:0]
  37. // 7 pn_127_96[31:0]
  38. // 8 peer_meta_data[31:0]
  39. // 9 struct rxpt_classify_info rxpt_classify_info_details;
  40. // 10 rx_reo_queue_desc_addr_31_0[31:0]
  41. // 11 rx_reo_queue_desc_addr_39_32[7:0], receive_queue_number[23:8], pre_delim_err_warning[24], first_delim_err[25], reserved_11[31:26]
  42. // 12 key_id_octet[7:0], new_peer_entry[8], decrypt_needed[9], decap_type[11:10], rx_insert_vlan_c_tag_padding[12], rx_insert_vlan_s_tag_padding[13], strip_vlan_c_tag_decap[14], strip_vlan_s_tag_decap[15], pre_delim_count[27:16], ampdu_flag[28], bar_frame[29], reserved_12[31:30]
  43. // 13 mpdu_length[13:0], first_mpdu[14], mcast_bcast[15], ast_index_not_found[16], ast_index_timeout[17], power_mgmt[18], non_qos[19], null_data[20], mgmt_type[21], ctrl_type[22], more_data[23], eosp[24], fragment_flag[25], order[26], u_apsd_trigger[27], encrypt_required[28], directed[29], reserved_13[31:30]
  44. // 14 mpdu_frame_control_field[15:0], mpdu_duration_field[31:16]
  45. // 15 mac_addr_ad1_31_0[31:0]
  46. // 16 mac_addr_ad1_47_32[15:0], mac_addr_ad2_15_0[31:16]
  47. // 17 mac_addr_ad2_47_16[31:0]
  48. // 18 mac_addr_ad3_31_0[31:0]
  49. // 19 mac_addr_ad3_47_32[15:0], mpdu_sequence_control_field[31:16]
  50. // 20 mac_addr_ad4_31_0[31:0]
  51. // 21 mac_addr_ad4_47_32[15:0], mpdu_qos_control_field[31:16]
  52. // 22 mpdu_ht_control_field[31:0]
  53. //
  54. // ################ END SUMMARY #################
  55. #define NUM_OF_DWORDS_RX_MPDU_INFO 23
  56. struct rx_mpdu_info {
  57. uint32_t rxpcu_mpdu_filter_in_category : 2, //[1:0]
  58. sw_frame_group_id : 7, //[8:2]
  59. ndp_frame : 1, //[9]
  60. phy_err : 1, //[10]
  61. phy_err_during_mpdu_header : 1, //[11]
  62. protocol_version_err : 1, //[12]
  63. ast_based_lookup_valid : 1, //[13]
  64. reserved_0a : 2, //[15:14]
  65. phy_ppdu_id : 16; //[31:16]
  66. uint32_t ast_index : 16, //[15:0]
  67. sw_peer_id : 16; //[31:16]
  68. uint32_t mpdu_frame_control_valid : 1, //[0]
  69. mpdu_duration_valid : 1, //[1]
  70. mac_addr_ad1_valid : 1, //[2]
  71. mac_addr_ad2_valid : 1, //[3]
  72. mac_addr_ad3_valid : 1, //[4]
  73. mac_addr_ad4_valid : 1, //[5]
  74. mpdu_sequence_control_valid : 1, //[6]
  75. mpdu_qos_control_valid : 1, //[7]
  76. mpdu_ht_control_valid : 1, //[8]
  77. frame_encryption_info_valid : 1, //[9]
  78. reserved_2a : 6, //[15:10]
  79. fr_ds : 1, //[16]
  80. to_ds : 1, //[17]
  81. encrypted : 1, //[18]
  82. mpdu_retry : 1, //[19]
  83. mpdu_sequence_number : 12; //[31:20]
  84. uint32_t epd_en : 1, //[0]
  85. all_frames_shall_be_encrypted : 1, //[1]
  86. encrypt_type : 4, //[5:2]
  87. mesh_sta : 1, //[6]
  88. bssid_hit : 1, //[7]
  89. bssid_number : 4, //[11:8]
  90. tid : 4, //[15:12]
  91. reserved_3a : 16; //[31:16]
  92. uint32_t pn_31_0 : 32; //[31:0]
  93. uint32_t pn_63_32 : 32; //[31:0]
  94. uint32_t pn_95_64 : 32; //[31:0]
  95. uint32_t pn_127_96 : 32; //[31:0]
  96. uint32_t peer_meta_data : 32; //[31:0]
  97. struct rxpt_classify_info rxpt_classify_info_details;
  98. uint32_t rx_reo_queue_desc_addr_31_0 : 32; //[31:0]
  99. uint32_t rx_reo_queue_desc_addr_39_32 : 8, //[7:0]
  100. receive_queue_number : 16, //[23:8]
  101. pre_delim_err_warning : 1, //[24]
  102. first_delim_err : 1, //[25]
  103. reserved_11 : 6; //[31:26]
  104. uint32_t key_id_octet : 8, //[7:0]
  105. new_peer_entry : 1, //[8]
  106. decrypt_needed : 1, //[9]
  107. decap_type : 2, //[11:10]
  108. rx_insert_vlan_c_tag_padding : 1, //[12]
  109. rx_insert_vlan_s_tag_padding : 1, //[13]
  110. strip_vlan_c_tag_decap : 1, //[14]
  111. strip_vlan_s_tag_decap : 1, //[15]
  112. pre_delim_count : 12, //[27:16]
  113. ampdu_flag : 1, //[28]
  114. bar_frame : 1, //[29]
  115. reserved_12 : 2; //[31:30]
  116. uint32_t mpdu_length : 14, //[13:0]
  117. first_mpdu : 1, //[14]
  118. mcast_bcast : 1, //[15]
  119. ast_index_not_found : 1, //[16]
  120. ast_index_timeout : 1, //[17]
  121. power_mgmt : 1, //[18]
  122. non_qos : 1, //[19]
  123. null_data : 1, //[20]
  124. mgmt_type : 1, //[21]
  125. ctrl_type : 1, //[22]
  126. more_data : 1, //[23]
  127. eosp : 1, //[24]
  128. fragment_flag : 1, //[25]
  129. order : 1, //[26]
  130. u_apsd_trigger : 1, //[27]
  131. encrypt_required : 1, //[28]
  132. directed : 1, //[29]
  133. reserved_13 : 2; //[31:30]
  134. uint32_t mpdu_frame_control_field : 16, //[15:0]
  135. mpdu_duration_field : 16; //[31:16]
  136. uint32_t mac_addr_ad1_31_0 : 32; //[31:0]
  137. uint32_t mac_addr_ad1_47_32 : 16, //[15:0]
  138. mac_addr_ad2_15_0 : 16; //[31:16]
  139. uint32_t mac_addr_ad2_47_16 : 32; //[31:0]
  140. uint32_t mac_addr_ad3_31_0 : 32; //[31:0]
  141. uint32_t mac_addr_ad3_47_32 : 16, //[15:0]
  142. mpdu_sequence_control_field : 16; //[31:16]
  143. uint32_t mac_addr_ad4_31_0 : 32; //[31:0]
  144. uint32_t mac_addr_ad4_47_32 : 16, //[15:0]
  145. mpdu_qos_control_field : 16; //[31:16]
  146. uint32_t mpdu_ht_control_field : 32; //[31:0]
  147. };
  148. /*
  149. rxpcu_mpdu_filter_in_category
  150. Field indicates what the reason was that this MPDU frame
  151. was allowed to come into the receive path by RXPCU
  152. <enum 0 rxpcu_filter_pass> This MPDU passed the normal
  153. frame filter programming of rxpcu
  154. <enum 1 rxpcu_monitor_client> This MPDU did NOT pass the
  155. regular frame filter and would have been dropped, were it
  156. not for the frame fitting into the 'monitor_client'
  157. category.
  158. <enum 2 rxpcu_monitor_other> This MPDU did NOT pass the
  159. regular frame filter and also did not pass the
  160. rxpcu_monitor_client filter. It would have been dropped
  161. accept that it did pass the 'monitor_other' category.
  162. Note: for ndp frame, if it was expected because the
  163. preceding NDPA was filter_pass, the setting
  164. rxpcu_filter_pass will be used. This setting will also be
  165. used for every ndp frame in case Promiscuous mode is
  166. enabled.
  167. In case promiscuous is not enabled, and an NDP is not
  168. preceded by a NPDA filter pass frame, the only other setting
  169. that could appear here for the NDP is rxpcu_monitor_other.
  170. (rxpcu has a configuration bit specifically for this
  171. scenario)
  172. Note: for
  173. <legal 0-2>
  174. sw_frame_group_id
  175. SW processes frames based on certain classifications.
  176. This field indicates to what sw classification this MPDU is
  177. mapped.
  178. The classification is given in priority order
  179. <enum 0 sw_frame_group_NDP_frame> Note: The
  180. corresponding Rxpcu_Mpdu_filter_in_category can be
  181. rxpcu_filter_pass or rxpcu_monitor_other
  182. <enum 1 sw_frame_group_Multicast_data>
  183. <enum 2 sw_frame_group_Unicast_data>
  184. <enum 3 sw_frame_group_Null_data > This includes mpdus
  185. of type Data Null as well as QoS Data Null
  186. <enum 4 sw_frame_group_mgmt_0000 >
  187. <enum 5 sw_frame_group_mgmt_0001 >
  188. <enum 6 sw_frame_group_mgmt_0010 >
  189. <enum 7 sw_frame_group_mgmt_0011 >
  190. <enum 8 sw_frame_group_mgmt_0100 >
  191. <enum 9 sw_frame_group_mgmt_0101 >
  192. <enum 10 sw_frame_group_mgmt_0110 >
  193. <enum 11 sw_frame_group_mgmt_0111 >
  194. <enum 12 sw_frame_group_mgmt_1000 >
  195. <enum 13 sw_frame_group_mgmt_1001 >
  196. <enum 14 sw_frame_group_mgmt_1010 >
  197. <enum 15 sw_frame_group_mgmt_1011 >
  198. <enum 16 sw_frame_group_mgmt_1100 >
  199. <enum 17 sw_frame_group_mgmt_1101 >
  200. <enum 18 sw_frame_group_mgmt_1110 >
  201. <enum 19 sw_frame_group_mgmt_1111 >
  202. <enum 20 sw_frame_group_ctrl_0000 >
  203. <enum 21 sw_frame_group_ctrl_0001 >
  204. <enum 22 sw_frame_group_ctrl_0010 >
  205. <enum 23 sw_frame_group_ctrl_0011 >
  206. <enum 24 sw_frame_group_ctrl_0100 >
  207. <enum 25 sw_frame_group_ctrl_0101 >
  208. <enum 26 sw_frame_group_ctrl_0110 >
  209. <enum 27 sw_frame_group_ctrl_0111 >
  210. <enum 28 sw_frame_group_ctrl_1000 >
  211. <enum 29 sw_frame_group_ctrl_1001 >
  212. <enum 30 sw_frame_group_ctrl_1010 >
  213. <enum 31 sw_frame_group_ctrl_1011 >
  214. <enum 32 sw_frame_group_ctrl_1100 >
  215. <enum 33 sw_frame_group_ctrl_1101 >
  216. <enum 34 sw_frame_group_ctrl_1110 >
  217. <enum 35 sw_frame_group_ctrl_1111 >
  218. <enum 36 sw_frame_group_unsupported> This covers type 3
  219. and protocol version != 0
  220. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  221. can only be rxpcu_monitor_other
  222. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  223. can be rxpcu_filter_pass
  224. <legal 0-37>
  225. ndp_frame
  226. When set, the received frame was an NDP frame, and thus
  227. there will be no MPDU data.
  228. <legal all>
  229. phy_err
  230. When set, a PHY error was received before MAC received
  231. any data, and thus there will be no MPDU data.
  232. <legal all>
  233. phy_err_during_mpdu_header
  234. When set, a PHY error was received before MAC received
  235. the complete MPDU header which was needed for proper
  236. decoding
  237. <legal all>
  238. protocol_version_err
  239. Set when RXPCU detected a version error in the Frame
  240. control field
  241. <legal all>
  242. ast_based_lookup_valid
  243. When set, AST based lookup for this frame has found a
  244. valid result.
  245. Note that for NDP frame this will never be set
  246. <legal all>
  247. reserved_0a
  248. <legal 0>
  249. phy_ppdu_id
  250. A ppdu counter value that PHY increments for every PPDU
  251. received. The counter value wraps around
  252. <legal all>
  253. ast_index
  254. This field indicates the index of the AST entry
  255. corresponding to this MPDU. It is provided by the GSE module
  256. instantiated in RXPCU.
  257. A value of 0xFFFF indicates an invalid AST index,
  258. meaning that No AST entry was found or NO AST search was
  259. performed
  260. In case of ndp or phy_err, this field will be set to
  261. 0xFFFF
  262. <legal all>
  263. sw_peer_id
  264. In case of ndp or phy_err or AST_based_lookup_valid ==
  265. 0, this field will be set to 0
  266. This field indicates a unique peer identifier. It is set
  267. equal to field 'sw_peer_id' from the AST entry
  268. <legal all>
  269. mpdu_frame_control_valid
  270. When set, the field Mpdu_Frame_control_field has valid
  271. information
  272. <legal all>
  273. mpdu_duration_valid
  274. When set, the field Mpdu_duration_field has valid
  275. information
  276. <legal all>
  277. mac_addr_ad1_valid
  278. When set, the fields mac_addr_ad1_..... have valid
  279. information
  280. <legal all>
  281. mac_addr_ad2_valid
  282. When set, the fields mac_addr_ad2_..... have valid
  283. information
  284. <legal all>
  285. mac_addr_ad3_valid
  286. When set, the fields mac_addr_ad3_..... have valid
  287. information
  288. <legal all>
  289. mac_addr_ad4_valid
  290. When set, the fields mac_addr_ad4_..... have valid
  291. information
  292. <legal all>
  293. mpdu_sequence_control_valid
  294. When set, the fields mpdu_sequence_control_field and
  295. mpdu_sequence_number have valid information as well as field
  296. For MPDUs without a sequence control field, this field
  297. will not be set.
  298. <legal all>
  299. mpdu_qos_control_valid
  300. When set, the field mpdu_qos_control_field has valid
  301. information
  302. For MPDUs without a QoS control field, this field will
  303. not be set.
  304. <legal all>
  305. mpdu_ht_control_valid
  306. When set, the field mpdu_HT_control_field has valid
  307. information
  308. For MPDUs without a HT control field, this field will
  309. not be set.
  310. <legal all>
  311. frame_encryption_info_valid
  312. When set, the encryption related info fields, like IV
  313. and PN are valid
  314. For MPDUs that are not encrypted, this will not be set.
  315. <legal all>
  316. reserved_2a
  317. <legal 0>
  318. fr_ds
  319. Field only valid when Mpdu_frame_control_valid is set
  320. Set if the from DS bit is set in the frame control.
  321. <legal all>
  322. to_ds
  323. Field only valid when Mpdu_frame_control_valid is set
  324. Set if the to DS bit is set in the frame control.
  325. <legal all>
  326. encrypted
  327. Field only valid when Mpdu_frame_control_valid is set.
  328. Protected bit from the frame control.
  329. <legal all>
  330. mpdu_retry
  331. Field only valid when Mpdu_frame_control_valid is set.
  332. Retry bit from the frame control. Only valid when
  333. first_msdu is set.
  334. <legal all>
  335. mpdu_sequence_number
  336. Field only valid when Mpdu_sequence_control_valid is
  337. set.
  338. The sequence number from the 802.11 header.
  339. <legal all>
  340. epd_en
  341. Field only valid when AST_based_lookup_valid == 1.
  342. In case of ndp or phy_err or AST_based_lookup_valid ==
  343. 0, this field will be set to 0
  344. If set to one use EPD instead of LPD
  345. <legal all>
  346. all_frames_shall_be_encrypted
  347. In case of ndp or phy_err or AST_based_lookup_valid ==
  348. 0, this field will be set to 0
  349. When set, all frames (data only ?) shall be encrypted.
  350. If not, RX CRYPTO shall set an error flag.
  351. <legal all>
  352. encrypt_type
  353. In case of ndp or phy_err or AST_based_lookup_valid ==
  354. 0, this field will be set to 0
  355. Indicates type of decrypt cipher used (as defined in the
  356. peer entry)
  357. <enum 0 wep_40> WEP 40-bit
  358. <enum 1 wep_104> WEP 104-bit
  359. <enum 2 tkip_no_mic> TKIP without MIC
  360. <enum 3 wep_128> WEP 128-bit
  361. <enum 4 tkip_with_mic> TKIP with MIC
  362. <enum 5 wapi> WAPI
  363. <enum 6 aes_ccmp_128> AES CCMP 128
  364. <enum 7 no_cipher> No crypto
  365. <enum 8 aes_ccmp_256> AES CCMP 256
  366. <enum 9 aes_gcmp_128> AES CCMP 128
  367. <enum 10 aes_gcmp_256> AES CCMP 256
  368. <enum 11 wapi_gcm_sm4> WAPI GCM SM4
  369. <legal 0-11>
  370. mesh_sta
  371. In case of ndp or phy_err or AST_based_lookup_valid ==
  372. 0, this field will be set to 0
  373. When set, this is a Mesh (11s) STA
  374. <legal all>
  375. bssid_hit
  376. In case of ndp or phy_err or AST_based_lookup_valid ==
  377. 0, this field will be set to 0
  378. When set, the BSSID of the incoming frame matched one of
  379. the 8 BSSID register values
  380. <legal all>
  381. bssid_number
  382. Field only valid when bssid_hit is set.
  383. This number indicates which one out of the 8 BSSID
  384. register values matched the incoming frame
  385. <legal all>
  386. tid
  387. Field only valid when mpdu_qos_control_valid is set
  388. The TID field in the QoS control field
  389. <legal all>
  390. reserved_3a
  391. <legal 0>
  392. pn_31_0
  393. WEP: IV = {key_id_octet, pn2, pn1, pn0}. Only pn[23:0]
  394. is valid.
  395. TKIP: IV = {pn5, pn4, pn3, pn2, key_id_octet, pn0,
  396. WEPSeed[1], pn1}. Only pn[47:0] is valid.
  397. AES-CCM: IV = {pn5, pn4, pn3, pn2, key_id_octet, 0x0,
  398. pn1, pn0}. Only pn[47:0] is valid.
  399. WAPI: IV = {key_id_octet, 0x0, pn15, pn14, pn13, pn12,
  400. pn11, pn10, pn9, pn8, pn7, pn6, pn5, pn4, pn3, pn2, pn1,
  401. pn0}. pn[127:0] are valid.
  402. pn_63_32
  403. Bits [63:32] of the PN number. See description for
  404. pn_31_0.
  405. pn_95_64
  406. Bits [95:64] of the PN number. See description for
  407. pn_31_0.
  408. pn_127_96
  409. Bits [127:96] of the PN number. See description for
  410. pn_31_0.
  411. peer_meta_data
  412. In case of ndp or phy_err or AST_based_lookup_valid ==
  413. 0, this field will be set to 0
  414. Meta data that SW has programmed in the Peer table entry
  415. of the transmitting STA.
  416. <legal all>
  417. struct rxpt_classify_info rxpt_classify_info_details
  418. In case of ndp or phy_err or AST_based_lookup_valid ==
  419. 0, this field will be set to 0
  420. RXOLE related classification info
  421. <legal all
  422. rx_reo_queue_desc_addr_31_0
  423. In case of ndp or phy_err or AST_based_lookup_valid ==
  424. 0, this field will be set to 0
  425. Address (lower 32 bits) of the REO queue descriptor.
  426. If no Peer entry lookup happened for this frame, the
  427. value wil be set to 0, and the frame shall never be pushed
  428. to REO entrance ring.
  429. <legal all>
  430. rx_reo_queue_desc_addr_39_32
  431. In case of ndp or phy_err or AST_based_lookup_valid ==
  432. 0, this field will be set to 0
  433. Address (upper 8 bits) of the REO queue descriptor.
  434. If no Peer entry lookup happened for this frame, the
  435. value wil be set to 0, and the frame shall never be pushed
  436. to REO entrance ring.
  437. <legal all>
  438. receive_queue_number
  439. In case of ndp or phy_err or AST_based_lookup_valid ==
  440. 0, this field will be set to 0
  441. Indicates the MPDU queue ID to which this MPDU link
  442. descriptor belongs
  443. Used for tracking and debugging
  444. <legal all>
  445. pre_delim_err_warning
  446. Indicates that a delimiter FCS error was found in
  447. between the Previous MPDU and this MPDU.
  448. Note that this is just a warning, and does not mean that
  449. this MPDU is corrupted in any way. If it is, there will be
  450. other errors indicated such as FCS or decrypt errors
  451. In case of ndp or phy_err, this field will indicate at
  452. least one of delimiters located after the last MPDU in the
  453. previous PPDU has been corrupted.
  454. first_delim_err
  455. Indicates that the first delimiter had a FCS failure.
  456. Only valid when first_mpdu and first_msdu are set.
  457. reserved_11
  458. <legal 0>
  459. key_id_octet
  460. The key ID octet from the IV.
  461. In case of ndp or phy_err or AST_based_lookup_valid ==
  462. 0, this field will be set to 0
  463. <legal all>
  464. new_peer_entry
  465. In case of ndp or phy_err or AST_based_lookup_valid ==
  466. 0, this field will be set to 0
  467. Set if new RX_PEER_ENTRY TLV follows. If clear,
  468. RX_PEER_ENTRY doesn't follow so RX DECRYPTION module either
  469. uses old peer entry or not decrypt.
  470. <legal all>
  471. decrypt_needed
  472. In case of ndp or phy_err or AST_based_lookup_valid ==
  473. 0, this field will be set to 0
  474. Set if decryption is needed.
  475. Note:
  476. When RXPCU sets bit 'ast_index_not_found' and/or
  477. ast_index_timeout', RXPCU will also ensure that this bit is
  478. NOT set
  479. CRYPTO for that reason only needs to evaluate this bit
  480. and non of the other ones.
  481. <legal all>
  482. decap_type
  483. In case of ndp or phy_err or AST_based_lookup_valid ==
  484. 0, this field will be set to 0
  485. Used by the OLE during decapsulation.
  486. Indicates the decapsulation that HW will perform:
  487. <enum 0 PTE_DECAP_RAW> No encapsulation
  488. <enum 1 PTE_DECAP_Native_WiFi>
  489. <enum 2 PTE_DECAP_Ethernet_802_3> Ethernet 2 (DIX) or
  490. 802.3 (uses SNAP/LLC)
  491. <legal 0-2>
  492. rx_insert_vlan_c_tag_padding
  493. In case of ndp or phy_err or AST_based_lookup_valid ==
  494. 0, this field will be set to 0
  495. Insert 4 byte of all zeros as VLAN tag if the rx payload
  496. does not have VLAN. Used during decapsulation.
  497. <legal all>
  498. rx_insert_vlan_s_tag_padding
  499. In case of ndp or phy_err or AST_based_lookup_valid ==
  500. 0, this field will be set to 0
  501. Insert 4 byte of all zeros as double VLAN tag if the rx
  502. payload does not have VLAN. Used during
  503. <legal all>
  504. strip_vlan_c_tag_decap
  505. In case of ndp or phy_err or AST_based_lookup_valid ==
  506. 0, this field will be set to 0
  507. Strip the VLAN during decapsulation.  Used by the OLE.
  508. <legal all>
  509. strip_vlan_s_tag_decap
  510. In case of ndp or phy_err or AST_based_lookup_valid ==
  511. 0, this field will be set to 0
  512. Strip the double VLAN during decapsulation.  Used by
  513. the OLE.
  514. <legal all>
  515. pre_delim_count
  516. The number of delimiters before this MPDU.
  517. Note that this number is cleared at PPDU start.
  518. If this MPDU is the first received MPDU in the PPDU and
  519. this MPDU gets filtered-in, this field will indicate the
  520. number of delimiters located after the last MPDU in the
  521. previous PPDU.
  522. If this MPDU is located after the first received MPDU in
  523. an PPDU, this field will indicate the number of delimiters
  524. located between the previous MPDU and this MPDU.
  525. In case of ndp or phy_err, this field will indicate the
  526. number of delimiters located after the last MPDU in the
  527. previous PPDU.
  528. <legal all>
  529. ampdu_flag
  530. When set, received frame was part of an A-MPDU.
  531. <legal all>
  532. bar_frame
  533. In case of ndp or phy_err or AST_based_lookup_valid ==
  534. 0, this field will be set to 0
  535. When set, received frame is a BAR frame
  536. <legal all>
  537. reserved_12
  538. <legal 0>.
  539. mpdu_length
  540. In case of ndp or phy_err this field will be set to 0
  541. MPDU length before decapsulation.
  542. <legal all>
  543. first_mpdu
  544. See definition in RX attention descriptor
  545. In case of ndp or phy_err, this field will be set. Note
  546. however that there will not actually be any data contents in
  547. the MPDU.
  548. <legal all>
  549. mcast_bcast
  550. In case of ndp or phy_err or Phy_err_during_mpdu_header
  551. this field will be set to 0
  552. See definition in RX attention descriptor
  553. <legal all>
  554. ast_index_not_found
  555. In case of ndp or phy_err or Phy_err_during_mpdu_header
  556. this field will be set to 0
  557. See definition in RX attention descriptor
  558. <legal all>
  559. ast_index_timeout
  560. In case of ndp or phy_err or Phy_err_during_mpdu_header
  561. this field will be set to 0
  562. See definition in RX attention descriptor
  563. <legal all>
  564. power_mgmt
  565. In case of ndp or phy_err or Phy_err_during_mpdu_header
  566. this field will be set to 0
  567. See definition in RX attention descriptor
  568. <legal all>
  569. non_qos
  570. In case of ndp or phy_err or Phy_err_during_mpdu_header
  571. this field will be set to 1
  572. See definition in RX attention descriptor
  573. <legal all>
  574. null_data
  575. In case of ndp or phy_err or Phy_err_during_mpdu_header
  576. this field will be set to 0
  577. See definition in RX attention descriptor
  578. <legal all>
  579. mgmt_type
  580. In case of ndp or phy_err or Phy_err_during_mpdu_header
  581. this field will be set to 0
  582. See definition in RX attention descriptor
  583. <legal all>
  584. ctrl_type
  585. In case of ndp or phy_err or Phy_err_during_mpdu_header
  586. this field will be set to 0
  587. See definition in RX attention descriptor
  588. <legal all>
  589. more_data
  590. In case of ndp or phy_err or Phy_err_during_mpdu_header
  591. this field will be set to 0
  592. See definition in RX attention descriptor
  593. <legal all>
  594. eosp
  595. In case of ndp or phy_err or Phy_err_during_mpdu_header
  596. this field will be set to 0
  597. See definition in RX attention descriptor
  598. <legal all>
  599. fragment_flag
  600. In case of ndp or phy_err or Phy_err_during_mpdu_header
  601. this field will be set to 0
  602. See definition in RX attention descriptor
  603. <legal all>
  604. order
  605. In case of ndp or phy_err or Phy_err_during_mpdu_header
  606. this field will be set to 0
  607. See definition in RX attention descriptor
  608. <legal all>
  609. u_apsd_trigger
  610. In case of ndp or phy_err or Phy_err_during_mpdu_header
  611. this field will be set to 0
  612. See definition in RX attention descriptor
  613. <legal all>
  614. encrypt_required
  615. In case of ndp or phy_err or Phy_err_during_mpdu_header
  616. this field will be set to 0
  617. See definition in RX attention descriptor
  618. <legal all>
  619. directed
  620. In case of ndp or phy_err or Phy_err_during_mpdu_header
  621. this field will be set to 0
  622. See definition in RX attention descriptor
  623. <legal all>
  624. reserved_13
  625. <legal 0>
  626. mpdu_frame_control_field
  627. Field only valid when Mpdu_frame_control_valid is set
  628. The frame control field of this received MPDU.
  629. Field only valid when Ndp_frame and phy_err are NOT set
  630. Bytes 0 + 1 of the received MPDU
  631. <legal all>
  632. mpdu_duration_field
  633. Field only valid when Mpdu_duration_valid is set
  634. The duration field of this received MPDU.
  635. <legal all>
  636. mac_addr_ad1_31_0
  637. Field only valid when mac_addr_ad1_valid is set
  638. The Least Significant 4 bytes of the Received Frames MAC
  639. Address AD1
  640. <legal all>
  641. mac_addr_ad1_47_32
  642. Field only valid when mac_addr_ad1_valid is set
  643. The 2 most significant bytes of the Received Frames MAC
  644. Address AD1
  645. <legal all>
  646. mac_addr_ad2_15_0
  647. Field only valid when mac_addr_ad2_valid is set
  648. The Least Significant 2 bytes of the Received Frames MAC
  649. Address AD2
  650. <legal all>
  651. mac_addr_ad2_47_16
  652. Field only valid when mac_addr_ad2_valid is set
  653. The 4 most significant bytes of the Received Frames MAC
  654. Address AD2
  655. <legal all>
  656. mac_addr_ad3_31_0
  657. Field only valid when mac_addr_ad3_valid is set
  658. The Least Significant 4 bytes of the Received Frames MAC
  659. Address AD3
  660. <legal all>
  661. mac_addr_ad3_47_32
  662. Field only valid when mac_addr_ad3_valid is set
  663. The 2 most significant bytes of the Received Frames MAC
  664. Address AD3
  665. <legal all>
  666. mpdu_sequence_control_field
  667. The sequence control field of the MPDU
  668. <legal all>
  669. mac_addr_ad4_31_0
  670. Field only valid when mac_addr_ad4_valid is set
  671. The Least Significant 4 bytes of the Received Frames MAC
  672. Address AD4
  673. <legal all>
  674. mac_addr_ad4_47_32
  675. Field only valid when mac_addr_ad4_valid is set
  676. The 2 most significant bytes of the Received Frames MAC
  677. Address AD4
  678. <legal all>
  679. mpdu_qos_control_field
  680. Field only valid when mpdu_qos_control_valid is set
  681. The sequence control field of the MPDU
  682. <legal all>
  683. mpdu_ht_control_field
  684. Field only valid when mpdu_qos_control_valid is set
  685. The HT control field of the MPDU
  686. <legal all>
  687. */
  688. /* Description RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY
  689. Field indicates what the reason was that this MPDU frame
  690. was allowed to come into the receive path by RXPCU
  691. <enum 0 rxpcu_filter_pass> This MPDU passed the normal
  692. frame filter programming of rxpcu
  693. <enum 1 rxpcu_monitor_client> This MPDU did NOT pass the
  694. regular frame filter and would have been dropped, were it
  695. not for the frame fitting into the 'monitor_client'
  696. category.
  697. <enum 2 rxpcu_monitor_other> This MPDU did NOT pass the
  698. regular frame filter and also did not pass the
  699. rxpcu_monitor_client filter. It would have been dropped
  700. accept that it did pass the 'monitor_other' category.
  701. Note: for ndp frame, if it was expected because the
  702. preceding NDPA was filter_pass, the setting
  703. rxpcu_filter_pass will be used. This setting will also be
  704. used for every ndp frame in case Promiscuous mode is
  705. enabled.
  706. In case promiscuous is not enabled, and an NDP is not
  707. preceded by a NPDA filter pass frame, the only other setting
  708. that could appear here for the NDP is rxpcu_monitor_other.
  709. (rxpcu has a configuration bit specifically for this
  710. scenario)
  711. Note: for
  712. <legal 0-2>
  713. */
  714. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_OFFSET 0x00000000
  715. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_LSB 0
  716. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_MASK 0x00000003
  717. /* Description RX_MPDU_INFO_0_SW_FRAME_GROUP_ID
  718. SW processes frames based on certain classifications.
  719. This field indicates to what sw classification this MPDU is
  720. mapped.
  721. The classification is given in priority order
  722. <enum 0 sw_frame_group_NDP_frame> Note: The
  723. corresponding Rxpcu_Mpdu_filter_in_category can be
  724. rxpcu_filter_pass or rxpcu_monitor_other
  725. <enum 1 sw_frame_group_Multicast_data>
  726. <enum 2 sw_frame_group_Unicast_data>
  727. <enum 3 sw_frame_group_Null_data > This includes mpdus
  728. of type Data Null as well as QoS Data Null
  729. <enum 4 sw_frame_group_mgmt_0000 >
  730. <enum 5 sw_frame_group_mgmt_0001 >
  731. <enum 6 sw_frame_group_mgmt_0010 >
  732. <enum 7 sw_frame_group_mgmt_0011 >
  733. <enum 8 sw_frame_group_mgmt_0100 >
  734. <enum 9 sw_frame_group_mgmt_0101 >
  735. <enum 10 sw_frame_group_mgmt_0110 >
  736. <enum 11 sw_frame_group_mgmt_0111 >
  737. <enum 12 sw_frame_group_mgmt_1000 >
  738. <enum 13 sw_frame_group_mgmt_1001 >
  739. <enum 14 sw_frame_group_mgmt_1010 >
  740. <enum 15 sw_frame_group_mgmt_1011 >
  741. <enum 16 sw_frame_group_mgmt_1100 >
  742. <enum 17 sw_frame_group_mgmt_1101 >
  743. <enum 18 sw_frame_group_mgmt_1110 >
  744. <enum 19 sw_frame_group_mgmt_1111 >
  745. <enum 20 sw_frame_group_ctrl_0000 >
  746. <enum 21 sw_frame_group_ctrl_0001 >
  747. <enum 22 sw_frame_group_ctrl_0010 >
  748. <enum 23 sw_frame_group_ctrl_0011 >
  749. <enum 24 sw_frame_group_ctrl_0100 >
  750. <enum 25 sw_frame_group_ctrl_0101 >
  751. <enum 26 sw_frame_group_ctrl_0110 >
  752. <enum 27 sw_frame_group_ctrl_0111 >
  753. <enum 28 sw_frame_group_ctrl_1000 >
  754. <enum 29 sw_frame_group_ctrl_1001 >
  755. <enum 30 sw_frame_group_ctrl_1010 >
  756. <enum 31 sw_frame_group_ctrl_1011 >
  757. <enum 32 sw_frame_group_ctrl_1100 >
  758. <enum 33 sw_frame_group_ctrl_1101 >
  759. <enum 34 sw_frame_group_ctrl_1110 >
  760. <enum 35 sw_frame_group_ctrl_1111 >
  761. <enum 36 sw_frame_group_unsupported> This covers type 3
  762. and protocol version != 0
  763. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  764. can only be rxpcu_monitor_other
  765. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  766. can be rxpcu_filter_pass
  767. <legal 0-37>
  768. */
  769. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_OFFSET 0x00000000
  770. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_LSB 2
  771. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_MASK 0x000001fc
  772. /* Description RX_MPDU_INFO_0_NDP_FRAME
  773. When set, the received frame was an NDP frame, and thus
  774. there will be no MPDU data.
  775. <legal all>
  776. */
  777. #define RX_MPDU_INFO_0_NDP_FRAME_OFFSET 0x00000000
  778. #define RX_MPDU_INFO_0_NDP_FRAME_LSB 9
  779. #define RX_MPDU_INFO_0_NDP_FRAME_MASK 0x00000200
  780. /* Description RX_MPDU_INFO_0_PHY_ERR
  781. When set, a PHY error was received before MAC received
  782. any data, and thus there will be no MPDU data.
  783. <legal all>
  784. */
  785. #define RX_MPDU_INFO_0_PHY_ERR_OFFSET 0x00000000
  786. #define RX_MPDU_INFO_0_PHY_ERR_LSB 10
  787. #define RX_MPDU_INFO_0_PHY_ERR_MASK 0x00000400
  788. /* Description RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER
  789. When set, a PHY error was received before MAC received
  790. the complete MPDU header which was needed for proper
  791. decoding
  792. <legal all>
  793. */
  794. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_OFFSET 0x00000000
  795. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_LSB 11
  796. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_MASK 0x00000800
  797. /* Description RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR
  798. Set when RXPCU detected a version error in the Frame
  799. control field
  800. <legal all>
  801. */
  802. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_OFFSET 0x00000000
  803. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_LSB 12
  804. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_MASK 0x00001000
  805. /* Description RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID
  806. When set, AST based lookup for this frame has found a
  807. valid result.
  808. Note that for NDP frame this will never be set
  809. <legal all>
  810. */
  811. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_OFFSET 0x00000000
  812. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_LSB 13
  813. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_MASK 0x00002000
  814. /* Description RX_MPDU_INFO_0_RESERVED_0A
  815. <legal 0>
  816. */
  817. #define RX_MPDU_INFO_0_RESERVED_0A_OFFSET 0x00000000
  818. #define RX_MPDU_INFO_0_RESERVED_0A_LSB 14
  819. #define RX_MPDU_INFO_0_RESERVED_0A_MASK 0x0000c000
  820. /* Description RX_MPDU_INFO_0_PHY_PPDU_ID
  821. A ppdu counter value that PHY increments for every PPDU
  822. received. The counter value wraps around
  823. <legal all>
  824. */
  825. #define RX_MPDU_INFO_0_PHY_PPDU_ID_OFFSET 0x00000000
  826. #define RX_MPDU_INFO_0_PHY_PPDU_ID_LSB 16
  827. #define RX_MPDU_INFO_0_PHY_PPDU_ID_MASK 0xffff0000
  828. /* Description RX_MPDU_INFO_1_AST_INDEX
  829. This field indicates the index of the AST entry
  830. corresponding to this MPDU. It is provided by the GSE module
  831. instantiated in RXPCU.
  832. A value of 0xFFFF indicates an invalid AST index,
  833. meaning that No AST entry was found or NO AST search was
  834. performed
  835. In case of ndp or phy_err, this field will be set to
  836. 0xFFFF
  837. <legal all>
  838. */
  839. #define RX_MPDU_INFO_1_AST_INDEX_OFFSET 0x00000004
  840. #define RX_MPDU_INFO_1_AST_INDEX_LSB 0
  841. #define RX_MPDU_INFO_1_AST_INDEX_MASK 0x0000ffff
  842. /* Description RX_MPDU_INFO_1_SW_PEER_ID
  843. In case of ndp or phy_err or AST_based_lookup_valid ==
  844. 0, this field will be set to 0
  845. This field indicates a unique peer identifier. It is set
  846. equal to field 'sw_peer_id' from the AST entry
  847. <legal all>
  848. */
  849. #define RX_MPDU_INFO_1_SW_PEER_ID_OFFSET 0x00000004
  850. #define RX_MPDU_INFO_1_SW_PEER_ID_LSB 16
  851. #define RX_MPDU_INFO_1_SW_PEER_ID_MASK 0xffff0000
  852. /* Description RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID
  853. When set, the field Mpdu_Frame_control_field has valid
  854. information
  855. <legal all>
  856. */
  857. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_OFFSET 0x00000008
  858. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_LSB 0
  859. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_MASK 0x00000001
  860. /* Description RX_MPDU_INFO_2_MPDU_DURATION_VALID
  861. When set, the field Mpdu_duration_field has valid
  862. information
  863. <legal all>
  864. */
  865. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_OFFSET 0x00000008
  866. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_LSB 1
  867. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_MASK 0x00000002
  868. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID
  869. When set, the fields mac_addr_ad1_..... have valid
  870. information
  871. <legal all>
  872. */
  873. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_OFFSET 0x00000008
  874. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_LSB 2
  875. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_MASK 0x00000004
  876. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID
  877. When set, the fields mac_addr_ad2_..... have valid
  878. information
  879. <legal all>
  880. */
  881. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_OFFSET 0x00000008
  882. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_LSB 3
  883. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_MASK 0x00000008
  884. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID
  885. When set, the fields mac_addr_ad3_..... have valid
  886. information
  887. <legal all>
  888. */
  889. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_OFFSET 0x00000008
  890. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_LSB 4
  891. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_MASK 0x00000010
  892. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID
  893. When set, the fields mac_addr_ad4_..... have valid
  894. information
  895. <legal all>
  896. */
  897. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_OFFSET 0x00000008
  898. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_LSB 5
  899. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_MASK 0x00000020
  900. /* Description RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID
  901. When set, the fields mpdu_sequence_control_field and
  902. mpdu_sequence_number have valid information as well as field
  903. For MPDUs without a sequence control field, this field
  904. will not be set.
  905. <legal all>
  906. */
  907. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_OFFSET 0x00000008
  908. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_LSB 6
  909. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_MASK 0x00000040
  910. /* Description RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID
  911. When set, the field mpdu_qos_control_field has valid
  912. information
  913. For MPDUs without a QoS control field, this field will
  914. not be set.
  915. <legal all>
  916. */
  917. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_OFFSET 0x00000008
  918. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_LSB 7
  919. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_MASK 0x00000080
  920. /* Description RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID
  921. When set, the field mpdu_HT_control_field has valid
  922. information
  923. For MPDUs without a HT control field, this field will
  924. not be set.
  925. <legal all>
  926. */
  927. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_OFFSET 0x00000008
  928. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_LSB 8
  929. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_MASK 0x00000100
  930. /* Description RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID
  931. When set, the encryption related info fields, like IV
  932. and PN are valid
  933. For MPDUs that are not encrypted, this will not be set.
  934. <legal all>
  935. */
  936. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_OFFSET 0x00000008
  937. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_LSB 9
  938. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_MASK 0x00000200
  939. /* Description RX_MPDU_INFO_2_RESERVED_2A
  940. <legal 0>
  941. */
  942. #define RX_MPDU_INFO_2_RESERVED_2A_OFFSET 0x00000008
  943. #define RX_MPDU_INFO_2_RESERVED_2A_LSB 10
  944. #define RX_MPDU_INFO_2_RESERVED_2A_MASK 0x0000fc00
  945. /* Description RX_MPDU_INFO_2_FR_DS
  946. Field only valid when Mpdu_frame_control_valid is set
  947. Set if the from DS bit is set in the frame control.
  948. <legal all>
  949. */
  950. #define RX_MPDU_INFO_2_FR_DS_OFFSET 0x00000008
  951. #define RX_MPDU_INFO_2_FR_DS_LSB 16
  952. #define RX_MPDU_INFO_2_FR_DS_MASK 0x00010000
  953. /* Description RX_MPDU_INFO_2_TO_DS
  954. Field only valid when Mpdu_frame_control_valid is set
  955. Set if the to DS bit is set in the frame control.
  956. <legal all>
  957. */
  958. #define RX_MPDU_INFO_2_TO_DS_OFFSET 0x00000008
  959. #define RX_MPDU_INFO_2_TO_DS_LSB 17
  960. #define RX_MPDU_INFO_2_TO_DS_MASK 0x00020000
  961. /* Description RX_MPDU_INFO_2_ENCRYPTED
  962. Field only valid when Mpdu_frame_control_valid is set.
  963. Protected bit from the frame control.
  964. <legal all>
  965. */
  966. #define RX_MPDU_INFO_2_ENCRYPTED_OFFSET 0x00000008
  967. #define RX_MPDU_INFO_2_ENCRYPTED_LSB 18
  968. #define RX_MPDU_INFO_2_ENCRYPTED_MASK 0x00040000
  969. /* Description RX_MPDU_INFO_2_MPDU_RETRY
  970. Field only valid when Mpdu_frame_control_valid is set.
  971. Retry bit from the frame control. Only valid when
  972. first_msdu is set.
  973. <legal all>
  974. */
  975. #define RX_MPDU_INFO_2_MPDU_RETRY_OFFSET 0x00000008
  976. #define RX_MPDU_INFO_2_MPDU_RETRY_LSB 19
  977. #define RX_MPDU_INFO_2_MPDU_RETRY_MASK 0x00080000
  978. /* Description RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER
  979. Field only valid when Mpdu_sequence_control_valid is
  980. set.
  981. The sequence number from the 802.11 header.
  982. <legal all>
  983. */
  984. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_OFFSET 0x00000008
  985. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_LSB 20
  986. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_MASK 0xfff00000
  987. /* Description RX_MPDU_INFO_3_EPD_EN
  988. Field only valid when AST_based_lookup_valid == 1.
  989. In case of ndp or phy_err or AST_based_lookup_valid ==
  990. 0, this field will be set to 0
  991. If set to one use EPD instead of LPD
  992. <legal all>
  993. */
  994. #define RX_MPDU_INFO_3_EPD_EN_OFFSET 0x0000000c
  995. #define RX_MPDU_INFO_3_EPD_EN_LSB 0
  996. #define RX_MPDU_INFO_3_EPD_EN_MASK 0x00000001
  997. /* Description RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED
  998. In case of ndp or phy_err or AST_based_lookup_valid ==
  999. 0, this field will be set to 0
  1000. When set, all frames (data only ?) shall be encrypted.
  1001. If not, RX CRYPTO shall set an error flag.
  1002. <legal all>
  1003. */
  1004. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_OFFSET 0x0000000c
  1005. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_LSB 1
  1006. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_MASK 0x00000002
  1007. /* Description RX_MPDU_INFO_3_ENCRYPT_TYPE
  1008. In case of ndp or phy_err or AST_based_lookup_valid ==
  1009. 0, this field will be set to 0
  1010. Indicates type of decrypt cipher used (as defined in the
  1011. peer entry)
  1012. <enum 0 wep_40> WEP 40-bit
  1013. <enum 1 wep_104> WEP 104-bit
  1014. <enum 2 tkip_no_mic> TKIP without MIC
  1015. <enum 3 wep_128> WEP 128-bit
  1016. <enum 4 tkip_with_mic> TKIP with MIC
  1017. <enum 5 wapi> WAPI
  1018. <enum 6 aes_ccmp_128> AES CCMP 128
  1019. <enum 7 no_cipher> No crypto
  1020. <enum 8 aes_ccmp_256> AES CCMP 256
  1021. <enum 9 aes_gcmp_128> AES CCMP 128
  1022. <enum 10 aes_gcmp_256> AES CCMP 256
  1023. <enum 11 wapi_gcm_sm4> WAPI GCM SM4
  1024. <legal 0-11>
  1025. */
  1026. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_OFFSET 0x0000000c
  1027. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_LSB 2
  1028. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_MASK 0x0000003c
  1029. /* Description RX_MPDU_INFO_3_MESH_STA
  1030. In case of ndp or phy_err or AST_based_lookup_valid ==
  1031. 0, this field will be set to 0
  1032. When set, this is a Mesh (11s) STA
  1033. <legal all>
  1034. */
  1035. #define RX_MPDU_INFO_3_MESH_STA_OFFSET 0x0000000c
  1036. #define RX_MPDU_INFO_3_MESH_STA_LSB 6
  1037. #define RX_MPDU_INFO_3_MESH_STA_MASK 0x00000040
  1038. /* Description RX_MPDU_INFO_3_BSSID_HIT
  1039. In case of ndp or phy_err or AST_based_lookup_valid ==
  1040. 0, this field will be set to 0
  1041. When set, the BSSID of the incoming frame matched one of
  1042. the 8 BSSID register values
  1043. <legal all>
  1044. */
  1045. #define RX_MPDU_INFO_3_BSSID_HIT_OFFSET 0x0000000c
  1046. #define RX_MPDU_INFO_3_BSSID_HIT_LSB 7
  1047. #define RX_MPDU_INFO_3_BSSID_HIT_MASK 0x00000080
  1048. /* Description RX_MPDU_INFO_3_BSSID_NUMBER
  1049. Field only valid when bssid_hit is set.
  1050. This number indicates which one out of the 8 BSSID
  1051. register values matched the incoming frame
  1052. <legal all>
  1053. */
  1054. #define RX_MPDU_INFO_3_BSSID_NUMBER_OFFSET 0x0000000c
  1055. #define RX_MPDU_INFO_3_BSSID_NUMBER_LSB 8
  1056. #define RX_MPDU_INFO_3_BSSID_NUMBER_MASK 0x00000f00
  1057. /* Description RX_MPDU_INFO_3_TID
  1058. Field only valid when mpdu_qos_control_valid is set
  1059. The TID field in the QoS control field
  1060. <legal all>
  1061. */
  1062. #define RX_MPDU_INFO_3_TID_OFFSET 0x0000000c
  1063. #define RX_MPDU_INFO_3_TID_LSB 12
  1064. #define RX_MPDU_INFO_3_TID_MASK 0x0000f000
  1065. /* Description RX_MPDU_INFO_3_RESERVED_3A
  1066. <legal 0>
  1067. */
  1068. #define RX_MPDU_INFO_3_RESERVED_3A_OFFSET 0x0000000c
  1069. #define RX_MPDU_INFO_3_RESERVED_3A_LSB 16
  1070. #define RX_MPDU_INFO_3_RESERVED_3A_MASK 0xffff0000
  1071. /* Description RX_MPDU_INFO_4_PN_31_0
  1072. WEP: IV = {key_id_octet, pn2, pn1, pn0}. Only pn[23:0]
  1073. is valid.
  1074. TKIP: IV = {pn5, pn4, pn3, pn2, key_id_octet, pn0,
  1075. WEPSeed[1], pn1}. Only pn[47:0] is valid.
  1076. AES-CCM: IV = {pn5, pn4, pn3, pn2, key_id_octet, 0x0,
  1077. pn1, pn0}. Only pn[47:0] is valid.
  1078. WAPI: IV = {key_id_octet, 0x0, pn15, pn14, pn13, pn12,
  1079. pn11, pn10, pn9, pn8, pn7, pn6, pn5, pn4, pn3, pn2, pn1,
  1080. pn0}. pn[127:0] are valid.
  1081. */
  1082. #define RX_MPDU_INFO_4_PN_31_0_OFFSET 0x00000010
  1083. #define RX_MPDU_INFO_4_PN_31_0_LSB 0
  1084. #define RX_MPDU_INFO_4_PN_31_0_MASK 0xffffffff
  1085. /* Description RX_MPDU_INFO_5_PN_63_32
  1086. Bits [63:32] of the PN number. See description for
  1087. pn_31_0.
  1088. */
  1089. #define RX_MPDU_INFO_5_PN_63_32_OFFSET 0x00000014
  1090. #define RX_MPDU_INFO_5_PN_63_32_LSB 0
  1091. #define RX_MPDU_INFO_5_PN_63_32_MASK 0xffffffff
  1092. /* Description RX_MPDU_INFO_6_PN_95_64
  1093. Bits [95:64] of the PN number. See description for
  1094. pn_31_0.
  1095. */
  1096. #define RX_MPDU_INFO_6_PN_95_64_OFFSET 0x00000018
  1097. #define RX_MPDU_INFO_6_PN_95_64_LSB 0
  1098. #define RX_MPDU_INFO_6_PN_95_64_MASK 0xffffffff
  1099. /* Description RX_MPDU_INFO_7_PN_127_96
  1100. Bits [127:96] of the PN number. See description for
  1101. pn_31_0.
  1102. */
  1103. #define RX_MPDU_INFO_7_PN_127_96_OFFSET 0x0000001c
  1104. #define RX_MPDU_INFO_7_PN_127_96_LSB 0
  1105. #define RX_MPDU_INFO_7_PN_127_96_MASK 0xffffffff
  1106. /* Description RX_MPDU_INFO_8_PEER_META_DATA
  1107. In case of ndp or phy_err or AST_based_lookup_valid ==
  1108. 0, this field will be set to 0
  1109. Meta data that SW has programmed in the Peer table entry
  1110. of the transmitting STA.
  1111. <legal all>
  1112. */
  1113. #define RX_MPDU_INFO_8_PEER_META_DATA_OFFSET 0x00000020
  1114. #define RX_MPDU_INFO_8_PEER_META_DATA_LSB 0
  1115. #define RX_MPDU_INFO_8_PEER_META_DATA_MASK 0xffffffff
  1116. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_OFFSET 0x00000024
  1117. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_LSB 0
  1118. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_MASK 0xffffffff
  1119. /* Description RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0
  1120. In case of ndp or phy_err or AST_based_lookup_valid ==
  1121. 0, this field will be set to 0
  1122. Address (lower 32 bits) of the REO queue descriptor.
  1123. If no Peer entry lookup happened for this frame, the
  1124. value wil be set to 0, and the frame shall never be pushed
  1125. to REO entrance ring.
  1126. <legal all>
  1127. */
  1128. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_OFFSET 0x00000028
  1129. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_LSB 0
  1130. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_MASK 0xffffffff
  1131. /* Description RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32
  1132. In case of ndp or phy_err or AST_based_lookup_valid ==
  1133. 0, this field will be set to 0
  1134. Address (upper 8 bits) of the REO queue descriptor.
  1135. If no Peer entry lookup happened for this frame, the
  1136. value wil be set to 0, and the frame shall never be pushed
  1137. to REO entrance ring.
  1138. <legal all>
  1139. */
  1140. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_OFFSET 0x0000002c
  1141. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_LSB 0
  1142. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_MASK 0x000000ff
  1143. /* Description RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER
  1144. In case of ndp or phy_err or AST_based_lookup_valid ==
  1145. 0, this field will be set to 0
  1146. Indicates the MPDU queue ID to which this MPDU link
  1147. descriptor belongs
  1148. Used for tracking and debugging
  1149. <legal all>
  1150. */
  1151. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_OFFSET 0x0000002c
  1152. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_LSB 8
  1153. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_MASK 0x00ffff00
  1154. /* Description RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING
  1155. Indicates that a delimiter FCS error was found in
  1156. between the Previous MPDU and this MPDU.
  1157. Note that this is just a warning, and does not mean that
  1158. this MPDU is corrupted in any way. If it is, there will be
  1159. other errors indicated such as FCS or decrypt errors
  1160. In case of ndp or phy_err, this field will indicate at
  1161. least one of delimiters located after the last MPDU in the
  1162. previous PPDU has been corrupted.
  1163. */
  1164. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_OFFSET 0x0000002c
  1165. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_LSB 24
  1166. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_MASK 0x01000000
  1167. /* Description RX_MPDU_INFO_11_FIRST_DELIM_ERR
  1168. Indicates that the first delimiter had a FCS failure.
  1169. Only valid when first_mpdu and first_msdu are set.
  1170. */
  1171. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_OFFSET 0x0000002c
  1172. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_LSB 25
  1173. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_MASK 0x02000000
  1174. /* Description RX_MPDU_INFO_11_RESERVED_11
  1175. <legal 0>
  1176. */
  1177. #define RX_MPDU_INFO_11_RESERVED_11_OFFSET 0x0000002c
  1178. #define RX_MPDU_INFO_11_RESERVED_11_LSB 26
  1179. #define RX_MPDU_INFO_11_RESERVED_11_MASK 0xfc000000
  1180. /* Description RX_MPDU_INFO_12_KEY_ID_OCTET
  1181. The key ID octet from the IV.
  1182. In case of ndp or phy_err or AST_based_lookup_valid ==
  1183. 0, this field will be set to 0
  1184. <legal all>
  1185. */
  1186. #define RX_MPDU_INFO_12_KEY_ID_OCTET_OFFSET 0x00000030
  1187. #define RX_MPDU_INFO_12_KEY_ID_OCTET_LSB 0
  1188. #define RX_MPDU_INFO_12_KEY_ID_OCTET_MASK 0x000000ff
  1189. /* Description RX_MPDU_INFO_12_NEW_PEER_ENTRY
  1190. In case of ndp or phy_err or AST_based_lookup_valid ==
  1191. 0, this field will be set to 0
  1192. Set if new RX_PEER_ENTRY TLV follows. If clear,
  1193. RX_PEER_ENTRY doesn't follow so RX DECRYPTION module either
  1194. uses old peer entry or not decrypt.
  1195. <legal all>
  1196. */
  1197. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_OFFSET 0x00000030
  1198. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_LSB 8
  1199. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_MASK 0x00000100
  1200. /* Description RX_MPDU_INFO_12_DECRYPT_NEEDED
  1201. In case of ndp or phy_err or AST_based_lookup_valid ==
  1202. 0, this field will be set to 0
  1203. Set if decryption is needed.
  1204. Note:
  1205. When RXPCU sets bit 'ast_index_not_found' and/or
  1206. ast_index_timeout', RXPCU will also ensure that this bit is
  1207. NOT set
  1208. CRYPTO for that reason only needs to evaluate this bit
  1209. and non of the other ones.
  1210. <legal all>
  1211. */
  1212. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_OFFSET 0x00000030
  1213. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_LSB 9
  1214. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_MASK 0x00000200
  1215. /* Description RX_MPDU_INFO_12_DECAP_TYPE
  1216. In case of ndp or phy_err or AST_based_lookup_valid ==
  1217. 0, this field will be set to 0
  1218. Used by the OLE during decapsulation.
  1219. Indicates the decapsulation that HW will perform:
  1220. <enum 0 PTE_DECAP_RAW> No encapsulation
  1221. <enum 1 PTE_DECAP_Native_WiFi>
  1222. <enum 2 PTE_DECAP_Ethernet_802_3> Ethernet 2 (DIX) or
  1223. 802.3 (uses SNAP/LLC)
  1224. <legal 0-2>
  1225. */
  1226. #define RX_MPDU_INFO_12_DECAP_TYPE_OFFSET 0x00000030
  1227. #define RX_MPDU_INFO_12_DECAP_TYPE_LSB 10
  1228. #define RX_MPDU_INFO_12_DECAP_TYPE_MASK 0x00000c00
  1229. /* Description RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING
  1230. In case of ndp or phy_err or AST_based_lookup_valid ==
  1231. 0, this field will be set to 0
  1232. Insert 4 byte of all zeros as VLAN tag if the rx payload
  1233. does not have VLAN. Used during decapsulation.
  1234. <legal all>
  1235. */
  1236. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_OFFSET 0x00000030
  1237. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_LSB 12
  1238. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_MASK 0x00001000
  1239. /* Description RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING
  1240. In case of ndp or phy_err or AST_based_lookup_valid ==
  1241. 0, this field will be set to 0
  1242. Insert 4 byte of all zeros as double VLAN tag if the rx
  1243. payload does not have VLAN. Used during
  1244. <legal all>
  1245. */
  1246. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_OFFSET 0x00000030
  1247. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_LSB 13
  1248. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_MASK 0x00002000
  1249. /* Description RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP
  1250. In case of ndp or phy_err or AST_based_lookup_valid ==
  1251. 0, this field will be set to 0
  1252. Strip the VLAN during decapsulation.  Used by the OLE.
  1253. <legal all>
  1254. */
  1255. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_OFFSET 0x00000030
  1256. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_LSB 14
  1257. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_MASK 0x00004000
  1258. /* Description RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP
  1259. In case of ndp or phy_err or AST_based_lookup_valid ==
  1260. 0, this field will be set to 0
  1261. Strip the double VLAN during decapsulation.  Used by
  1262. the OLE.
  1263. <legal all>
  1264. */
  1265. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_OFFSET 0x00000030
  1266. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_LSB 15
  1267. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_MASK 0x00008000
  1268. /* Description RX_MPDU_INFO_12_PRE_DELIM_COUNT
  1269. The number of delimiters before this MPDU.
  1270. Note that this number is cleared at PPDU start.
  1271. If this MPDU is the first received MPDU in the PPDU and
  1272. this MPDU gets filtered-in, this field will indicate the
  1273. number of delimiters located after the last MPDU in the
  1274. previous PPDU.
  1275. If this MPDU is located after the first received MPDU in
  1276. an PPDU, this field will indicate the number of delimiters
  1277. located between the previous MPDU and this MPDU.
  1278. In case of ndp or phy_err, this field will indicate the
  1279. number of delimiters located after the last MPDU in the
  1280. previous PPDU.
  1281. <legal all>
  1282. */
  1283. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_OFFSET 0x00000030
  1284. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_LSB 16
  1285. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_MASK 0x0fff0000
  1286. /* Description RX_MPDU_INFO_12_AMPDU_FLAG
  1287. When set, received frame was part of an A-MPDU.
  1288. <legal all>
  1289. */
  1290. #define RX_MPDU_INFO_12_AMPDU_FLAG_OFFSET 0x00000030
  1291. #define RX_MPDU_INFO_12_AMPDU_FLAG_LSB 28
  1292. #define RX_MPDU_INFO_12_AMPDU_FLAG_MASK 0x10000000
  1293. /* Description RX_MPDU_INFO_12_BAR_FRAME
  1294. In case of ndp or phy_err or AST_based_lookup_valid ==
  1295. 0, this field will be set to 0
  1296. When set, received frame is a BAR frame
  1297. <legal all>
  1298. */
  1299. #define RX_MPDU_INFO_12_BAR_FRAME_OFFSET 0x00000030
  1300. #define RX_MPDU_INFO_12_BAR_FRAME_LSB 29
  1301. #define RX_MPDU_INFO_12_BAR_FRAME_MASK 0x20000000
  1302. /* Description RX_MPDU_INFO_12_RESERVED_12
  1303. <legal 0>.
  1304. */
  1305. #define RX_MPDU_INFO_12_RESERVED_12_OFFSET 0x00000030
  1306. #define RX_MPDU_INFO_12_RESERVED_12_LSB 30
  1307. #define RX_MPDU_INFO_12_RESERVED_12_MASK 0xc0000000
  1308. /* Description RX_MPDU_INFO_13_MPDU_LENGTH
  1309. In case of ndp or phy_err this field will be set to 0
  1310. MPDU length before decapsulation.
  1311. <legal all>
  1312. */
  1313. #define RX_MPDU_INFO_13_MPDU_LENGTH_OFFSET 0x00000034
  1314. #define RX_MPDU_INFO_13_MPDU_LENGTH_LSB 0
  1315. #define RX_MPDU_INFO_13_MPDU_LENGTH_MASK 0x00003fff
  1316. /* Description RX_MPDU_INFO_13_FIRST_MPDU
  1317. See definition in RX attention descriptor
  1318. In case of ndp or phy_err, this field will be set. Note
  1319. however that there will not actually be any data contents in
  1320. the MPDU.
  1321. <legal all>
  1322. */
  1323. #define RX_MPDU_INFO_13_FIRST_MPDU_OFFSET 0x00000034
  1324. #define RX_MPDU_INFO_13_FIRST_MPDU_LSB 14
  1325. #define RX_MPDU_INFO_13_FIRST_MPDU_MASK 0x00004000
  1326. /* Description RX_MPDU_INFO_13_MCAST_BCAST
  1327. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1328. this field will be set to 0
  1329. See definition in RX attention descriptor
  1330. <legal all>
  1331. */
  1332. #define RX_MPDU_INFO_13_MCAST_BCAST_OFFSET 0x00000034
  1333. #define RX_MPDU_INFO_13_MCAST_BCAST_LSB 15
  1334. #define RX_MPDU_INFO_13_MCAST_BCAST_MASK 0x00008000
  1335. /* Description RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND
  1336. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1337. this field will be set to 0
  1338. See definition in RX attention descriptor
  1339. <legal all>
  1340. */
  1341. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_OFFSET 0x00000034
  1342. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_LSB 16
  1343. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_MASK 0x00010000
  1344. /* Description RX_MPDU_INFO_13_AST_INDEX_TIMEOUT
  1345. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1346. this field will be set to 0
  1347. See definition in RX attention descriptor
  1348. <legal all>
  1349. */
  1350. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_OFFSET 0x00000034
  1351. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_LSB 17
  1352. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_MASK 0x00020000
  1353. /* Description RX_MPDU_INFO_13_POWER_MGMT
  1354. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1355. this field will be set to 0
  1356. See definition in RX attention descriptor
  1357. <legal all>
  1358. */
  1359. #define RX_MPDU_INFO_13_POWER_MGMT_OFFSET 0x00000034
  1360. #define RX_MPDU_INFO_13_POWER_MGMT_LSB 18
  1361. #define RX_MPDU_INFO_13_POWER_MGMT_MASK 0x00040000
  1362. /* Description RX_MPDU_INFO_13_NON_QOS
  1363. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1364. this field will be set to 1
  1365. See definition in RX attention descriptor
  1366. <legal all>
  1367. */
  1368. #define RX_MPDU_INFO_13_NON_QOS_OFFSET 0x00000034
  1369. #define RX_MPDU_INFO_13_NON_QOS_LSB 19
  1370. #define RX_MPDU_INFO_13_NON_QOS_MASK 0x00080000
  1371. /* Description RX_MPDU_INFO_13_NULL_DATA
  1372. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1373. this field will be set to 0
  1374. See definition in RX attention descriptor
  1375. <legal all>
  1376. */
  1377. #define RX_MPDU_INFO_13_NULL_DATA_OFFSET 0x00000034
  1378. #define RX_MPDU_INFO_13_NULL_DATA_LSB 20
  1379. #define RX_MPDU_INFO_13_NULL_DATA_MASK 0x00100000
  1380. /* Description RX_MPDU_INFO_13_MGMT_TYPE
  1381. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1382. this field will be set to 0
  1383. See definition in RX attention descriptor
  1384. <legal all>
  1385. */
  1386. #define RX_MPDU_INFO_13_MGMT_TYPE_OFFSET 0x00000034
  1387. #define RX_MPDU_INFO_13_MGMT_TYPE_LSB 21
  1388. #define RX_MPDU_INFO_13_MGMT_TYPE_MASK 0x00200000
  1389. /* Description RX_MPDU_INFO_13_CTRL_TYPE
  1390. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1391. this field will be set to 0
  1392. See definition in RX attention descriptor
  1393. <legal all>
  1394. */
  1395. #define RX_MPDU_INFO_13_CTRL_TYPE_OFFSET 0x00000034
  1396. #define RX_MPDU_INFO_13_CTRL_TYPE_LSB 22
  1397. #define RX_MPDU_INFO_13_CTRL_TYPE_MASK 0x00400000
  1398. /* Description RX_MPDU_INFO_13_MORE_DATA
  1399. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1400. this field will be set to 0
  1401. See definition in RX attention descriptor
  1402. <legal all>
  1403. */
  1404. #define RX_MPDU_INFO_13_MORE_DATA_OFFSET 0x00000034
  1405. #define RX_MPDU_INFO_13_MORE_DATA_LSB 23
  1406. #define RX_MPDU_INFO_13_MORE_DATA_MASK 0x00800000
  1407. /* Description RX_MPDU_INFO_13_EOSP
  1408. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1409. this field will be set to 0
  1410. See definition in RX attention descriptor
  1411. <legal all>
  1412. */
  1413. #define RX_MPDU_INFO_13_EOSP_OFFSET 0x00000034
  1414. #define RX_MPDU_INFO_13_EOSP_LSB 24
  1415. #define RX_MPDU_INFO_13_EOSP_MASK 0x01000000
  1416. /* Description RX_MPDU_INFO_13_FRAGMENT_FLAG
  1417. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1418. this field will be set to 0
  1419. See definition in RX attention descriptor
  1420. <legal all>
  1421. */
  1422. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_OFFSET 0x00000034
  1423. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_LSB 25
  1424. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_MASK 0x02000000
  1425. /* Description RX_MPDU_INFO_13_ORDER
  1426. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1427. this field will be set to 0
  1428. See definition in RX attention descriptor
  1429. <legal all>
  1430. */
  1431. #define RX_MPDU_INFO_13_ORDER_OFFSET 0x00000034
  1432. #define RX_MPDU_INFO_13_ORDER_LSB 26
  1433. #define RX_MPDU_INFO_13_ORDER_MASK 0x04000000
  1434. /* Description RX_MPDU_INFO_13_U_APSD_TRIGGER
  1435. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1436. this field will be set to 0
  1437. See definition in RX attention descriptor
  1438. <legal all>
  1439. */
  1440. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_OFFSET 0x00000034
  1441. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_LSB 27
  1442. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_MASK 0x08000000
  1443. /* Description RX_MPDU_INFO_13_ENCRYPT_REQUIRED
  1444. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1445. this field will be set to 0
  1446. See definition in RX attention descriptor
  1447. <legal all>
  1448. */
  1449. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_OFFSET 0x00000034
  1450. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_LSB 28
  1451. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_MASK 0x10000000
  1452. /* Description RX_MPDU_INFO_13_DIRECTED
  1453. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1454. this field will be set to 0
  1455. See definition in RX attention descriptor
  1456. <legal all>
  1457. */
  1458. #define RX_MPDU_INFO_13_DIRECTED_OFFSET 0x00000034
  1459. #define RX_MPDU_INFO_13_DIRECTED_LSB 29
  1460. #define RX_MPDU_INFO_13_DIRECTED_MASK 0x20000000
  1461. /* Description RX_MPDU_INFO_13_RESERVED_13
  1462. <legal 0>
  1463. */
  1464. #define RX_MPDU_INFO_13_RESERVED_13_OFFSET 0x00000034
  1465. #define RX_MPDU_INFO_13_RESERVED_13_LSB 30
  1466. #define RX_MPDU_INFO_13_RESERVED_13_MASK 0xc0000000
  1467. /* Description RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD
  1468. Field only valid when Mpdu_frame_control_valid is set
  1469. The frame control field of this received MPDU.
  1470. Field only valid when Ndp_frame and phy_err are NOT set
  1471. Bytes 0 + 1 of the received MPDU
  1472. <legal all>
  1473. */
  1474. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_OFFSET 0x00000038
  1475. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_LSB 0
  1476. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_MASK 0x0000ffff
  1477. /* Description RX_MPDU_INFO_14_MPDU_DURATION_FIELD
  1478. Field only valid when Mpdu_duration_valid is set
  1479. The duration field of this received MPDU.
  1480. <legal all>
  1481. */
  1482. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_OFFSET 0x00000038
  1483. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_LSB 16
  1484. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_MASK 0xffff0000
  1485. /* Description RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0
  1486. Field only valid when mac_addr_ad1_valid is set
  1487. The Least Significant 4 bytes of the Received Frames MAC
  1488. Address AD1
  1489. <legal all>
  1490. */
  1491. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_OFFSET 0x0000003c
  1492. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_LSB 0
  1493. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_MASK 0xffffffff
  1494. /* Description RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32
  1495. Field only valid when mac_addr_ad1_valid is set
  1496. The 2 most significant bytes of the Received Frames MAC
  1497. Address AD1
  1498. <legal all>
  1499. */
  1500. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_OFFSET 0x00000040
  1501. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_LSB 0
  1502. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_MASK 0x0000ffff
  1503. /* Description RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0
  1504. Field only valid when mac_addr_ad2_valid is set
  1505. The Least Significant 2 bytes of the Received Frames MAC
  1506. Address AD2
  1507. <legal all>
  1508. */
  1509. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_OFFSET 0x00000040
  1510. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_LSB 16
  1511. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_MASK 0xffff0000
  1512. /* Description RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16
  1513. Field only valid when mac_addr_ad2_valid is set
  1514. The 4 most significant bytes of the Received Frames MAC
  1515. Address AD2
  1516. <legal all>
  1517. */
  1518. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_OFFSET 0x00000044
  1519. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_LSB 0
  1520. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_MASK 0xffffffff
  1521. /* Description RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0
  1522. Field only valid when mac_addr_ad3_valid is set
  1523. The Least Significant 4 bytes of the Received Frames MAC
  1524. Address AD3
  1525. <legal all>
  1526. */
  1527. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_OFFSET 0x00000048
  1528. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_LSB 0
  1529. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_MASK 0xffffffff
  1530. /* Description RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32
  1531. Field only valid when mac_addr_ad3_valid is set
  1532. The 2 most significant bytes of the Received Frames MAC
  1533. Address AD3
  1534. <legal all>
  1535. */
  1536. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_OFFSET 0x0000004c
  1537. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_LSB 0
  1538. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_MASK 0x0000ffff
  1539. /* Description RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD
  1540. The sequence control field of the MPDU
  1541. <legal all>
  1542. */
  1543. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_OFFSET 0x0000004c
  1544. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_LSB 16
  1545. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_MASK 0xffff0000
  1546. /* Description RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0
  1547. Field only valid when mac_addr_ad4_valid is set
  1548. The Least Significant 4 bytes of the Received Frames MAC
  1549. Address AD4
  1550. <legal all>
  1551. */
  1552. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_OFFSET 0x00000050
  1553. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_LSB 0
  1554. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_MASK 0xffffffff
  1555. /* Description RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32
  1556. Field only valid when mac_addr_ad4_valid is set
  1557. The 2 most significant bytes of the Received Frames MAC
  1558. Address AD4
  1559. <legal all>
  1560. */
  1561. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_OFFSET 0x00000054
  1562. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_LSB 0
  1563. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_MASK 0x0000ffff
  1564. /* Description RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD
  1565. Field only valid when mpdu_qos_control_valid is set
  1566. The sequence control field of the MPDU
  1567. <legal all>
  1568. */
  1569. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_OFFSET 0x00000054
  1570. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_LSB 16
  1571. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_MASK 0xffff0000
  1572. /* Description RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD
  1573. Field only valid when mpdu_qos_control_valid is set
  1574. The HT control field of the MPDU
  1575. <legal all>
  1576. */
  1577. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_OFFSET 0x00000058
  1578. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_LSB 0
  1579. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_MASK 0xffffffff
  1580. #endif // _RX_MPDU_INFO_H_