iwl-commands.h 119 KB

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