iwl-commands.h 129 KB

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