iwl-commands.h 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948
  1. /******************************************************************************
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of version 2 of the GNU General Public License as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  22. * USA
  23. *
  24. * The full GNU General Public License is included in this distribution
  25. * in the file called LICENSE.GPL.
  26. *
  27. * Contact Information:
  28. * Intel Linux Wireless <ilw@linux.intel.com>
  29. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  30. *
  31. * BSD LICENSE
  32. *
  33. * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
  34. * All rights reserved.
  35. *
  36. * Redistribution and use in source and binary forms, with or without
  37. * modification, are permitted provided that the following conditions
  38. * are met:
  39. *
  40. * * Redistributions of source code must retain the above copyright
  41. * notice, this list of conditions and the following disclaimer.
  42. * * Redistributions in binary form must reproduce the above copyright
  43. * notice, this list of conditions and the following disclaimer in
  44. * the documentation and/or other materials provided with the
  45. * distribution.
  46. * * Neither the name Intel Corporation nor the names of its
  47. * contributors may be used to endorse or promote products derived
  48. * from this software without specific prior written permission.
  49. *
  50. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  51. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  52. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  53. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  54. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  55. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  56. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  57. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  58. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  59. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  60. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  61. *
  62. *****************************************************************************/
  63. /*
  64. * Please use this file (iwl-commands.h) only for uCode API definitions.
  65. * Please use iwl-xxxx-hw.h for hardware-related definitions.
  66. * Please use iwl-dev.h for driver implementation definitions.
  67. */
  68. #ifndef __iwl_commands_h__
  69. #define __iwl_commands_h__
  70. #include <linux/ieee80211.h>
  71. #include <linux/types.h>
  72. enum {
  73. REPLY_ALIVE = 0x1,
  74. REPLY_ERROR = 0x2,
  75. REPLY_ECHO = 0x3, /* test command */
  76. /* RXON and QOS commands */
  77. REPLY_RXON = 0x10,
  78. REPLY_RXON_ASSOC = 0x11,
  79. REPLY_QOS_PARAM = 0x13,
  80. REPLY_RXON_TIMING = 0x14,
  81. /* Multi-Station support */
  82. REPLY_ADD_STA = 0x18,
  83. REPLY_REMOVE_STA = 0x19,
  84. REPLY_REMOVE_ALL_STA = 0x1a, /* not used */
  85. REPLY_TXFIFO_FLUSH = 0x1e,
  86. /* Security */
  87. REPLY_WEPKEY = 0x20,
  88. /* RX, TX, LEDs */
  89. REPLY_TX = 0x1c,
  90. REPLY_LEDS_CMD = 0x48,
  91. REPLY_TX_LINK_QUALITY_CMD = 0x4e,
  92. /* WiMAX coexistence */
  93. COEX_PRIORITY_TABLE_CMD = 0x5a,
  94. COEX_MEDIUM_NOTIFICATION = 0x5b,
  95. COEX_EVENT_CMD = 0x5c,
  96. /* Calibration */
  97. TEMPERATURE_NOTIFICATION = 0x62,
  98. CALIBRATION_CFG_CMD = 0x65,
  99. CALIBRATION_RES_NOTIFICATION = 0x66,
  100. CALIBRATION_COMPLETE_NOTIFICATION = 0x67,
  101. /* 802.11h related */
  102. REPLY_QUIET_CMD = 0x71, /* not used */
  103. REPLY_CHANNEL_SWITCH = 0x72,
  104. CHANNEL_SWITCH_NOTIFICATION = 0x73,
  105. REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74,
  106. SPECTRUM_MEASURE_NOTIFICATION = 0x75,
  107. /* Power Management */
  108. POWER_TABLE_CMD = 0x77,
  109. PM_SLEEP_NOTIFICATION = 0x7A,
  110. PM_DEBUG_STATISTIC_NOTIFIC = 0x7B,
  111. /* Scan commands and notifications */
  112. REPLY_SCAN_CMD = 0x80,
  113. REPLY_SCAN_ABORT_CMD = 0x81,
  114. SCAN_START_NOTIFICATION = 0x82,
  115. SCAN_RESULTS_NOTIFICATION = 0x83,
  116. SCAN_COMPLETE_NOTIFICATION = 0x84,
  117. /* IBSS/AP commands */
  118. BEACON_NOTIFICATION = 0x90,
  119. REPLY_TX_BEACON = 0x91,
  120. WHO_IS_AWAKE_NOTIFICATION = 0x94, /* not used */
  121. /* Miscellaneous commands */
  122. REPLY_TX_POWER_DBM_CMD = 0x95,
  123. QUIET_NOTIFICATION = 0x96, /* not used */
  124. REPLY_TX_PWR_TABLE_CMD = 0x97,
  125. REPLY_TX_POWER_DBM_CMD_V1 = 0x98, /* old version of API */
  126. TX_ANT_CONFIGURATION_CMD = 0x98,
  127. MEASURE_ABORT_NOTIFICATION = 0x99, /* not used */
  128. /* Bluetooth device coexistence config command */
  129. REPLY_BT_CONFIG = 0x9b,
  130. /* Statistics */
  131. REPLY_STATISTICS_CMD = 0x9c,
  132. STATISTICS_NOTIFICATION = 0x9d,
  133. /* RF-KILL commands and notifications */
  134. REPLY_CARD_STATE_CMD = 0xa0,
  135. CARD_STATE_NOTIFICATION = 0xa1,
  136. /* Missed beacons notification */
  137. MISSED_BEACONS_NOTIFICATION = 0xa2,
  138. REPLY_CT_KILL_CONFIG_CMD = 0xa4,
  139. SENSITIVITY_CMD = 0xa8,
  140. REPLY_PHY_CALIBRATION_CMD = 0xb0,
  141. REPLY_RX_PHY_CMD = 0xc0,
  142. REPLY_RX_MPDU_CMD = 0xc1,
  143. REPLY_RX = 0xc3,
  144. REPLY_COMPRESSED_BA = 0xc5,
  145. /* BT Coex */
  146. REPLY_BT_COEX_PRIO_TABLE = 0xcc,
  147. REPLY_BT_COEX_PROT_ENV = 0xcd,
  148. REPLY_BT_COEX_PROFILE_NOTIF = 0xce,
  149. /* PAN commands */
  150. REPLY_WIPAN_PARAMS = 0xb2,
  151. REPLY_WIPAN_RXON = 0xb3, /* use REPLY_RXON structure */
  152. REPLY_WIPAN_RXON_TIMING = 0xb4, /* use REPLY_RXON_TIMING structure */
  153. REPLY_WIPAN_RXON_ASSOC = 0xb6, /* use REPLY_RXON_ASSOC structure */
  154. REPLY_WIPAN_QOS_PARAM = 0xb7, /* use REPLY_QOS_PARAM structure */
  155. REPLY_WIPAN_WEPKEY = 0xb8, /* use REPLY_WEPKEY structure */
  156. REPLY_WIPAN_P2P_CHANNEL_SWITCH = 0xb9,
  157. REPLY_WIPAN_NOA_NOTIFICATION = 0xbc,
  158. REPLY_WIPAN_DEACTIVATION_COMPLETE = 0xbd,
  159. REPLY_WOWLAN_PATTERNS = 0xe0,
  160. REPLY_WOWLAN_WAKEUP_FILTER = 0xe1,
  161. REPLY_WOWLAN_TSC_RSC_PARAMS = 0xe2,
  162. REPLY_WOWLAN_TKIP_PARAMS = 0xe3,
  163. REPLY_WOWLAN_KEK_KCK_MATERIAL = 0xe4,
  164. REPLY_WOWLAN_GET_STATUS = 0xe5,
  165. REPLY_D3_CONFIG = 0xd3,
  166. REPLY_MAX = 0xff
  167. };
  168. /******************************************************************************
  169. * (0)
  170. * Commonly used structures and definitions:
  171. * Command header, rate_n_flags, txpower
  172. *
  173. *****************************************************************************/
  174. /* iwl_cmd_header flags value */
  175. #define IWL_CMD_FAILED_MSK 0x40
  176. /**
  177. * iwlagn rate_n_flags bit fields
  178. *
  179. * rate_n_flags format is used in following iwlagn commands:
  180. * REPLY_RX (response only)
  181. * REPLY_RX_MPDU (response only)
  182. * REPLY_TX (both command and response)
  183. * REPLY_TX_LINK_QUALITY_CMD
  184. *
  185. * High-throughput (HT) rate format for bits 7:0 (bit 8 must be "1"):
  186. * 2-0: 0) 6 Mbps
  187. * 1) 12 Mbps
  188. * 2) 18 Mbps
  189. * 3) 24 Mbps
  190. * 4) 36 Mbps
  191. * 5) 48 Mbps
  192. * 6) 54 Mbps
  193. * 7) 60 Mbps
  194. *
  195. * 4-3: 0) Single stream (SISO)
  196. * 1) Dual stream (MIMO)
  197. * 2) Triple stream (MIMO)
  198. *
  199. * 5: Value of 0x20 in bits 7:0 indicates 6 Mbps HT40 duplicate data
  200. *
  201. * Legacy OFDM rate format for bits 7:0 (bit 8 must be "0", bit 9 "0"):
  202. * 3-0: 0xD) 6 Mbps
  203. * 0xF) 9 Mbps
  204. * 0x5) 12 Mbps
  205. * 0x7) 18 Mbps
  206. * 0x9) 24 Mbps
  207. * 0xB) 36 Mbps
  208. * 0x1) 48 Mbps
  209. * 0x3) 54 Mbps
  210. *
  211. * Legacy CCK rate format for bits 7:0 (bit 8 must be "0", bit 9 "1"):
  212. * 6-0: 10) 1 Mbps
  213. * 20) 2 Mbps
  214. * 55) 5.5 Mbps
  215. * 110) 11 Mbps
  216. */
  217. #define RATE_MCS_CODE_MSK 0x7
  218. #define RATE_MCS_SPATIAL_POS 3
  219. #define RATE_MCS_SPATIAL_MSK 0x18
  220. #define RATE_MCS_HT_DUP_POS 5
  221. #define RATE_MCS_HT_DUP_MSK 0x20
  222. /* Both legacy and HT use bits 7:0 as the CCK/OFDM rate or HT MCS */
  223. #define RATE_MCS_RATE_MSK 0xff
  224. /* Bit 8: (1) HT format, (0) legacy format in bits 7:0 */
  225. #define RATE_MCS_FLAGS_POS 8
  226. #define RATE_MCS_HT_POS 8
  227. #define RATE_MCS_HT_MSK 0x100
  228. /* Bit 9: (1) CCK, (0) OFDM. HT (bit 8) must be "0" for this bit to be valid */
  229. #define RATE_MCS_CCK_POS 9
  230. #define RATE_MCS_CCK_MSK 0x200
  231. /* Bit 10: (1) Use Green Field preamble */
  232. #define RATE_MCS_GF_POS 10
  233. #define RATE_MCS_GF_MSK 0x400
  234. /* Bit 11: (1) Use 40Mhz HT40 chnl width, (0) use 20 MHz legacy chnl width */
  235. #define RATE_MCS_HT40_POS 11
  236. #define RATE_MCS_HT40_MSK 0x800
  237. /* Bit 12: (1) Duplicate data on both 20MHz chnls. HT40 (bit 11) must be set. */
  238. #define RATE_MCS_DUP_POS 12
  239. #define RATE_MCS_DUP_MSK 0x1000
  240. /* Bit 13: (1) Short guard interval (0.4 usec), (0) normal GI (0.8 usec) */
  241. #define RATE_MCS_SGI_POS 13
  242. #define RATE_MCS_SGI_MSK 0x2000
  243. /**
  244. * rate_n_flags Tx antenna masks
  245. * 4965 has 2 transmitters
  246. * 5100 has 1 transmitter B
  247. * 5150 has 1 transmitter A
  248. * 5300 has 3 transmitters
  249. * 5350 has 3 transmitters
  250. * bit14:16
  251. */
  252. #define RATE_MCS_ANT_POS 14
  253. #define RATE_MCS_ANT_A_MSK 0x04000
  254. #define RATE_MCS_ANT_B_MSK 0x08000
  255. #define RATE_MCS_ANT_C_MSK 0x10000
  256. #define RATE_MCS_ANT_AB_MSK (RATE_MCS_ANT_A_MSK | RATE_MCS_ANT_B_MSK)
  257. #define RATE_MCS_ANT_ABC_MSK (RATE_MCS_ANT_AB_MSK | RATE_MCS_ANT_C_MSK)
  258. #define RATE_ANT_NUM 3
  259. #define POWER_TABLE_NUM_ENTRIES 33
  260. #define POWER_TABLE_NUM_HT_OFDM_ENTRIES 32
  261. #define POWER_TABLE_CCK_ENTRY 32
  262. #define IWL_PWR_NUM_HT_OFDM_ENTRIES 24
  263. #define IWL_PWR_CCK_ENTRIES 2
  264. /**
  265. * struct tx_power_dual_stream
  266. *
  267. * Table entries in REPLY_TX_PWR_TABLE_CMD, REPLY_CHANNEL_SWITCH
  268. *
  269. * Same format as iwl_tx_power_dual_stream, but __le32
  270. */
  271. struct tx_power_dual_stream {
  272. __le32 dw;
  273. } __packed;
  274. /**
  275. * Command REPLY_TX_POWER_DBM_CMD = 0x98
  276. * struct iwlagn_tx_power_dbm_cmd
  277. */
  278. #define IWLAGN_TX_POWER_AUTO 0x7f
  279. #define IWLAGN_TX_POWER_NO_CLOSED (0x1 << 6)
  280. struct iwlagn_tx_power_dbm_cmd {
  281. s8 global_lmt; /*in half-dBm (e.g. 30 = 15 dBm) */
  282. u8 flags;
  283. s8 srv_chan_lmt; /*in half-dBm (e.g. 30 = 15 dBm) */
  284. u8 reserved;
  285. } __packed;
  286. /**
  287. * Command TX_ANT_CONFIGURATION_CMD = 0x98
  288. * This command is used to configure valid Tx antenna.
  289. * By default uCode concludes the valid antenna according to the radio flavor.
  290. * This command enables the driver to override/modify this conclusion.
  291. */
  292. struct iwl_tx_ant_config_cmd {
  293. __le32 valid;
  294. } __packed;
  295. /******************************************************************************
  296. * (0a)
  297. * Alive and Error Commands & Responses:
  298. *
  299. *****************************************************************************/
  300. #define UCODE_VALID_OK cpu_to_le32(0x1)
  301. /**
  302. * REPLY_ALIVE = 0x1 (response only, not a command)
  303. *
  304. * uCode issues this "alive" notification once the runtime image is ready
  305. * to receive commands from the driver. This is the *second* "alive"
  306. * notification that the driver will receive after rebooting uCode;
  307. * this "alive" is indicated by subtype field != 9.
  308. *
  309. * See comments documenting "BSM" (bootstrap state machine).
  310. *
  311. * This response includes two pointers to structures within the device's
  312. * data SRAM (access via HBUS_TARG_MEM_* regs) that are useful for debugging:
  313. *
  314. * 1) log_event_table_ptr indicates base of the event log. This traces
  315. * a 256-entry history of uCode execution within a circular buffer.
  316. * Its header format is:
  317. *
  318. * __le32 log_size; log capacity (in number of entries)
  319. * __le32 type; (1) timestamp with each entry, (0) no timestamp
  320. * __le32 wraps; # times uCode has wrapped to top of circular buffer
  321. * __le32 write_index; next circular buffer entry that uCode would fill
  322. *
  323. * The header is followed by the circular buffer of log entries. Entries
  324. * with timestamps have the following format:
  325. *
  326. * __le32 event_id; range 0 - 1500
  327. * __le32 timestamp; low 32 bits of TSF (of network, if associated)
  328. * __le32 data; event_id-specific data value
  329. *
  330. * Entries without timestamps contain only event_id and data.
  331. *
  332. *
  333. * 2) error_event_table_ptr indicates base of the error log. This contains
  334. * information about any uCode error that occurs. For agn, the format
  335. * of the error log is defined by struct iwl_error_event_table.
  336. *
  337. * The Linux driver can print both logs to the system log when a uCode error
  338. * occurs.
  339. */
  340. /*
  341. * Note: This structure is read from the device with IO accesses,
  342. * and the reading already does the endian conversion. As it is
  343. * read with u32-sized accesses, any members with a different size
  344. * need to be ordered correctly though!
  345. */
  346. struct iwl_error_event_table {
  347. u32 valid; /* (nonzero) valid, (0) log is empty */
  348. u32 error_id; /* type of error */
  349. u32 pc; /* program counter */
  350. u32 blink1; /* branch link */
  351. u32 blink2; /* branch link */
  352. u32 ilink1; /* interrupt link */
  353. u32 ilink2; /* interrupt link */
  354. u32 data1; /* error-specific data */
  355. u32 data2; /* error-specific data */
  356. u32 line; /* source code line of error */
  357. u32 bcon_time; /* beacon timer */
  358. u32 tsf_low; /* network timestamp function timer */
  359. u32 tsf_hi; /* network timestamp function timer */
  360. u32 gp1; /* GP1 timer register */
  361. u32 gp2; /* GP2 timer register */
  362. u32 gp3; /* GP3 timer register */
  363. u32 ucode_ver; /* uCode version */
  364. u32 hw_ver; /* HW Silicon version */
  365. u32 brd_ver; /* HW board version */
  366. u32 log_pc; /* log program counter */
  367. u32 frame_ptr; /* frame pointer */
  368. u32 stack_ptr; /* stack pointer */
  369. u32 hcmd; /* last host command header */
  370. u32 isr0; /* isr status register LMPM_NIC_ISR0:
  371. * rxtx_flag */
  372. u32 isr1; /* isr status register LMPM_NIC_ISR1:
  373. * host_flag */
  374. u32 isr2; /* isr status register LMPM_NIC_ISR2:
  375. * enc_flag */
  376. u32 isr3; /* isr status register LMPM_NIC_ISR3:
  377. * time_flag */
  378. u32 isr4; /* isr status register LMPM_NIC_ISR4:
  379. * wico interrupt */
  380. u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
  381. u32 wait_event; /* wait event() caller address */
  382. u32 l2p_control; /* L2pControlField */
  383. u32 l2p_duration; /* L2pDurationField */
  384. u32 l2p_mhvalid; /* L2pMhValidBits */
  385. u32 l2p_addr_match; /* L2pAddrMatchStat */
  386. u32 lmpm_pmg_sel; /* indicate which clocks are turned on
  387. * (LMPM_PMG_SEL) */
  388. u32 u_timestamp; /* indicate when the date and time of the
  389. * compilation */
  390. u32 flow_handler; /* FH read/write pointers, RX credit */
  391. } __packed;
  392. struct iwl_alive_resp {
  393. u8 ucode_minor;
  394. u8 ucode_major;
  395. __le16 reserved1;
  396. u8 sw_rev[8];
  397. u8 ver_type;
  398. u8 ver_subtype; /* not "9" for runtime alive */
  399. __le16 reserved2;
  400. __le32 log_event_table_ptr; /* SRAM address for event log */
  401. __le32 error_event_table_ptr; /* SRAM address for error log */
  402. __le32 timestamp;
  403. __le32 is_valid;
  404. } __packed;
  405. /*
  406. * REPLY_ERROR = 0x2 (response only, not a command)
  407. */
  408. struct iwl_error_resp {
  409. __le32 error_type;
  410. u8 cmd_id;
  411. u8 reserved1;
  412. __le16 bad_cmd_seq_num;
  413. __le32 error_info;
  414. __le64 timestamp;
  415. } __packed;
  416. /******************************************************************************
  417. * (1)
  418. * RXON Commands & Responses:
  419. *
  420. *****************************************************************************/
  421. /*
  422. * Rx config defines & structure
  423. */
  424. /* rx_config device types */
  425. enum {
  426. RXON_DEV_TYPE_AP = 1,
  427. RXON_DEV_TYPE_ESS = 3,
  428. RXON_DEV_TYPE_IBSS = 4,
  429. RXON_DEV_TYPE_SNIFFER = 6,
  430. RXON_DEV_TYPE_CP = 7,
  431. RXON_DEV_TYPE_2STA = 8,
  432. RXON_DEV_TYPE_P2P = 9,
  433. };
  434. #define RXON_RX_CHAIN_DRIVER_FORCE_MSK cpu_to_le16(0x1 << 0)
  435. #define RXON_RX_CHAIN_DRIVER_FORCE_POS (0)
  436. #define RXON_RX_CHAIN_VALID_MSK cpu_to_le16(0x7 << 1)
  437. #define RXON_RX_CHAIN_VALID_POS (1)
  438. #define RXON_RX_CHAIN_FORCE_SEL_MSK cpu_to_le16(0x7 << 4)
  439. #define RXON_RX_CHAIN_FORCE_SEL_POS (4)
  440. #define RXON_RX_CHAIN_FORCE_MIMO_SEL_MSK cpu_to_le16(0x7 << 7)
  441. #define RXON_RX_CHAIN_FORCE_MIMO_SEL_POS (7)
  442. #define RXON_RX_CHAIN_CNT_MSK cpu_to_le16(0x3 << 10)
  443. #define RXON_RX_CHAIN_CNT_POS (10)
  444. #define RXON_RX_CHAIN_MIMO_CNT_MSK cpu_to_le16(0x3 << 12)
  445. #define RXON_RX_CHAIN_MIMO_CNT_POS (12)
  446. #define RXON_RX_CHAIN_MIMO_FORCE_MSK cpu_to_le16(0x1 << 14)
  447. #define RXON_RX_CHAIN_MIMO_FORCE_POS (14)
  448. /* rx_config flags */
  449. /* band & modulation selection */
  450. #define RXON_FLG_BAND_24G_MSK cpu_to_le32(1 << 0)
  451. #define RXON_FLG_CCK_MSK cpu_to_le32(1 << 1)
  452. /* auto detection enable */
  453. #define RXON_FLG_AUTO_DETECT_MSK cpu_to_le32(1 << 2)
  454. /* TGg protection when tx */
  455. #define RXON_FLG_TGG_PROTECT_MSK cpu_to_le32(1 << 3)
  456. /* cck short slot & preamble */
  457. #define RXON_FLG_SHORT_SLOT_MSK cpu_to_le32(1 << 4)
  458. #define RXON_FLG_SHORT_PREAMBLE_MSK cpu_to_le32(1 << 5)
  459. /* antenna selection */
  460. #define RXON_FLG_DIS_DIV_MSK cpu_to_le32(1 << 7)
  461. #define RXON_FLG_ANT_SEL_MSK cpu_to_le32(0x0f00)
  462. #define RXON_FLG_ANT_A_MSK cpu_to_le32(1 << 8)
  463. #define RXON_FLG_ANT_B_MSK cpu_to_le32(1 << 9)
  464. /* radar detection enable */
  465. #define RXON_FLG_RADAR_DETECT_MSK cpu_to_le32(1 << 12)
  466. #define RXON_FLG_TGJ_NARROW_BAND_MSK cpu_to_le32(1 << 13)
  467. /* rx response to host with 8-byte TSF
  468. * (according to ON_AIR deassertion) */
  469. #define RXON_FLG_TSF2HOST_MSK cpu_to_le32(1 << 15)
  470. /* HT flags */
  471. #define RXON_FLG_CTRL_CHANNEL_LOC_POS (22)
  472. #define RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK cpu_to_le32(0x1 << 22)
  473. #define RXON_FLG_HT_OPERATING_MODE_POS (23)
  474. #define RXON_FLG_HT_PROT_MSK cpu_to_le32(0x1 << 23)
  475. #define RXON_FLG_HT40_PROT_MSK cpu_to_le32(0x2 << 23)
  476. #define RXON_FLG_CHANNEL_MODE_POS (25)
  477. #define RXON_FLG_CHANNEL_MODE_MSK cpu_to_le32(0x3 << 25)
  478. /* channel mode */
  479. enum {
  480. CHANNEL_MODE_LEGACY = 0,
  481. CHANNEL_MODE_PURE_40 = 1,
  482. CHANNEL_MODE_MIXED = 2,
  483. CHANNEL_MODE_RESERVED = 3,
  484. };
  485. #define RXON_FLG_CHANNEL_MODE_LEGACY cpu_to_le32(CHANNEL_MODE_LEGACY << RXON_FLG_CHANNEL_MODE_POS)
  486. #define RXON_FLG_CHANNEL_MODE_PURE_40 cpu_to_le32(CHANNEL_MODE_PURE_40 << RXON_FLG_CHANNEL_MODE_POS)
  487. #define RXON_FLG_CHANNEL_MODE_MIXED cpu_to_le32(CHANNEL_MODE_MIXED << RXON_FLG_CHANNEL_MODE_POS)
  488. /* CTS to self (if spec allows) flag */
  489. #define RXON_FLG_SELF_CTS_EN cpu_to_le32(0x1<<30)
  490. /* rx_config filter flags */
  491. /* accept all data frames */
  492. #define RXON_FILTER_PROMISC_MSK cpu_to_le32(1 << 0)
  493. /* pass control & management to host */
  494. #define RXON_FILTER_CTL2HOST_MSK cpu_to_le32(1 << 1)
  495. /* accept multi-cast */
  496. #define RXON_FILTER_ACCEPT_GRP_MSK cpu_to_le32(1 << 2)
  497. /* don't decrypt uni-cast frames */
  498. #define RXON_FILTER_DIS_DECRYPT_MSK cpu_to_le32(1 << 3)
  499. /* don't decrypt multi-cast frames */
  500. #define RXON_FILTER_DIS_GRP_DECRYPT_MSK cpu_to_le32(1 << 4)
  501. /* STA is associated */
  502. #define RXON_FILTER_ASSOC_MSK cpu_to_le32(1 << 5)
  503. /* transfer to host non bssid beacons in associated state */
  504. #define RXON_FILTER_BCON_AWARE_MSK cpu_to_le32(1 << 6)
  505. /**
  506. * REPLY_RXON = 0x10 (command, has simple generic response)
  507. *
  508. * RXON tunes the radio tuner to a service channel, and sets up a number
  509. * of parameters that are used primarily for Rx, but also for Tx operations.
  510. *
  511. * NOTE: When tuning to a new channel, driver must set the
  512. * RXON_FILTER_ASSOC_MSK to 0. This will clear station-dependent
  513. * info within the device, including the station tables, tx retry
  514. * rate tables, and txpower tables. Driver must build a new station
  515. * table and txpower table before transmitting anything on the RXON
  516. * channel.
  517. *
  518. * NOTE: All RXONs wipe clean the internal txpower table. Driver must
  519. * issue a new REPLY_TX_PWR_TABLE_CMD after each REPLY_RXON (0x10),
  520. * regardless of whether RXON_FILTER_ASSOC_MSK is set.
  521. */
  522. struct iwl_rxon_cmd {
  523. u8 node_addr[6];
  524. __le16 reserved1;
  525. u8 bssid_addr[6];
  526. __le16 reserved2;
  527. u8 wlap_bssid_addr[6];
  528. __le16 reserved3;
  529. u8 dev_type;
  530. u8 air_propagation;
  531. __le16 rx_chain;
  532. u8 ofdm_basic_rates;
  533. u8 cck_basic_rates;
  534. __le16 assoc_id;
  535. __le32 flags;
  536. __le32 filter_flags;
  537. __le16 channel;
  538. u8 ofdm_ht_single_stream_basic_rates;
  539. u8 ofdm_ht_dual_stream_basic_rates;
  540. u8 ofdm_ht_triple_stream_basic_rates;
  541. u8 reserved5;
  542. __le16 acquisition_data;
  543. __le16 reserved6;
  544. } __packed;
  545. /*
  546. * REPLY_RXON_ASSOC = 0x11 (command, has simple generic response)
  547. */
  548. struct iwl_rxon_assoc_cmd {
  549. __le32 flags;
  550. __le32 filter_flags;
  551. u8 ofdm_basic_rates;
  552. u8 cck_basic_rates;
  553. __le16 reserved1;
  554. u8 ofdm_ht_single_stream_basic_rates;
  555. u8 ofdm_ht_dual_stream_basic_rates;
  556. u8 ofdm_ht_triple_stream_basic_rates;
  557. u8 reserved2;
  558. __le16 rx_chain_select_flags;
  559. __le16 acquisition_data;
  560. __le32 reserved3;
  561. } __packed;
  562. #define IWL_CONN_MAX_LISTEN_INTERVAL 10
  563. #define IWL_MAX_UCODE_BEACON_INTERVAL 4 /* 4096 */
  564. /*
  565. * REPLY_RXON_TIMING = 0x14 (command, has simple generic response)
  566. */
  567. struct iwl_rxon_time_cmd {
  568. __le64 timestamp;
  569. __le16 beacon_interval;
  570. __le16 atim_window;
  571. __le32 beacon_init_val;
  572. __le16 listen_interval;
  573. u8 dtim_period;
  574. u8 delta_cp_bss_tbtts;
  575. } __packed;
  576. /*
  577. * REPLY_CHANNEL_SWITCH = 0x72 (command, has simple generic response)
  578. */
  579. /**
  580. * struct iwl5000_channel_switch_cmd
  581. * @band: 0- 5.2GHz, 1- 2.4GHz
  582. * @expect_beacon: 0- resume transmits after channel switch
  583. * 1- wait for beacon to resume transmits
  584. * @channel: new channel number
  585. * @rxon_flags: Rx on flags
  586. * @rxon_filter_flags: filtering parameters
  587. * @switch_time: switch time in extended beacon format
  588. * @reserved: reserved bytes
  589. */
  590. struct iwl5000_channel_switch_cmd {
  591. u8 band;
  592. u8 expect_beacon;
  593. __le16 channel;
  594. __le32 rxon_flags;
  595. __le32 rxon_filter_flags;
  596. __le32 switch_time;
  597. __le32 reserved[2][IWL_PWR_NUM_HT_OFDM_ENTRIES + IWL_PWR_CCK_ENTRIES];
  598. } __packed;
  599. /**
  600. * struct iwl6000_channel_switch_cmd
  601. * @band: 0- 5.2GHz, 1- 2.4GHz
  602. * @expect_beacon: 0- resume transmits after channel switch
  603. * 1- wait for beacon to resume transmits
  604. * @channel: new channel number
  605. * @rxon_flags: Rx on flags
  606. * @rxon_filter_flags: filtering parameters
  607. * @switch_time: switch time in extended beacon format
  608. * @reserved: reserved bytes
  609. */
  610. struct iwl6000_channel_switch_cmd {
  611. u8 band;
  612. u8 expect_beacon;
  613. __le16 channel;
  614. __le32 rxon_flags;
  615. __le32 rxon_filter_flags;
  616. __le32 switch_time;
  617. __le32 reserved[3][IWL_PWR_NUM_HT_OFDM_ENTRIES + IWL_PWR_CCK_ENTRIES];
  618. } __packed;
  619. /*
  620. * CHANNEL_SWITCH_NOTIFICATION = 0x73 (notification only, not a command)
  621. */
  622. struct iwl_csa_notification {
  623. __le16 band;
  624. __le16 channel;
  625. __le32 status; /* 0 - OK, 1 - fail */
  626. } __packed;
  627. /******************************************************************************
  628. * (2)
  629. * Quality-of-Service (QOS) Commands & Responses:
  630. *
  631. *****************************************************************************/
  632. /**
  633. * struct iwl_ac_qos -- QOS timing params for REPLY_QOS_PARAM
  634. * One for each of 4 EDCA access categories in struct iwl_qosparam_cmd
  635. *
  636. * @cw_min: Contention window, start value in numbers of slots.
  637. * Should be a power-of-2, minus 1. Device's default is 0x0f.
  638. * @cw_max: Contention window, max value in numbers of slots.
  639. * Should be a power-of-2, minus 1. Device's default is 0x3f.
  640. * @aifsn: Number of slots in Arbitration Interframe Space (before
  641. * performing random backoff timing prior to Tx). Device default 1.
  642. * @edca_txop: Length of Tx opportunity, in uSecs. Device default is 0.
  643. *
  644. * Device will automatically increase contention window by (2*CW) + 1 for each
  645. * transmission retry. Device uses cw_max as a bit mask, ANDed with new CW
  646. * value, to cap the CW value.
  647. */
  648. struct iwl_ac_qos {
  649. __le16 cw_min;
  650. __le16 cw_max;
  651. u8 aifsn;
  652. u8 reserved1;
  653. __le16 edca_txop;
  654. } __packed;
  655. /* QoS flags defines */
  656. #define QOS_PARAM_FLG_UPDATE_EDCA_MSK cpu_to_le32(0x01)
  657. #define QOS_PARAM_FLG_TGN_MSK cpu_to_le32(0x02)
  658. #define QOS_PARAM_FLG_TXOP_TYPE_MSK cpu_to_le32(0x10)
  659. /* Number of Access Categories (AC) (EDCA), queues 0..3 */
  660. #define AC_NUM 4
  661. /*
  662. * REPLY_QOS_PARAM = 0x13 (command, has simple generic response)
  663. *
  664. * This command sets up timings for each of the 4 prioritized EDCA Tx FIFOs
  665. * 0: Background, 1: Best Effort, 2: Video, 3: Voice.
  666. */
  667. struct iwl_qosparam_cmd {
  668. __le32 qos_flags;
  669. struct iwl_ac_qos ac[AC_NUM];
  670. } __packed;
  671. /******************************************************************************
  672. * (3)
  673. * Add/Modify Stations Commands & Responses:
  674. *
  675. *****************************************************************************/
  676. /*
  677. * Multi station support
  678. */
  679. /* Special, dedicated locations within device's station table */
  680. #define IWL_AP_ID 0
  681. #define IWL_AP_ID_PAN 1
  682. #define IWL_STA_ID 2
  683. #define IWLAGN_PAN_BCAST_ID 14
  684. #define IWLAGN_BROADCAST_ID 15
  685. #define IWLAGN_STATION_COUNT 16
  686. #define IWL_INVALID_STATION 255
  687. #define IWL_MAX_TID_COUNT 8
  688. #define IWL_TID_NON_QOS IWL_MAX_TID_COUNT
  689. #define STA_FLG_TX_RATE_MSK cpu_to_le32(1 << 2)
  690. #define STA_FLG_PWR_SAVE_MSK cpu_to_le32(1 << 8)
  691. #define STA_FLG_PAN_STATION cpu_to_le32(1 << 13)
  692. #define STA_FLG_RTS_MIMO_PROT_MSK cpu_to_le32(1 << 17)
  693. #define STA_FLG_AGG_MPDU_8US_MSK cpu_to_le32(1 << 18)
  694. #define STA_FLG_MAX_AGG_SIZE_POS (19)
  695. #define STA_FLG_MAX_AGG_SIZE_MSK cpu_to_le32(3 << 19)
  696. #define STA_FLG_HT40_EN_MSK cpu_to_le32(1 << 21)
  697. #define STA_FLG_MIMO_DIS_MSK cpu_to_le32(1 << 22)
  698. #define STA_FLG_AGG_MPDU_DENSITY_POS (23)
  699. #define STA_FLG_AGG_MPDU_DENSITY_MSK cpu_to_le32(7 << 23)
  700. /* Use in mode field. 1: modify existing entry, 0: add new station entry */
  701. #define STA_CONTROL_MODIFY_MSK 0x01
  702. /* key flags __le16*/
  703. #define STA_KEY_FLG_ENCRYPT_MSK cpu_to_le16(0x0007)
  704. #define STA_KEY_FLG_NO_ENC cpu_to_le16(0x0000)
  705. #define STA_KEY_FLG_WEP cpu_to_le16(0x0001)
  706. #define STA_KEY_FLG_CCMP cpu_to_le16(0x0002)
  707. #define STA_KEY_FLG_TKIP cpu_to_le16(0x0003)
  708. #define STA_KEY_FLG_KEYID_POS 8
  709. #define STA_KEY_FLG_INVALID cpu_to_le16(0x0800)
  710. /* wep key is either from global key (0) or from station info array (1) */
  711. #define STA_KEY_FLG_MAP_KEY_MSK cpu_to_le16(0x0008)
  712. /* wep key in STA: 5-bytes (0) or 13-bytes (1) */
  713. #define STA_KEY_FLG_KEY_SIZE_MSK cpu_to_le16(0x1000)
  714. #define STA_KEY_MULTICAST_MSK cpu_to_le16(0x4000)
  715. #define STA_KEY_MAX_NUM 8
  716. #define STA_KEY_MAX_NUM_PAN 16
  717. /* must not match WEP_INVALID_OFFSET */
  718. #define IWLAGN_HW_KEY_DEFAULT 0xfe
  719. /* Flags indicate whether to modify vs. don't change various station params */
  720. #define STA_MODIFY_KEY_MASK 0x01
  721. #define STA_MODIFY_TID_DISABLE_TX 0x02
  722. #define STA_MODIFY_TX_RATE_MSK 0x04
  723. #define STA_MODIFY_ADDBA_TID_MSK 0x08
  724. #define STA_MODIFY_DELBA_TID_MSK 0x10
  725. #define STA_MODIFY_SLEEP_TX_COUNT_MSK 0x20
  726. /* Receiver address (actually, Rx station's index into station table),
  727. * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
  728. #define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
  729. /* agn */
  730. struct iwl_keyinfo {
  731. __le16 key_flags;
  732. u8 tkip_rx_tsc_byte2; /* TSC[2] for key mix ph1 detection */
  733. u8 reserved1;
  734. __le16 tkip_rx_ttak[5]; /* 10-byte unicast TKIP TTAK */
  735. u8 key_offset;
  736. u8 reserved2;
  737. u8 key[16]; /* 16-byte unicast decryption key */
  738. __le64 tx_secur_seq_cnt;
  739. __le64 hw_tkip_mic_rx_key;
  740. __le64 hw_tkip_mic_tx_key;
  741. } __packed;
  742. /**
  743. * struct sta_id_modify
  744. * @addr[ETH_ALEN]: station's MAC address
  745. * @sta_id: index of station in uCode's station table
  746. * @modify_mask: STA_MODIFY_*, 1: modify, 0: don't change
  747. *
  748. * Driver selects unused table index when adding new station,
  749. * or the index to a pre-existing station entry when modifying that station.
  750. * Some indexes have special purposes (IWL_AP_ID, index 0, is for AP).
  751. *
  752. * modify_mask flags select which parameters to modify vs. leave alone.
  753. */
  754. struct sta_id_modify {
  755. u8 addr[ETH_ALEN];
  756. __le16 reserved1;
  757. u8 sta_id;
  758. u8 modify_mask;
  759. __le16 reserved2;
  760. } __packed;
  761. /*
  762. * REPLY_ADD_STA = 0x18 (command)
  763. *
  764. * The device contains an internal table of per-station information,
  765. * with info on security keys, aggregation parameters, and Tx rates for
  766. * initial Tx attempt and any retries (agn devices uses
  767. * REPLY_TX_LINK_QUALITY_CMD,
  768. *
  769. * REPLY_ADD_STA sets up the table entry for one station, either creating
  770. * a new entry, or modifying a pre-existing one.
  771. *
  772. * NOTE: RXON command (without "associated" bit set) wipes the station table
  773. * clean. Moving into RF_KILL state does this also. Driver must set up
  774. * new station table before transmitting anything on the RXON channel
  775. * (except active scans or active measurements; those commands carry
  776. * their own txpower/rate setup data).
  777. *
  778. * When getting started on a new channel, driver must set up the
  779. * IWL_BROADCAST_ID entry (last entry in the table). For a client
  780. * station in a BSS, once an AP is selected, driver sets up the AP STA
  781. * in the IWL_AP_ID entry (1st entry in the table). BROADCAST and AP
  782. * are all that are needed for a BSS client station. If the device is
  783. * used as AP, or in an IBSS network, driver must set up station table
  784. * entries for all STAs in network, starting with index IWL_STA_ID.
  785. */
  786. struct iwl_addsta_cmd {
  787. u8 mode; /* 1: modify existing, 0: add new station */
  788. u8 reserved[3];
  789. struct sta_id_modify sta;
  790. struct iwl_keyinfo key;
  791. __le32 station_flags; /* STA_FLG_* */
  792. __le32 station_flags_msk; /* STA_FLG_* */
  793. /* bit field to disable (1) or enable (0) Tx for Traffic ID (TID)
  794. * corresponding to bit (e.g. bit 5 controls TID 5).
  795. * Set modify_mask bit STA_MODIFY_TID_DISABLE_TX to use this field. */
  796. __le16 tid_disable_tx;
  797. __le16 legacy_reserved;
  798. /* TID for which to add block-ack support.
  799. * Set modify_mask bit STA_MODIFY_ADDBA_TID_MSK to use this field. */
  800. u8 add_immediate_ba_tid;
  801. /* TID for which to remove block-ack support.
  802. * Set modify_mask bit STA_MODIFY_DELBA_TID_MSK to use this field. */
  803. u8 remove_immediate_ba_tid;
  804. /* Starting Sequence Number for added block-ack support.
  805. * Set modify_mask bit STA_MODIFY_ADDBA_TID_MSK to use this field. */
  806. __le16 add_immediate_ba_ssn;
  807. /*
  808. * Number of packets OK to transmit to station even though
  809. * it is asleep -- used to synchronise PS-poll and u-APSD
  810. * responses while ucode keeps track of STA sleep state.
  811. */
  812. __le16 sleep_tx_count;
  813. __le16 reserved2;
  814. } __packed;
  815. #define ADD_STA_SUCCESS_MSK 0x1
  816. #define ADD_STA_NO_ROOM_IN_TABLE 0x2
  817. #define ADD_STA_NO_BLOCK_ACK_RESOURCE 0x4
  818. #define ADD_STA_MODIFY_NON_EXIST_STA 0x8
  819. /*
  820. * REPLY_ADD_STA = 0x18 (response)
  821. */
  822. struct iwl_add_sta_resp {
  823. u8 status; /* ADD_STA_* */
  824. } __packed;
  825. #define REM_STA_SUCCESS_MSK 0x1
  826. /*
  827. * REPLY_REM_STA = 0x19 (response)
  828. */
  829. struct iwl_rem_sta_resp {
  830. u8 status;
  831. } __packed;
  832. /*
  833. * REPLY_REM_STA = 0x19 (command)
  834. */
  835. struct iwl_rem_sta_cmd {
  836. u8 num_sta; /* number of removed stations */
  837. u8 reserved[3];
  838. u8 addr[ETH_ALEN]; /* MAC addr of the first station */
  839. u8 reserved2[2];
  840. } __packed;
  841. /* WiFi queues mask */
  842. #define IWL_SCD_BK_MSK cpu_to_le32(BIT(0))
  843. #define IWL_SCD_BE_MSK cpu_to_le32(BIT(1))
  844. #define IWL_SCD_VI_MSK cpu_to_le32(BIT(2))
  845. #define IWL_SCD_VO_MSK cpu_to_le32(BIT(3))
  846. #define IWL_SCD_MGMT_MSK cpu_to_le32(BIT(3))
  847. /* PAN queues mask */
  848. #define IWL_PAN_SCD_BK_MSK cpu_to_le32(BIT(4))
  849. #define IWL_PAN_SCD_BE_MSK cpu_to_le32(BIT(5))
  850. #define IWL_PAN_SCD_VI_MSK cpu_to_le32(BIT(6))
  851. #define IWL_PAN_SCD_VO_MSK cpu_to_le32(BIT(7))
  852. #define IWL_PAN_SCD_MGMT_MSK cpu_to_le32(BIT(7))
  853. #define IWL_PAN_SCD_MULTICAST_MSK cpu_to_le32(BIT(8))
  854. #define IWL_AGG_TX_QUEUE_MSK cpu_to_le32(0xffc00)
  855. #define IWL_DROP_SINGLE 0
  856. #define IWL_DROP_ALL (BIT(IWL_RXON_CTX_BSS) | BIT(IWL_RXON_CTX_PAN))
  857. /*
  858. * REPLY_TXFIFO_FLUSH = 0x1e(command and response)
  859. *
  860. * When using full FIFO flush this command checks the scheduler HW block WR/RD
  861. * pointers to check if all the frames were transferred by DMA into the
  862. * relevant TX FIFO queue. Only when the DMA is finished and the queue is
  863. * empty the command can finish.
  864. * This command is used to flush the TXFIFO from transmit commands, it may
  865. * operate on single or multiple queues, the command queue can't be flushed by
  866. * this command. The command response is returned when all the queue flush
  867. * operations are done. Each TX command flushed return response with the FLUSH
  868. * status set in the TX response status. When FIFO flush operation is used,
  869. * the flush operation ends when both the scheduler DMA done and TXFIFO empty
  870. * are set.
  871. *
  872. * @fifo_control: bit mask for which queues to flush
  873. * @flush_control: flush controls
  874. * 0: Dump single MSDU
  875. * 1: Dump multiple MSDU according to PS, INVALID STA, TTL, TID disable.
  876. * 2: Dump all FIFO
  877. */
  878. struct iwl_txfifo_flush_cmd {
  879. __le32 fifo_control;
  880. __le16 flush_control;
  881. __le16 reserved;
  882. } __packed;
  883. /*
  884. * REPLY_WEP_KEY = 0x20
  885. */
  886. struct iwl_wep_key {
  887. u8 key_index;
  888. u8 key_offset;
  889. u8 reserved1[2];
  890. u8 key_size;
  891. u8 reserved2[3];
  892. u8 key[16];
  893. } __packed;
  894. struct iwl_wep_cmd {
  895. u8 num_keys;
  896. u8 global_key_type;
  897. u8 flags;
  898. u8 reserved;
  899. struct iwl_wep_key key[0];
  900. } __packed;
  901. #define WEP_KEY_WEP_TYPE 1
  902. #define WEP_KEYS_MAX 4
  903. #define WEP_INVALID_OFFSET 0xff
  904. #define WEP_KEY_LEN_64 5
  905. #define WEP_KEY_LEN_128 13
  906. /******************************************************************************
  907. * (4)
  908. * Rx Responses:
  909. *
  910. *****************************************************************************/
  911. #define RX_RES_STATUS_NO_CRC32_ERROR cpu_to_le32(1 << 0)
  912. #define RX_RES_STATUS_NO_RXE_OVERFLOW cpu_to_le32(1 << 1)
  913. #define RX_RES_PHY_FLAGS_BAND_24_MSK cpu_to_le16(1 << 0)
  914. #define RX_RES_PHY_FLAGS_MOD_CCK_MSK cpu_to_le16(1 << 1)
  915. #define RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK cpu_to_le16(1 << 2)
  916. #define RX_RES_PHY_FLAGS_NARROW_BAND_MSK cpu_to_le16(1 << 3)
  917. #define RX_RES_PHY_FLAGS_ANTENNA_MSK 0xf0
  918. #define RX_RES_PHY_FLAGS_ANTENNA_POS 4
  919. #define RX_RES_STATUS_SEC_TYPE_MSK (0x7 << 8)
  920. #define RX_RES_STATUS_SEC_TYPE_NONE (0x0 << 8)
  921. #define RX_RES_STATUS_SEC_TYPE_WEP (0x1 << 8)
  922. #define RX_RES_STATUS_SEC_TYPE_CCMP (0x2 << 8)
  923. #define RX_RES_STATUS_SEC_TYPE_TKIP (0x3 << 8)
  924. #define RX_RES_STATUS_SEC_TYPE_ERR (0x7 << 8)
  925. #define RX_RES_STATUS_STATION_FOUND (1<<6)
  926. #define RX_RES_STATUS_NO_STATION_INFO_MISMATCH (1<<7)
  927. #define RX_RES_STATUS_DECRYPT_TYPE_MSK (0x3 << 11)
  928. #define RX_RES_STATUS_NOT_DECRYPT (0x0 << 11)
  929. #define RX_RES_STATUS_DECRYPT_OK (0x3 << 11)
  930. #define RX_RES_STATUS_BAD_ICV_MIC (0x1 << 11)
  931. #define RX_RES_STATUS_BAD_KEY_TTAK (0x2 << 11)
  932. #define RX_MPDU_RES_STATUS_ICV_OK (0x20)
  933. #define RX_MPDU_RES_STATUS_MIC_OK (0x40)
  934. #define RX_MPDU_RES_STATUS_TTAK_OK (1 << 7)
  935. #define RX_MPDU_RES_STATUS_DEC_DONE_MSK (0x800)
  936. #define IWLAGN_RX_RES_PHY_CNT 8
  937. #define IWLAGN_RX_RES_AGC_IDX 1
  938. #define IWLAGN_RX_RES_RSSI_AB_IDX 2
  939. #define IWLAGN_RX_RES_RSSI_C_IDX 3
  940. #define IWLAGN_OFDM_AGC_MSK 0xfe00
  941. #define IWLAGN_OFDM_AGC_BIT_POS 9
  942. #define IWLAGN_OFDM_RSSI_INBAND_A_BITMSK 0x00ff
  943. #define IWLAGN_OFDM_RSSI_ALLBAND_A_BITMSK 0xff00
  944. #define IWLAGN_OFDM_RSSI_A_BIT_POS 0
  945. #define IWLAGN_OFDM_RSSI_INBAND_B_BITMSK 0xff0000
  946. #define IWLAGN_OFDM_RSSI_ALLBAND_B_BITMSK 0xff000000
  947. #define IWLAGN_OFDM_RSSI_B_BIT_POS 16
  948. #define IWLAGN_OFDM_RSSI_INBAND_C_BITMSK 0x00ff
  949. #define IWLAGN_OFDM_RSSI_ALLBAND_C_BITMSK 0xff00
  950. #define IWLAGN_OFDM_RSSI_C_BIT_POS 0
  951. struct iwlagn_non_cfg_phy {
  952. __le32 non_cfg_phy[IWLAGN_RX_RES_PHY_CNT]; /* up to 8 phy entries */
  953. } __packed;
  954. /*
  955. * REPLY_RX = 0xc3 (response only, not a command)
  956. * Used only for legacy (non 11n) frames.
  957. */
  958. struct iwl_rx_phy_res {
  959. u8 non_cfg_phy_cnt; /* non configurable DSP phy data byte count */
  960. u8 cfg_phy_cnt; /* configurable DSP phy data byte count */
  961. u8 stat_id; /* configurable DSP phy data set ID */
  962. u8 reserved1;
  963. __le64 timestamp; /* TSF at on air rise */
  964. __le32 beacon_time_stamp; /* beacon at on-air rise */
  965. __le16 phy_flags; /* general phy flags: band, modulation, ... */
  966. __le16 channel; /* channel number */
  967. u8 non_cfg_phy_buf[32]; /* for various implementations of non_cfg_phy */
  968. __le32 rate_n_flags; /* RATE_MCS_* */
  969. __le16 byte_count; /* frame's byte-count */
  970. __le16 frame_time; /* frame's time on the air */
  971. } __packed;
  972. struct iwl_rx_mpdu_res_start {
  973. __le16 byte_count;
  974. __le16 reserved;
  975. } __packed;
  976. /******************************************************************************
  977. * (5)
  978. * Tx Commands & Responses:
  979. *
  980. * Driver must place each REPLY_TX command into one of the prioritized Tx
  981. * queues in host DRAM, shared between driver and device (see comments for
  982. * SCD registers and Tx/Rx Queues). When the device's Tx scheduler and uCode
  983. * are preparing to transmit, the device pulls the Tx command over the PCI
  984. * bus via one of the device's Tx DMA channels, to fill an internal FIFO
  985. * from which data will be transmitted.
  986. *
  987. * uCode handles all timing and protocol related to control frames
  988. * (RTS/CTS/ACK), based on flags in the Tx command. uCode and Tx scheduler
  989. * handle reception of block-acks; uCode updates the host driver via
  990. * REPLY_COMPRESSED_BA.
  991. *
  992. * uCode handles retrying Tx when an ACK is expected but not received.
  993. * This includes trying lower data rates than the one requested in the Tx
  994. * command, as set up by the REPLY_TX_LINK_QUALITY_CMD (agn).
  995. *
  996. * Driver sets up transmit power for various rates via REPLY_TX_PWR_TABLE_CMD.
  997. * This command must be executed after every RXON command, before Tx can occur.
  998. *****************************************************************************/
  999. /* REPLY_TX Tx flags field */
  1000. /*
  1001. * 1: Use RTS/CTS protocol or CTS-to-self if spec allows it
  1002. * before this frame. if CTS-to-self required check
  1003. * RXON_FLG_SELF_CTS_EN status.
  1004. */
  1005. #define TX_CMD_FLG_PROT_REQUIRE_MSK cpu_to_le32(1 << 0)
  1006. /* 1: Expect ACK from receiving station
  1007. * 0: Don't expect ACK (MAC header's duration field s/b 0)
  1008. * Set this for unicast frames, but not broadcast/multicast. */
  1009. #define TX_CMD_FLG_ACK_MSK cpu_to_le32(1 << 3)
  1010. /* For agn devices:
  1011. * 1: Use rate scale table (see REPLY_TX_LINK_QUALITY_CMD).
  1012. * Tx command's initial_rate_index indicates first rate to try;
  1013. * uCode walks through table for additional Tx attempts.
  1014. * 0: Use Tx rate/MCS from Tx command's rate_n_flags field.
  1015. * This rate will be used for all Tx attempts; it will not be scaled. */
  1016. #define TX_CMD_FLG_STA_RATE_MSK cpu_to_le32(1 << 4)
  1017. /* 1: Expect immediate block-ack.
  1018. * Set when Txing a block-ack request frame. Also set TX_CMD_FLG_ACK_MSK. */
  1019. #define TX_CMD_FLG_IMM_BA_RSP_MASK cpu_to_le32(1 << 6)
  1020. /* Tx antenna selection field; reserved (0) for agn devices. */
  1021. #define TX_CMD_FLG_ANT_SEL_MSK cpu_to_le32(0xf00)
  1022. /* 1: Ignore Bluetooth priority for this frame.
  1023. * 0: Delay Tx until Bluetooth device is done (normal usage). */
  1024. #define TX_CMD_FLG_IGNORE_BT cpu_to_le32(1 << 12)
  1025. /* 1: uCode overrides sequence control field in MAC header.
  1026. * 0: Driver provides sequence control field in MAC header.
  1027. * Set this for management frames, non-QOS data frames, non-unicast frames,
  1028. * and also in Tx command embedded in REPLY_SCAN_CMD for active scans. */
  1029. #define TX_CMD_FLG_SEQ_CTL_MSK cpu_to_le32(1 << 13)
  1030. /* 1: This frame is non-last MPDU; more fragments are coming.
  1031. * 0: Last fragment, or not using fragmentation. */
  1032. #define TX_CMD_FLG_MORE_FRAG_MSK cpu_to_le32(1 << 14)
  1033. /* 1: uCode calculates and inserts Timestamp Function (TSF) in outgoing frame.
  1034. * 0: No TSF required in outgoing frame.
  1035. * Set this for transmitting beacons and probe responses. */
  1036. #define TX_CMD_FLG_TSF_MSK cpu_to_le32(1 << 16)
  1037. /* 1: Driver inserted 2 bytes pad after the MAC header, for (required) dword
  1038. * alignment of frame's payload data field.
  1039. * 0: No pad
  1040. * Set this for MAC headers with 26 or 30 bytes, i.e. those with QOS or ADDR4
  1041. * field (but not both). Driver must align frame data (i.e. data following
  1042. * MAC header) to DWORD boundary. */
  1043. #define TX_CMD_FLG_MH_PAD_MSK cpu_to_le32(1 << 20)
  1044. /* accelerate aggregation support
  1045. * 0 - no CCMP encryption; 1 - CCMP encryption */
  1046. #define TX_CMD_FLG_AGG_CCMP_MSK cpu_to_le32(1 << 22)
  1047. /* HCCA-AP - disable duration overwriting. */
  1048. #define TX_CMD_FLG_DUR_MSK cpu_to_le32(1 << 25)
  1049. /*
  1050. * TX command security control
  1051. */
  1052. #define TX_CMD_SEC_WEP 0x01
  1053. #define TX_CMD_SEC_CCM 0x02
  1054. #define TX_CMD_SEC_TKIP 0x03
  1055. #define TX_CMD_SEC_MSK 0x03
  1056. #define TX_CMD_SEC_SHIFT 6
  1057. #define TX_CMD_SEC_KEY128 0x08
  1058. /*
  1059. * security overhead sizes
  1060. */
  1061. #define WEP_IV_LEN 4
  1062. #define WEP_ICV_LEN 4
  1063. #define CCMP_MIC_LEN 8
  1064. #define TKIP_ICV_LEN 4
  1065. /*
  1066. * REPLY_TX = 0x1c (command)
  1067. */
  1068. /*
  1069. * 4965 uCode updates these Tx attempt count values in host DRAM.
  1070. * Used for managing Tx retries when expecting block-acks.
  1071. * Driver should set these fields to 0.
  1072. */
  1073. struct iwl_dram_scratch {
  1074. u8 try_cnt; /* Tx attempts */
  1075. u8 bt_kill_cnt; /* Tx attempts blocked by Bluetooth device */
  1076. __le16 reserved;
  1077. } __packed;
  1078. struct iwl_tx_cmd {
  1079. /*
  1080. * MPDU byte count:
  1081. * MAC header (24/26/30/32 bytes) + 2 bytes pad if 26/30 header size,
  1082. * + 8 byte IV for CCM or TKIP (not used for WEP)
  1083. * + Data payload
  1084. * + 8-byte MIC (not used for CCM/WEP)
  1085. * NOTE: Does not include Tx command bytes, post-MAC pad bytes,
  1086. * MIC (CCM) 8 bytes, ICV (WEP/TKIP/CKIP) 4 bytes, CRC 4 bytes.i
  1087. * Range: 14-2342 bytes.
  1088. */
  1089. __le16 len;
  1090. /*
  1091. * MPDU or MSDU byte count for next frame.
  1092. * Used for fragmentation and bursting, but not 11n aggregation.
  1093. * Same as "len", but for next frame. Set to 0 if not applicable.
  1094. */
  1095. __le16 next_frame_len;
  1096. __le32 tx_flags; /* TX_CMD_FLG_* */
  1097. /* uCode may modify this field of the Tx command (in host DRAM!).
  1098. * Driver must also set dram_lsb_ptr and dram_msb_ptr in this cmd. */
  1099. struct iwl_dram_scratch scratch;
  1100. /* Rate for *all* Tx attempts, if TX_CMD_FLG_STA_RATE_MSK is cleared. */
  1101. __le32 rate_n_flags; /* RATE_MCS_* */
  1102. /* Index of destination station in uCode's station table */
  1103. u8 sta_id;
  1104. /* Type of security encryption: CCM or TKIP */
  1105. u8 sec_ctl; /* TX_CMD_SEC_* */
  1106. /*
  1107. * Index into rate table (see REPLY_TX_LINK_QUALITY_CMD) for initial
  1108. * Tx attempt, if TX_CMD_FLG_STA_RATE_MSK is set. Normally "0" for
  1109. * data frames, this field may be used to selectively reduce initial
  1110. * rate (via non-0 value) for special frames (e.g. management), while
  1111. * still supporting rate scaling for all frames.
  1112. */
  1113. u8 initial_rate_index;
  1114. u8 reserved;
  1115. u8 key[16];
  1116. __le16 next_frame_flags;
  1117. __le16 reserved2;
  1118. union {
  1119. __le32 life_time;
  1120. __le32 attempt;
  1121. } stop_time;
  1122. /* Host DRAM physical address pointer to "scratch" in this command.
  1123. * Must be dword aligned. "0" in dram_lsb_ptr disables usage. */
  1124. __le32 dram_lsb_ptr;
  1125. u8 dram_msb_ptr;
  1126. u8 rts_retry_limit; /*byte 50 */
  1127. u8 data_retry_limit; /*byte 51 */
  1128. u8 tid_tspec;
  1129. union {
  1130. __le16 pm_frame_timeout;
  1131. __le16 attempt_duration;
  1132. } timeout;
  1133. /*
  1134. * Duration of EDCA burst Tx Opportunity, in 32-usec units.
  1135. * Set this if txop time is not specified by HCCA protocol (e.g. by AP).
  1136. */
  1137. __le16 driver_txop;
  1138. /*
  1139. * MAC header goes here, followed by 2 bytes padding if MAC header
  1140. * length is 26 or 30 bytes, followed by payload data
  1141. */
  1142. u8 payload[0];
  1143. struct ieee80211_hdr hdr[0];
  1144. } __packed;
  1145. /*
  1146. * TX command response is sent after *agn* transmission attempts.
  1147. *
  1148. * both postpone and abort status are expected behavior from uCode. there is
  1149. * no special operation required from driver; except for RFKILL_FLUSH,
  1150. * which required tx flush host command to flush all the tx frames in queues
  1151. */
  1152. enum {
  1153. TX_STATUS_SUCCESS = 0x01,
  1154. TX_STATUS_DIRECT_DONE = 0x02,
  1155. /* postpone TX */
  1156. TX_STATUS_POSTPONE_DELAY = 0x40,
  1157. TX_STATUS_POSTPONE_FEW_BYTES = 0x41,
  1158. TX_STATUS_POSTPONE_BT_PRIO = 0x42,
  1159. TX_STATUS_POSTPONE_QUIET_PERIOD = 0x43,
  1160. TX_STATUS_POSTPONE_CALC_TTAK = 0x44,
  1161. /* abort TX */
  1162. TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY = 0x81,
  1163. TX_STATUS_FAIL_SHORT_LIMIT = 0x82,
  1164. TX_STATUS_FAIL_LONG_LIMIT = 0x83,
  1165. TX_STATUS_FAIL_FIFO_UNDERRUN = 0x84,
  1166. TX_STATUS_FAIL_DRAIN_FLOW = 0x85,
  1167. TX_STATUS_FAIL_RFKILL_FLUSH = 0x86,
  1168. TX_STATUS_FAIL_LIFE_EXPIRE = 0x87,
  1169. TX_STATUS_FAIL_DEST_PS = 0x88,
  1170. TX_STATUS_FAIL_HOST_ABORTED = 0x89,
  1171. TX_STATUS_FAIL_BT_RETRY = 0x8a,
  1172. TX_STATUS_FAIL_STA_INVALID = 0x8b,
  1173. TX_STATUS_FAIL_FRAG_DROPPED = 0x8c,
  1174. TX_STATUS_FAIL_TID_DISABLE = 0x8d,
  1175. TX_STATUS_FAIL_FIFO_FLUSHED = 0x8e,
  1176. TX_STATUS_FAIL_INSUFFICIENT_CF_POLL = 0x8f,
  1177. TX_STATUS_FAIL_PASSIVE_NO_RX = 0x90,
  1178. TX_STATUS_FAIL_NO_BEACON_ON_RADAR = 0x91,
  1179. };
  1180. #define TX_PACKET_MODE_REGULAR 0x0000
  1181. #define TX_PACKET_MODE_BURST_SEQ 0x0100
  1182. #define TX_PACKET_MODE_BURST_FIRST 0x0200
  1183. enum {
  1184. TX_POWER_PA_NOT_ACTIVE = 0x0,
  1185. };
  1186. enum {
  1187. TX_STATUS_MSK = 0x000000ff, /* bits 0:7 */
  1188. TX_STATUS_DELAY_MSK = 0x00000040,
  1189. TX_STATUS_ABORT_MSK = 0x00000080,
  1190. TX_PACKET_MODE_MSK = 0x0000ff00, /* bits 8:15 */
  1191. TX_FIFO_NUMBER_MSK = 0x00070000, /* bits 16:18 */
  1192. TX_RESERVED = 0x00780000, /* bits 19:22 */
  1193. TX_POWER_PA_DETECT_MSK = 0x7f800000, /* bits 23:30 */
  1194. TX_ABORT_REQUIRED_MSK = 0x80000000, /* bits 31:31 */
  1195. };
  1196. /* *******************************
  1197. * TX aggregation status
  1198. ******************************* */
  1199. enum {
  1200. AGG_TX_STATE_TRANSMITTED = 0x00,
  1201. AGG_TX_STATE_UNDERRUN_MSK = 0x01,
  1202. AGG_TX_STATE_BT_PRIO_MSK = 0x02,
  1203. AGG_TX_STATE_FEW_BYTES_MSK = 0x04,
  1204. AGG_TX_STATE_ABORT_MSK = 0x08,
  1205. AGG_TX_STATE_LAST_SENT_TTL_MSK = 0x10,
  1206. AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK = 0x20,
  1207. AGG_TX_STATE_LAST_SENT_BT_KILL_MSK = 0x40,
  1208. AGG_TX_STATE_SCD_QUERY_MSK = 0x80,
  1209. AGG_TX_STATE_TEST_BAD_CRC32_MSK = 0x100,
  1210. AGG_TX_STATE_RESPONSE_MSK = 0x1ff,
  1211. AGG_TX_STATE_DUMP_TX_MSK = 0x200,
  1212. AGG_TX_STATE_DELAY_TX_MSK = 0x400
  1213. };
  1214. #define AGG_TX_STATUS_MSK 0x00000fff /* bits 0:11 */
  1215. #define AGG_TX_TRY_MSK 0x0000f000 /* bits 12:15 */
  1216. #define AGG_TX_STATE_LAST_SENT_MSK (AGG_TX_STATE_LAST_SENT_TTL_MSK | \
  1217. AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK | \
  1218. AGG_TX_STATE_LAST_SENT_BT_KILL_MSK)
  1219. /* # tx attempts for first frame in aggregation */
  1220. #define AGG_TX_STATE_TRY_CNT_POS 12
  1221. #define AGG_TX_STATE_TRY_CNT_MSK 0xf000
  1222. /* Command ID and sequence number of Tx command for this frame */
  1223. #define AGG_TX_STATE_SEQ_NUM_POS 16
  1224. #define AGG_TX_STATE_SEQ_NUM_MSK 0xffff0000
  1225. /*
  1226. * REPLY_TX = 0x1c (response)
  1227. *
  1228. * This response may be in one of two slightly different formats, indicated
  1229. * by the frame_count field:
  1230. *
  1231. * 1) No aggregation (frame_count == 1). This reports Tx results for
  1232. * a single frame. Multiple attempts, at various bit rates, may have
  1233. * been made for this frame.
  1234. *
  1235. * 2) Aggregation (frame_count > 1). This reports Tx results for
  1236. * 2 or more frames that used block-acknowledge. All frames were
  1237. * transmitted at same rate. Rate scaling may have been used if first
  1238. * frame in this new agg block failed in previous agg block(s).
  1239. *
  1240. * Note that, for aggregation, ACK (block-ack) status is not delivered here;
  1241. * block-ack has not been received by the time the agn device records
  1242. * this status.
  1243. * This status relates to reasons the tx might have been blocked or aborted
  1244. * within the sending station (this agn device), rather than whether it was
  1245. * received successfully by the destination station.
  1246. */
  1247. struct agg_tx_status {
  1248. __le16 status;
  1249. __le16 sequence;
  1250. } __packed;
  1251. /*
  1252. * definitions for initial rate index field
  1253. * bits [3:0] initial rate index
  1254. * bits [6:4] rate table color, used for the initial rate
  1255. * bit-7 invalid rate indication
  1256. * i.e. rate was not chosen from rate table
  1257. * or rate table color was changed during frame retries
  1258. * refer tlc rate info
  1259. */
  1260. #define IWL50_TX_RES_INIT_RATE_INDEX_POS 0
  1261. #define IWL50_TX_RES_INIT_RATE_INDEX_MSK 0x0f
  1262. #define IWL50_TX_RES_RATE_TABLE_COLOR_POS 4
  1263. #define IWL50_TX_RES_RATE_TABLE_COLOR_MSK 0x70
  1264. #define IWL50_TX_RES_INV_RATE_INDEX_MSK 0x80
  1265. /* refer to ra_tid */
  1266. #define IWLAGN_TX_RES_TID_POS 0
  1267. #define IWLAGN_TX_RES_TID_MSK 0x0f
  1268. #define IWLAGN_TX_RES_RA_POS 4
  1269. #define IWLAGN_TX_RES_RA_MSK 0xf0
  1270. struct iwlagn_tx_resp {
  1271. u8 frame_count; /* 1 no aggregation, >1 aggregation */
  1272. u8 bt_kill_count; /* # blocked by bluetooth (unused for agg) */
  1273. u8 failure_rts; /* # failures due to unsuccessful RTS */
  1274. u8 failure_frame; /* # failures due to no ACK (unused for agg) */
  1275. /* For non-agg: Rate at which frame was successful.
  1276. * For agg: Rate at which all frames were transmitted. */
  1277. __le32 rate_n_flags; /* RATE_MCS_* */
  1278. /* For non-agg: RTS + CTS + frame tx attempts time + ACK.
  1279. * For agg: RTS + CTS + aggregation tx time + block-ack time. */
  1280. __le16 wireless_media_time; /* uSecs */
  1281. u8 pa_status; /* RF power amplifier measurement (not used) */
  1282. u8 pa_integ_res_a[3];
  1283. u8 pa_integ_res_b[3];
  1284. u8 pa_integ_res_C[3];
  1285. __le32 tfd_info;
  1286. __le16 seq_ctl;
  1287. __le16 byte_cnt;
  1288. u8 tlc_info;
  1289. u8 ra_tid; /* tid (0:3), sta_id (4:7) */
  1290. __le16 frame_ctrl;
  1291. /*
  1292. * For non-agg: frame status TX_STATUS_*
  1293. * For agg: status of 1st frame, AGG_TX_STATE_*; other frame status
  1294. * fields follow this one, up to frame_count.
  1295. * Bit fields:
  1296. * 11- 0: AGG_TX_STATE_* status code
  1297. * 15-12: Retry count for 1st frame in aggregation (retries
  1298. * occur if tx failed for this frame when it was a
  1299. * member of a previous aggregation block). If rate
  1300. * scaling is used, retry count indicates the rate
  1301. * table entry used for all frames in the new agg.
  1302. * 31-16: Sequence # for this frame's Tx cmd (not SSN!)
  1303. */
  1304. struct agg_tx_status status; /* TX status (in aggregation -
  1305. * status of 1st frame) */
  1306. } __packed;
  1307. /*
  1308. * REPLY_COMPRESSED_BA = 0xc5 (response only, not a command)
  1309. *
  1310. * Reports Block-Acknowledge from recipient station
  1311. */
  1312. struct iwl_compressed_ba_resp {
  1313. __le32 sta_addr_lo32;
  1314. __le16 sta_addr_hi16;
  1315. __le16 reserved;
  1316. /* Index of recipient (BA-sending) station in uCode's station table */
  1317. u8 sta_id;
  1318. u8 tid;
  1319. __le16 seq_ctl;
  1320. __le64 bitmap;
  1321. __le16 scd_flow;
  1322. __le16 scd_ssn;
  1323. u8 txed; /* number of frames sent */
  1324. u8 txed_2_done; /* number of frames acked */
  1325. } __packed;
  1326. /*
  1327. * REPLY_TX_PWR_TABLE_CMD = 0x97 (command, has simple generic response)
  1328. *
  1329. */
  1330. /*RS_NEW_API: only TLC_RTS remains and moved to bit 0 */
  1331. #define LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK (1 << 0)
  1332. /* # of EDCA prioritized tx fifos */
  1333. #define LINK_QUAL_AC_NUM AC_NUM
  1334. /* # entries in rate scale table to support Tx retries */
  1335. #define LINK_QUAL_MAX_RETRY_NUM 16
  1336. /* Tx antenna selection values */
  1337. #define LINK_QUAL_ANT_A_MSK (1 << 0)
  1338. #define LINK_QUAL_ANT_B_MSK (1 << 1)
  1339. #define LINK_QUAL_ANT_MSK (LINK_QUAL_ANT_A_MSK|LINK_QUAL_ANT_B_MSK)
  1340. /**
  1341. * struct iwl_link_qual_general_params
  1342. *
  1343. * Used in REPLY_TX_LINK_QUALITY_CMD
  1344. */
  1345. struct iwl_link_qual_general_params {
  1346. u8 flags;
  1347. /* No entries at or above this (driver chosen) index contain MIMO */
  1348. u8 mimo_delimiter;
  1349. /* Best single antenna to use for single stream (legacy, SISO). */
  1350. u8 single_stream_ant_msk; /* LINK_QUAL_ANT_* */
  1351. /* Best antennas to use for MIMO (unused for 4965, assumes both). */
  1352. u8 dual_stream_ant_msk; /* LINK_QUAL_ANT_* */
  1353. /*
  1354. * If driver needs to use different initial rates for different
  1355. * EDCA QOS access categories (as implemented by tx fifos 0-3),
  1356. * this table will set that up, by indicating the indexes in the
  1357. * rs_table[LINK_QUAL_MAX_RETRY_NUM] rate table at which to start.
  1358. * Otherwise, driver should set all entries to 0.
  1359. *
  1360. * Entry usage:
  1361. * 0 = Background, 1 = Best Effort (normal), 2 = Video, 3 = Voice
  1362. * TX FIFOs above 3 use same value (typically 0) as TX FIFO 3.
  1363. */
  1364. u8 start_rate_index[LINK_QUAL_AC_NUM];
  1365. } __packed;
  1366. #define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000) /* 4 milliseconds */
  1367. #define LINK_QUAL_AGG_TIME_LIMIT_MAX (8000)
  1368. #define LINK_QUAL_AGG_TIME_LIMIT_MIN (100)
  1369. #define LINK_QUAL_AGG_DISABLE_START_DEF (3)
  1370. #define LINK_QUAL_AGG_DISABLE_START_MAX (255)
  1371. #define LINK_QUAL_AGG_DISABLE_START_MIN (0)
  1372. #define LINK_QUAL_AGG_FRAME_LIMIT_DEF (63)
  1373. #define LINK_QUAL_AGG_FRAME_LIMIT_MAX (63)
  1374. #define LINK_QUAL_AGG_FRAME_LIMIT_MIN (0)
  1375. /**
  1376. * struct iwl_link_qual_agg_params
  1377. *
  1378. * Used in REPLY_TX_LINK_QUALITY_CMD
  1379. */
  1380. struct iwl_link_qual_agg_params {
  1381. /*
  1382. *Maximum number of uSec in aggregation.
  1383. * default set to 4000 (4 milliseconds) if not configured in .cfg
  1384. */
  1385. __le16 agg_time_limit;
  1386. /*
  1387. * Number of Tx retries allowed for a frame, before that frame will
  1388. * no longer be considered for the start of an aggregation sequence
  1389. * (scheduler will then try to tx it as single frame).
  1390. * Driver should set this to 3.
  1391. */
  1392. u8 agg_dis_start_th;
  1393. /*
  1394. * Maximum number of frames in aggregation.
  1395. * 0 = no limit (default). 1 = no aggregation.
  1396. * Other values = max # frames in aggregation.
  1397. */
  1398. u8 agg_frame_cnt_limit;
  1399. __le32 reserved;
  1400. } __packed;
  1401. /*
  1402. * REPLY_TX_LINK_QUALITY_CMD = 0x4e (command, has simple generic response)
  1403. *
  1404. * For agn devices
  1405. *
  1406. * Each station in the agn device's internal station table has its own table
  1407. * of 16
  1408. * Tx rates and modulation modes (e.g. legacy/SISO/MIMO) for retrying Tx when
  1409. * an ACK is not received. This command replaces the entire table for
  1410. * one station.
  1411. *
  1412. * NOTE: Station must already be in agn device's station table.
  1413. * Use REPLY_ADD_STA.
  1414. *
  1415. * The rate scaling procedures described below work well. Of course, other
  1416. * procedures are possible, and may work better for particular environments.
  1417. *
  1418. *
  1419. * FILLING THE RATE TABLE
  1420. *
  1421. * Given a particular initial rate and mode, as determined by the rate
  1422. * scaling algorithm described below, the Linux driver uses the following
  1423. * formula to fill the rs_table[LINK_QUAL_MAX_RETRY_NUM] rate table in the
  1424. * Link Quality command:
  1425. *
  1426. *
  1427. * 1) If using High-throughput (HT) (SISO or MIMO) initial rate:
  1428. * a) Use this same initial rate for first 3 entries.
  1429. * b) Find next lower available rate using same mode (SISO or MIMO),
  1430. * use for next 3 entries. If no lower rate available, switch to
  1431. * legacy mode (no HT40 channel, no MIMO, no short guard interval).
  1432. * c) If using MIMO, set command's mimo_delimiter to number of entries
  1433. * using MIMO (3 or 6).
  1434. * d) After trying 2 HT rates, switch to legacy mode (no HT40 channel,
  1435. * no MIMO, no short guard interval), at the next lower bit rate
  1436. * (e.g. if second HT bit rate was 54, try 48 legacy), and follow
  1437. * legacy procedure for remaining table entries.
  1438. *
  1439. * 2) If using legacy initial rate:
  1440. * a) Use the initial rate for only one entry.
  1441. * b) For each following entry, reduce the rate to next lower available
  1442. * rate, until reaching the lowest available rate.
  1443. * c) When reducing rate, also switch antenna selection.
  1444. * d) Once lowest available rate is reached, repeat this rate until
  1445. * rate table is filled (16 entries), switching antenna each entry.
  1446. *
  1447. *
  1448. * ACCUMULATING HISTORY
  1449. *
  1450. * The rate scaling algorithm for agn devices, as implemented in Linux driver,
  1451. * uses two sets of frame Tx success history: One for the current/active
  1452. * modulation mode, and one for a speculative/search mode that is being
  1453. * attempted. If the speculative mode turns out to be more effective (i.e.
  1454. * actual transfer rate is better), then the driver continues to use the
  1455. * speculative mode as the new current active mode.
  1456. *
  1457. * Each history set contains, separately for each possible rate, data for a
  1458. * sliding window of the 62 most recent tx attempts at that rate. The data
  1459. * includes a shifting bitmap of success(1)/failure(0), and sums of successful
  1460. * and attempted frames, from which the driver can additionally calculate a
  1461. * success ratio (success / attempted) and number of failures
  1462. * (attempted - success), and control the size of the window (attempted).
  1463. * The driver uses the bit map to remove successes from the success sum, as
  1464. * the oldest tx attempts fall out of the window.
  1465. *
  1466. * When the agn device makes multiple tx attempts for a given frame, each
  1467. * attempt might be at a different rate, and have different modulation
  1468. * characteristics (e.g. antenna, fat channel, short guard interval), as set
  1469. * up in the rate scaling table in the Link Quality command. The driver must
  1470. * determine which rate table entry was used for each tx attempt, to determine
  1471. * which rate-specific history to update, and record only those attempts that
  1472. * match the modulation characteristics of the history set.
  1473. *
  1474. * When using block-ack (aggregation), all frames are transmitted at the same
  1475. * rate, since there is no per-attempt acknowledgment from the destination
  1476. * station. The Tx response struct iwl_tx_resp indicates the Tx rate in
  1477. * rate_n_flags field. After receiving a block-ack, the driver can update
  1478. * history for the entire block all at once.
  1479. *
  1480. *
  1481. * FINDING BEST STARTING RATE:
  1482. *
  1483. * When working with a selected initial modulation mode (see below), the
  1484. * driver attempts to find a best initial rate. The initial rate is the
  1485. * first entry in the Link Quality command's rate table.
  1486. *
  1487. * 1) Calculate actual throughput (success ratio * expected throughput, see
  1488. * table below) for current initial rate. Do this only if enough frames
  1489. * have been attempted to make the value meaningful: at least 6 failed
  1490. * tx attempts, or at least 8 successes. If not enough, don't try rate
  1491. * scaling yet.
  1492. *
  1493. * 2) Find available rates adjacent to current initial rate. Available means:
  1494. * a) supported by hardware &&
  1495. * b) supported by association &&
  1496. * c) within any constraints selected by user
  1497. *
  1498. * 3) Gather measured throughputs for adjacent rates. These might not have
  1499. * enough history to calculate a throughput. That's okay, we might try
  1500. * using one of them anyway!
  1501. *
  1502. * 4) Try decreasing rate if, for current rate:
  1503. * a) success ratio is < 15% ||
  1504. * b) lower adjacent rate has better measured throughput ||
  1505. * c) higher adjacent rate has worse throughput, and lower is unmeasured
  1506. *
  1507. * As a sanity check, if decrease was determined above, leave rate
  1508. * unchanged if:
  1509. * a) lower rate unavailable
  1510. * b) success ratio at current rate > 85% (very good)
  1511. * c) current measured throughput is better than expected throughput
  1512. * of lower rate (under perfect 100% tx conditions, see table below)
  1513. *
  1514. * 5) Try increasing rate if, for current rate:
  1515. * a) success ratio is < 15% ||
  1516. * b) both adjacent rates' throughputs are unmeasured (try it!) ||
  1517. * b) higher adjacent rate has better measured throughput ||
  1518. * c) lower adjacent rate has worse throughput, and higher is unmeasured
  1519. *
  1520. * As a sanity check, if increase was determined above, leave rate
  1521. * unchanged if:
  1522. * a) success ratio at current rate < 70%. This is not particularly
  1523. * good performance; higher rate is sure to have poorer success.
  1524. *
  1525. * 6) Re-evaluate the rate after each tx frame. If working with block-
  1526. * acknowledge, history and statistics may be calculated for the entire
  1527. * block (including prior history that fits within the history windows),
  1528. * before re-evaluation.
  1529. *
  1530. * FINDING BEST STARTING MODULATION MODE:
  1531. *
  1532. * After working with a modulation mode for a "while" (and doing rate scaling),
  1533. * the driver searches for a new initial mode in an attempt to improve
  1534. * throughput. The "while" is measured by numbers of attempted frames:
  1535. *
  1536. * For legacy mode, search for new mode after:
  1537. * 480 successful frames, or 160 failed frames
  1538. * For high-throughput modes (SISO or MIMO), search for new mode after:
  1539. * 4500 successful frames, or 400 failed frames
  1540. *
  1541. * Mode switch possibilities are (3 for each mode):
  1542. *
  1543. * For legacy:
  1544. * Change antenna, try SISO (if HT association), try MIMO (if HT association)
  1545. * For SISO:
  1546. * Change antenna, try MIMO, try shortened guard interval (SGI)
  1547. * For MIMO:
  1548. * Try SISO antenna A, SISO antenna B, try shortened guard interval (SGI)
  1549. *
  1550. * When trying a new mode, use the same bit rate as the old/current mode when
  1551. * trying antenna switches and shortened guard interval. When switching to
  1552. * SISO from MIMO or legacy, or to MIMO from SISO or legacy, use a rate
  1553. * for which the expected throughput (under perfect conditions) is about the
  1554. * same or slightly better than the actual measured throughput delivered by
  1555. * the old/current mode.
  1556. *
  1557. * Actual throughput can be estimated by multiplying the expected throughput
  1558. * by the success ratio (successful / attempted tx frames). Frame size is
  1559. * not considered in this calculation; it assumes that frame size will average
  1560. * out to be fairly consistent over several samples. The following are
  1561. * metric values for expected throughput assuming 100% success ratio.
  1562. * Only G band has support for CCK rates:
  1563. *
  1564. * RATE: 1 2 5 11 6 9 12 18 24 36 48 54 60
  1565. *
  1566. * G: 7 13 35 58 40 57 72 98 121 154 177 186 186
  1567. * A: 0 0 0 0 40 57 72 98 121 154 177 186 186
  1568. * SISO 20MHz: 0 0 0 0 42 42 76 102 124 159 183 193 202
  1569. * SGI SISO 20MHz: 0 0 0 0 46 46 82 110 132 168 192 202 211
  1570. * MIMO 20MHz: 0 0 0 0 74 74 123 155 179 214 236 244 251
  1571. * SGI MIMO 20MHz: 0 0 0 0 81 81 131 164 188 222 243 251 257
  1572. * SISO 40MHz: 0 0 0 0 77 77 127 160 184 220 242 250 257
  1573. * SGI SISO 40MHz: 0 0 0 0 83 83 135 169 193 229 250 257 264
  1574. * MIMO 40MHz: 0 0 0 0 123 123 182 214 235 264 279 285 289
  1575. * SGI MIMO 40MHz: 0 0 0 0 131 131 191 222 242 270 284 289 293
  1576. *
  1577. * After the new mode has been tried for a short while (minimum of 6 failed
  1578. * frames or 8 successful frames), compare success ratio and actual throughput
  1579. * estimate of the new mode with the old. If either is better with the new
  1580. * mode, continue to use the new mode.
  1581. *
  1582. * Continue comparing modes until all 3 possibilities have been tried.
  1583. * If moving from legacy to HT, try all 3 possibilities from the new HT
  1584. * mode. After trying all 3, a best mode is found. Continue to use this mode
  1585. * for the longer "while" described above (e.g. 480 successful frames for
  1586. * legacy), and then repeat the search process.
  1587. *
  1588. */
  1589. struct iwl_link_quality_cmd {
  1590. /* Index of destination/recipient station in uCode's station table */
  1591. u8 sta_id;
  1592. u8 reserved1;
  1593. __le16 control; /* not used */
  1594. struct iwl_link_qual_general_params general_params;
  1595. struct iwl_link_qual_agg_params agg_params;
  1596. /*
  1597. * Rate info; when using rate-scaling, Tx command's initial_rate_index
  1598. * specifies 1st Tx rate attempted, via index into this table.
  1599. * agn devices works its way through table when retrying Tx.
  1600. */
  1601. struct {
  1602. __le32 rate_n_flags; /* RATE_MCS_*, IWL_RATE_* */
  1603. } rs_table[LINK_QUAL_MAX_RETRY_NUM];
  1604. __le32 reserved2;
  1605. } __packed;
  1606. /*
  1607. * BT configuration enable flags:
  1608. * bit 0 - 1: BT channel announcement enabled
  1609. * 0: disable
  1610. * bit 1 - 1: priority of BT device enabled
  1611. * 0: disable
  1612. * bit 2 - 1: BT 2 wire support enabled
  1613. * 0: disable
  1614. */
  1615. #define BT_COEX_DISABLE (0x0)
  1616. #define BT_ENABLE_CHANNEL_ANNOUNCE BIT(0)
  1617. #define BT_ENABLE_PRIORITY BIT(1)
  1618. #define BT_ENABLE_2_WIRE BIT(2)
  1619. #define BT_COEX_DISABLE (0x0)
  1620. #define BT_COEX_ENABLE (BT_ENABLE_CHANNEL_ANNOUNCE | BT_ENABLE_PRIORITY)
  1621. #define BT_LEAD_TIME_MIN (0x0)
  1622. #define BT_LEAD_TIME_DEF (0x1E)
  1623. #define BT_LEAD_TIME_MAX (0xFF)
  1624. #define BT_MAX_KILL_MIN (0x1)
  1625. #define BT_MAX_KILL_DEF (0x5)
  1626. #define BT_MAX_KILL_MAX (0xFF)
  1627. #define BT_DURATION_LIMIT_DEF 625
  1628. #define BT_DURATION_LIMIT_MAX 1250
  1629. #define BT_DURATION_LIMIT_MIN 625
  1630. #define BT_ON_THRESHOLD_DEF 4
  1631. #define BT_ON_THRESHOLD_MAX 1000
  1632. #define BT_ON_THRESHOLD_MIN 1
  1633. #define BT_FRAG_THRESHOLD_DEF 0
  1634. #define BT_FRAG_THRESHOLD_MAX 0
  1635. #define BT_FRAG_THRESHOLD_MIN 0
  1636. #define BT_AGG_THRESHOLD_DEF 1200
  1637. #define BT_AGG_THRESHOLD_MAX 8000
  1638. #define BT_AGG_THRESHOLD_MIN 400
  1639. /*
  1640. * REPLY_BT_CONFIG = 0x9b (command, has simple generic response)
  1641. *
  1642. * agn devices support hardware handshake with Bluetooth device on
  1643. * same platform. Bluetooth device alerts wireless device when it will Tx;
  1644. * wireless device can delay or kill its own Tx to accommodate.
  1645. */
  1646. struct iwl_bt_cmd {
  1647. u8 flags;
  1648. u8 lead_time;
  1649. u8 max_kill;
  1650. u8 reserved;
  1651. __le32 kill_ack_mask;
  1652. __le32 kill_cts_mask;
  1653. } __packed;
  1654. #define IWLAGN_BT_FLAG_CHANNEL_INHIBITION BIT(0)
  1655. #define IWLAGN_BT_FLAG_COEX_MODE_MASK (BIT(3)|BIT(4)|BIT(5))
  1656. #define IWLAGN_BT_FLAG_COEX_MODE_SHIFT 3
  1657. #define IWLAGN_BT_FLAG_COEX_MODE_DISABLED 0
  1658. #define IWLAGN_BT_FLAG_COEX_MODE_LEGACY_2W 1
  1659. #define IWLAGN_BT_FLAG_COEX_MODE_3W 2
  1660. #define IWLAGN_BT_FLAG_COEX_MODE_4W 3
  1661. #define IWLAGN_BT_FLAG_UCODE_DEFAULT BIT(6)
  1662. /* Disable Sync PSPoll on SCO/eSCO */
  1663. #define IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE BIT(7)
  1664. #define IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD -75 /* dBm */
  1665. #define IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD -65 /* dBm */
  1666. #define IWLAGN_BT_PRIO_BOOST_MAX 0xFF
  1667. #define IWLAGN_BT_PRIO_BOOST_MIN 0x00
  1668. #define IWLAGN_BT_PRIO_BOOST_DEFAULT 0xF0
  1669. #define IWLAGN_BT_MAX_KILL_DEFAULT 5
  1670. #define IWLAGN_BT3_T7_DEFAULT 1
  1671. #define IWLAGN_BT_KILL_ACK_MASK_DEFAULT cpu_to_le32(0xffff0000)
  1672. #define IWLAGN_BT_KILL_CTS_MASK_DEFAULT cpu_to_le32(0xffff0000)
  1673. #define IWLAGN_BT_KILL_ACK_CTS_MASK_SCO cpu_to_le32(0xffffffff)
  1674. #define IWLAGN_BT3_PRIO_SAMPLE_DEFAULT 2
  1675. #define IWLAGN_BT3_T2_DEFAULT 0xc
  1676. #define IWLAGN_BT_VALID_ENABLE_FLAGS cpu_to_le16(BIT(0))
  1677. #define IWLAGN_BT_VALID_BOOST cpu_to_le16(BIT(1))
  1678. #define IWLAGN_BT_VALID_MAX_KILL cpu_to_le16(BIT(2))
  1679. #define IWLAGN_BT_VALID_3W_TIMERS cpu_to_le16(BIT(3))
  1680. #define IWLAGN_BT_VALID_KILL_ACK_MASK cpu_to_le16(BIT(4))
  1681. #define IWLAGN_BT_VALID_KILL_CTS_MASK cpu_to_le16(BIT(5))
  1682. #define IWLAGN_BT_VALID_REDUCED_TX_PWR cpu_to_le16(BIT(6))
  1683. #define IWLAGN_BT_VALID_3W_LUT cpu_to_le16(BIT(7))
  1684. #define IWLAGN_BT_ALL_VALID_MSK (IWLAGN_BT_VALID_ENABLE_FLAGS | \
  1685. IWLAGN_BT_VALID_BOOST | \
  1686. IWLAGN_BT_VALID_MAX_KILL | \
  1687. IWLAGN_BT_VALID_3W_TIMERS | \
  1688. IWLAGN_BT_VALID_KILL_ACK_MASK | \
  1689. IWLAGN_BT_VALID_KILL_CTS_MASK | \
  1690. IWLAGN_BT_VALID_REDUCED_TX_PWR | \
  1691. IWLAGN_BT_VALID_3W_LUT)
  1692. #define IWLAGN_BT_DECISION_LUT_SIZE 12
  1693. struct iwl_basic_bt_cmd {
  1694. u8 flags;
  1695. u8 ledtime; /* unused */
  1696. u8 max_kill;
  1697. u8 bt3_timer_t7_value;
  1698. __le32 kill_ack_mask;
  1699. __le32 kill_cts_mask;
  1700. u8 bt3_prio_sample_time;
  1701. u8 bt3_timer_t2_value;
  1702. __le16 bt4_reaction_time; /* unused */
  1703. __le32 bt3_lookup_table[IWLAGN_BT_DECISION_LUT_SIZE];
  1704. __le16 bt4_decision_time; /* unused */
  1705. __le16 valid;
  1706. };
  1707. struct iwl_bt_cmd_v1 {
  1708. struct iwl_basic_bt_cmd basic;
  1709. u8 prio_boost;
  1710. /*
  1711. * set IWLAGN_BT_VALID_BOOST to "1" in "valid" bitmask
  1712. * if configure the following patterns
  1713. */
  1714. u8 tx_prio_boost; /* SW boost of WiFi tx priority */
  1715. __le16 rx_prio_boost; /* SW boost of WiFi rx priority */
  1716. };
  1717. struct iwl_bt_cmd_v2 {
  1718. struct iwl_basic_bt_cmd basic;
  1719. __le32 prio_boost;
  1720. /*
  1721. * set IWLAGN_BT_VALID_BOOST to "1" in "valid" bitmask
  1722. * if configure the following patterns
  1723. */
  1724. u8 reserved;
  1725. u8 tx_prio_boost; /* SW boost of WiFi tx priority */
  1726. __le16 rx_prio_boost; /* SW boost of WiFi rx priority */
  1727. };
  1728. #define IWLAGN_BT_SCO_ACTIVE cpu_to_le32(BIT(0))
  1729. struct iwlagn_bt_sco_cmd {
  1730. __le32 flags;
  1731. };
  1732. /******************************************************************************
  1733. * (6)
  1734. * Spectrum Management (802.11h) Commands, Responses, Notifications:
  1735. *
  1736. *****************************************************************************/
  1737. /*
  1738. * Spectrum Management
  1739. */
  1740. #define MEASUREMENT_FILTER_FLAG (RXON_FILTER_PROMISC_MSK | \
  1741. RXON_FILTER_CTL2HOST_MSK | \
  1742. RXON_FILTER_ACCEPT_GRP_MSK | \
  1743. RXON_FILTER_DIS_DECRYPT_MSK | \
  1744. RXON_FILTER_DIS_GRP_DECRYPT_MSK | \
  1745. RXON_FILTER_ASSOC_MSK | \
  1746. RXON_FILTER_BCON_AWARE_MSK)
  1747. struct iwl_measure_channel {
  1748. __le32 duration; /* measurement duration in extended beacon
  1749. * format */
  1750. u8 channel; /* channel to measure */
  1751. u8 type; /* see enum iwl_measure_type */
  1752. __le16 reserved;
  1753. } __packed;
  1754. /*
  1755. * REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74 (command)
  1756. */
  1757. struct iwl_spectrum_cmd {
  1758. __le16 len; /* number of bytes starting from token */
  1759. u8 token; /* token id */
  1760. u8 id; /* measurement id -- 0 or 1 */
  1761. u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */
  1762. u8 periodic; /* 1 = periodic */
  1763. __le16 path_loss_timeout;
  1764. __le32 start_time; /* start time in extended beacon format */
  1765. __le32 reserved2;
  1766. __le32 flags; /* rxon flags */
  1767. __le32 filter_flags; /* rxon filter flags */
  1768. __le16 channel_count; /* minimum 1, maximum 10 */
  1769. __le16 reserved3;
  1770. struct iwl_measure_channel channels[10];
  1771. } __packed;
  1772. /*
  1773. * REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74 (response)
  1774. */
  1775. struct iwl_spectrum_resp {
  1776. u8 token;
  1777. u8 id; /* id of the prior command replaced, or 0xff */
  1778. __le16 status; /* 0 - command will be handled
  1779. * 1 - cannot handle (conflicts with another
  1780. * measurement) */
  1781. } __packed;
  1782. enum iwl_measurement_state {
  1783. IWL_MEASUREMENT_START = 0,
  1784. IWL_MEASUREMENT_STOP = 1,
  1785. };
  1786. enum iwl_measurement_status {
  1787. IWL_MEASUREMENT_OK = 0,
  1788. IWL_MEASUREMENT_CONCURRENT = 1,
  1789. IWL_MEASUREMENT_CSA_CONFLICT = 2,
  1790. IWL_MEASUREMENT_TGH_CONFLICT = 3,
  1791. /* 4-5 reserved */
  1792. IWL_MEASUREMENT_STOPPED = 6,
  1793. IWL_MEASUREMENT_TIMEOUT = 7,
  1794. IWL_MEASUREMENT_PERIODIC_FAILED = 8,
  1795. };
  1796. #define NUM_ELEMENTS_IN_HISTOGRAM 8
  1797. struct iwl_measurement_histogram {
  1798. __le32 ofdm[NUM_ELEMENTS_IN_HISTOGRAM]; /* in 0.8usec counts */
  1799. __le32 cck[NUM_ELEMENTS_IN_HISTOGRAM]; /* in 1usec counts */
  1800. } __packed;
  1801. /* clear channel availability counters */
  1802. struct iwl_measurement_cca_counters {
  1803. __le32 ofdm;
  1804. __le32 cck;
  1805. } __packed;
  1806. enum iwl_measure_type {
  1807. IWL_MEASURE_BASIC = (1 << 0),
  1808. IWL_MEASURE_CHANNEL_LOAD = (1 << 1),
  1809. IWL_MEASURE_HISTOGRAM_RPI = (1 << 2),
  1810. IWL_MEASURE_HISTOGRAM_NOISE = (1 << 3),
  1811. IWL_MEASURE_FRAME = (1 << 4),
  1812. /* bits 5:6 are reserved */
  1813. IWL_MEASURE_IDLE = (1 << 7),
  1814. };
  1815. /*
  1816. * SPECTRUM_MEASURE_NOTIFICATION = 0x75 (notification only, not a command)
  1817. */
  1818. struct iwl_spectrum_notification {
  1819. u8 id; /* measurement id -- 0 or 1 */
  1820. u8 token;
  1821. u8 channel_index; /* index in measurement channel list */
  1822. u8 state; /* 0 - start, 1 - stop */
  1823. __le32 start_time; /* lower 32-bits of TSF */
  1824. u8 band; /* 0 - 5.2GHz, 1 - 2.4GHz */
  1825. u8 channel;
  1826. u8 type; /* see enum iwl_measurement_type */
  1827. u8 reserved1;
  1828. /* NOTE: cca_ofdm, cca_cck, basic_type, and histogram are only only
  1829. * valid if applicable for measurement type requested. */
  1830. __le32 cca_ofdm; /* cca fraction time in 40Mhz clock periods */
  1831. __le32 cca_cck; /* cca fraction time in 44Mhz clock periods */
  1832. __le32 cca_time; /* channel load time in usecs */
  1833. u8 basic_type; /* 0 - bss, 1 - ofdm preamble, 2 -
  1834. * unidentified */
  1835. u8 reserved2[3];
  1836. struct iwl_measurement_histogram histogram;
  1837. __le32 stop_time; /* lower 32-bits of TSF */
  1838. __le32 status; /* see iwl_measurement_status */
  1839. } __packed;
  1840. /******************************************************************************
  1841. * (7)
  1842. * Power Management Commands, Responses, Notifications:
  1843. *
  1844. *****************************************************************************/
  1845. /**
  1846. * struct iwl_powertable_cmd - Power Table Command
  1847. * @flags: See below:
  1848. *
  1849. * POWER_TABLE_CMD = 0x77 (command, has simple generic response)
  1850. *
  1851. * PM allow:
  1852. * bit 0 - '0' Driver not allow power management
  1853. * '1' Driver allow PM (use rest of parameters)
  1854. *
  1855. * uCode send sleep notifications:
  1856. * bit 1 - '0' Don't send sleep notification
  1857. * '1' send sleep notification (SEND_PM_NOTIFICATION)
  1858. *
  1859. * Sleep over DTIM
  1860. * bit 2 - '0' PM have to walk up every DTIM
  1861. * '1' PM could sleep over DTIM till listen Interval.
  1862. *
  1863. * PCI power managed
  1864. * bit 3 - '0' (PCI_CFG_LINK_CTRL & 0x1)
  1865. * '1' !(PCI_CFG_LINK_CTRL & 0x1)
  1866. *
  1867. * Fast PD
  1868. * bit 4 - '1' Put radio to sleep when receiving frame for others
  1869. *
  1870. * Force sleep Modes
  1871. * bit 31/30- '00' use both mac/xtal sleeps
  1872. * '01' force Mac sleep
  1873. * '10' force xtal sleep
  1874. * '11' Illegal set
  1875. *
  1876. * NOTE: if sleep_interval[SLEEP_INTRVL_TABLE_SIZE-1] > DTIM period then
  1877. * ucode assume sleep over DTIM is allowed and we don't need to wake up
  1878. * for every DTIM.
  1879. */
  1880. #define IWL_POWER_VEC_SIZE 5
  1881. #define IWL_POWER_DRIVER_ALLOW_SLEEP_MSK cpu_to_le16(BIT(0))
  1882. #define IWL_POWER_POWER_SAVE_ENA_MSK cpu_to_le16(BIT(0))
  1883. #define IWL_POWER_POWER_MANAGEMENT_ENA_MSK cpu_to_le16(BIT(1))
  1884. #define IWL_POWER_SLEEP_OVER_DTIM_MSK cpu_to_le16(BIT(2))
  1885. #define IWL_POWER_PCI_PM_MSK cpu_to_le16(BIT(3))
  1886. #define IWL_POWER_FAST_PD cpu_to_le16(BIT(4))
  1887. #define IWL_POWER_BEACON_FILTERING cpu_to_le16(BIT(5))
  1888. #define IWL_POWER_SHADOW_REG_ENA cpu_to_le16(BIT(6))
  1889. #define IWL_POWER_CT_KILL_SET cpu_to_le16(BIT(7))
  1890. #define IWL_POWER_BT_SCO_ENA cpu_to_le16(BIT(8))
  1891. #define IWL_POWER_ADVANCE_PM_ENA_MSK cpu_to_le16(BIT(9))
  1892. struct iwl_powertable_cmd {
  1893. __le16 flags;
  1894. u8 keep_alive_seconds;
  1895. u8 debug_flags;
  1896. __le32 rx_data_timeout;
  1897. __le32 tx_data_timeout;
  1898. __le32 sleep_interval[IWL_POWER_VEC_SIZE];
  1899. __le32 keep_alive_beacons;
  1900. } __packed;
  1901. /*
  1902. * PM_SLEEP_NOTIFICATION = 0x7A (notification only, not a command)
  1903. * all devices identical.
  1904. */
  1905. struct iwl_sleep_notification {
  1906. u8 pm_sleep_mode;
  1907. u8 pm_wakeup_src;
  1908. __le16 reserved;
  1909. __le32 sleep_time;
  1910. __le32 tsf_low;
  1911. __le32 bcon_timer;
  1912. } __packed;
  1913. /* Sleep states. all devices identical. */
  1914. enum {
  1915. IWL_PM_NO_SLEEP = 0,
  1916. IWL_PM_SLP_MAC = 1,
  1917. IWL_PM_SLP_FULL_MAC_UNASSOCIATE = 2,
  1918. IWL_PM_SLP_FULL_MAC_CARD_STATE = 3,
  1919. IWL_PM_SLP_PHY = 4,
  1920. IWL_PM_SLP_REPENT = 5,
  1921. IWL_PM_WAKEUP_BY_TIMER = 6,
  1922. IWL_PM_WAKEUP_BY_DRIVER = 7,
  1923. IWL_PM_WAKEUP_BY_RFKILL = 8,
  1924. /* 3 reserved */
  1925. IWL_PM_NUM_OF_MODES = 12,
  1926. };
  1927. /*
  1928. * REPLY_CARD_STATE_CMD = 0xa0 (command, has simple generic response)
  1929. */
  1930. #define CARD_STATE_CMD_DISABLE 0x00 /* Put card to sleep */
  1931. #define CARD_STATE_CMD_ENABLE 0x01 /* Wake up card */
  1932. #define CARD_STATE_CMD_HALT 0x02 /* Power down permanently */
  1933. struct iwl_card_state_cmd {
  1934. __le32 status; /* CARD_STATE_CMD_* request new power state */
  1935. } __packed;
  1936. /*
  1937. * CARD_STATE_NOTIFICATION = 0xa1 (notification only, not a command)
  1938. */
  1939. struct iwl_card_state_notif {
  1940. __le32 flags;
  1941. } __packed;
  1942. #define HW_CARD_DISABLED 0x01
  1943. #define SW_CARD_DISABLED 0x02
  1944. #define CT_CARD_DISABLED 0x04
  1945. #define RXON_CARD_DISABLED 0x10
  1946. struct iwl_ct_kill_config {
  1947. __le32 reserved;
  1948. __le32 critical_temperature_M;
  1949. __le32 critical_temperature_R;
  1950. } __packed;
  1951. /* 1000, and 6x00 */
  1952. struct iwl_ct_kill_throttling_config {
  1953. __le32 critical_temperature_exit;
  1954. __le32 reserved;
  1955. __le32 critical_temperature_enter;
  1956. } __packed;
  1957. /******************************************************************************
  1958. * (8)
  1959. * Scan Commands, Responses, Notifications:
  1960. *
  1961. *****************************************************************************/
  1962. #define SCAN_CHANNEL_TYPE_PASSIVE cpu_to_le32(0)
  1963. #define SCAN_CHANNEL_TYPE_ACTIVE cpu_to_le32(1)
  1964. /**
  1965. * struct iwl_scan_channel - entry in REPLY_SCAN_CMD channel table
  1966. *
  1967. * One for each channel in the scan list.
  1968. * Each channel can independently select:
  1969. * 1) SSID for directed active scans
  1970. * 2) Txpower setting (for rate specified within Tx command)
  1971. * 3) How long to stay on-channel (behavior may be modified by quiet_time,
  1972. * quiet_plcp_th, good_CRC_th)
  1973. *
  1974. * To avoid uCode errors, make sure the following are true (see comments
  1975. * under struct iwl_scan_cmd about max_out_time and quiet_time):
  1976. * 1) If using passive_dwell (i.e. passive_dwell != 0):
  1977. * active_dwell <= passive_dwell (< max_out_time if max_out_time != 0)
  1978. * 2) quiet_time <= active_dwell
  1979. * 3) If restricting off-channel time (i.e. max_out_time !=0):
  1980. * passive_dwell < max_out_time
  1981. * active_dwell < max_out_time
  1982. */
  1983. struct iwl_scan_channel {
  1984. /*
  1985. * type is defined as:
  1986. * 0:0 1 = active, 0 = passive
  1987. * 1:20 SSID direct bit map; if a bit is set, then corresponding
  1988. * SSID IE is transmitted in probe request.
  1989. * 21:31 reserved
  1990. */
  1991. __le32 type;
  1992. __le16 channel; /* band is selected by iwl_scan_cmd "flags" field */
  1993. u8 tx_gain; /* gain for analog radio */
  1994. u8 dsp_atten; /* gain for DSP */
  1995. __le16 active_dwell; /* in 1024-uSec TU (time units), typ 5-50 */
  1996. __le16 passive_dwell; /* in 1024-uSec TU (time units), typ 20-500 */
  1997. } __packed;
  1998. /* set number of direct probes __le32 type */
  1999. #define IWL_SCAN_PROBE_MASK(n) cpu_to_le32((BIT(n) | (BIT(n) - BIT(1))))
  2000. /**
  2001. * struct iwl_ssid_ie - directed scan network information element
  2002. *
  2003. * Up to 20 of these may appear in REPLY_SCAN_CMD,
  2004. * selected by "type" bit field in struct iwl_scan_channel;
  2005. * each channel may select different ssids from among the 20 entries.
  2006. * SSID IEs get transmitted in reverse order of entry.
  2007. */
  2008. struct iwl_ssid_ie {
  2009. u8 id;
  2010. u8 len;
  2011. u8 ssid[32];
  2012. } __packed;
  2013. #define PROBE_OPTION_MAX 20
  2014. #define TX_CMD_LIFE_TIME_INFINITE cpu_to_le32(0xFFFFFFFF)
  2015. #define IWL_GOOD_CRC_TH_DISABLED 0
  2016. #define IWL_GOOD_CRC_TH_DEFAULT cpu_to_le16(1)
  2017. #define IWL_GOOD_CRC_TH_NEVER cpu_to_le16(0xffff)
  2018. #define IWL_MAX_SCAN_SIZE 1024
  2019. #define IWL_MAX_CMD_SIZE 4096
  2020. /*
  2021. * REPLY_SCAN_CMD = 0x80 (command)
  2022. *
  2023. * The hardware scan command is very powerful; the driver can set it up to
  2024. * maintain (relatively) normal network traffic while doing a scan in the
  2025. * background. The max_out_time and suspend_time control the ratio of how
  2026. * long the device stays on an associated network channel ("service channel")
  2027. * vs. how long it's away from the service channel, i.e. tuned to other channels
  2028. * for scanning.
  2029. *
  2030. * max_out_time is the max time off-channel (in usec), and suspend_time
  2031. * is how long (in "extended beacon" format) that the scan is "suspended"
  2032. * after returning to the service channel. That is, suspend_time is the
  2033. * time that we stay on the service channel, doing normal work, between
  2034. * scan segments. The driver may set these parameters differently to support
  2035. * scanning when associated vs. not associated, and light vs. heavy traffic
  2036. * loads when associated.
  2037. *
  2038. * After receiving this command, the device's scan engine does the following;
  2039. *
  2040. * 1) Sends SCAN_START notification to driver
  2041. * 2) Checks to see if it has time to do scan for one channel
  2042. * 3) Sends NULL packet, with power-save (PS) bit set to 1,
  2043. * to tell AP that we're going off-channel
  2044. * 4) Tunes to first channel in scan list, does active or passive scan
  2045. * 5) Sends SCAN_RESULT notification to driver
  2046. * 6) Checks to see if it has time to do scan on *next* channel in list
  2047. * 7) Repeats 4-6 until it no longer has time to scan the next channel
  2048. * before max_out_time expires
  2049. * 8) Returns to service channel
  2050. * 9) Sends NULL packet with PS=0 to tell AP that we're back
  2051. * 10) Stays on service channel until suspend_time expires
  2052. * 11) Repeats entire process 2-10 until list is complete
  2053. * 12) Sends SCAN_COMPLETE notification
  2054. *
  2055. * For fast, efficient scans, the scan command also has support for staying on
  2056. * a channel for just a short time, if doing active scanning and getting no
  2057. * responses to the transmitted probe request. This time is controlled by
  2058. * quiet_time, and the number of received packets below which a channel is
  2059. * considered "quiet" is controlled by quiet_plcp_threshold.
  2060. *
  2061. * For active scanning on channels that have regulatory restrictions against
  2062. * blindly transmitting, the scan can listen before transmitting, to make sure
  2063. * that there is already legitimate activity on the channel. If enough
  2064. * packets are cleanly received on the channel (controlled by good_CRC_th,
  2065. * typical value 1), the scan engine starts transmitting probe requests.
  2066. *
  2067. * Driver must use separate scan commands for 2.4 vs. 5 GHz bands.
  2068. *
  2069. * To avoid uCode errors, see timing restrictions described under
  2070. * struct iwl_scan_channel.
  2071. */
  2072. enum iwl_scan_flags {
  2073. /* BIT(0) currently unused */
  2074. IWL_SCAN_FLAGS_ACTION_FRAME_TX = BIT(1),
  2075. /* bits 2-7 reserved */
  2076. };
  2077. struct iwl_scan_cmd {
  2078. __le16 len;
  2079. u8 scan_flags; /* scan flags: see enum iwl_scan_flags */
  2080. u8 channel_count; /* # channels in channel list */
  2081. __le16 quiet_time; /* dwell only this # millisecs on quiet channel
  2082. * (only for active scan) */
  2083. __le16 quiet_plcp_th; /* quiet chnl is < this # pkts (typ. 1) */
  2084. __le16 good_CRC_th; /* passive -> active promotion threshold */
  2085. __le16 rx_chain; /* RXON_RX_CHAIN_* */
  2086. __le32 max_out_time; /* max usec to be away from associated (service)
  2087. * channel */
  2088. __le32 suspend_time; /* pause scan this long (in "extended beacon
  2089. * format") when returning to service chnl:
  2090. */
  2091. __le32 flags; /* RXON_FLG_* */
  2092. __le32 filter_flags; /* RXON_FILTER_* */
  2093. /* For active scans (set to all-0s for passive scans).
  2094. * Does not include payload. Must specify Tx rate; no rate scaling. */
  2095. struct iwl_tx_cmd tx_cmd;
  2096. /* For directed active scans (set to all-0s otherwise) */
  2097. struct iwl_ssid_ie direct_scan[PROBE_OPTION_MAX];
  2098. /*
  2099. * Probe request frame, followed by channel list.
  2100. *
  2101. * Size of probe request frame is specified by byte count in tx_cmd.
  2102. * Channel list follows immediately after probe request frame.
  2103. * Number of channels in list is specified by channel_count.
  2104. * Each channel in list is of type:
  2105. *
  2106. * struct iwl_scan_channel channels[0];
  2107. *
  2108. * NOTE: Only one band of channels can be scanned per pass. You
  2109. * must not mix 2.4GHz channels and 5.2GHz channels, and you must wait
  2110. * for one scan to complete (i.e. receive SCAN_COMPLETE_NOTIFICATION)
  2111. * before requesting another scan.
  2112. */
  2113. u8 data[0];
  2114. } __packed;
  2115. /* Can abort will notify by complete notification with abort status. */
  2116. #define CAN_ABORT_STATUS cpu_to_le32(0x1)
  2117. /* complete notification statuses */
  2118. #define ABORT_STATUS 0x2
  2119. /*
  2120. * REPLY_SCAN_CMD = 0x80 (response)
  2121. */
  2122. struct iwl_scanreq_notification {
  2123. __le32 status; /* 1: okay, 2: cannot fulfill request */
  2124. } __packed;
  2125. /*
  2126. * SCAN_START_NOTIFICATION = 0x82 (notification only, not a command)
  2127. */
  2128. struct iwl_scanstart_notification {
  2129. __le32 tsf_low;
  2130. __le32 tsf_high;
  2131. __le32 beacon_timer;
  2132. u8 channel;
  2133. u8 band;
  2134. u8 reserved[2];
  2135. __le32 status;
  2136. } __packed;
  2137. #define SCAN_OWNER_STATUS 0x1
  2138. #define MEASURE_OWNER_STATUS 0x2
  2139. #define IWL_PROBE_STATUS_OK 0
  2140. #define IWL_PROBE_STATUS_TX_FAILED BIT(0)
  2141. /* error statuses combined with TX_FAILED */
  2142. #define IWL_PROBE_STATUS_FAIL_TTL BIT(1)
  2143. #define IWL_PROBE_STATUS_FAIL_BT BIT(2)
  2144. #define NUMBER_OF_STATISTICS 1 /* first __le32 is good CRC */
  2145. /*
  2146. * SCAN_RESULTS_NOTIFICATION = 0x83 (notification only, not a command)
  2147. */
  2148. struct iwl_scanresults_notification {
  2149. u8 channel;
  2150. u8 band;
  2151. u8 probe_status;
  2152. u8 num_probe_not_sent; /* not enough time to send */
  2153. __le32 tsf_low;
  2154. __le32 tsf_high;
  2155. __le32 statistics[NUMBER_OF_STATISTICS];
  2156. } __packed;
  2157. /*
  2158. * SCAN_COMPLETE_NOTIFICATION = 0x84 (notification only, not a command)
  2159. */
  2160. struct iwl_scancomplete_notification {
  2161. u8 scanned_channels;
  2162. u8 status;
  2163. u8 bt_status; /* BT On/Off status */
  2164. u8 last_channel;
  2165. __le32 tsf_low;
  2166. __le32 tsf_high;
  2167. } __packed;
  2168. /******************************************************************************
  2169. * (9)
  2170. * IBSS/AP Commands and Notifications:
  2171. *
  2172. *****************************************************************************/
  2173. enum iwl_ibss_manager {
  2174. IWL_NOT_IBSS_MANAGER = 0,
  2175. IWL_IBSS_MANAGER = 1,
  2176. };
  2177. /*
  2178. * BEACON_NOTIFICATION = 0x90 (notification only, not a command)
  2179. */
  2180. struct iwlagn_beacon_notif {
  2181. struct iwlagn_tx_resp beacon_notify_hdr;
  2182. __le32 low_tsf;
  2183. __le32 high_tsf;
  2184. __le32 ibss_mgr_status;
  2185. } __packed;
  2186. /*
  2187. * REPLY_TX_BEACON = 0x91 (command, has simple generic response)
  2188. */
  2189. struct iwl_tx_beacon_cmd {
  2190. struct iwl_tx_cmd tx;
  2191. __le16 tim_idx;
  2192. u8 tim_size;
  2193. u8 reserved1;
  2194. struct ieee80211_hdr frame[0]; /* beacon frame */
  2195. } __packed;
  2196. /******************************************************************************
  2197. * (10)
  2198. * Statistics Commands and Notifications:
  2199. *
  2200. *****************************************************************************/
  2201. #define IWL_TEMP_CONVERT 260
  2202. #define SUP_RATE_11A_MAX_NUM_CHANNELS 8
  2203. #define SUP_RATE_11B_MAX_NUM_CHANNELS 4
  2204. #define SUP_RATE_11G_MAX_NUM_CHANNELS 12
  2205. /* Used for passing to driver number of successes and failures per rate */
  2206. struct rate_histogram {
  2207. union {
  2208. __le32 a[SUP_RATE_11A_MAX_NUM_CHANNELS];
  2209. __le32 b[SUP_RATE_11B_MAX_NUM_CHANNELS];
  2210. __le32 g[SUP_RATE_11G_MAX_NUM_CHANNELS];
  2211. } success;
  2212. union {
  2213. __le32 a[SUP_RATE_11A_MAX_NUM_CHANNELS];
  2214. __le32 b[SUP_RATE_11B_MAX_NUM_CHANNELS];
  2215. __le32 g[SUP_RATE_11G_MAX_NUM_CHANNELS];
  2216. } failed;
  2217. } __packed;
  2218. /* statistics command response */
  2219. struct statistics_dbg {
  2220. __le32 burst_check;
  2221. __le32 burst_count;
  2222. __le32 wait_for_silence_timeout_cnt;
  2223. __le32 reserved[3];
  2224. } __packed;
  2225. struct statistics_rx_phy {
  2226. __le32 ina_cnt;
  2227. __le32 fina_cnt;
  2228. __le32 plcp_err;
  2229. __le32 crc32_err;
  2230. __le32 overrun_err;
  2231. __le32 early_overrun_err;
  2232. __le32 crc32_good;
  2233. __le32 false_alarm_cnt;
  2234. __le32 fina_sync_err_cnt;
  2235. __le32 sfd_timeout;
  2236. __le32 fina_timeout;
  2237. __le32 unresponded_rts;
  2238. __le32 rxe_frame_limit_overrun;
  2239. __le32 sent_ack_cnt;
  2240. __le32 sent_cts_cnt;
  2241. __le32 sent_ba_rsp_cnt;
  2242. __le32 dsp_self_kill;
  2243. __le32 mh_format_err;
  2244. __le32 re_acq_main_rssi_sum;
  2245. __le32 reserved3;
  2246. } __packed;
  2247. struct statistics_rx_ht_phy {
  2248. __le32 plcp_err;
  2249. __le32 overrun_err;
  2250. __le32 early_overrun_err;
  2251. __le32 crc32_good;
  2252. __le32 crc32_err;
  2253. __le32 mh_format_err;
  2254. __le32 agg_crc32_good;
  2255. __le32 agg_mpdu_cnt;
  2256. __le32 agg_cnt;
  2257. __le32 unsupport_mcs;
  2258. } __packed;
  2259. #define INTERFERENCE_DATA_AVAILABLE cpu_to_le32(1)
  2260. struct statistics_rx_non_phy {
  2261. __le32 bogus_cts; /* CTS received when not expecting CTS */
  2262. __le32 bogus_ack; /* ACK received when not expecting ACK */
  2263. __le32 non_bssid_frames; /* number of frames with BSSID that
  2264. * doesn't belong to the STA BSSID */
  2265. __le32 filtered_frames; /* count frames that were dumped in the
  2266. * filtering process */
  2267. __le32 non_channel_beacons; /* beacons with our bss id but not on
  2268. * our serving channel */
  2269. __le32 channel_beacons; /* beacons with our bss id and in our
  2270. * serving channel */
  2271. __le32 num_missed_bcon; /* number of missed beacons */
  2272. __le32 adc_rx_saturation_time; /* count in 0.8us units the time the
  2273. * ADC was in saturation */
  2274. __le32 ina_detection_search_time;/* total time (in 0.8us) searched
  2275. * for INA */
  2276. __le32 beacon_silence_rssi_a; /* RSSI silence after beacon frame */
  2277. __le32 beacon_silence_rssi_b; /* RSSI silence after beacon frame */
  2278. __le32 beacon_silence_rssi_c; /* RSSI silence after beacon frame */
  2279. __le32 interference_data_flag; /* flag for interference data
  2280. * availability. 1 when data is
  2281. * available. */
  2282. __le32 channel_load; /* counts RX Enable time in uSec */
  2283. __le32 dsp_false_alarms; /* DSP false alarm (both OFDM
  2284. * and CCK) counter */
  2285. __le32 beacon_rssi_a;
  2286. __le32 beacon_rssi_b;
  2287. __le32 beacon_rssi_c;
  2288. __le32 beacon_energy_a;
  2289. __le32 beacon_energy_b;
  2290. __le32 beacon_energy_c;
  2291. } __packed;
  2292. struct statistics_rx_non_phy_bt {
  2293. struct statistics_rx_non_phy common;
  2294. /* additional stats for bt */
  2295. __le32 num_bt_kills;
  2296. __le32 reserved[2];
  2297. } __packed;
  2298. struct statistics_rx {
  2299. struct statistics_rx_phy ofdm;
  2300. struct statistics_rx_phy cck;
  2301. struct statistics_rx_non_phy general;
  2302. struct statistics_rx_ht_phy ofdm_ht;
  2303. } __packed;
  2304. struct statistics_rx_bt {
  2305. struct statistics_rx_phy ofdm;
  2306. struct statistics_rx_phy cck;
  2307. struct statistics_rx_non_phy_bt general;
  2308. struct statistics_rx_ht_phy ofdm_ht;
  2309. } __packed;
  2310. /**
  2311. * struct statistics_tx_power - current tx power
  2312. *
  2313. * @ant_a: current tx power on chain a in 1/2 dB step
  2314. * @ant_b: current tx power on chain b in 1/2 dB step
  2315. * @ant_c: current tx power on chain c in 1/2 dB step
  2316. */
  2317. struct statistics_tx_power {
  2318. u8 ant_a;
  2319. u8 ant_b;
  2320. u8 ant_c;
  2321. u8 reserved;
  2322. } __packed;
  2323. struct statistics_tx_non_phy_agg {
  2324. __le32 ba_timeout;
  2325. __le32 ba_reschedule_frames;
  2326. __le32 scd_query_agg_frame_cnt;
  2327. __le32 scd_query_no_agg;
  2328. __le32 scd_query_agg;
  2329. __le32 scd_query_mismatch;
  2330. __le32 frame_not_ready;
  2331. __le32 underrun;
  2332. __le32 bt_prio_kill;
  2333. __le32 rx_ba_rsp_cnt;
  2334. } __packed;
  2335. struct statistics_tx {
  2336. __le32 preamble_cnt;
  2337. __le32 rx_detected_cnt;
  2338. __le32 bt_prio_defer_cnt;
  2339. __le32 bt_prio_kill_cnt;
  2340. __le32 few_bytes_cnt;
  2341. __le32 cts_timeout;
  2342. __le32 ack_timeout;
  2343. __le32 expected_ack_cnt;
  2344. __le32 actual_ack_cnt;
  2345. __le32 dump_msdu_cnt;
  2346. __le32 burst_abort_next_frame_mismatch_cnt;
  2347. __le32 burst_abort_missing_next_frame_cnt;
  2348. __le32 cts_timeout_collision;
  2349. __le32 ack_or_ba_timeout_collision;
  2350. struct statistics_tx_non_phy_agg agg;
  2351. /*
  2352. * "tx_power" are optional parameters provided by uCode,
  2353. * 6000 series is the only device provide the information,
  2354. * Those are reserved fields for all the other devices
  2355. */
  2356. struct statistics_tx_power tx_power;
  2357. __le32 reserved1;
  2358. } __packed;
  2359. struct statistics_div {
  2360. __le32 tx_on_a;
  2361. __le32 tx_on_b;
  2362. __le32 exec_time;
  2363. __le32 probe_time;
  2364. __le32 reserved1;
  2365. __le32 reserved2;
  2366. } __packed;
  2367. struct statistics_general_common {
  2368. __le32 temperature; /* radio temperature */
  2369. __le32 temperature_m; /* radio voltage */
  2370. struct statistics_dbg dbg;
  2371. __le32 sleep_time;
  2372. __le32 slots_out;
  2373. __le32 slots_idle;
  2374. __le32 ttl_timestamp;
  2375. struct statistics_div div;
  2376. __le32 rx_enable_counter;
  2377. /*
  2378. * num_of_sos_states:
  2379. * count the number of times we have to re-tune
  2380. * in order to get out of bad PHY status
  2381. */
  2382. __le32 num_of_sos_states;
  2383. } __packed;
  2384. struct statistics_bt_activity {
  2385. /* Tx statistics */
  2386. __le32 hi_priority_tx_req_cnt;
  2387. __le32 hi_priority_tx_denied_cnt;
  2388. __le32 lo_priority_tx_req_cnt;
  2389. __le32 lo_priority_tx_denied_cnt;
  2390. /* Rx statistics */
  2391. __le32 hi_priority_rx_req_cnt;
  2392. __le32 hi_priority_rx_denied_cnt;
  2393. __le32 lo_priority_rx_req_cnt;
  2394. __le32 lo_priority_rx_denied_cnt;
  2395. } __packed;
  2396. struct statistics_general {
  2397. struct statistics_general_common common;
  2398. __le32 reserved2;
  2399. __le32 reserved3;
  2400. } __packed;
  2401. struct statistics_general_bt {
  2402. struct statistics_general_common common;
  2403. struct statistics_bt_activity activity;
  2404. __le32 reserved2;
  2405. __le32 reserved3;
  2406. } __packed;
  2407. #define UCODE_STATISTICS_CLEAR_MSK (0x1 << 0)
  2408. #define UCODE_STATISTICS_FREQUENCY_MSK (0x1 << 1)
  2409. #define UCODE_STATISTICS_NARROW_BAND_MSK (0x1 << 2)
  2410. /*
  2411. * REPLY_STATISTICS_CMD = 0x9c,
  2412. * all devices identical.
  2413. *
  2414. * This command triggers an immediate response containing uCode statistics.
  2415. * The response is in the same format as STATISTICS_NOTIFICATION 0x9d, below.
  2416. *
  2417. * If the CLEAR_STATS configuration flag is set, uCode will clear its
  2418. * internal copy of the statistics (counters) after issuing the response.
  2419. * This flag does not affect STATISTICS_NOTIFICATIONs after beacons (see below).
  2420. *
  2421. * If the DISABLE_NOTIF configuration flag is set, uCode will not issue
  2422. * STATISTICS_NOTIFICATIONs after received beacons (see below). This flag
  2423. * does not affect the response to the REPLY_STATISTICS_CMD 0x9c itself.
  2424. */
  2425. #define IWL_STATS_CONF_CLEAR_STATS cpu_to_le32(0x1) /* see above */
  2426. #define IWL_STATS_CONF_DISABLE_NOTIF cpu_to_le32(0x2)/* see above */
  2427. struct iwl_statistics_cmd {
  2428. __le32 configuration_flags; /* IWL_STATS_CONF_* */
  2429. } __packed;
  2430. /*
  2431. * STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
  2432. *
  2433. * By default, uCode issues this notification after receiving a beacon
  2434. * while associated. To disable this behavior, set DISABLE_NOTIF flag in the
  2435. * REPLY_STATISTICS_CMD 0x9c, above.
  2436. *
  2437. * Statistics counters continue to increment beacon after beacon, but are
  2438. * cleared when changing channels or when driver issues REPLY_STATISTICS_CMD
  2439. * 0x9c with CLEAR_STATS bit set (see above).
  2440. *
  2441. * uCode also issues this notification during scans. uCode clears statistics
  2442. * appropriately so that each notification contains statistics for only the
  2443. * one channel that has just been scanned.
  2444. */
  2445. #define STATISTICS_REPLY_FLG_BAND_24G_MSK cpu_to_le32(0x2)
  2446. #define STATISTICS_REPLY_FLG_HT40_MODE_MSK cpu_to_le32(0x8)
  2447. struct iwl_notif_statistics {
  2448. __le32 flag;
  2449. struct statistics_rx rx;
  2450. struct statistics_tx tx;
  2451. struct statistics_general general;
  2452. } __packed;
  2453. struct iwl_bt_notif_statistics {
  2454. __le32 flag;
  2455. struct statistics_rx_bt rx;
  2456. struct statistics_tx tx;
  2457. struct statistics_general_bt general;
  2458. } __packed;
  2459. /*
  2460. * MISSED_BEACONS_NOTIFICATION = 0xa2 (notification only, not a command)
  2461. *
  2462. * uCode send MISSED_BEACONS_NOTIFICATION to driver when detect beacon missed
  2463. * in regardless of how many missed beacons, which mean when driver receive the
  2464. * notification, inside the command, it can find all the beacons information
  2465. * which include number of total missed beacons, number of consecutive missed
  2466. * beacons, number of beacons received and number of beacons expected to
  2467. * receive.
  2468. *
  2469. * If uCode detected consecutive_missed_beacons > 5, it will reset the radio
  2470. * in order to bring the radio/PHY back to working state; which has no relation
  2471. * to when driver will perform sensitivity calibration.
  2472. *
  2473. * Driver should set it own missed_beacon_threshold to decide when to perform
  2474. * sensitivity calibration based on number of consecutive missed beacons in
  2475. * order to improve overall performance, especially in noisy environment.
  2476. *
  2477. */
  2478. #define IWL_MISSED_BEACON_THRESHOLD_MIN (1)
  2479. #define IWL_MISSED_BEACON_THRESHOLD_DEF (5)
  2480. #define IWL_MISSED_BEACON_THRESHOLD_MAX IWL_MISSED_BEACON_THRESHOLD_DEF
  2481. struct iwl_missed_beacon_notif {
  2482. __le32 consecutive_missed_beacons;
  2483. __le32 total_missed_becons;
  2484. __le32 num_expected_beacons;
  2485. __le32 num_recvd_beacons;
  2486. } __packed;
  2487. /******************************************************************************
  2488. * (11)
  2489. * Rx Calibration Commands:
  2490. *
  2491. * With the uCode used for open source drivers, most Tx calibration (except
  2492. * for Tx Power) and most Rx calibration is done by uCode during the
  2493. * "initialize" phase of uCode boot. Driver must calibrate only:
  2494. *
  2495. * 1) Tx power (depends on temperature), described elsewhere
  2496. * 2) Receiver gain balance (optimize MIMO, and detect disconnected antennas)
  2497. * 3) Receiver sensitivity (to optimize signal detection)
  2498. *
  2499. *****************************************************************************/
  2500. /**
  2501. * SENSITIVITY_CMD = 0xa8 (command, has simple generic response)
  2502. *
  2503. * This command sets up the Rx signal detector for a sensitivity level that
  2504. * is high enough to lock onto all signals within the associated network,
  2505. * but low enough to ignore signals that are below a certain threshold, so as
  2506. * not to have too many "false alarms". False alarms are signals that the
  2507. * Rx DSP tries to lock onto, but then discards after determining that they
  2508. * are noise.
  2509. *
  2510. * The optimum number of false alarms is between 5 and 50 per 200 TUs
  2511. * (200 * 1024 uSecs, i.e. 204.8 milliseconds) of actual Rx time (i.e.
  2512. * time listening, not transmitting). Driver must adjust sensitivity so that
  2513. * the ratio of actual false alarms to actual Rx time falls within this range.
  2514. *
  2515. * While associated, uCode delivers STATISTICS_NOTIFICATIONs after each
  2516. * received beacon. These provide information to the driver to analyze the
  2517. * sensitivity. Don't analyze statistics that come in from scanning, or any
  2518. * other non-associated-network source. Pertinent statistics include:
  2519. *
  2520. * From "general" statistics (struct statistics_rx_non_phy):
  2521. *
  2522. * (beacon_energy_[abc] & 0x0FF00) >> 8 (unsigned, higher value is lower level)
  2523. * Measure of energy of desired signal. Used for establishing a level
  2524. * below which the device does not detect signals.
  2525. *
  2526. * (beacon_silence_rssi_[abc] & 0x0FF00) >> 8 (unsigned, units in dB)
  2527. * Measure of background noise in silent period after beacon.
  2528. *
  2529. * channel_load
  2530. * uSecs of actual Rx time during beacon period (varies according to
  2531. * how much time was spent transmitting).
  2532. *
  2533. * From "cck" and "ofdm" statistics (struct statistics_rx_phy), separately:
  2534. *
  2535. * false_alarm_cnt
  2536. * Signal locks abandoned early (before phy-level header).
  2537. *
  2538. * plcp_err
  2539. * Signal locks abandoned late (during phy-level header).
  2540. *
  2541. * NOTE: Both false_alarm_cnt and plcp_err increment monotonically from
  2542. * beacon to beacon, i.e. each value is an accumulation of all errors
  2543. * before and including the latest beacon. Values will wrap around to 0
  2544. * after counting up to 2^32 - 1. Driver must differentiate vs.
  2545. * previous beacon's values to determine # false alarms in the current
  2546. * beacon period.
  2547. *
  2548. * Total number of false alarms = false_alarms + plcp_errs
  2549. *
  2550. * For OFDM, adjust the following table entries in struct iwl_sensitivity_cmd
  2551. * (notice that the start points for OFDM are at or close to settings for
  2552. * maximum sensitivity):
  2553. *
  2554. * START / MIN / MAX
  2555. * HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX 90 / 85 / 120
  2556. * HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX 170 / 170 / 210
  2557. * HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX 105 / 105 / 140
  2558. * HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX 220 / 220 / 270
  2559. *
  2560. * If actual rate of OFDM false alarms (+ plcp_errors) is too high
  2561. * (greater than 50 for each 204.8 msecs listening), reduce sensitivity
  2562. * by *adding* 1 to all 4 of the table entries above, up to the max for
  2563. * each entry. Conversely, if false alarm rate is too low (less than 5
  2564. * for each 204.8 msecs listening), *subtract* 1 from each entry to
  2565. * increase sensitivity.
  2566. *
  2567. * For CCK sensitivity, keep track of the following:
  2568. *
  2569. * 1). 20-beacon history of maximum background noise, indicated by
  2570. * (beacon_silence_rssi_[abc] & 0x0FF00), units in dB, across the
  2571. * 3 receivers. For any given beacon, the "silence reference" is
  2572. * the maximum of last 60 samples (20 beacons * 3 receivers).
  2573. *
  2574. * 2). 10-beacon history of strongest signal level, as indicated
  2575. * by (beacon_energy_[abc] & 0x0FF00) >> 8, across the 3 receivers,
  2576. * i.e. the strength of the signal through the best receiver at the
  2577. * moment. These measurements are "upside down", with lower values
  2578. * for stronger signals, so max energy will be *minimum* value.
  2579. *
  2580. * Then for any given beacon, the driver must determine the *weakest*
  2581. * of the strongest signals; this is the minimum level that needs to be
  2582. * successfully detected, when using the best receiver at the moment.
  2583. * "Max cck energy" is the maximum (higher value means lower energy!)
  2584. * of the last 10 minima. Once this is determined, driver must add
  2585. * a little margin by adding "6" to it.
  2586. *
  2587. * 3). Number of consecutive beacon periods with too few false alarms.
  2588. * Reset this to 0 at the first beacon period that falls within the
  2589. * "good" range (5 to 50 false alarms per 204.8 milliseconds rx).
  2590. *
  2591. * Then, adjust the following CCK table entries in struct iwl_sensitivity_cmd
  2592. * (notice that the start points for CCK are at maximum sensitivity):
  2593. *
  2594. * START / MIN / MAX
  2595. * HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX 125 / 125 / 200
  2596. * HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX 200 / 200 / 400
  2597. * HD_MIN_ENERGY_CCK_DET_INDEX 100 / 0 / 100
  2598. *
  2599. * If actual rate of CCK false alarms (+ plcp_errors) is too high
  2600. * (greater than 50 for each 204.8 msecs listening), method for reducing
  2601. * sensitivity is:
  2602. *
  2603. * 1) *Add* 3 to value in HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX,
  2604. * up to max 400.
  2605. *
  2606. * 2) If current value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX is < 160,
  2607. * sensitivity has been reduced a significant amount; bring it up to
  2608. * a moderate 161. Otherwise, *add* 3, up to max 200.
  2609. *
  2610. * 3) a) If current value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX is > 160,
  2611. * sensitivity has been reduced only a moderate or small amount;
  2612. * *subtract* 2 from value in HD_MIN_ENERGY_CCK_DET_INDEX,
  2613. * down to min 0. Otherwise (if gain has been significantly reduced),
  2614. * don't change the HD_MIN_ENERGY_CCK_DET_INDEX value.
  2615. *
  2616. * b) Save a snapshot of the "silence reference".
  2617. *
  2618. * If actual rate of CCK false alarms (+ plcp_errors) is too low
  2619. * (less than 5 for each 204.8 msecs listening), method for increasing
  2620. * sensitivity is used only if:
  2621. *
  2622. * 1a) Previous beacon did not have too many false alarms
  2623. * 1b) AND difference between previous "silence reference" and current
  2624. * "silence reference" (prev - current) is 2 or more,
  2625. * OR 2) 100 or more consecutive beacon periods have had rate of
  2626. * less than 5 false alarms per 204.8 milliseconds rx time.
  2627. *
  2628. * Method for increasing sensitivity:
  2629. *
  2630. * 1) *Subtract* 3 from value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX,
  2631. * down to min 125.
  2632. *
  2633. * 2) *Subtract* 3 from value in HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX,
  2634. * down to min 200.
  2635. *
  2636. * 3) *Add* 2 to value in HD_MIN_ENERGY_CCK_DET_INDEX, up to max 100.
  2637. *
  2638. * If actual rate of CCK false alarms (+ plcp_errors) is within good range
  2639. * (between 5 and 50 for each 204.8 msecs listening):
  2640. *
  2641. * 1) Save a snapshot of the silence reference.
  2642. *
  2643. * 2) If previous beacon had too many CCK false alarms (+ plcp_errors),
  2644. * give some extra margin to energy threshold by *subtracting* 8
  2645. * from value in HD_MIN_ENERGY_CCK_DET_INDEX.
  2646. *
  2647. * For all cases (too few, too many, good range), make sure that the CCK
  2648. * detection threshold (energy) is below the energy level for robust
  2649. * detection over the past 10 beacon periods, the "Max cck energy".
  2650. * Lower values mean higher energy; this means making sure that the value
  2651. * in HD_MIN_ENERGY_CCK_DET_INDEX is at or *above* "Max cck energy".
  2652. *
  2653. */
  2654. /*
  2655. * Table entries in SENSITIVITY_CMD (struct iwl_sensitivity_cmd)
  2656. */
  2657. #define HD_TABLE_SIZE (11) /* number of entries */
  2658. #define HD_MIN_ENERGY_CCK_DET_INDEX (0) /* table indexes */
  2659. #define HD_MIN_ENERGY_OFDM_DET_INDEX (1)
  2660. #define HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX (2)
  2661. #define HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX (3)
  2662. #define HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX (4)
  2663. #define HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX (5)
  2664. #define HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX (6)
  2665. #define HD_BARKER_CORR_TH_ADD_MIN_INDEX (7)
  2666. #define HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX (8)
  2667. #define HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX (9)
  2668. #define HD_OFDM_ENERGY_TH_IN_INDEX (10)
  2669. /*
  2670. * Additional table entries in enhance SENSITIVITY_CMD
  2671. */
  2672. #define HD_INA_NON_SQUARE_DET_OFDM_INDEX (11)
  2673. #define HD_INA_NON_SQUARE_DET_CCK_INDEX (12)
  2674. #define HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX (13)
  2675. #define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX (14)
  2676. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX (15)
  2677. #define HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX (16)
  2678. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX (17)
  2679. #define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX (18)
  2680. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX (19)
  2681. #define HD_CCK_NON_SQUARE_DET_SLOPE_INDEX (20)
  2682. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX (21)
  2683. #define HD_RESERVED (22)
  2684. /* number of entries for enhanced tbl */
  2685. #define ENHANCE_HD_TABLE_SIZE (23)
  2686. /* number of additional entries for enhanced tbl */
  2687. #define ENHANCE_HD_TABLE_ENTRIES (ENHANCE_HD_TABLE_SIZE - HD_TABLE_SIZE)
  2688. #define HD_INA_NON_SQUARE_DET_OFDM_DATA_V1 cpu_to_le16(0)
  2689. #define HD_INA_NON_SQUARE_DET_CCK_DATA_V1 cpu_to_le16(0)
  2690. #define HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V1 cpu_to_le16(0)
  2691. #define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V1 cpu_to_le16(668)
  2692. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1 cpu_to_le16(4)
  2693. #define HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V1 cpu_to_le16(486)
  2694. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V1 cpu_to_le16(37)
  2695. #define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V1 cpu_to_le16(853)
  2696. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1 cpu_to_le16(4)
  2697. #define HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V1 cpu_to_le16(476)
  2698. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V1 cpu_to_le16(99)
  2699. #define HD_INA_NON_SQUARE_DET_OFDM_DATA_V2 cpu_to_le16(1)
  2700. #define HD_INA_NON_SQUARE_DET_CCK_DATA_V2 cpu_to_le16(1)
  2701. #define HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V2 cpu_to_le16(1)
  2702. #define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V2 cpu_to_le16(600)
  2703. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2 cpu_to_le16(40)
  2704. #define HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V2 cpu_to_le16(486)
  2705. #define HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V2 cpu_to_le16(45)
  2706. #define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V2 cpu_to_le16(853)
  2707. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2 cpu_to_le16(60)
  2708. #define HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V2 cpu_to_le16(476)
  2709. #define HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V2 cpu_to_le16(99)
  2710. /* Control field in struct iwl_sensitivity_cmd */
  2711. #define SENSITIVITY_CMD_CONTROL_DEFAULT_TABLE cpu_to_le16(0)
  2712. #define SENSITIVITY_CMD_CONTROL_WORK_TABLE cpu_to_le16(1)
  2713. /**
  2714. * struct iwl_sensitivity_cmd
  2715. * @control: (1) updates working table, (0) updates default table
  2716. * @table: energy threshold values, use HD_* as index into table
  2717. *
  2718. * Always use "1" in "control" to update uCode's working table and DSP.
  2719. */
  2720. struct iwl_sensitivity_cmd {
  2721. __le16 control; /* always use "1" */
  2722. __le16 table[HD_TABLE_SIZE]; /* use HD_* as index */
  2723. } __packed;
  2724. /*
  2725. *
  2726. */
  2727. struct iwl_enhance_sensitivity_cmd {
  2728. __le16 control; /* always use "1" */
  2729. __le16 enhance_table[ENHANCE_HD_TABLE_SIZE]; /* use HD_* as index */
  2730. } __packed;
  2731. /**
  2732. * REPLY_PHY_CALIBRATION_CMD = 0xb0 (command, has simple generic response)
  2733. *
  2734. * This command sets the relative gains of agn device's 3 radio receiver chains.
  2735. *
  2736. * After the first association, driver should accumulate signal and noise
  2737. * statistics from the STATISTICS_NOTIFICATIONs that follow the first 20
  2738. * beacons from the associated network (don't collect statistics that come
  2739. * in from scanning, or any other non-network source).
  2740. *
  2741. * DISCONNECTED ANTENNA:
  2742. *
  2743. * Driver should determine which antennas are actually connected, by comparing
  2744. * average beacon signal levels for the 3 Rx chains. Accumulate (add) the
  2745. * following values over 20 beacons, one accumulator for each of the chains
  2746. * a/b/c, from struct statistics_rx_non_phy:
  2747. *
  2748. * beacon_rssi_[abc] & 0x0FF (unsigned, units in dB)
  2749. *
  2750. * Find the strongest signal from among a/b/c. Compare the other two to the
  2751. * strongest. If any signal is more than 15 dB (times 20, unless you
  2752. * divide the accumulated values by 20) below the strongest, the driver
  2753. * considers that antenna to be disconnected, and should not try to use that
  2754. * antenna/chain for Rx or Tx. If both A and B seem to be disconnected,
  2755. * driver should declare the stronger one as connected, and attempt to use it
  2756. * (A and B are the only 2 Tx chains!).
  2757. *
  2758. *
  2759. * RX BALANCE:
  2760. *
  2761. * Driver should balance the 3 receivers (but just the ones that are connected
  2762. * to antennas, see above) for gain, by comparing the average signal levels
  2763. * detected during the silence after each beacon (background noise).
  2764. * Accumulate (add) the following values over 20 beacons, one accumulator for
  2765. * each of the chains a/b/c, from struct statistics_rx_non_phy:
  2766. *
  2767. * beacon_silence_rssi_[abc] & 0x0FF (unsigned, units in dB)
  2768. *
  2769. * Find the weakest background noise level from among a/b/c. This Rx chain
  2770. * will be the reference, with 0 gain adjustment. Attenuate other channels by
  2771. * finding noise difference:
  2772. *
  2773. * (accum_noise[i] - accum_noise[reference]) / 30
  2774. *
  2775. * The "30" adjusts the dB in the 20 accumulated samples to units of 1.5 dB.
  2776. * For use in diff_gain_[abc] fields of struct iwl_calibration_cmd, the
  2777. * driver should limit the difference results to a range of 0-3 (0-4.5 dB),
  2778. * and set bit 2 to indicate "reduce gain". The value for the reference
  2779. * (weakest) chain should be "0".
  2780. *
  2781. * diff_gain_[abc] bit fields:
  2782. * 2: (1) reduce gain, (0) increase gain
  2783. * 1-0: amount of gain, units of 1.5 dB
  2784. */
  2785. /* Phy calibration command for series */
  2786. enum {
  2787. IWL_PHY_CALIBRATE_DC_CMD = 8,
  2788. IWL_PHY_CALIBRATE_LO_CMD = 9,
  2789. IWL_PHY_CALIBRATE_TX_IQ_CMD = 11,
  2790. IWL_PHY_CALIBRATE_CRYSTAL_FRQ_CMD = 15,
  2791. IWL_PHY_CALIBRATE_BASE_BAND_CMD = 16,
  2792. IWL_PHY_CALIBRATE_TX_IQ_PERD_CMD = 17,
  2793. IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD = 18,
  2794. };
  2795. /* This enum defines the bitmap of various calibrations to enable in both
  2796. * init ucode and runtime ucode through CALIBRATION_CFG_CMD.
  2797. */
  2798. enum iwl_ucode_calib_cfg {
  2799. IWL_CALIB_CFG_RX_BB_IDX = BIT(0),
  2800. IWL_CALIB_CFG_DC_IDX = BIT(1),
  2801. IWL_CALIB_CFG_LO_IDX = BIT(2),
  2802. IWL_CALIB_CFG_TX_IQ_IDX = BIT(3),
  2803. IWL_CALIB_CFG_RX_IQ_IDX = BIT(4),
  2804. IWL_CALIB_CFG_NOISE_IDX = BIT(5),
  2805. IWL_CALIB_CFG_CRYSTAL_IDX = BIT(6),
  2806. IWL_CALIB_CFG_TEMPERATURE_IDX = BIT(7),
  2807. IWL_CALIB_CFG_PAPD_IDX = BIT(8),
  2808. IWL_CALIB_CFG_SENSITIVITY_IDX = BIT(9),
  2809. IWL_CALIB_CFG_TX_PWR_IDX = BIT(10),
  2810. };
  2811. #define IWL_CALIB_INIT_CFG_ALL cpu_to_le32(IWL_CALIB_CFG_RX_BB_IDX | \
  2812. IWL_CALIB_CFG_DC_IDX | \
  2813. IWL_CALIB_CFG_LO_IDX | \
  2814. IWL_CALIB_CFG_TX_IQ_IDX | \
  2815. IWL_CALIB_CFG_RX_IQ_IDX | \
  2816. IWL_CALIB_CFG_CRYSTAL_IDX)
  2817. #define IWL_CALIB_RT_CFG_ALL cpu_to_le32(IWL_CALIB_CFG_RX_BB_IDX | \
  2818. IWL_CALIB_CFG_DC_IDX | \
  2819. IWL_CALIB_CFG_LO_IDX | \
  2820. IWL_CALIB_CFG_TX_IQ_IDX | \
  2821. IWL_CALIB_CFG_RX_IQ_IDX | \
  2822. IWL_CALIB_CFG_TEMPERATURE_IDX | \
  2823. IWL_CALIB_CFG_PAPD_IDX | \
  2824. IWL_CALIB_CFG_TX_PWR_IDX | \
  2825. IWL_CALIB_CFG_CRYSTAL_IDX)
  2826. #define IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK cpu_to_le32(BIT(0))
  2827. struct iwl_calib_cfg_elmnt_s {
  2828. __le32 is_enable;
  2829. __le32 start;
  2830. __le32 send_res;
  2831. __le32 apply_res;
  2832. __le32 reserved;
  2833. } __packed;
  2834. struct iwl_calib_cfg_status_s {
  2835. struct iwl_calib_cfg_elmnt_s once;
  2836. struct iwl_calib_cfg_elmnt_s perd;
  2837. __le32 flags;
  2838. } __packed;
  2839. struct iwl_calib_cfg_cmd {
  2840. struct iwl_calib_cfg_status_s ucd_calib_cfg;
  2841. struct iwl_calib_cfg_status_s drv_calib_cfg;
  2842. __le32 reserved1;
  2843. } __packed;
  2844. struct iwl_calib_hdr {
  2845. u8 op_code;
  2846. u8 first_group;
  2847. u8 groups_num;
  2848. u8 data_valid;
  2849. } __packed;
  2850. struct iwl_calib_cmd {
  2851. struct iwl_calib_hdr hdr;
  2852. u8 data[0];
  2853. } __packed;
  2854. struct iwl_calib_xtal_freq_cmd {
  2855. struct iwl_calib_hdr hdr;
  2856. u8 cap_pin1;
  2857. u8 cap_pin2;
  2858. u8 pad[2];
  2859. } __packed;
  2860. #define DEFAULT_RADIO_SENSOR_OFFSET cpu_to_le16(2700)
  2861. struct iwl_calib_temperature_offset_cmd {
  2862. struct iwl_calib_hdr hdr;
  2863. __le16 radio_sensor_offset;
  2864. __le16 reserved;
  2865. } __packed;
  2866. struct iwl_calib_temperature_offset_v2_cmd {
  2867. struct iwl_calib_hdr hdr;
  2868. __le16 radio_sensor_offset_high;
  2869. __le16 radio_sensor_offset_low;
  2870. __le16 burntVoltageRef;
  2871. __le16 reserved;
  2872. } __packed;
  2873. /* IWL_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD */
  2874. struct iwl_calib_chain_noise_reset_cmd {
  2875. struct iwl_calib_hdr hdr;
  2876. u8 data[0];
  2877. };
  2878. /* IWL_PHY_CALIBRATE_CHAIN_NOISE_GAIN_CMD */
  2879. struct iwl_calib_chain_noise_gain_cmd {
  2880. struct iwl_calib_hdr hdr;
  2881. u8 delta_gain_1;
  2882. u8 delta_gain_2;
  2883. u8 pad[2];
  2884. } __packed;
  2885. /******************************************************************************
  2886. * (12)
  2887. * Miscellaneous Commands:
  2888. *
  2889. *****************************************************************************/
  2890. /*
  2891. * LEDs Command & Response
  2892. * REPLY_LEDS_CMD = 0x48 (command, has simple generic response)
  2893. *
  2894. * For each of 3 possible LEDs (Activity/Link/Tech, selected by "id" field),
  2895. * this command turns it on or off, or sets up a periodic blinking cycle.
  2896. */
  2897. struct iwl_led_cmd {
  2898. __le32 interval; /* "interval" in uSec */
  2899. u8 id; /* 1: Activity, 2: Link, 3: Tech */
  2900. u8 off; /* # intervals off while blinking;
  2901. * "0", with >0 "on" value, turns LED on */
  2902. u8 on; /* # intervals on while blinking;
  2903. * "0", regardless of "off", turns LED off */
  2904. u8 reserved;
  2905. } __packed;
  2906. /*
  2907. * station priority table entries
  2908. * also used as potential "events" value for both
  2909. * COEX_MEDIUM_NOTIFICATION and COEX_EVENT_CMD
  2910. */
  2911. /*
  2912. * COEX events entry flag masks
  2913. * RP - Requested Priority
  2914. * WP - Win Medium Priority: priority assigned when the contention has been won
  2915. */
  2916. #define COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG (0x1)
  2917. #define COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG (0x2)
  2918. #define COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG (0x4)
  2919. #define COEX_CU_UNASSOC_IDLE_RP 4
  2920. #define COEX_CU_UNASSOC_MANUAL_SCAN_RP 4
  2921. #define COEX_CU_UNASSOC_AUTO_SCAN_RP 4
  2922. #define COEX_CU_CALIBRATION_RP 4
  2923. #define COEX_CU_PERIODIC_CALIBRATION_RP 4
  2924. #define COEX_CU_CONNECTION_ESTAB_RP 4
  2925. #define COEX_CU_ASSOCIATED_IDLE_RP 4
  2926. #define COEX_CU_ASSOC_MANUAL_SCAN_RP 4
  2927. #define COEX_CU_ASSOC_AUTO_SCAN_RP 4
  2928. #define COEX_CU_ASSOC_ACTIVE_LEVEL_RP 4
  2929. #define COEX_CU_RF_ON_RP 6
  2930. #define COEX_CU_RF_OFF_RP 4
  2931. #define COEX_CU_STAND_ALONE_DEBUG_RP 6
  2932. #define COEX_CU_IPAN_ASSOC_LEVEL_RP 4
  2933. #define COEX_CU_RSRVD1_RP 4
  2934. #define COEX_CU_RSRVD2_RP 4
  2935. #define COEX_CU_UNASSOC_IDLE_WP 3
  2936. #define COEX_CU_UNASSOC_MANUAL_SCAN_WP 3
  2937. #define COEX_CU_UNASSOC_AUTO_SCAN_WP 3
  2938. #define COEX_CU_CALIBRATION_WP 3
  2939. #define COEX_CU_PERIODIC_CALIBRATION_WP 3
  2940. #define COEX_CU_CONNECTION_ESTAB_WP 3
  2941. #define COEX_CU_ASSOCIATED_IDLE_WP 3
  2942. #define COEX_CU_ASSOC_MANUAL_SCAN_WP 3
  2943. #define COEX_CU_ASSOC_AUTO_SCAN_WP 3
  2944. #define COEX_CU_ASSOC_ACTIVE_LEVEL_WP 3
  2945. #define COEX_CU_RF_ON_WP 3
  2946. #define COEX_CU_RF_OFF_WP 3
  2947. #define COEX_CU_STAND_ALONE_DEBUG_WP 6
  2948. #define COEX_CU_IPAN_ASSOC_LEVEL_WP 3
  2949. #define COEX_CU_RSRVD1_WP 3
  2950. #define COEX_CU_RSRVD2_WP 3
  2951. #define COEX_UNASSOC_IDLE_FLAGS 0
  2952. #define COEX_UNASSOC_MANUAL_SCAN_FLAGS \
  2953. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2954. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2955. #define COEX_UNASSOC_AUTO_SCAN_FLAGS \
  2956. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2957. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2958. #define COEX_CALIBRATION_FLAGS \
  2959. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2960. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2961. #define COEX_PERIODIC_CALIBRATION_FLAGS 0
  2962. /*
  2963. * COEX_CONNECTION_ESTAB:
  2964. * we need DELAY_MEDIUM_FREE_NTFY to let WiMAX disconnect from network.
  2965. */
  2966. #define COEX_CONNECTION_ESTAB_FLAGS \
  2967. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2968. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
  2969. COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
  2970. #define COEX_ASSOCIATED_IDLE_FLAGS 0
  2971. #define COEX_ASSOC_MANUAL_SCAN_FLAGS \
  2972. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2973. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2974. #define COEX_ASSOC_AUTO_SCAN_FLAGS \
  2975. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2976. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2977. #define COEX_ASSOC_ACTIVE_LEVEL_FLAGS 0
  2978. #define COEX_RF_ON_FLAGS 0
  2979. #define COEX_RF_OFF_FLAGS 0
  2980. #define COEX_STAND_ALONE_DEBUG_FLAGS \
  2981. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2982. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
  2983. #define COEX_IPAN_ASSOC_LEVEL_FLAGS \
  2984. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2985. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
  2986. COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
  2987. #define COEX_RSRVD1_FLAGS 0
  2988. #define COEX_RSRVD2_FLAGS 0
  2989. /*
  2990. * COEX_CU_RF_ON is the event wrapping all radio ownership.
  2991. * We need DELAY_MEDIUM_FREE_NTFY to let WiMAX disconnect from network.
  2992. */
  2993. #define COEX_CU_RF_ON_FLAGS \
  2994. (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
  2995. COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
  2996. COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
  2997. enum {
  2998. /* un-association part */
  2999. COEX_UNASSOC_IDLE = 0,
  3000. COEX_UNASSOC_MANUAL_SCAN = 1,
  3001. COEX_UNASSOC_AUTO_SCAN = 2,
  3002. /* calibration */
  3003. COEX_CALIBRATION = 3,
  3004. COEX_PERIODIC_CALIBRATION = 4,
  3005. /* connection */
  3006. COEX_CONNECTION_ESTAB = 5,
  3007. /* association part */
  3008. COEX_ASSOCIATED_IDLE = 6,
  3009. COEX_ASSOC_MANUAL_SCAN = 7,
  3010. COEX_ASSOC_AUTO_SCAN = 8,
  3011. COEX_ASSOC_ACTIVE_LEVEL = 9,
  3012. /* RF ON/OFF */
  3013. COEX_RF_ON = 10,
  3014. COEX_RF_OFF = 11,
  3015. COEX_STAND_ALONE_DEBUG = 12,
  3016. /* IPAN */
  3017. COEX_IPAN_ASSOC_LEVEL = 13,
  3018. /* reserved */
  3019. COEX_RSRVD1 = 14,
  3020. COEX_RSRVD2 = 15,
  3021. COEX_NUM_OF_EVENTS = 16
  3022. };
  3023. /*
  3024. * Coexistence WIFI/WIMAX Command
  3025. * COEX_PRIORITY_TABLE_CMD = 0x5a
  3026. *
  3027. */
  3028. struct iwl_wimax_coex_event_entry {
  3029. u8 request_prio;
  3030. u8 win_medium_prio;
  3031. u8 reserved;
  3032. u8 flags;
  3033. } __packed;
  3034. /* COEX flag masks */
  3035. /* Station table is valid */
  3036. #define COEX_FLAGS_STA_TABLE_VALID_MSK (0x1)
  3037. /* UnMask wake up src at unassociated sleep */
  3038. #define COEX_FLAGS_UNASSOC_WA_UNMASK_MSK (0x4)
  3039. /* UnMask wake up src at associated sleep */
  3040. #define COEX_FLAGS_ASSOC_WA_UNMASK_MSK (0x8)
  3041. /* Enable CoEx feature. */
  3042. #define COEX_FLAGS_COEX_ENABLE_MSK (0x80)
  3043. struct iwl_wimax_coex_cmd {
  3044. u8 flags;
  3045. u8 reserved[3];
  3046. struct iwl_wimax_coex_event_entry sta_prio[COEX_NUM_OF_EVENTS];
  3047. } __packed;
  3048. /*
  3049. * Coexistence MEDIUM NOTIFICATION
  3050. * COEX_MEDIUM_NOTIFICATION = 0x5b
  3051. *
  3052. * notification from uCode to host to indicate medium changes
  3053. *
  3054. */
  3055. /*
  3056. * status field
  3057. * bit 0 - 2: medium status
  3058. * bit 3: medium change indication
  3059. * bit 4 - 31: reserved
  3060. */
  3061. /* status option values, (0 - 2 bits) */
  3062. #define COEX_MEDIUM_BUSY (0x0) /* radio belongs to WiMAX */
  3063. #define COEX_MEDIUM_ACTIVE (0x1) /* radio belongs to WiFi */
  3064. #define COEX_MEDIUM_PRE_RELEASE (0x2) /* received radio release */
  3065. #define COEX_MEDIUM_MSK (0x7)
  3066. /* send notification status (1 bit) */
  3067. #define COEX_MEDIUM_CHANGED (0x8)
  3068. #define COEX_MEDIUM_CHANGED_MSK (0x8)
  3069. #define COEX_MEDIUM_SHIFT (3)
  3070. struct iwl_coex_medium_notification {
  3071. __le32 status;
  3072. __le32 events;
  3073. } __packed;
  3074. /*
  3075. * Coexistence EVENT Command
  3076. * COEX_EVENT_CMD = 0x5c
  3077. *
  3078. * send from host to uCode for coex event request.
  3079. */
  3080. /* flags options */
  3081. #define COEX_EVENT_REQUEST_MSK (0x1)
  3082. struct iwl_coex_event_cmd {
  3083. u8 flags;
  3084. u8 event;
  3085. __le16 reserved;
  3086. } __packed;
  3087. struct iwl_coex_event_resp {
  3088. __le32 status;
  3089. } __packed;
  3090. /******************************************************************************
  3091. * Bluetooth Coexistence commands
  3092. *
  3093. *****************************************************************************/
  3094. /*
  3095. * BT Status notification
  3096. * REPLY_BT_COEX_PROFILE_NOTIF = 0xce
  3097. */
  3098. enum iwl_bt_coex_profile_traffic_load {
  3099. IWL_BT_COEX_TRAFFIC_LOAD_NONE = 0,
  3100. IWL_BT_COEX_TRAFFIC_LOAD_LOW = 1,
  3101. IWL_BT_COEX_TRAFFIC_LOAD_HIGH = 2,
  3102. IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS = 3,
  3103. /*
  3104. * There are no more even though below is a u8, the
  3105. * indication from the BT device only has two bits.
  3106. */
  3107. };
  3108. #define BT_SESSION_ACTIVITY_1_UART_MSG 0x1
  3109. #define BT_SESSION_ACTIVITY_2_UART_MSG 0x2
  3110. /* BT UART message - Share Part (BT -> WiFi) */
  3111. #define BT_UART_MSG_FRAME1MSGTYPE_POS (0)
  3112. #define BT_UART_MSG_FRAME1MSGTYPE_MSK \
  3113. (0x7 << BT_UART_MSG_FRAME1MSGTYPE_POS)
  3114. #define BT_UART_MSG_FRAME1SSN_POS (3)
  3115. #define BT_UART_MSG_FRAME1SSN_MSK \
  3116. (0x3 << BT_UART_MSG_FRAME1SSN_POS)
  3117. #define BT_UART_MSG_FRAME1UPDATEREQ_POS (5)
  3118. #define BT_UART_MSG_FRAME1UPDATEREQ_MSK \
  3119. (0x1 << BT_UART_MSG_FRAME1UPDATEREQ_POS)
  3120. #define BT_UART_MSG_FRAME1RESERVED_POS (6)
  3121. #define BT_UART_MSG_FRAME1RESERVED_MSK \
  3122. (0x3 << BT_UART_MSG_FRAME1RESERVED_POS)
  3123. #define BT_UART_MSG_FRAME2OPENCONNECTIONS_POS (0)
  3124. #define BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK \
  3125. (0x3 << BT_UART_MSG_FRAME2OPENCONNECTIONS_POS)
  3126. #define BT_UART_MSG_FRAME2TRAFFICLOAD_POS (2)
  3127. #define BT_UART_MSG_FRAME2TRAFFICLOAD_MSK \
  3128. (0x3 << BT_UART_MSG_FRAME2TRAFFICLOAD_POS)
  3129. #define BT_UART_MSG_FRAME2CHLSEQN_POS (4)
  3130. #define BT_UART_MSG_FRAME2CHLSEQN_MSK \
  3131. (0x1 << BT_UART_MSG_FRAME2CHLSEQN_POS)
  3132. #define BT_UART_MSG_FRAME2INBAND_POS (5)
  3133. #define BT_UART_MSG_FRAME2INBAND_MSK \
  3134. (0x1 << BT_UART_MSG_FRAME2INBAND_POS)
  3135. #define BT_UART_MSG_FRAME2RESERVED_POS (6)
  3136. #define BT_UART_MSG_FRAME2RESERVED_MSK \
  3137. (0x3 << BT_UART_MSG_FRAME2RESERVED_POS)
  3138. #define BT_UART_MSG_FRAME3SCOESCO_POS (0)
  3139. #define BT_UART_MSG_FRAME3SCOESCO_MSK \
  3140. (0x1 << BT_UART_MSG_FRAME3SCOESCO_POS)
  3141. #define BT_UART_MSG_FRAME3SNIFF_POS (1)
  3142. #define BT_UART_MSG_FRAME3SNIFF_MSK \
  3143. (0x1 << BT_UART_MSG_FRAME3SNIFF_POS)
  3144. #define BT_UART_MSG_FRAME3A2DP_POS (2)
  3145. #define BT_UART_MSG_FRAME3A2DP_MSK \
  3146. (0x1 << BT_UART_MSG_FRAME3A2DP_POS)
  3147. #define BT_UART_MSG_FRAME3ACL_POS (3)
  3148. #define BT_UART_MSG_FRAME3ACL_MSK \
  3149. (0x1 << BT_UART_MSG_FRAME3ACL_POS)
  3150. #define BT_UART_MSG_FRAME3MASTER_POS (4)
  3151. #define BT_UART_MSG_FRAME3MASTER_MSK \
  3152. (0x1 << BT_UART_MSG_FRAME3MASTER_POS)
  3153. #define BT_UART_MSG_FRAME3OBEX_POS (5)
  3154. #define BT_UART_MSG_FRAME3OBEX_MSK \
  3155. (0x1 << BT_UART_MSG_FRAME3OBEX_POS)
  3156. #define BT_UART_MSG_FRAME3RESERVED_POS (6)
  3157. #define BT_UART_MSG_FRAME3RESERVED_MSK \
  3158. (0x3 << BT_UART_MSG_FRAME3RESERVED_POS)
  3159. #define BT_UART_MSG_FRAME4IDLEDURATION_POS (0)
  3160. #define BT_UART_MSG_FRAME4IDLEDURATION_MSK \
  3161. (0x3F << BT_UART_MSG_FRAME4IDLEDURATION_POS)
  3162. #define BT_UART_MSG_FRAME4RESERVED_POS (6)
  3163. #define BT_UART_MSG_FRAME4RESERVED_MSK \
  3164. (0x3 << BT_UART_MSG_FRAME4RESERVED_POS)
  3165. #define BT_UART_MSG_FRAME5TXACTIVITY_POS (0)
  3166. #define BT_UART_MSG_FRAME5TXACTIVITY_MSK \
  3167. (0x3 << BT_UART_MSG_FRAME5TXACTIVITY_POS)
  3168. #define BT_UART_MSG_FRAME5RXACTIVITY_POS (2)
  3169. #define BT_UART_MSG_FRAME5RXACTIVITY_MSK \
  3170. (0x3 << BT_UART_MSG_FRAME5RXACTIVITY_POS)
  3171. #define BT_UART_MSG_FRAME5ESCORETRANSMIT_POS (4)
  3172. #define BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK \
  3173. (0x3 << BT_UART_MSG_FRAME5ESCORETRANSMIT_POS)
  3174. #define BT_UART_MSG_FRAME5RESERVED_POS (6)
  3175. #define BT_UART_MSG_FRAME5RESERVED_MSK \
  3176. (0x3 << BT_UART_MSG_FRAME5RESERVED_POS)
  3177. #define BT_UART_MSG_FRAME6SNIFFINTERVAL_POS (0)
  3178. #define BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK \
  3179. (0x1F << BT_UART_MSG_FRAME6SNIFFINTERVAL_POS)
  3180. #define BT_UART_MSG_FRAME6DISCOVERABLE_POS (5)
  3181. #define BT_UART_MSG_FRAME6DISCOVERABLE_MSK \
  3182. (0x1 << BT_UART_MSG_FRAME6DISCOVERABLE_POS)
  3183. #define BT_UART_MSG_FRAME6RESERVED_POS (6)
  3184. #define BT_UART_MSG_FRAME6RESERVED_MSK \
  3185. (0x3 << BT_UART_MSG_FRAME6RESERVED_POS)
  3186. #define BT_UART_MSG_FRAME7SNIFFACTIVITY_POS (0)
  3187. #define BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK \
  3188. (0x7 << BT_UART_MSG_FRAME7SNIFFACTIVITY_POS)
  3189. #define BT_UART_MSG_FRAME7PAGE_POS (3)
  3190. #define BT_UART_MSG_FRAME7PAGE_MSK \
  3191. (0x1 << BT_UART_MSG_FRAME7PAGE_POS)
  3192. #define BT_UART_MSG_FRAME7INQUIRY_POS (4)
  3193. #define BT_UART_MSG_FRAME7INQUIRY_MSK \
  3194. (0x1 << BT_UART_MSG_FRAME7INQUIRY_POS)
  3195. #define BT_UART_MSG_FRAME7CONNECTABLE_POS (5)
  3196. #define BT_UART_MSG_FRAME7CONNECTABLE_MSK \
  3197. (0x1 << BT_UART_MSG_FRAME7CONNECTABLE_POS)
  3198. #define BT_UART_MSG_FRAME7RESERVED_POS (6)
  3199. #define BT_UART_MSG_FRAME7RESERVED_MSK \
  3200. (0x3 << BT_UART_MSG_FRAME7RESERVED_POS)
  3201. /* BT Session Activity 2 UART message (BT -> WiFi) */
  3202. #define BT_UART_MSG_2_FRAME1RESERVED1_POS (5)
  3203. #define BT_UART_MSG_2_FRAME1RESERVED1_MSK \
  3204. (0x1<<BT_UART_MSG_2_FRAME1RESERVED1_POS)
  3205. #define BT_UART_MSG_2_FRAME1RESERVED2_POS (6)
  3206. #define BT_UART_MSG_2_FRAME1RESERVED2_MSK \
  3207. (0x3<<BT_UART_MSG_2_FRAME1RESERVED2_POS)
  3208. #define BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_POS (0)
  3209. #define BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_MSK \
  3210. (0x3F<<BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_POS)
  3211. #define BT_UART_MSG_2_FRAME2RESERVED_POS (6)
  3212. #define BT_UART_MSG_2_FRAME2RESERVED_MSK \
  3213. (0x3<<BT_UART_MSG_2_FRAME2RESERVED_POS)
  3214. #define BT_UART_MSG_2_FRAME3BRLASTTXPOWER_POS (0)
  3215. #define BT_UART_MSG_2_FRAME3BRLASTTXPOWER_MSK \
  3216. (0xF<<BT_UART_MSG_2_FRAME3BRLASTTXPOWER_POS)
  3217. #define BT_UART_MSG_2_FRAME3INQPAGESRMODE_POS (4)
  3218. #define BT_UART_MSG_2_FRAME3INQPAGESRMODE_MSK \
  3219. (0x1<<BT_UART_MSG_2_FRAME3INQPAGESRMODE_POS)
  3220. #define BT_UART_MSG_2_FRAME3LEMASTER_POS (5)
  3221. #define BT_UART_MSG_2_FRAME3LEMASTER_MSK \
  3222. (0x1<<BT_UART_MSG_2_FRAME3LEMASTER_POS)
  3223. #define BT_UART_MSG_2_FRAME3RESERVED_POS (6)
  3224. #define BT_UART_MSG_2_FRAME3RESERVED_MSK \
  3225. (0x3<<BT_UART_MSG_2_FRAME3RESERVED_POS)
  3226. #define BT_UART_MSG_2_FRAME4LELASTTXPOWER_POS (0)
  3227. #define BT_UART_MSG_2_FRAME4LELASTTXPOWER_MSK \
  3228. (0xF<<BT_UART_MSG_2_FRAME4LELASTTXPOWER_POS)
  3229. #define BT_UART_MSG_2_FRAME4NUMLECONN_POS (4)
  3230. #define BT_UART_MSG_2_FRAME4NUMLECONN_MSK \
  3231. (0x3<<BT_UART_MSG_2_FRAME4NUMLECONN_POS)
  3232. #define BT_UART_MSG_2_FRAME4RESERVED_POS (6)
  3233. #define BT_UART_MSG_2_FRAME4RESERVED_MSK \
  3234. (0x3<<BT_UART_MSG_2_FRAME4RESERVED_POS)
  3235. #define BT_UART_MSG_2_FRAME5BTMINRSSI_POS (0)
  3236. #define BT_UART_MSG_2_FRAME5BTMINRSSI_MSK \
  3237. (0xF<<BT_UART_MSG_2_FRAME5BTMINRSSI_POS)
  3238. #define BT_UART_MSG_2_FRAME5LESCANINITMODE_POS (4)
  3239. #define BT_UART_MSG_2_FRAME5LESCANINITMODE_MSK \
  3240. (0x1<<BT_UART_MSG_2_FRAME5LESCANINITMODE_POS)
  3241. #define BT_UART_MSG_2_FRAME5LEADVERMODE_POS (5)
  3242. #define BT_UART_MSG_2_FRAME5LEADVERMODE_MSK \
  3243. (0x1<<BT_UART_MSG_2_FRAME5LEADVERMODE_POS)
  3244. #define BT_UART_MSG_2_FRAME5RESERVED_POS (6)
  3245. #define BT_UART_MSG_2_FRAME5RESERVED_MSK \
  3246. (0x3<<BT_UART_MSG_2_FRAME5RESERVED_POS)
  3247. #define BT_UART_MSG_2_FRAME6LECONNINTERVAL_POS (0)
  3248. #define BT_UART_MSG_2_FRAME6LECONNINTERVAL_MSK \
  3249. (0x1F<<BT_UART_MSG_2_FRAME6LECONNINTERVAL_POS)
  3250. #define BT_UART_MSG_2_FRAME6RFU_POS (5)
  3251. #define BT_UART_MSG_2_FRAME6RFU_MSK \
  3252. (0x1<<BT_UART_MSG_2_FRAME6RFU_POS)
  3253. #define BT_UART_MSG_2_FRAME6RESERVED_POS (6)
  3254. #define BT_UART_MSG_2_FRAME6RESERVED_MSK \
  3255. (0x3<<BT_UART_MSG_2_FRAME6RESERVED_POS)
  3256. #define BT_UART_MSG_2_FRAME7LECONNSLAVELAT_POS (0)
  3257. #define BT_UART_MSG_2_FRAME7LECONNSLAVELAT_MSK \
  3258. (0x7<<BT_UART_MSG_2_FRAME7LECONNSLAVELAT_POS)
  3259. #define BT_UART_MSG_2_FRAME7LEPROFILE1_POS (3)
  3260. #define BT_UART_MSG_2_FRAME7LEPROFILE1_MSK \
  3261. (0x1<<BT_UART_MSG_2_FRAME7LEPROFILE1_POS)
  3262. #define BT_UART_MSG_2_FRAME7LEPROFILE2_POS (4)
  3263. #define BT_UART_MSG_2_FRAME7LEPROFILE2_MSK \
  3264. (0x1<<BT_UART_MSG_2_FRAME7LEPROFILE2_POS)
  3265. #define BT_UART_MSG_2_FRAME7LEPROFILEOTHER_POS (5)
  3266. #define BT_UART_MSG_2_FRAME7LEPROFILEOTHER_MSK \
  3267. (0x1<<BT_UART_MSG_2_FRAME7LEPROFILEOTHER_POS)
  3268. #define BT_UART_MSG_2_FRAME7RESERVED_POS (6)
  3269. #define BT_UART_MSG_2_FRAME7RESERVED_MSK \
  3270. (0x3<<BT_UART_MSG_2_FRAME7RESERVED_POS)
  3271. #define BT_ENABLE_REDUCED_TXPOWER_THRESHOLD (-62)
  3272. #define BT_DISABLE_REDUCED_TXPOWER_THRESHOLD (-65)
  3273. struct iwl_bt_uart_msg {
  3274. u8 header;
  3275. u8 frame1;
  3276. u8 frame2;
  3277. u8 frame3;
  3278. u8 frame4;
  3279. u8 frame5;
  3280. u8 frame6;
  3281. u8 frame7;
  3282. } __attribute__((packed));
  3283. struct iwl_bt_coex_profile_notif {
  3284. struct iwl_bt_uart_msg last_bt_uart_msg;
  3285. u8 bt_status; /* 0 - off, 1 - on */
  3286. u8 bt_traffic_load; /* 0 .. 3? */
  3287. u8 bt_ci_compliance; /* 0 - not complied, 1 - complied */
  3288. u8 reserved;
  3289. } __attribute__((packed));
  3290. #define IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS 0
  3291. #define IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_MSK 0x1
  3292. #define IWL_BT_COEX_PRIO_TBL_PRIO_POS 1
  3293. #define IWL_BT_COEX_PRIO_TBL_PRIO_MASK 0x0e
  3294. #define IWL_BT_COEX_PRIO_TBL_RESERVED_POS 4
  3295. #define IWL_BT_COEX_PRIO_TBL_RESERVED_MASK 0xf0
  3296. #define IWL_BT_COEX_PRIO_TBL_PRIO_SHIFT 1
  3297. /*
  3298. * BT Coexistence Priority table
  3299. * REPLY_BT_COEX_PRIO_TABLE = 0xcc
  3300. */
  3301. enum bt_coex_prio_table_events {
  3302. BT_COEX_PRIO_TBL_EVT_INIT_CALIB1 = 0,
  3303. BT_COEX_PRIO_TBL_EVT_INIT_CALIB2 = 1,
  3304. BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW1 = 2,
  3305. BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW2 = 3, /* DC calib */
  3306. BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH1 = 4,
  3307. BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH2 = 5,
  3308. BT_COEX_PRIO_TBL_EVT_DTIM = 6,
  3309. BT_COEX_PRIO_TBL_EVT_SCAN52 = 7,
  3310. BT_COEX_PRIO_TBL_EVT_SCAN24 = 8,
  3311. BT_COEX_PRIO_TBL_EVT_RESERVED0 = 9,
  3312. BT_COEX_PRIO_TBL_EVT_RESERVED1 = 10,
  3313. BT_COEX_PRIO_TBL_EVT_RESERVED2 = 11,
  3314. BT_COEX_PRIO_TBL_EVT_RESERVED3 = 12,
  3315. BT_COEX_PRIO_TBL_EVT_RESERVED4 = 13,
  3316. BT_COEX_PRIO_TBL_EVT_RESERVED5 = 14,
  3317. BT_COEX_PRIO_TBL_EVT_RESERVED6 = 15,
  3318. /* BT_COEX_PRIO_TBL_EVT_MAX should always be last */
  3319. BT_COEX_PRIO_TBL_EVT_MAX,
  3320. };
  3321. enum bt_coex_prio_table_priorities {
  3322. BT_COEX_PRIO_TBL_DISABLED = 0,
  3323. BT_COEX_PRIO_TBL_PRIO_LOW = 1,
  3324. BT_COEX_PRIO_TBL_PRIO_HIGH = 2,
  3325. BT_COEX_PRIO_TBL_PRIO_BYPASS = 3,
  3326. BT_COEX_PRIO_TBL_PRIO_COEX_OFF = 4,
  3327. BT_COEX_PRIO_TBL_PRIO_COEX_ON = 5,
  3328. BT_COEX_PRIO_TBL_PRIO_RSRVD1 = 6,
  3329. BT_COEX_PRIO_TBL_PRIO_RSRVD2 = 7,
  3330. BT_COEX_PRIO_TBL_MAX,
  3331. };
  3332. struct iwl_bt_coex_prio_table_cmd {
  3333. u8 prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX];
  3334. } __attribute__((packed));
  3335. #define IWL_BT_COEX_ENV_CLOSE 0
  3336. #define IWL_BT_COEX_ENV_OPEN 1
  3337. /*
  3338. * BT Protection Envelope
  3339. * REPLY_BT_COEX_PROT_ENV = 0xcd
  3340. */
  3341. struct iwl_bt_coex_prot_env_cmd {
  3342. u8 action; /* 0 = closed, 1 = open */
  3343. u8 type; /* 0 .. 15 */
  3344. u8 reserved[2];
  3345. } __attribute__((packed));
  3346. /*
  3347. * REPLY_D3_CONFIG
  3348. */
  3349. enum iwlagn_d3_wakeup_filters {
  3350. IWLAGN_D3_WAKEUP_RFKILL = BIT(0),
  3351. IWLAGN_D3_WAKEUP_SYSASSERT = BIT(1),
  3352. };
  3353. struct iwlagn_d3_config_cmd {
  3354. __le32 min_sleep_time;
  3355. __le32 wakeup_flags;
  3356. } __packed;
  3357. /*
  3358. * REPLY_WOWLAN_PATTERNS
  3359. */
  3360. #define IWLAGN_WOWLAN_MIN_PATTERN_LEN 16
  3361. #define IWLAGN_WOWLAN_MAX_PATTERN_LEN 128
  3362. struct iwlagn_wowlan_pattern {
  3363. u8 mask[IWLAGN_WOWLAN_MAX_PATTERN_LEN / 8];
  3364. u8 pattern[IWLAGN_WOWLAN_MAX_PATTERN_LEN];
  3365. u8 mask_size;
  3366. u8 pattern_size;
  3367. __le16 reserved;
  3368. } __packed;
  3369. #define IWLAGN_WOWLAN_MAX_PATTERNS 20
  3370. struct iwlagn_wowlan_patterns_cmd {
  3371. __le32 n_patterns;
  3372. struct iwlagn_wowlan_pattern patterns[];
  3373. } __packed;
  3374. /*
  3375. * REPLY_WOWLAN_WAKEUP_FILTER
  3376. */
  3377. enum iwlagn_wowlan_wakeup_filters {
  3378. IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET = BIT(0),
  3379. IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH = BIT(1),
  3380. IWLAGN_WOWLAN_WAKEUP_BEACON_MISS = BIT(2),
  3381. IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE = BIT(3),
  3382. IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL = BIT(4),
  3383. IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ = BIT(5),
  3384. IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE = BIT(6),
  3385. IWLAGN_WOWLAN_WAKEUP_ALWAYS = BIT(7),
  3386. IWLAGN_WOWLAN_WAKEUP_ENABLE_NET_DETECT = BIT(8),
  3387. };
  3388. struct iwlagn_wowlan_wakeup_filter_cmd {
  3389. __le32 enabled;
  3390. __le16 non_qos_seq;
  3391. __le16 reserved;
  3392. __le16 qos_seq[8];
  3393. };
  3394. /*
  3395. * REPLY_WOWLAN_TSC_RSC_PARAMS
  3396. */
  3397. #define IWLAGN_NUM_RSC 16
  3398. struct tkip_sc {
  3399. __le16 iv16;
  3400. __le16 pad;
  3401. __le32 iv32;
  3402. } __packed;
  3403. struct iwlagn_tkip_rsc_tsc {
  3404. struct tkip_sc unicast_rsc[IWLAGN_NUM_RSC];
  3405. struct tkip_sc multicast_rsc[IWLAGN_NUM_RSC];
  3406. struct tkip_sc tsc;
  3407. } __packed;
  3408. struct aes_sc {
  3409. __le64 pn;
  3410. } __packed;
  3411. struct iwlagn_aes_rsc_tsc {
  3412. struct aes_sc unicast_rsc[IWLAGN_NUM_RSC];
  3413. struct aes_sc multicast_rsc[IWLAGN_NUM_RSC];
  3414. struct aes_sc tsc;
  3415. } __packed;
  3416. union iwlagn_all_tsc_rsc {
  3417. struct iwlagn_tkip_rsc_tsc tkip;
  3418. struct iwlagn_aes_rsc_tsc aes;
  3419. };
  3420. struct iwlagn_wowlan_rsc_tsc_params_cmd {
  3421. union iwlagn_all_tsc_rsc all_tsc_rsc;
  3422. } __packed;
  3423. /*
  3424. * REPLY_WOWLAN_TKIP_PARAMS
  3425. */
  3426. #define IWLAGN_MIC_KEY_SIZE 8
  3427. #define IWLAGN_P1K_SIZE 5
  3428. struct iwlagn_mic_keys {
  3429. u8 tx[IWLAGN_MIC_KEY_SIZE];
  3430. u8 rx_unicast[IWLAGN_MIC_KEY_SIZE];
  3431. u8 rx_mcast[IWLAGN_MIC_KEY_SIZE];
  3432. } __packed;
  3433. struct iwlagn_p1k_cache {
  3434. __le16 p1k[IWLAGN_P1K_SIZE];
  3435. } __packed;
  3436. #define IWLAGN_NUM_RX_P1K_CACHE 2
  3437. struct iwlagn_wowlan_tkip_params_cmd {
  3438. struct iwlagn_mic_keys mic_keys;
  3439. struct iwlagn_p1k_cache tx;
  3440. struct iwlagn_p1k_cache rx_uni[IWLAGN_NUM_RX_P1K_CACHE];
  3441. struct iwlagn_p1k_cache rx_multi[IWLAGN_NUM_RX_P1K_CACHE];
  3442. } __packed;
  3443. /*
  3444. * REPLY_WOWLAN_KEK_KCK_MATERIAL
  3445. */
  3446. #define IWLAGN_KCK_MAX_SIZE 32
  3447. #define IWLAGN_KEK_MAX_SIZE 32
  3448. struct iwlagn_wowlan_kek_kck_material_cmd {
  3449. u8 kck[IWLAGN_KCK_MAX_SIZE];
  3450. u8 kek[IWLAGN_KEK_MAX_SIZE];
  3451. __le16 kck_len;
  3452. __le16 kek_len;
  3453. __le64 replay_ctr;
  3454. } __packed;
  3455. /*
  3456. * REPLY_WIPAN_PARAMS = 0xb2 (Commands and Notification)
  3457. */
  3458. /*
  3459. * Minimum slot time in TU
  3460. */
  3461. #define IWL_MIN_SLOT_TIME 20
  3462. /**
  3463. * struct iwl_wipan_slot
  3464. * @width: Time in TU
  3465. * @type:
  3466. * 0 - BSS
  3467. * 1 - PAN
  3468. */
  3469. struct iwl_wipan_slot {
  3470. __le16 width;
  3471. u8 type;
  3472. u8 reserved;
  3473. } __packed;
  3474. #define IWL_WIPAN_PARAMS_FLG_LEAVE_CHANNEL_CTS BIT(1) /* reserved */
  3475. #define IWL_WIPAN_PARAMS_FLG_LEAVE_CHANNEL_QUIET BIT(2) /* reserved */
  3476. #define IWL_WIPAN_PARAMS_FLG_SLOTTED_MODE BIT(3) /* reserved */
  3477. #define IWL_WIPAN_PARAMS_FLG_FILTER_BEACON_NOTIF BIT(4)
  3478. #define IWL_WIPAN_PARAMS_FLG_FULL_SLOTTED_MODE BIT(5)
  3479. /**
  3480. * struct iwl_wipan_params_cmd
  3481. * @flags:
  3482. * bit0: reserved
  3483. * bit1: CP leave channel with CTS
  3484. * bit2: CP leave channel qith Quiet
  3485. * bit3: slotted mode
  3486. * 1 - work in slotted mode
  3487. * 0 - work in non slotted mode
  3488. * bit4: filter beacon notification
  3489. * bit5: full tx slotted mode. if this flag is set,
  3490. * uCode will perform leaving channel methods in context switch
  3491. * also when working in same channel mode
  3492. * @num_slots: 1 - 10
  3493. */
  3494. struct iwl_wipan_params_cmd {
  3495. __le16 flags;
  3496. u8 reserved;
  3497. u8 num_slots;
  3498. struct iwl_wipan_slot slots[10];
  3499. } __packed;
  3500. /*
  3501. * REPLY_WIPAN_P2P_CHANNEL_SWITCH = 0xb9
  3502. *
  3503. * TODO: Figure out what this is used for,
  3504. * it can only switch between 2.4 GHz
  3505. * channels!!
  3506. */
  3507. struct iwl_wipan_p2p_channel_switch_cmd {
  3508. __le16 channel;
  3509. __le16 reserved;
  3510. };
  3511. /*
  3512. * REPLY_WIPAN_NOA_NOTIFICATION = 0xbc
  3513. *
  3514. * This is used by the device to notify us of the
  3515. * NoA schedule it determined so we can forward it
  3516. * to userspace for inclusion in probe responses.
  3517. *
  3518. * In beacons, the NoA schedule is simply appended
  3519. * to the frame we give the device.
  3520. */
  3521. struct iwl_wipan_noa_descriptor {
  3522. u8 count;
  3523. __le32 duration;
  3524. __le32 interval;
  3525. __le32 starttime;
  3526. } __packed;
  3527. struct iwl_wipan_noa_attribute {
  3528. u8 id;
  3529. __le16 length;
  3530. u8 index;
  3531. u8 ct_window;
  3532. struct iwl_wipan_noa_descriptor descr0, descr1;
  3533. u8 reserved;
  3534. } __packed;
  3535. struct iwl_wipan_noa_notification {
  3536. u32 noa_active;
  3537. struct iwl_wipan_noa_attribute noa_attribute;
  3538. } __packed;
  3539. #endif /* __iwl_commands_h__ */