commands.h 110 KB

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