iwl-commands.h 116 KB

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