rx_mpdu_info.h 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871
  1. /*
  2. * Copyright (c) 2016 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. first_delim_err
  452. Indicates that the first delimiter had a FCS failure.
  453. Only valid when first_mpdu and first_msdu are set.
  454. reserved_11
  455. <legal 0>
  456. key_id_octet
  457. The key ID octet from the IV.
  458. In case of ndp or phy_err or AST_based_lookup_valid ==
  459. 0, this field will be set to 0
  460. <legal all>
  461. new_peer_entry
  462. In case of ndp or phy_err or AST_based_lookup_valid ==
  463. 0, this field will be set to 0
  464. Set if new RX_PEER_ENTRY TLV follows. If clear,
  465. RX_PEER_ENTRY doesn't follow so RX DECRYPTION module either
  466. uses old peer entry or not decrypt.
  467. <legal all>
  468. decrypt_needed
  469. In case of ndp or phy_err or AST_based_lookup_valid ==
  470. 0, this field will be set to 0
  471. Set if decryption is needed.
  472. Note:
  473. When RXPCU sets bit 'ast_index_not_found' and/or
  474. ast_index_timeout', RXPCU will also ensure that this bit is
  475. NOT set
  476. CRYPTO for that reason only needs to evaluate this bit
  477. and non of the other ones.
  478. <legal all>
  479. decap_type
  480. In case of ndp or phy_err or AST_based_lookup_valid ==
  481. 0, this field will be set to 0
  482. Used by the OLE during decapsulation.
  483. Indicates the decapsulation that HW will perform:
  484. <enum 0 PTE_DECAP_RAW> No encapsulation
  485. <enum 1 PTE_DECAP_Native_WiFi>
  486. <enum 2 PTE_DECAP_Ethernet_802_3> Ethernet 2 (DIX) or
  487. 802.3 (uses SNAP/LLC)
  488. <legal 0-2>
  489. rx_insert_vlan_c_tag_padding
  490. In case of ndp or phy_err or AST_based_lookup_valid ==
  491. 0, this field will be set to 0
  492. Insert 4 byte of all zeros as VLAN tag if the rx payload
  493. does not have VLAN. Used during decapsulation.
  494. <legal all>
  495. rx_insert_vlan_s_tag_padding
  496. In case of ndp or phy_err or AST_based_lookup_valid ==
  497. 0, this field will be set to 0
  498. Insert 4 byte of all zeros as double VLAN tag if the rx
  499. payload does not have VLAN. Used during
  500. <legal all>
  501. strip_vlan_c_tag_decap
  502. In case of ndp or phy_err or AST_based_lookup_valid ==
  503. 0, this field will be set to 0
  504. Strip the VLAN during decapsulation.  Used by the OLE.
  505. <legal all>
  506. strip_vlan_s_tag_decap
  507. In case of ndp or phy_err or AST_based_lookup_valid ==
  508. 0, this field will be set to 0
  509. Strip the double VLAN during decapsulation.  Used by
  510. the OLE.
  511. <legal all>
  512. pre_delim_count
  513. The number of delimiters before this MPDU.
  514. In case of ndp or phy_err, this field will be set to 0
  515. ampdu_flag
  516. When set, received frame was part of an A-MPDU.
  517. <legal all>
  518. bar_frame
  519. In case of ndp or phy_err or AST_based_lookup_valid ==
  520. 0, this field will be set to 0
  521. When set, received frame is a BAR frame
  522. <legal all>
  523. reserved_12
  524. <legal 0>.
  525. mpdu_length
  526. In case of ndp or phy_err this field will be set to 0
  527. MPDU length before decapsulation.
  528. <legal all>
  529. first_mpdu
  530. See definition in RX attention descriptor
  531. In case of ndp or phy_err, this field will be set. Note
  532. however that there will not actually be any data contents in
  533. the MPDU.
  534. <legal all>
  535. mcast_bcast
  536. In case of ndp or phy_err or Phy_err_during_mpdu_header
  537. this field will be set to 0
  538. See definition in RX attention descriptor
  539. <legal all>
  540. ast_index_not_found
  541. In case of ndp or phy_err or Phy_err_during_mpdu_header
  542. this field will be set to 0
  543. See definition in RX attention descriptor
  544. <legal all>
  545. ast_index_timeout
  546. In case of ndp or phy_err or Phy_err_during_mpdu_header
  547. this field will be set to 0
  548. See definition in RX attention descriptor
  549. <legal all>
  550. power_mgmt
  551. In case of ndp or phy_err or Phy_err_during_mpdu_header
  552. this field will be set to 0
  553. See definition in RX attention descriptor
  554. <legal all>
  555. non_qos
  556. In case of ndp or phy_err or Phy_err_during_mpdu_header
  557. this field will be set to 1
  558. See definition in RX attention descriptor
  559. <legal all>
  560. null_data
  561. In case of ndp or phy_err or Phy_err_during_mpdu_header
  562. this field will be set to 0
  563. See definition in RX attention descriptor
  564. <legal all>
  565. mgmt_type
  566. In case of ndp or phy_err or Phy_err_during_mpdu_header
  567. this field will be set to 0
  568. See definition in RX attention descriptor
  569. <legal all>
  570. ctrl_type
  571. In case of ndp or phy_err or Phy_err_during_mpdu_header
  572. this field will be set to 0
  573. See definition in RX attention descriptor
  574. <legal all>
  575. more_data
  576. In case of ndp or phy_err or Phy_err_during_mpdu_header
  577. this field will be set to 0
  578. See definition in RX attention descriptor
  579. <legal all>
  580. eosp
  581. In case of ndp or phy_err or Phy_err_during_mpdu_header
  582. this field will be set to 0
  583. See definition in RX attention descriptor
  584. <legal all>
  585. fragment_flag
  586. In case of ndp or phy_err or Phy_err_during_mpdu_header
  587. this field will be set to 0
  588. See definition in RX attention descriptor
  589. <legal all>
  590. order
  591. In case of ndp or phy_err or Phy_err_during_mpdu_header
  592. this field will be set to 0
  593. See definition in RX attention descriptor
  594. <legal all>
  595. u_apsd_trigger
  596. In case of ndp or phy_err or Phy_err_during_mpdu_header
  597. this field will be set to 0
  598. See definition in RX attention descriptor
  599. <legal all>
  600. encrypt_required
  601. In case of ndp or phy_err or Phy_err_during_mpdu_header
  602. this field will be set to 0
  603. See definition in RX attention descriptor
  604. <legal all>
  605. directed
  606. In case of ndp or phy_err or Phy_err_during_mpdu_header
  607. this field will be set to 0
  608. See definition in RX attention descriptor
  609. <legal all>
  610. reserved_13
  611. <legal 0>
  612. mpdu_frame_control_field
  613. Field only valid when Mpdu_frame_control_valid is set
  614. The frame control field of this received MPDU.
  615. Field only valid when Ndp_frame and phy_err are NOT set
  616. Bytes 0 + 1 of the received MPDU
  617. <legal all>
  618. mpdu_duration_field
  619. Field only valid when Mpdu_duration_valid is set
  620. The duration field of this received MPDU.
  621. <legal all>
  622. mac_addr_ad1_31_0
  623. Field only valid when mac_addr_ad1_valid is set
  624. The Least Significant 4 bytes of the Received Frames MAC
  625. Address AD1
  626. <legal all>
  627. mac_addr_ad1_47_32
  628. Field only valid when mac_addr_ad1_valid is set
  629. The 2 most significant bytes of the Received Frames MAC
  630. Address AD1
  631. <legal all>
  632. mac_addr_ad2_15_0
  633. Field only valid when mac_addr_ad2_valid is set
  634. The Least Significant 2 bytes of the Received Frames MAC
  635. Address AD2
  636. <legal all>
  637. mac_addr_ad2_47_16
  638. Field only valid when mac_addr_ad2_valid is set
  639. The 4 most significant bytes of the Received Frames MAC
  640. Address AD2
  641. <legal all>
  642. mac_addr_ad3_31_0
  643. Field only valid when mac_addr_ad3_valid is set
  644. The Least Significant 4 bytes of the Received Frames MAC
  645. Address AD3
  646. <legal all>
  647. mac_addr_ad3_47_32
  648. Field only valid when mac_addr_ad3_valid is set
  649. The 2 most significant bytes of the Received Frames MAC
  650. Address AD3
  651. <legal all>
  652. mpdu_sequence_control_field
  653. The sequence control field of the MPDU
  654. <legal all>
  655. mac_addr_ad4_31_0
  656. Field only valid when mac_addr_ad4_valid is set
  657. The Least Significant 4 bytes of the Received Frames MAC
  658. Address AD4
  659. <legal all>
  660. mac_addr_ad4_47_32
  661. Field only valid when mac_addr_ad4_valid is set
  662. The 2 most significant bytes of the Received Frames MAC
  663. Address AD4
  664. <legal all>
  665. mpdu_qos_control_field
  666. Field only valid when mpdu_qos_control_valid is set
  667. The sequence control field of the MPDU
  668. <legal all>
  669. mpdu_ht_control_field
  670. Field only valid when mpdu_qos_control_valid is set
  671. The HT control field of the MPDU
  672. <legal all>
  673. */
  674. /* Description RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY
  675. Field indicates what the reason was that this MPDU frame
  676. was allowed to come into the receive path by RXPCU
  677. <enum 0 rxpcu_filter_pass> This MPDU passed the normal
  678. frame filter programming of rxpcu
  679. <enum 1 rxpcu_monitor_client> This MPDU did NOT pass the
  680. regular frame filter and would have been dropped, were it
  681. not for the frame fitting into the 'monitor_client'
  682. category.
  683. <enum 2 rxpcu_monitor_other> This MPDU did NOT pass the
  684. regular frame filter and also did not pass the
  685. rxpcu_monitor_client filter. It would have been dropped
  686. accept that it did pass the 'monitor_other' category.
  687. Note: for ndp frame, if it was expected because the
  688. preceding NDPA was filter_pass, the setting
  689. rxpcu_filter_pass will be used. This setting will also be
  690. used for every ndp frame in case Promiscuous mode is
  691. enabled.
  692. In case promiscuous is not enabled, and an NDP is not
  693. preceded by a NPDA filter pass frame, the only other setting
  694. that could appear here for the NDP is rxpcu_monitor_other.
  695. (rxpcu has a configuration bit specifically for this
  696. scenario)
  697. Note: for
  698. <legal 0-2>
  699. */
  700. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_OFFSET 0x00000000
  701. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_LSB 0
  702. #define RX_MPDU_INFO_0_RXPCU_MPDU_FILTER_IN_CATEGORY_MASK 0x00000003
  703. /* Description RX_MPDU_INFO_0_SW_FRAME_GROUP_ID
  704. SW processes frames based on certain classifications.
  705. This field indicates to what sw classification this MPDU is
  706. mapped.
  707. The classification is given in priority order
  708. <enum 0 sw_frame_group_NDP_frame> Note: The
  709. corresponding Rxpcu_Mpdu_filter_in_category can be
  710. rxpcu_filter_pass or rxpcu_monitor_other
  711. <enum 1 sw_frame_group_Multicast_data>
  712. <enum 2 sw_frame_group_Unicast_data>
  713. <enum 3 sw_frame_group_Null_data > This includes mpdus
  714. of type Data Null as well as QoS Data Null
  715. <enum 4 sw_frame_group_mgmt_0000 >
  716. <enum 5 sw_frame_group_mgmt_0001 >
  717. <enum 6 sw_frame_group_mgmt_0010 >
  718. <enum 7 sw_frame_group_mgmt_0011 >
  719. <enum 8 sw_frame_group_mgmt_0100 >
  720. <enum 9 sw_frame_group_mgmt_0101 >
  721. <enum 10 sw_frame_group_mgmt_0110 >
  722. <enum 11 sw_frame_group_mgmt_0111 >
  723. <enum 12 sw_frame_group_mgmt_1000 >
  724. <enum 13 sw_frame_group_mgmt_1001 >
  725. <enum 14 sw_frame_group_mgmt_1010 >
  726. <enum 15 sw_frame_group_mgmt_1011 >
  727. <enum 16 sw_frame_group_mgmt_1100 >
  728. <enum 17 sw_frame_group_mgmt_1101 >
  729. <enum 18 sw_frame_group_mgmt_1110 >
  730. <enum 19 sw_frame_group_mgmt_1111 >
  731. <enum 20 sw_frame_group_ctrl_0000 >
  732. <enum 21 sw_frame_group_ctrl_0001 >
  733. <enum 22 sw_frame_group_ctrl_0010 >
  734. <enum 23 sw_frame_group_ctrl_0011 >
  735. <enum 24 sw_frame_group_ctrl_0100 >
  736. <enum 25 sw_frame_group_ctrl_0101 >
  737. <enum 26 sw_frame_group_ctrl_0110 >
  738. <enum 27 sw_frame_group_ctrl_0111 >
  739. <enum 28 sw_frame_group_ctrl_1000 >
  740. <enum 29 sw_frame_group_ctrl_1001 >
  741. <enum 30 sw_frame_group_ctrl_1010 >
  742. <enum 31 sw_frame_group_ctrl_1011 >
  743. <enum 32 sw_frame_group_ctrl_1100 >
  744. <enum 33 sw_frame_group_ctrl_1101 >
  745. <enum 34 sw_frame_group_ctrl_1110 >
  746. <enum 35 sw_frame_group_ctrl_1111 >
  747. <enum 36 sw_frame_group_unsupported> This covers type 3
  748. and protocol version != 0
  749. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  750. can only be rxpcu_monitor_other
  751. Note: The corresponding Rxpcu_Mpdu_filter_in_category
  752. can be rxpcu_filter_pass
  753. <legal 0-37>
  754. */
  755. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_OFFSET 0x00000000
  756. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_LSB 2
  757. #define RX_MPDU_INFO_0_SW_FRAME_GROUP_ID_MASK 0x000001fc
  758. /* Description RX_MPDU_INFO_0_NDP_FRAME
  759. When set, the received frame was an NDP frame, and thus
  760. there will be no MPDU data.
  761. <legal all>
  762. */
  763. #define RX_MPDU_INFO_0_NDP_FRAME_OFFSET 0x00000000
  764. #define RX_MPDU_INFO_0_NDP_FRAME_LSB 9
  765. #define RX_MPDU_INFO_0_NDP_FRAME_MASK 0x00000200
  766. /* Description RX_MPDU_INFO_0_PHY_ERR
  767. When set, a PHY error was received before MAC received
  768. any data, and thus there will be no MPDU data.
  769. <legal all>
  770. */
  771. #define RX_MPDU_INFO_0_PHY_ERR_OFFSET 0x00000000
  772. #define RX_MPDU_INFO_0_PHY_ERR_LSB 10
  773. #define RX_MPDU_INFO_0_PHY_ERR_MASK 0x00000400
  774. /* Description RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER
  775. When set, a PHY error was received before MAC received
  776. the complete MPDU header which was needed for proper
  777. decoding
  778. <legal all>
  779. */
  780. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_OFFSET 0x00000000
  781. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_LSB 11
  782. #define RX_MPDU_INFO_0_PHY_ERR_DURING_MPDU_HEADER_MASK 0x00000800
  783. /* Description RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR
  784. Set when RXPCU detected a version error in the Frame
  785. control field
  786. <legal all>
  787. */
  788. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_OFFSET 0x00000000
  789. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_LSB 12
  790. #define RX_MPDU_INFO_0_PROTOCOL_VERSION_ERR_MASK 0x00001000
  791. /* Description RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID
  792. When set, AST based lookup for this frame has found a
  793. valid result.
  794. Note that for NDP frame this will never be set
  795. <legal all>
  796. */
  797. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_OFFSET 0x00000000
  798. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_LSB 13
  799. #define RX_MPDU_INFO_0_AST_BASED_LOOKUP_VALID_MASK 0x00002000
  800. /* Description RX_MPDU_INFO_0_RESERVED_0A
  801. <legal 0>
  802. */
  803. #define RX_MPDU_INFO_0_RESERVED_0A_OFFSET 0x00000000
  804. #define RX_MPDU_INFO_0_RESERVED_0A_LSB 14
  805. #define RX_MPDU_INFO_0_RESERVED_0A_MASK 0x0000c000
  806. /* Description RX_MPDU_INFO_0_PHY_PPDU_ID
  807. A ppdu counter value that PHY increments for every PPDU
  808. received. The counter value wraps around
  809. <legal all>
  810. */
  811. #define RX_MPDU_INFO_0_PHY_PPDU_ID_OFFSET 0x00000000
  812. #define RX_MPDU_INFO_0_PHY_PPDU_ID_LSB 16
  813. #define RX_MPDU_INFO_0_PHY_PPDU_ID_MASK 0xffff0000
  814. /* Description RX_MPDU_INFO_1_AST_INDEX
  815. This field indicates the index of the AST entry
  816. corresponding to this MPDU. It is provided by the GSE module
  817. instantiated in RXPCU.
  818. A value of 0xFFFF indicates an invalid AST index,
  819. meaning that No AST entry was found or NO AST search was
  820. performed
  821. In case of ndp or phy_err, this field will be set to
  822. 0xFFFF
  823. <legal all>
  824. */
  825. #define RX_MPDU_INFO_1_AST_INDEX_OFFSET 0x00000004
  826. #define RX_MPDU_INFO_1_AST_INDEX_LSB 0
  827. #define RX_MPDU_INFO_1_AST_INDEX_MASK 0x0000ffff
  828. /* Description RX_MPDU_INFO_1_SW_PEER_ID
  829. In case of ndp or phy_err or AST_based_lookup_valid ==
  830. 0, this field will be set to 0
  831. This field indicates a unique peer identifier. It is set
  832. equal to field 'sw_peer_id' from the AST entry
  833. <legal all>
  834. */
  835. #define RX_MPDU_INFO_1_SW_PEER_ID_OFFSET 0x00000004
  836. #define RX_MPDU_INFO_1_SW_PEER_ID_LSB 16
  837. #define RX_MPDU_INFO_1_SW_PEER_ID_MASK 0xffff0000
  838. /* Description RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID
  839. When set, the field Mpdu_Frame_control_field has valid
  840. information
  841. <legal all>
  842. */
  843. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_OFFSET 0x00000008
  844. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_LSB 0
  845. #define RX_MPDU_INFO_2_MPDU_FRAME_CONTROL_VALID_MASK 0x00000001
  846. /* Description RX_MPDU_INFO_2_MPDU_DURATION_VALID
  847. When set, the field Mpdu_duration_field has valid
  848. information
  849. <legal all>
  850. */
  851. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_OFFSET 0x00000008
  852. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_LSB 1
  853. #define RX_MPDU_INFO_2_MPDU_DURATION_VALID_MASK 0x00000002
  854. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID
  855. When set, the fields mac_addr_ad1_..... have valid
  856. information
  857. <legal all>
  858. */
  859. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_OFFSET 0x00000008
  860. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_LSB 2
  861. #define RX_MPDU_INFO_2_MAC_ADDR_AD1_VALID_MASK 0x00000004
  862. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID
  863. When set, the fields mac_addr_ad2_..... have valid
  864. information
  865. <legal all>
  866. */
  867. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_OFFSET 0x00000008
  868. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_LSB 3
  869. #define RX_MPDU_INFO_2_MAC_ADDR_AD2_VALID_MASK 0x00000008
  870. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID
  871. When set, the fields mac_addr_ad3_..... have valid
  872. information
  873. <legal all>
  874. */
  875. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_OFFSET 0x00000008
  876. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_LSB 4
  877. #define RX_MPDU_INFO_2_MAC_ADDR_AD3_VALID_MASK 0x00000010
  878. /* Description RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID
  879. When set, the fields mac_addr_ad4_..... have valid
  880. information
  881. <legal all>
  882. */
  883. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_OFFSET 0x00000008
  884. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_LSB 5
  885. #define RX_MPDU_INFO_2_MAC_ADDR_AD4_VALID_MASK 0x00000020
  886. /* Description RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID
  887. When set, the fields mpdu_sequence_control_field and
  888. mpdu_sequence_number have valid information as well as field
  889. For MPDUs without a sequence control field, this field
  890. will not be set.
  891. <legal all>
  892. */
  893. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_OFFSET 0x00000008
  894. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_LSB 6
  895. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_CONTROL_VALID_MASK 0x00000040
  896. /* Description RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID
  897. When set, the field mpdu_qos_control_field has valid
  898. information
  899. For MPDUs without a QoS control field, this field will
  900. not be set.
  901. <legal all>
  902. */
  903. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_OFFSET 0x00000008
  904. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_LSB 7
  905. #define RX_MPDU_INFO_2_MPDU_QOS_CONTROL_VALID_MASK 0x00000080
  906. /* Description RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID
  907. When set, the field mpdu_HT_control_field has valid
  908. information
  909. For MPDUs without a HT control field, this field will
  910. not be set.
  911. <legal all>
  912. */
  913. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_OFFSET 0x00000008
  914. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_LSB 8
  915. #define RX_MPDU_INFO_2_MPDU_HT_CONTROL_VALID_MASK 0x00000100
  916. /* Description RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID
  917. When set, the encryption related info fields, like IV
  918. and PN are valid
  919. For MPDUs that are not encrypted, this will not be set.
  920. <legal all>
  921. */
  922. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_OFFSET 0x00000008
  923. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_LSB 9
  924. #define RX_MPDU_INFO_2_FRAME_ENCRYPTION_INFO_VALID_MASK 0x00000200
  925. /* Description RX_MPDU_INFO_2_RESERVED_2A
  926. <legal 0>
  927. */
  928. #define RX_MPDU_INFO_2_RESERVED_2A_OFFSET 0x00000008
  929. #define RX_MPDU_INFO_2_RESERVED_2A_LSB 10
  930. #define RX_MPDU_INFO_2_RESERVED_2A_MASK 0x0000fc00
  931. /* Description RX_MPDU_INFO_2_FR_DS
  932. Field only valid when Mpdu_frame_control_valid is set
  933. Set if the from DS bit is set in the frame control.
  934. <legal all>
  935. */
  936. #define RX_MPDU_INFO_2_FR_DS_OFFSET 0x00000008
  937. #define RX_MPDU_INFO_2_FR_DS_LSB 16
  938. #define RX_MPDU_INFO_2_FR_DS_MASK 0x00010000
  939. /* Description RX_MPDU_INFO_2_TO_DS
  940. Field only valid when Mpdu_frame_control_valid is set
  941. Set if the to DS bit is set in the frame control.
  942. <legal all>
  943. */
  944. #define RX_MPDU_INFO_2_TO_DS_OFFSET 0x00000008
  945. #define RX_MPDU_INFO_2_TO_DS_LSB 17
  946. #define RX_MPDU_INFO_2_TO_DS_MASK 0x00020000
  947. /* Description RX_MPDU_INFO_2_ENCRYPTED
  948. Field only valid when Mpdu_frame_control_valid is set.
  949. Protected bit from the frame control.
  950. <legal all>
  951. */
  952. #define RX_MPDU_INFO_2_ENCRYPTED_OFFSET 0x00000008
  953. #define RX_MPDU_INFO_2_ENCRYPTED_LSB 18
  954. #define RX_MPDU_INFO_2_ENCRYPTED_MASK 0x00040000
  955. /* Description RX_MPDU_INFO_2_MPDU_RETRY
  956. Field only valid when Mpdu_frame_control_valid is set.
  957. Retry bit from the frame control. Only valid when
  958. first_msdu is set.
  959. <legal all>
  960. */
  961. #define RX_MPDU_INFO_2_MPDU_RETRY_OFFSET 0x00000008
  962. #define RX_MPDU_INFO_2_MPDU_RETRY_LSB 19
  963. #define RX_MPDU_INFO_2_MPDU_RETRY_MASK 0x00080000
  964. /* Description RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER
  965. Field only valid when Mpdu_sequence_control_valid is
  966. set.
  967. The sequence number from the 802.11 header.
  968. <legal all>
  969. */
  970. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_OFFSET 0x00000008
  971. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_LSB 20
  972. #define RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_MASK 0xfff00000
  973. /* Description RX_MPDU_INFO_3_EPD_EN
  974. Field only valid when AST_based_lookup_valid == 1.
  975. In case of ndp or phy_err or AST_based_lookup_valid ==
  976. 0, this field will be set to 0
  977. If set to one use EPD instead of LPD
  978. <legal all>
  979. */
  980. #define RX_MPDU_INFO_3_EPD_EN_OFFSET 0x0000000c
  981. #define RX_MPDU_INFO_3_EPD_EN_LSB 0
  982. #define RX_MPDU_INFO_3_EPD_EN_MASK 0x00000001
  983. /* Description RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED
  984. In case of ndp or phy_err or AST_based_lookup_valid ==
  985. 0, this field will be set to 0
  986. When set, all frames (data only ?) shall be encrypted.
  987. If not, RX CRYPTO shall set an error flag.
  988. <legal all>
  989. */
  990. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_OFFSET 0x0000000c
  991. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_LSB 1
  992. #define RX_MPDU_INFO_3_ALL_FRAMES_SHALL_BE_ENCRYPTED_MASK 0x00000002
  993. /* Description RX_MPDU_INFO_3_ENCRYPT_TYPE
  994. In case of ndp or phy_err or AST_based_lookup_valid ==
  995. 0, this field will be set to 0
  996. Indicates type of decrypt cipher used (as defined in the
  997. peer entry)
  998. <enum 0 wep_40> WEP 40-bit
  999. <enum 1 wep_104> WEP 104-bit
  1000. <enum 2 tkip_no_mic> TKIP without MIC
  1001. <enum 3 wep_128> WEP 128-bit
  1002. <enum 4 tkip_with_mic> TKIP with MIC
  1003. <enum 5 wapi> WAPI
  1004. <enum 6 aes_ccmp_128> AES CCMP 128
  1005. <enum 7 no_cipher> No crypto
  1006. <enum 8 aes_ccmp_256> AES CCMP 256
  1007. <enum 9 aes_gcmp_128> AES CCMP 128
  1008. <enum 10 aes_gcmp_256> AES CCMP 256
  1009. <enum 11 wapi_gcm_sm4> WAPI GCM SM4
  1010. <legal 0-11>
  1011. */
  1012. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_OFFSET 0x0000000c
  1013. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_LSB 2
  1014. #define RX_MPDU_INFO_3_ENCRYPT_TYPE_MASK 0x0000003c
  1015. /* Description RX_MPDU_INFO_3_MESH_STA
  1016. In case of ndp or phy_err or AST_based_lookup_valid ==
  1017. 0, this field will be set to 0
  1018. When set, this is a Mesh (11s) STA
  1019. <legal all>
  1020. */
  1021. #define RX_MPDU_INFO_3_MESH_STA_OFFSET 0x0000000c
  1022. #define RX_MPDU_INFO_3_MESH_STA_LSB 6
  1023. #define RX_MPDU_INFO_3_MESH_STA_MASK 0x00000040
  1024. /* Description RX_MPDU_INFO_3_BSSID_HIT
  1025. In case of ndp or phy_err or AST_based_lookup_valid ==
  1026. 0, this field will be set to 0
  1027. When set, the BSSID of the incoming frame matched one of
  1028. the 8 BSSID register values
  1029. <legal all>
  1030. */
  1031. #define RX_MPDU_INFO_3_BSSID_HIT_OFFSET 0x0000000c
  1032. #define RX_MPDU_INFO_3_BSSID_HIT_LSB 7
  1033. #define RX_MPDU_INFO_3_BSSID_HIT_MASK 0x00000080
  1034. /* Description RX_MPDU_INFO_3_BSSID_NUMBER
  1035. Field only valid when bssid_hit is set.
  1036. This number indicates which one out of the 8 BSSID
  1037. register values matched the incoming frame
  1038. <legal all>
  1039. */
  1040. #define RX_MPDU_INFO_3_BSSID_NUMBER_OFFSET 0x0000000c
  1041. #define RX_MPDU_INFO_3_BSSID_NUMBER_LSB 8
  1042. #define RX_MPDU_INFO_3_BSSID_NUMBER_MASK 0x00000f00
  1043. /* Description RX_MPDU_INFO_3_TID
  1044. Field only valid when mpdu_qos_control_valid is set
  1045. The TID field in the QoS control field
  1046. <legal all>
  1047. */
  1048. #define RX_MPDU_INFO_3_TID_OFFSET 0x0000000c
  1049. #define RX_MPDU_INFO_3_TID_LSB 12
  1050. #define RX_MPDU_INFO_3_TID_MASK 0x0000f000
  1051. /* Description RX_MPDU_INFO_3_RESERVED_3A
  1052. <legal 0>
  1053. */
  1054. #define RX_MPDU_INFO_3_RESERVED_3A_OFFSET 0x0000000c
  1055. #define RX_MPDU_INFO_3_RESERVED_3A_LSB 16
  1056. #define RX_MPDU_INFO_3_RESERVED_3A_MASK 0xffff0000
  1057. /* Description RX_MPDU_INFO_4_PN_31_0
  1058. WEP: IV = {key_id_octet, pn2, pn1, pn0}. Only pn[23:0]
  1059. is valid.
  1060. TKIP: IV = {pn5, pn4, pn3, pn2, key_id_octet, pn0,
  1061. WEPSeed[1], pn1}. Only pn[47:0] is valid.
  1062. AES-CCM: IV = {pn5, pn4, pn3, pn2, key_id_octet, 0x0,
  1063. pn1, pn0}. Only pn[47:0] is valid.
  1064. WAPI: IV = {key_id_octet, 0x0, pn15, pn14, pn13, pn12,
  1065. pn11, pn10, pn9, pn8, pn7, pn6, pn5, pn4, pn3, pn2, pn1,
  1066. pn0}. pn[127:0] are valid.
  1067. */
  1068. #define RX_MPDU_INFO_4_PN_31_0_OFFSET 0x00000010
  1069. #define RX_MPDU_INFO_4_PN_31_0_LSB 0
  1070. #define RX_MPDU_INFO_4_PN_31_0_MASK 0xffffffff
  1071. /* Description RX_MPDU_INFO_5_PN_63_32
  1072. Bits [63:32] of the PN number. See description for
  1073. pn_31_0.
  1074. */
  1075. #define RX_MPDU_INFO_5_PN_63_32_OFFSET 0x00000014
  1076. #define RX_MPDU_INFO_5_PN_63_32_LSB 0
  1077. #define RX_MPDU_INFO_5_PN_63_32_MASK 0xffffffff
  1078. /* Description RX_MPDU_INFO_6_PN_95_64
  1079. Bits [95:64] of the PN number. See description for
  1080. pn_31_0.
  1081. */
  1082. #define RX_MPDU_INFO_6_PN_95_64_OFFSET 0x00000018
  1083. #define RX_MPDU_INFO_6_PN_95_64_LSB 0
  1084. #define RX_MPDU_INFO_6_PN_95_64_MASK 0xffffffff
  1085. /* Description RX_MPDU_INFO_7_PN_127_96
  1086. Bits [127:96] of the PN number. See description for
  1087. pn_31_0.
  1088. */
  1089. #define RX_MPDU_INFO_7_PN_127_96_OFFSET 0x0000001c
  1090. #define RX_MPDU_INFO_7_PN_127_96_LSB 0
  1091. #define RX_MPDU_INFO_7_PN_127_96_MASK 0xffffffff
  1092. /* Description RX_MPDU_INFO_8_PEER_META_DATA
  1093. In case of ndp or phy_err or AST_based_lookup_valid ==
  1094. 0, this field will be set to 0
  1095. Meta data that SW has programmed in the Peer table entry
  1096. of the transmitting STA.
  1097. <legal all>
  1098. */
  1099. #define RX_MPDU_INFO_8_PEER_META_DATA_OFFSET 0x00000020
  1100. #define RX_MPDU_INFO_8_PEER_META_DATA_LSB 0
  1101. #define RX_MPDU_INFO_8_PEER_META_DATA_MASK 0xffffffff
  1102. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_OFFSET 0x00000024
  1103. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_LSB 0
  1104. #define RX_MPDU_INFO_9_RXPT_CLASSIFY_INFO_RXPT_CLASSIFY_INFO_DETAILS_MASK 0xffffffff
  1105. /* Description RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0
  1106. In case of ndp or phy_err or AST_based_lookup_valid ==
  1107. 0, this field will be set to 0
  1108. Address (lower 32 bits) of the REO queue descriptor.
  1109. If no Peer entry lookup happened for this frame, the
  1110. value wil be set to 0, and the frame shall never be pushed
  1111. to REO entrance ring.
  1112. <legal all>
  1113. */
  1114. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_OFFSET 0x00000028
  1115. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_LSB 0
  1116. #define RX_MPDU_INFO_10_RX_REO_QUEUE_DESC_ADDR_31_0_MASK 0xffffffff
  1117. /* Description RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32
  1118. In case of ndp or phy_err or AST_based_lookup_valid ==
  1119. 0, this field will be set to 0
  1120. Address (upper 8 bits) of the REO queue descriptor.
  1121. If no Peer entry lookup happened for this frame, the
  1122. value wil be set to 0, and the frame shall never be pushed
  1123. to REO entrance ring.
  1124. <legal all>
  1125. */
  1126. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_OFFSET 0x0000002c
  1127. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_LSB 0
  1128. #define RX_MPDU_INFO_11_RX_REO_QUEUE_DESC_ADDR_39_32_MASK 0x000000ff
  1129. /* Description RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER
  1130. In case of ndp or phy_err or AST_based_lookup_valid ==
  1131. 0, this field will be set to 0
  1132. Indicates the MPDU queue ID to which this MPDU link
  1133. descriptor belongs
  1134. Used for tracking and debugging
  1135. <legal all>
  1136. */
  1137. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_OFFSET 0x0000002c
  1138. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_LSB 8
  1139. #define RX_MPDU_INFO_11_RECEIVE_QUEUE_NUMBER_MASK 0x00ffff00
  1140. /* Description RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING
  1141. Indicates that a delimiter FCS error was found in
  1142. between the Previous MPDU and this MPDU.
  1143. Note that this is just a warning, and does not mean that
  1144. this MPDU is corrupted in any way. If it is, there will be
  1145. other errors indicated such as FCS or decrypt errors
  1146. */
  1147. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_OFFSET 0x0000002c
  1148. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_LSB 24
  1149. #define RX_MPDU_INFO_11_PRE_DELIM_ERR_WARNING_MASK 0x01000000
  1150. /* Description RX_MPDU_INFO_11_FIRST_DELIM_ERR
  1151. Indicates that the first delimiter had a FCS failure.
  1152. Only valid when first_mpdu and first_msdu are set.
  1153. */
  1154. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_OFFSET 0x0000002c
  1155. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_LSB 25
  1156. #define RX_MPDU_INFO_11_FIRST_DELIM_ERR_MASK 0x02000000
  1157. /* Description RX_MPDU_INFO_11_RESERVED_11
  1158. <legal 0>
  1159. */
  1160. #define RX_MPDU_INFO_11_RESERVED_11_OFFSET 0x0000002c
  1161. #define RX_MPDU_INFO_11_RESERVED_11_LSB 26
  1162. #define RX_MPDU_INFO_11_RESERVED_11_MASK 0xfc000000
  1163. /* Description RX_MPDU_INFO_12_KEY_ID_OCTET
  1164. The key ID octet from the IV.
  1165. In case of ndp or phy_err or AST_based_lookup_valid ==
  1166. 0, this field will be set to 0
  1167. <legal all>
  1168. */
  1169. #define RX_MPDU_INFO_12_KEY_ID_OCTET_OFFSET 0x00000030
  1170. #define RX_MPDU_INFO_12_KEY_ID_OCTET_LSB 0
  1171. #define RX_MPDU_INFO_12_KEY_ID_OCTET_MASK 0x000000ff
  1172. /* Description RX_MPDU_INFO_12_NEW_PEER_ENTRY
  1173. In case of ndp or phy_err or AST_based_lookup_valid ==
  1174. 0, this field will be set to 0
  1175. Set if new RX_PEER_ENTRY TLV follows. If clear,
  1176. RX_PEER_ENTRY doesn't follow so RX DECRYPTION module either
  1177. uses old peer entry or not decrypt.
  1178. <legal all>
  1179. */
  1180. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_OFFSET 0x00000030
  1181. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_LSB 8
  1182. #define RX_MPDU_INFO_12_NEW_PEER_ENTRY_MASK 0x00000100
  1183. /* Description RX_MPDU_INFO_12_DECRYPT_NEEDED
  1184. In case of ndp or phy_err or AST_based_lookup_valid ==
  1185. 0, this field will be set to 0
  1186. Set if decryption is needed.
  1187. Note:
  1188. When RXPCU sets bit 'ast_index_not_found' and/or
  1189. ast_index_timeout', RXPCU will also ensure that this bit is
  1190. NOT set
  1191. CRYPTO for that reason only needs to evaluate this bit
  1192. and non of the other ones.
  1193. <legal all>
  1194. */
  1195. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_OFFSET 0x00000030
  1196. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_LSB 9
  1197. #define RX_MPDU_INFO_12_DECRYPT_NEEDED_MASK 0x00000200
  1198. /* Description RX_MPDU_INFO_12_DECAP_TYPE
  1199. In case of ndp or phy_err or AST_based_lookup_valid ==
  1200. 0, this field will be set to 0
  1201. Used by the OLE during decapsulation.
  1202. Indicates the decapsulation that HW will perform:
  1203. <enum 0 PTE_DECAP_RAW> No encapsulation
  1204. <enum 1 PTE_DECAP_Native_WiFi>
  1205. <enum 2 PTE_DECAP_Ethernet_802_3> Ethernet 2 (DIX) or
  1206. 802.3 (uses SNAP/LLC)
  1207. <legal 0-2>
  1208. */
  1209. #define RX_MPDU_INFO_12_DECAP_TYPE_OFFSET 0x00000030
  1210. #define RX_MPDU_INFO_12_DECAP_TYPE_LSB 10
  1211. #define RX_MPDU_INFO_12_DECAP_TYPE_MASK 0x00000c00
  1212. /* Description RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING
  1213. In case of ndp or phy_err or AST_based_lookup_valid ==
  1214. 0, this field will be set to 0
  1215. Insert 4 byte of all zeros as VLAN tag if the rx payload
  1216. does not have VLAN. Used during decapsulation.
  1217. <legal all>
  1218. */
  1219. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_OFFSET 0x00000030
  1220. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_LSB 12
  1221. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_C_TAG_PADDING_MASK 0x00001000
  1222. /* Description RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING
  1223. In case of ndp or phy_err or AST_based_lookup_valid ==
  1224. 0, this field will be set to 0
  1225. Insert 4 byte of all zeros as double VLAN tag if the rx
  1226. payload does not have VLAN. Used during
  1227. <legal all>
  1228. */
  1229. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_OFFSET 0x00000030
  1230. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_LSB 13
  1231. #define RX_MPDU_INFO_12_RX_INSERT_VLAN_S_TAG_PADDING_MASK 0x00002000
  1232. /* Description RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP
  1233. In case of ndp or phy_err or AST_based_lookup_valid ==
  1234. 0, this field will be set to 0
  1235. Strip the VLAN during decapsulation.  Used by the OLE.
  1236. <legal all>
  1237. */
  1238. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_OFFSET 0x00000030
  1239. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_LSB 14
  1240. #define RX_MPDU_INFO_12_STRIP_VLAN_C_TAG_DECAP_MASK 0x00004000
  1241. /* Description RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP
  1242. In case of ndp or phy_err or AST_based_lookup_valid ==
  1243. 0, this field will be set to 0
  1244. Strip the double VLAN during decapsulation.  Used by
  1245. the OLE.
  1246. <legal all>
  1247. */
  1248. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_OFFSET 0x00000030
  1249. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_LSB 15
  1250. #define RX_MPDU_INFO_12_STRIP_VLAN_S_TAG_DECAP_MASK 0x00008000
  1251. /* Description RX_MPDU_INFO_12_PRE_DELIM_COUNT
  1252. The number of delimiters before this MPDU.
  1253. In case of ndp or phy_err, this field will be set to 0
  1254. */
  1255. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_OFFSET 0x00000030
  1256. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_LSB 16
  1257. #define RX_MPDU_INFO_12_PRE_DELIM_COUNT_MASK 0x0fff0000
  1258. /* Description RX_MPDU_INFO_12_AMPDU_FLAG
  1259. When set, received frame was part of an A-MPDU.
  1260. <legal all>
  1261. */
  1262. #define RX_MPDU_INFO_12_AMPDU_FLAG_OFFSET 0x00000030
  1263. #define RX_MPDU_INFO_12_AMPDU_FLAG_LSB 28
  1264. #define RX_MPDU_INFO_12_AMPDU_FLAG_MASK 0x10000000
  1265. /* Description RX_MPDU_INFO_12_BAR_FRAME
  1266. In case of ndp or phy_err or AST_based_lookup_valid ==
  1267. 0, this field will be set to 0
  1268. When set, received frame is a BAR frame
  1269. <legal all>
  1270. */
  1271. #define RX_MPDU_INFO_12_BAR_FRAME_OFFSET 0x00000030
  1272. #define RX_MPDU_INFO_12_BAR_FRAME_LSB 29
  1273. #define RX_MPDU_INFO_12_BAR_FRAME_MASK 0x20000000
  1274. /* Description RX_MPDU_INFO_12_RESERVED_12
  1275. <legal 0>.
  1276. */
  1277. #define RX_MPDU_INFO_12_RESERVED_12_OFFSET 0x00000030
  1278. #define RX_MPDU_INFO_12_RESERVED_12_LSB 30
  1279. #define RX_MPDU_INFO_12_RESERVED_12_MASK 0xc0000000
  1280. /* Description RX_MPDU_INFO_13_MPDU_LENGTH
  1281. In case of ndp or phy_err this field will be set to 0
  1282. MPDU length before decapsulation.
  1283. <legal all>
  1284. */
  1285. #define RX_MPDU_INFO_13_MPDU_LENGTH_OFFSET 0x00000034
  1286. #define RX_MPDU_INFO_13_MPDU_LENGTH_LSB 0
  1287. #define RX_MPDU_INFO_13_MPDU_LENGTH_MASK 0x00003fff
  1288. /* Description RX_MPDU_INFO_13_FIRST_MPDU
  1289. See definition in RX attention descriptor
  1290. In case of ndp or phy_err, this field will be set. Note
  1291. however that there will not actually be any data contents in
  1292. the MPDU.
  1293. <legal all>
  1294. */
  1295. #define RX_MPDU_INFO_13_FIRST_MPDU_OFFSET 0x00000034
  1296. #define RX_MPDU_INFO_13_FIRST_MPDU_LSB 14
  1297. #define RX_MPDU_INFO_13_FIRST_MPDU_MASK 0x00004000
  1298. /* Description RX_MPDU_INFO_13_MCAST_BCAST
  1299. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1300. this field will be set to 0
  1301. See definition in RX attention descriptor
  1302. <legal all>
  1303. */
  1304. #define RX_MPDU_INFO_13_MCAST_BCAST_OFFSET 0x00000034
  1305. #define RX_MPDU_INFO_13_MCAST_BCAST_LSB 15
  1306. #define RX_MPDU_INFO_13_MCAST_BCAST_MASK 0x00008000
  1307. /* Description RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND
  1308. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1309. this field will be set to 0
  1310. See definition in RX attention descriptor
  1311. <legal all>
  1312. */
  1313. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_OFFSET 0x00000034
  1314. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_LSB 16
  1315. #define RX_MPDU_INFO_13_AST_INDEX_NOT_FOUND_MASK 0x00010000
  1316. /* Description RX_MPDU_INFO_13_AST_INDEX_TIMEOUT
  1317. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1318. this field will be set to 0
  1319. See definition in RX attention descriptor
  1320. <legal all>
  1321. */
  1322. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_OFFSET 0x00000034
  1323. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_LSB 17
  1324. #define RX_MPDU_INFO_13_AST_INDEX_TIMEOUT_MASK 0x00020000
  1325. /* Description RX_MPDU_INFO_13_POWER_MGMT
  1326. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1327. this field will be set to 0
  1328. See definition in RX attention descriptor
  1329. <legal all>
  1330. */
  1331. #define RX_MPDU_INFO_13_POWER_MGMT_OFFSET 0x00000034
  1332. #define RX_MPDU_INFO_13_POWER_MGMT_LSB 18
  1333. #define RX_MPDU_INFO_13_POWER_MGMT_MASK 0x00040000
  1334. /* Description RX_MPDU_INFO_13_NON_QOS
  1335. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1336. this field will be set to 1
  1337. See definition in RX attention descriptor
  1338. <legal all>
  1339. */
  1340. #define RX_MPDU_INFO_13_NON_QOS_OFFSET 0x00000034
  1341. #define RX_MPDU_INFO_13_NON_QOS_LSB 19
  1342. #define RX_MPDU_INFO_13_NON_QOS_MASK 0x00080000
  1343. /* Description RX_MPDU_INFO_13_NULL_DATA
  1344. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1345. this field will be set to 0
  1346. See definition in RX attention descriptor
  1347. <legal all>
  1348. */
  1349. #define RX_MPDU_INFO_13_NULL_DATA_OFFSET 0x00000034
  1350. #define RX_MPDU_INFO_13_NULL_DATA_LSB 20
  1351. #define RX_MPDU_INFO_13_NULL_DATA_MASK 0x00100000
  1352. /* Description RX_MPDU_INFO_13_MGMT_TYPE
  1353. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1354. this field will be set to 0
  1355. See definition in RX attention descriptor
  1356. <legal all>
  1357. */
  1358. #define RX_MPDU_INFO_13_MGMT_TYPE_OFFSET 0x00000034
  1359. #define RX_MPDU_INFO_13_MGMT_TYPE_LSB 21
  1360. #define RX_MPDU_INFO_13_MGMT_TYPE_MASK 0x00200000
  1361. /* Description RX_MPDU_INFO_13_CTRL_TYPE
  1362. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1363. this field will be set to 0
  1364. See definition in RX attention descriptor
  1365. <legal all>
  1366. */
  1367. #define RX_MPDU_INFO_13_CTRL_TYPE_OFFSET 0x00000034
  1368. #define RX_MPDU_INFO_13_CTRL_TYPE_LSB 22
  1369. #define RX_MPDU_INFO_13_CTRL_TYPE_MASK 0x00400000
  1370. /* Description RX_MPDU_INFO_13_MORE_DATA
  1371. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1372. this field will be set to 0
  1373. See definition in RX attention descriptor
  1374. <legal all>
  1375. */
  1376. #define RX_MPDU_INFO_13_MORE_DATA_OFFSET 0x00000034
  1377. #define RX_MPDU_INFO_13_MORE_DATA_LSB 23
  1378. #define RX_MPDU_INFO_13_MORE_DATA_MASK 0x00800000
  1379. /* Description RX_MPDU_INFO_13_EOSP
  1380. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1381. this field will be set to 0
  1382. See definition in RX attention descriptor
  1383. <legal all>
  1384. */
  1385. #define RX_MPDU_INFO_13_EOSP_OFFSET 0x00000034
  1386. #define RX_MPDU_INFO_13_EOSP_LSB 24
  1387. #define RX_MPDU_INFO_13_EOSP_MASK 0x01000000
  1388. /* Description RX_MPDU_INFO_13_FRAGMENT_FLAG
  1389. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1390. this field will be set to 0
  1391. See definition in RX attention descriptor
  1392. <legal all>
  1393. */
  1394. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_OFFSET 0x00000034
  1395. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_LSB 25
  1396. #define RX_MPDU_INFO_13_FRAGMENT_FLAG_MASK 0x02000000
  1397. /* Description RX_MPDU_INFO_13_ORDER
  1398. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1399. this field will be set to 0
  1400. See definition in RX attention descriptor
  1401. <legal all>
  1402. */
  1403. #define RX_MPDU_INFO_13_ORDER_OFFSET 0x00000034
  1404. #define RX_MPDU_INFO_13_ORDER_LSB 26
  1405. #define RX_MPDU_INFO_13_ORDER_MASK 0x04000000
  1406. /* Description RX_MPDU_INFO_13_U_APSD_TRIGGER
  1407. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1408. this field will be set to 0
  1409. See definition in RX attention descriptor
  1410. <legal all>
  1411. */
  1412. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_OFFSET 0x00000034
  1413. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_LSB 27
  1414. #define RX_MPDU_INFO_13_U_APSD_TRIGGER_MASK 0x08000000
  1415. /* Description RX_MPDU_INFO_13_ENCRYPT_REQUIRED
  1416. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1417. this field will be set to 0
  1418. See definition in RX attention descriptor
  1419. <legal all>
  1420. */
  1421. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_OFFSET 0x00000034
  1422. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_LSB 28
  1423. #define RX_MPDU_INFO_13_ENCRYPT_REQUIRED_MASK 0x10000000
  1424. /* Description RX_MPDU_INFO_13_DIRECTED
  1425. In case of ndp or phy_err or Phy_err_during_mpdu_header
  1426. this field will be set to 0
  1427. See definition in RX attention descriptor
  1428. <legal all>
  1429. */
  1430. #define RX_MPDU_INFO_13_DIRECTED_OFFSET 0x00000034
  1431. #define RX_MPDU_INFO_13_DIRECTED_LSB 29
  1432. #define RX_MPDU_INFO_13_DIRECTED_MASK 0x20000000
  1433. /* Description RX_MPDU_INFO_13_RESERVED_13
  1434. <legal 0>
  1435. */
  1436. #define RX_MPDU_INFO_13_RESERVED_13_OFFSET 0x00000034
  1437. #define RX_MPDU_INFO_13_RESERVED_13_LSB 30
  1438. #define RX_MPDU_INFO_13_RESERVED_13_MASK 0xc0000000
  1439. /* Description RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD
  1440. Field only valid when Mpdu_frame_control_valid is set
  1441. The frame control field of this received MPDU.
  1442. Field only valid when Ndp_frame and phy_err are NOT set
  1443. Bytes 0 + 1 of the received MPDU
  1444. <legal all>
  1445. */
  1446. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_OFFSET 0x00000038
  1447. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_LSB 0
  1448. #define RX_MPDU_INFO_14_MPDU_FRAME_CONTROL_FIELD_MASK 0x0000ffff
  1449. /* Description RX_MPDU_INFO_14_MPDU_DURATION_FIELD
  1450. Field only valid when Mpdu_duration_valid is set
  1451. The duration field of this received MPDU.
  1452. <legal all>
  1453. */
  1454. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_OFFSET 0x00000038
  1455. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_LSB 16
  1456. #define RX_MPDU_INFO_14_MPDU_DURATION_FIELD_MASK 0xffff0000
  1457. /* Description RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0
  1458. Field only valid when mac_addr_ad1_valid is set
  1459. The Least Significant 4 bytes of the Received Frames MAC
  1460. Address AD1
  1461. <legal all>
  1462. */
  1463. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_OFFSET 0x0000003c
  1464. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_LSB 0
  1465. #define RX_MPDU_INFO_15_MAC_ADDR_AD1_31_0_MASK 0xffffffff
  1466. /* Description RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32
  1467. Field only valid when mac_addr_ad1_valid is set
  1468. The 2 most significant bytes of the Received Frames MAC
  1469. Address AD1
  1470. <legal all>
  1471. */
  1472. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_OFFSET 0x00000040
  1473. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_LSB 0
  1474. #define RX_MPDU_INFO_16_MAC_ADDR_AD1_47_32_MASK 0x0000ffff
  1475. /* Description RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0
  1476. Field only valid when mac_addr_ad2_valid is set
  1477. The Least Significant 2 bytes of the Received Frames MAC
  1478. Address AD2
  1479. <legal all>
  1480. */
  1481. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_OFFSET 0x00000040
  1482. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_LSB 16
  1483. #define RX_MPDU_INFO_16_MAC_ADDR_AD2_15_0_MASK 0xffff0000
  1484. /* Description RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16
  1485. Field only valid when mac_addr_ad2_valid is set
  1486. The 4 most significant bytes of the Received Frames MAC
  1487. Address AD2
  1488. <legal all>
  1489. */
  1490. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_OFFSET 0x00000044
  1491. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_LSB 0
  1492. #define RX_MPDU_INFO_17_MAC_ADDR_AD2_47_16_MASK 0xffffffff
  1493. /* Description RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0
  1494. Field only valid when mac_addr_ad3_valid is set
  1495. The Least Significant 4 bytes of the Received Frames MAC
  1496. Address AD3
  1497. <legal all>
  1498. */
  1499. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_OFFSET 0x00000048
  1500. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_LSB 0
  1501. #define RX_MPDU_INFO_18_MAC_ADDR_AD3_31_0_MASK 0xffffffff
  1502. /* Description RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32
  1503. Field only valid when mac_addr_ad3_valid is set
  1504. The 2 most significant bytes of the Received Frames MAC
  1505. Address AD3
  1506. <legal all>
  1507. */
  1508. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_OFFSET 0x0000004c
  1509. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_LSB 0
  1510. #define RX_MPDU_INFO_19_MAC_ADDR_AD3_47_32_MASK 0x0000ffff
  1511. /* Description RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD
  1512. The sequence control field of the MPDU
  1513. <legal all>
  1514. */
  1515. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_OFFSET 0x0000004c
  1516. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_LSB 16
  1517. #define RX_MPDU_INFO_19_MPDU_SEQUENCE_CONTROL_FIELD_MASK 0xffff0000
  1518. /* Description RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0
  1519. Field only valid when mac_addr_ad4_valid is set
  1520. The Least Significant 4 bytes of the Received Frames MAC
  1521. Address AD4
  1522. <legal all>
  1523. */
  1524. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_OFFSET 0x00000050
  1525. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_LSB 0
  1526. #define RX_MPDU_INFO_20_MAC_ADDR_AD4_31_0_MASK 0xffffffff
  1527. /* Description RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32
  1528. Field only valid when mac_addr_ad4_valid is set
  1529. The 2 most significant bytes of the Received Frames MAC
  1530. Address AD4
  1531. <legal all>
  1532. */
  1533. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_OFFSET 0x00000054
  1534. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_LSB 0
  1535. #define RX_MPDU_INFO_21_MAC_ADDR_AD4_47_32_MASK 0x0000ffff
  1536. /* Description RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD
  1537. Field only valid when mpdu_qos_control_valid is set
  1538. The sequence control field of the MPDU
  1539. <legal all>
  1540. */
  1541. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_OFFSET 0x00000054
  1542. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_LSB 16
  1543. #define RX_MPDU_INFO_21_MPDU_QOS_CONTROL_FIELD_MASK 0xffff0000
  1544. /* Description RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD
  1545. Field only valid when mpdu_qos_control_valid is set
  1546. The HT control field of the MPDU
  1547. <legal all>
  1548. */
  1549. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_OFFSET 0x00000058
  1550. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_LSB 0
  1551. #define RX_MPDU_INFO_22_MPDU_HT_CONTROL_FIELD_MASK 0xffffffff
  1552. #endif // _RX_MPDU_INFO_H_