iwl-commands.h 125 KB

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