common.h 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. * Contact Information:
  22. * Intel Linux Wireless <ilw@linux.intel.com>
  23. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  24. *
  25. *****************************************************************************/
  26. #ifndef __il_core_h__
  27. #define __il_core_h__
  28. #include <linux/interrupt.h>
  29. #include <linux/pci.h> /* for struct pci_device_id */
  30. #include <linux/kernel.h>
  31. #include <linux/leds.h>
  32. #include <linux/wait.h>
  33. #include <linux/io.h>
  34. #include <net/mac80211.h>
  35. #include <net/ieee80211_radiotap.h>
  36. #include "commands.h"
  37. #include "csr.h"
  38. #include "prph.h"
  39. struct il_host_cmd;
  40. struct il_cmd;
  41. struct il_tx_queue;
  42. #define IL_ERR(f, a...) dev_err(&il->pci_dev->dev, f, ## a)
  43. #define IL_WARN(f, a...) dev_warn(&il->pci_dev->dev, f, ## a)
  44. #define IL_INFO(f, a...) dev_info(&il->pci_dev->dev, f, ## a)
  45. #define RX_QUEUE_SIZE 256
  46. #define RX_QUEUE_MASK 255
  47. #define RX_QUEUE_SIZE_LOG 8
  48. /*
  49. * RX related structures and functions
  50. */
  51. #define RX_FREE_BUFFERS 64
  52. #define RX_LOW_WATERMARK 8
  53. #define U32_PAD(n) ((4-(n))&0x3)
  54. /* CT-KILL constants */
  55. #define CT_KILL_THRESHOLD_LEGACY 110 /* in Celsius */
  56. /* Default noise level to report when noise measurement is not available.
  57. * This may be because we're:
  58. * 1) Not associated (4965, no beacon stats being sent to driver)
  59. * 2) Scanning (noise measurement does not apply to associated channel)
  60. * 3) Receiving CCK (3945 delivers noise info only for OFDM frames)
  61. * Use default noise value of -127 ... this is below the range of measurable
  62. * Rx dBm for either 3945 or 4965, so it can indicate "unmeasurable" to user.
  63. * Also, -127 works better than 0 when averaging frames with/without
  64. * noise info (e.g. averaging might be done in app); measured dBm values are
  65. * always negative ... using a negative value as the default keeps all
  66. * averages within an s8's (used in some apps) range of negative values. */
  67. #define IL_NOISE_MEAS_NOT_AVAILABLE (-127)
  68. /*
  69. * RTS threshold here is total size [2347] minus 4 FCS bytes
  70. * Per spec:
  71. * a value of 0 means RTS on all data/management packets
  72. * a value > max MSDU size means no RTS
  73. * else RTS for data/management frames where MPDU is larger
  74. * than RTS value.
  75. */
  76. #define DEFAULT_RTS_THRESHOLD 2347U
  77. #define MIN_RTS_THRESHOLD 0U
  78. #define MAX_RTS_THRESHOLD 2347U
  79. #define MAX_MSDU_SIZE 2304U
  80. #define MAX_MPDU_SIZE 2346U
  81. #define DEFAULT_BEACON_INTERVAL 100U
  82. #define DEFAULT_SHORT_RETRY_LIMIT 7U
  83. #define DEFAULT_LONG_RETRY_LIMIT 4U
  84. struct il_rx_buf {
  85. dma_addr_t page_dma;
  86. struct page *page;
  87. struct list_head list;
  88. };
  89. #define rxb_addr(r) page_address(r->page)
  90. /* defined below */
  91. struct il_device_cmd;
  92. struct il_cmd_meta {
  93. /* only for SYNC commands, iff the reply skb is wanted */
  94. struct il_host_cmd *source;
  95. /*
  96. * only for ASYNC commands
  97. * (which is somewhat stupid -- look at common.c for instance
  98. * which duplicates a bunch of code because the callback isn't
  99. * invoked for SYNC commands, if it were and its result passed
  100. * through it would be simpler...)
  101. */
  102. void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
  103. struct il_rx_pkt *pkt);
  104. /* The CMD_SIZE_HUGE flag bit indicates that the command
  105. * structure is stored at the end of the shared queue memory. */
  106. u32 flags;
  107. DEFINE_DMA_UNMAP_ADDR(mapping);
  108. DEFINE_DMA_UNMAP_LEN(len);
  109. };
  110. /*
  111. * Generic queue structure
  112. *
  113. * Contains common data for Rx and Tx queues
  114. */
  115. struct il_queue {
  116. int n_bd; /* number of BDs in this queue */
  117. int write_ptr; /* 1-st empty entry (idx) host_w */
  118. int read_ptr; /* last used entry (idx) host_r */
  119. /* use for monitoring and recovering the stuck queue */
  120. dma_addr_t dma_addr; /* physical addr for BD's */
  121. int n_win; /* safe queue win */
  122. u32 id;
  123. int low_mark; /* low watermark, resume queue if free
  124. * space more than this */
  125. int high_mark; /* high watermark, stop queue if free
  126. * space less than this */
  127. };
  128. /* One for each TFD */
  129. struct il_tx_info {
  130. struct sk_buff *skb;
  131. struct il_rxon_context *ctx;
  132. };
  133. /**
  134. * struct il_tx_queue - Tx Queue for DMA
  135. * @q: generic Rx/Tx queue descriptor
  136. * @bd: base of circular buffer of TFDs
  137. * @cmd: array of command/TX buffer pointers
  138. * @meta: array of meta data for each command/tx buffer
  139. * @dma_addr_cmd: physical address of cmd/tx buffer array
  140. * @txb: array of per-TFD driver data
  141. * @time_stamp: time (in jiffies) of last read_ptr change
  142. * @need_update: indicates need to update read/write idx
  143. * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
  144. *
  145. * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
  146. * descriptors) and required locking structures.
  147. */
  148. #define TFD_TX_CMD_SLOTS 256
  149. #define TFD_CMD_SLOTS 32
  150. struct il_tx_queue {
  151. struct il_queue q;
  152. void *tfds;
  153. struct il_device_cmd **cmd;
  154. struct il_cmd_meta *meta;
  155. struct il_tx_info *txb;
  156. unsigned long time_stamp;
  157. u8 need_update;
  158. u8 sched_retry;
  159. u8 active;
  160. u8 swq_id;
  161. };
  162. /*
  163. * EEPROM access time values:
  164. *
  165. * Driver initiates EEPROM read by writing byte address << 1 to CSR_EEPROM_REG.
  166. * Driver then polls CSR_EEPROM_REG for CSR_EEPROM_REG_READ_VALID_MSK (0x1).
  167. * When polling, wait 10 uSec between polling loops, up to a maximum 5000 uSec.
  168. * Driver reads 16-bit value from bits 31-16 of CSR_EEPROM_REG.
  169. */
  170. #define IL_EEPROM_ACCESS_TIMEOUT 5000 /* uSec */
  171. #define IL_EEPROM_SEM_TIMEOUT 10 /* microseconds */
  172. #define IL_EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
  173. /*
  174. * Regulatory channel usage flags in EEPROM struct il4965_eeprom_channel.flags.
  175. *
  176. * IBSS and/or AP operation is allowed *only* on those channels with
  177. * (VALID && IBSS && ACTIVE && !RADAR). This restriction is in place because
  178. * RADAR detection is not supported by the 4965 driver, but is a
  179. * requirement for establishing a new network for legal operation on channels
  180. * requiring RADAR detection or restricting ACTIVE scanning.
  181. *
  182. * NOTE: "WIDE" flag does not indicate anything about "HT40" 40 MHz channels.
  183. * It only indicates that 20 MHz channel use is supported; HT40 channel
  184. * usage is indicated by a separate set of regulatory flags for each
  185. * HT40 channel pair.
  186. *
  187. * NOTE: Using a channel inappropriately will result in a uCode error!
  188. */
  189. #define IL_NUM_TX_CALIB_GROUPS 5
  190. enum {
  191. EEPROM_CHANNEL_VALID = (1 << 0), /* usable for this SKU/geo */
  192. EEPROM_CHANNEL_IBSS = (1 << 1), /* usable as an IBSS channel */
  193. /* Bit 2 Reserved */
  194. EEPROM_CHANNEL_ACTIVE = (1 << 3), /* active scanning allowed */
  195. EEPROM_CHANNEL_RADAR = (1 << 4), /* radar detection required */
  196. EEPROM_CHANNEL_WIDE = (1 << 5), /* 20 MHz channel okay */
  197. /* Bit 6 Reserved (was Narrow Channel) */
  198. EEPROM_CHANNEL_DFS = (1 << 7), /* dynamic freq selection candidate */
  199. };
  200. /* SKU Capabilities */
  201. /* 3945 only */
  202. #define EEPROM_SKU_CAP_SW_RF_KILL_ENABLE (1 << 0)
  203. #define EEPROM_SKU_CAP_HW_RF_KILL_ENABLE (1 << 1)
  204. /* *regulatory* channel data format in eeprom, one for each channel.
  205. * There are separate entries for HT40 (40 MHz) vs. normal (20 MHz) channels. */
  206. struct il_eeprom_channel {
  207. u8 flags; /* EEPROM_CHANNEL_* flags copied from EEPROM */
  208. s8 max_power_avg; /* max power (dBm) on this chnl, limit 31 */
  209. } __packed;
  210. /* 3945 Specific */
  211. #define EEPROM_3945_EEPROM_VERSION (0x2f)
  212. /* 4965 has two radio transmitters (and 3 radio receivers) */
  213. #define EEPROM_TX_POWER_TX_CHAINS (2)
  214. /* 4965 has room for up to 8 sets of txpower calibration data */
  215. #define EEPROM_TX_POWER_BANDS (8)
  216. /* 4965 factory calibration measures txpower gain settings for
  217. * each of 3 target output levels */
  218. #define EEPROM_TX_POWER_MEASUREMENTS (3)
  219. /* 4965 Specific */
  220. /* 4965 driver does not work with txpower calibration version < 5 */
  221. #define EEPROM_4965_TX_POWER_VERSION (5)
  222. #define EEPROM_4965_EEPROM_VERSION (0x2f)
  223. #define EEPROM_4965_CALIB_VERSION_OFFSET (2*0xB6) /* 2 bytes */
  224. #define EEPROM_4965_CALIB_TXPOWER_OFFSET (2*0xE8) /* 48 bytes */
  225. #define EEPROM_4965_BOARD_REVISION (2*0x4F) /* 2 bytes */
  226. #define EEPROM_4965_BOARD_PBA (2*0x56+1) /* 9 bytes */
  227. /* 2.4 GHz */
  228. extern const u8 il_eeprom_band_1[14];
  229. /*
  230. * factory calibration data for one txpower level, on one channel,
  231. * measured on one of the 2 tx chains (radio transmitter and associated
  232. * antenna). EEPROM contains:
  233. *
  234. * 1) Temperature (degrees Celsius) of device when measurement was made.
  235. *
  236. * 2) Gain table idx used to achieve the target measurement power.
  237. * This refers to the "well-known" gain tables (see 4965.h).
  238. *
  239. * 3) Actual measured output power, in half-dBm ("34" = 17 dBm).
  240. *
  241. * 4) RF power amplifier detector level measurement (not used).
  242. */
  243. struct il_eeprom_calib_measure {
  244. u8 temperature; /* Device temperature (Celsius) */
  245. u8 gain_idx; /* Index into gain table */
  246. u8 actual_pow; /* Measured RF output power, half-dBm */
  247. s8 pa_det; /* Power amp detector level (not used) */
  248. } __packed;
  249. /*
  250. * measurement set for one channel. EEPROM contains:
  251. *
  252. * 1) Channel number measured
  253. *
  254. * 2) Measurements for each of 3 power levels for each of 2 radio transmitters
  255. * (a.k.a. "tx chains") (6 measurements altogether)
  256. */
  257. struct il_eeprom_calib_ch_info {
  258. u8 ch_num;
  259. struct il_eeprom_calib_measure
  260. measurements[EEPROM_TX_POWER_TX_CHAINS]
  261. [EEPROM_TX_POWER_MEASUREMENTS];
  262. } __packed;
  263. /*
  264. * txpower subband info.
  265. *
  266. * For each frequency subband, EEPROM contains the following:
  267. *
  268. * 1) First and last channels within range of the subband. "0" values
  269. * indicate that this sample set is not being used.
  270. *
  271. * 2) Sample measurement sets for 2 channels close to the range endpoints.
  272. */
  273. struct il_eeprom_calib_subband_info {
  274. u8 ch_from; /* channel number of lowest channel in subband */
  275. u8 ch_to; /* channel number of highest channel in subband */
  276. struct il_eeprom_calib_ch_info ch1;
  277. struct il_eeprom_calib_ch_info ch2;
  278. } __packed;
  279. /*
  280. * txpower calibration info. EEPROM contains:
  281. *
  282. * 1) Factory-measured saturation power levels (maximum levels at which
  283. * tx power amplifier can output a signal without too much distortion).
  284. * There is one level for 2.4 GHz band and one for 5 GHz band. These
  285. * values apply to all channels within each of the bands.
  286. *
  287. * 2) Factory-measured power supply voltage level. This is assumed to be
  288. * constant (i.e. same value applies to all channels/bands) while the
  289. * factory measurements are being made.
  290. *
  291. * 3) Up to 8 sets of factory-measured txpower calibration values.
  292. * These are for different frequency ranges, since txpower gain
  293. * characteristics of the analog radio circuitry vary with frequency.
  294. *
  295. * Not all sets need to be filled with data;
  296. * struct il_eeprom_calib_subband_info contains range of channels
  297. * (0 if unused) for each set of data.
  298. */
  299. struct il_eeprom_calib_info {
  300. u8 saturation_power24; /* half-dBm (e.g. "34" = 17 dBm) */
  301. u8 saturation_power52; /* half-dBm */
  302. __le16 voltage; /* signed */
  303. struct il_eeprom_calib_subband_info band_info[EEPROM_TX_POWER_BANDS];
  304. } __packed;
  305. /* General */
  306. #define EEPROM_DEVICE_ID (2*0x08) /* 2 bytes */
  307. #define EEPROM_MAC_ADDRESS (2*0x15) /* 6 bytes */
  308. #define EEPROM_BOARD_REVISION (2*0x35) /* 2 bytes */
  309. #define EEPROM_BOARD_PBA_NUMBER (2*0x3B+1) /* 9 bytes */
  310. #define EEPROM_VERSION (2*0x44) /* 2 bytes */
  311. #define EEPROM_SKU_CAP (2*0x45) /* 2 bytes */
  312. #define EEPROM_OEM_MODE (2*0x46) /* 2 bytes */
  313. #define EEPROM_WOWLAN_MODE (2*0x47) /* 2 bytes */
  314. #define EEPROM_RADIO_CONFIG (2*0x48) /* 2 bytes */
  315. #define EEPROM_NUM_MAC_ADDRESS (2*0x4C) /* 2 bytes */
  316. /* The following masks are to be applied on EEPROM_RADIO_CONFIG */
  317. #define EEPROM_RF_CFG_TYPE_MSK(x) (x & 0x3) /* bits 0-1 */
  318. #define EEPROM_RF_CFG_STEP_MSK(x) ((x >> 2) & 0x3) /* bits 2-3 */
  319. #define EEPROM_RF_CFG_DASH_MSK(x) ((x >> 4) & 0x3) /* bits 4-5 */
  320. #define EEPROM_RF_CFG_PNUM_MSK(x) ((x >> 6) & 0x3) /* bits 6-7 */
  321. #define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8) & 0xF) /* bits 8-11 */
  322. #define EEPROM_RF_CFG_RX_ANT_MSK(x) ((x >> 12) & 0xF) /* bits 12-15 */
  323. #define EEPROM_3945_RF_CFG_TYPE_MAX 0x0
  324. #define EEPROM_4965_RF_CFG_TYPE_MAX 0x1
  325. /*
  326. * Per-channel regulatory data.
  327. *
  328. * Each channel that *might* be supported by iwl has a fixed location
  329. * in EEPROM containing EEPROM_CHANNEL_* usage flags (LSB) and max regulatory
  330. * txpower (MSB).
  331. *
  332. * Entries immediately below are for 20 MHz channel width. HT40 (40 MHz)
  333. * channels (only for 4965, not supported by 3945) appear later in the EEPROM.
  334. *
  335. * 2.4 GHz channels 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
  336. */
  337. #define EEPROM_REGULATORY_SKU_ID (2*0x60) /* 4 bytes */
  338. #define EEPROM_REGULATORY_BAND_1 (2*0x62) /* 2 bytes */
  339. #define EEPROM_REGULATORY_BAND_1_CHANNELS (2*0x63) /* 28 bytes */
  340. /*
  341. * 4.9 GHz channels 183, 184, 185, 187, 188, 189, 192, 196,
  342. * 5.0 GHz channels 7, 8, 11, 12, 16
  343. * (4915-5080MHz) (none of these is ever supported)
  344. */
  345. #define EEPROM_REGULATORY_BAND_2 (2*0x71) /* 2 bytes */
  346. #define EEPROM_REGULATORY_BAND_2_CHANNELS (2*0x72) /* 26 bytes */
  347. /*
  348. * 5.2 GHz channels 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
  349. * (5170-5320MHz)
  350. */
  351. #define EEPROM_REGULATORY_BAND_3 (2*0x7F) /* 2 bytes */
  352. #define EEPROM_REGULATORY_BAND_3_CHANNELS (2*0x80) /* 24 bytes */
  353. /*
  354. * 5.5 GHz channels 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
  355. * (5500-5700MHz)
  356. */
  357. #define EEPROM_REGULATORY_BAND_4 (2*0x8C) /* 2 bytes */
  358. #define EEPROM_REGULATORY_BAND_4_CHANNELS (2*0x8D) /* 22 bytes */
  359. /*
  360. * 5.7 GHz channels 145, 149, 153, 157, 161, 165
  361. * (5725-5825MHz)
  362. */
  363. #define EEPROM_REGULATORY_BAND_5 (2*0x98) /* 2 bytes */
  364. #define EEPROM_REGULATORY_BAND_5_CHANNELS (2*0x99) /* 12 bytes */
  365. /*
  366. * 2.4 GHz HT40 channels 1 (5), 2 (6), 3 (7), 4 (8), 5 (9), 6 (10), 7 (11)
  367. *
  368. * The channel listed is the center of the lower 20 MHz half of the channel.
  369. * The overall center frequency is actually 2 channels (10 MHz) above that,
  370. * and the upper half of each HT40 channel is centered 4 channels (20 MHz) away
  371. * from the lower half; e.g. the upper half of HT40 channel 1 is channel 5,
  372. * and the overall HT40 channel width centers on channel 3.
  373. *
  374. * NOTE: The RXON command uses 20 MHz channel numbers to specify the
  375. * control channel to which to tune. RXON also specifies whether the
  376. * control channel is the upper or lower half of a HT40 channel.
  377. *
  378. * NOTE: 4965 does not support HT40 channels on 2.4 GHz.
  379. */
  380. #define EEPROM_4965_REGULATORY_BAND_24_HT40_CHANNELS (2*0xA0) /* 14 bytes */
  381. /*
  382. * 5.2 GHz HT40 channels 36 (40), 44 (48), 52 (56), 60 (64),
  383. * 100 (104), 108 (112), 116 (120), 124 (128), 132 (136), 149 (153), 157 (161)
  384. */
  385. #define EEPROM_4965_REGULATORY_BAND_52_HT40_CHANNELS (2*0xA8) /* 22 bytes */
  386. #define EEPROM_REGULATORY_BAND_NO_HT40 (0)
  387. struct il_eeprom_ops {
  388. const u32 regulatory_bands[7];
  389. int (*acquire_semaphore) (struct il_priv *il);
  390. void (*release_semaphore) (struct il_priv *il);
  391. };
  392. int il_eeprom_init(struct il_priv *il);
  393. void il_eeprom_free(struct il_priv *il);
  394. const u8 *il_eeprom_query_addr(const struct il_priv *il, size_t offset);
  395. u16 il_eeprom_query16(const struct il_priv *il, size_t offset);
  396. int il_init_channel_map(struct il_priv *il);
  397. void il_free_channel_map(struct il_priv *il);
  398. const struct il_channel_info *il_get_channel_info(const struct il_priv *il,
  399. enum ieee80211_band band,
  400. u16 channel);
  401. #define IL_NUM_SCAN_RATES (2)
  402. struct il4965_channel_tgd_info {
  403. u8 type;
  404. s8 max_power;
  405. };
  406. struct il4965_channel_tgh_info {
  407. s64 last_radar_time;
  408. };
  409. #define IL4965_MAX_RATE (33)
  410. struct il3945_clip_group {
  411. /* maximum power level to prevent clipping for each rate, derived by
  412. * us from this band's saturation power in EEPROM */
  413. const s8 clip_powers[IL_MAX_RATES];
  414. };
  415. /* current Tx power values to use, one for each rate for each channel.
  416. * requested power is limited by:
  417. * -- regulatory EEPROM limits for this channel
  418. * -- hardware capabilities (clip-powers)
  419. * -- spectrum management
  420. * -- user preference (e.g. iwconfig)
  421. * when requested power is set, base power idx must also be set. */
  422. struct il3945_channel_power_info {
  423. struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
  424. s8 power_table_idx; /* actual (compenst'd) idx into gain table */
  425. s8 base_power_idx; /* gain idx for power at factory temp. */
  426. s8 requested_power; /* power (dBm) requested for this chnl/rate */
  427. };
  428. /* current scan Tx power values to use, one for each scan rate for each
  429. * channel. */
  430. struct il3945_scan_power_info {
  431. struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
  432. s8 power_table_idx; /* actual (compenst'd) idx into gain table */
  433. s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
  434. };
  435. /*
  436. * One for each channel, holds all channel setup data
  437. * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
  438. * with one another!
  439. */
  440. struct il_channel_info {
  441. struct il4965_channel_tgd_info tgd;
  442. struct il4965_channel_tgh_info tgh;
  443. struct il_eeprom_channel eeprom; /* EEPROM regulatory limit */
  444. struct il_eeprom_channel ht40_eeprom; /* EEPROM regulatory limit for
  445. * HT40 channel */
  446. u8 channel; /* channel number */
  447. u8 flags; /* flags copied from EEPROM */
  448. s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
  449. s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) limit */
  450. s8 min_power; /* always 0 */
  451. s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
  452. u8 group_idx; /* 0-4, maps channel to group1/2/3/4/5 */
  453. u8 band_idx; /* 0-4, maps channel to band1/2/3/4/5 */
  454. enum ieee80211_band band;
  455. /* HT40 channel info */
  456. s8 ht40_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
  457. u8 ht40_flags; /* flags copied from EEPROM */
  458. u8 ht40_extension_channel; /* HT_IE_EXT_CHANNEL_* */
  459. /* Radio/DSP gain settings for each "normal" data Tx rate.
  460. * These include, in addition to RF and DSP gain, a few fields for
  461. * remembering/modifying gain settings (idxes). */
  462. struct il3945_channel_power_info power_info[IL4965_MAX_RATE];
  463. /* Radio/DSP gain settings for each scan rate, for directed scans. */
  464. struct il3945_scan_power_info scan_pwr_info[IL_NUM_SCAN_RATES];
  465. };
  466. #define IL_TX_FIFO_BK 0 /* shared */
  467. #define IL_TX_FIFO_BE 1
  468. #define IL_TX_FIFO_VI 2 /* shared */
  469. #define IL_TX_FIFO_VO 3
  470. #define IL_TX_FIFO_UNUSED -1
  471. /* Minimum number of queues. MAX_NUM is defined in hw specific files.
  472. * Set the minimum to accommodate the 4 standard TX queues, 1 command
  473. * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
  474. #define IL_MIN_NUM_QUEUES 10
  475. #define IL_DEFAULT_CMD_QUEUE_NUM 4
  476. #define IEEE80211_DATA_LEN 2304
  477. #define IEEE80211_4ADDR_LEN 30
  478. #define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
  479. #define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
  480. struct il_frame {
  481. union {
  482. struct ieee80211_hdr frame;
  483. struct il_tx_beacon_cmd beacon;
  484. u8 raw[IEEE80211_FRAME_LEN];
  485. u8 cmd[360];
  486. } u;
  487. struct list_head list;
  488. };
  489. #define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
  490. #define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
  491. #define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
  492. enum {
  493. CMD_SYNC = 0,
  494. CMD_SIZE_NORMAL = 0,
  495. CMD_NO_SKB = 0,
  496. CMD_SIZE_HUGE = (1 << 0),
  497. CMD_ASYNC = (1 << 1),
  498. CMD_WANT_SKB = (1 << 2),
  499. CMD_MAPPED = (1 << 3),
  500. };
  501. #define DEF_CMD_PAYLOAD_SIZE 320
  502. /**
  503. * struct il_device_cmd
  504. *
  505. * For allocation of the command and tx queues, this establishes the overall
  506. * size of the largest command we send to uCode, except for a scan command
  507. * (which is relatively huge; space is allocated separately).
  508. */
  509. struct il_device_cmd {
  510. struct il_cmd_header hdr; /* uCode API */
  511. union {
  512. u32 flags;
  513. u8 val8;
  514. u16 val16;
  515. u32 val32;
  516. struct il_tx_cmd tx;
  517. u8 payload[DEF_CMD_PAYLOAD_SIZE];
  518. } __packed cmd;
  519. } __packed;
  520. #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct il_device_cmd))
  521. struct il_host_cmd {
  522. const void *data;
  523. unsigned long reply_page;
  524. void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
  525. struct il_rx_pkt *pkt);
  526. u32 flags;
  527. u16 len;
  528. u8 id;
  529. };
  530. #define SUP_RATE_11A_MAX_NUM_CHANNELS 8
  531. #define SUP_RATE_11B_MAX_NUM_CHANNELS 4
  532. #define SUP_RATE_11G_MAX_NUM_CHANNELS 12
  533. /**
  534. * struct il_rx_queue - Rx queue
  535. * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
  536. * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
  537. * @read: Shared idx to newest available Rx buffer
  538. * @write: Shared idx to oldest written Rx packet
  539. * @free_count: Number of pre-allocated buffers in rx_free
  540. * @rx_free: list of free SKBs for use
  541. * @rx_used: List of Rx buffers with no SKB
  542. * @need_update: flag to indicate we need to update read/write idx
  543. * @rb_stts: driver's pointer to receive buffer status
  544. * @rb_stts_dma: bus address of receive buffer status
  545. *
  546. * NOTE: rx_free and rx_used are used as a FIFO for il_rx_bufs
  547. */
  548. struct il_rx_queue {
  549. __le32 *bd;
  550. dma_addr_t bd_dma;
  551. struct il_rx_buf pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
  552. struct il_rx_buf *queue[RX_QUEUE_SIZE];
  553. u32 read;
  554. u32 write;
  555. u32 free_count;
  556. u32 write_actual;
  557. struct list_head rx_free;
  558. struct list_head rx_used;
  559. int need_update;
  560. struct il_rb_status *rb_stts;
  561. dma_addr_t rb_stts_dma;
  562. spinlock_t lock;
  563. };
  564. #define IL_SUPPORTED_RATES_IE_LEN 8
  565. #define MAX_TID_COUNT 9
  566. #define IL_INVALID_RATE 0xFF
  567. #define IL_INVALID_VALUE -1
  568. /**
  569. * struct il_ht_agg -- aggregation status while waiting for block-ack
  570. * @txq_id: Tx queue used for Tx attempt
  571. * @frame_count: # frames attempted by Tx command
  572. * @wait_for_ba: Expect block-ack before next Tx reply
  573. * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx win
  574. * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx win
  575. * @bitmap1: High order, one bit for each frame pending ACK in Tx win
  576. * @rate_n_flags: Rate at which Tx was attempted
  577. *
  578. * If C_TX indicates that aggregation was attempted, driver must wait
  579. * for block ack (N_COMPRESSED_BA). This struct stores tx reply info
  580. * until block ack arrives.
  581. */
  582. struct il_ht_agg {
  583. u16 txq_id;
  584. u16 frame_count;
  585. u16 wait_for_ba;
  586. u16 start_idx;
  587. u64 bitmap;
  588. u32 rate_n_flags;
  589. #define IL_AGG_OFF 0
  590. #define IL_AGG_ON 1
  591. #define IL_EMPTYING_HW_QUEUE_ADDBA 2
  592. #define IL_EMPTYING_HW_QUEUE_DELBA 3
  593. u8 state;
  594. };
  595. struct il_tid_data {
  596. u16 seq_number; /* 4965 only */
  597. u16 tfds_in_queue;
  598. struct il_ht_agg agg;
  599. };
  600. struct il_hw_key {
  601. u32 cipher;
  602. int keylen;
  603. u8 keyidx;
  604. u8 key[32];
  605. };
  606. union il_ht_rate_supp {
  607. u16 rates;
  608. struct {
  609. u8 siso_rate;
  610. u8 mimo_rate;
  611. };
  612. };
  613. #define CFG_HT_RX_AMPDU_FACTOR_8K (0x0)
  614. #define CFG_HT_RX_AMPDU_FACTOR_16K (0x1)
  615. #define CFG_HT_RX_AMPDU_FACTOR_32K (0x2)
  616. #define CFG_HT_RX_AMPDU_FACTOR_64K (0x3)
  617. #define CFG_HT_RX_AMPDU_FACTOR_DEF CFG_HT_RX_AMPDU_FACTOR_64K
  618. #define CFG_HT_RX_AMPDU_FACTOR_MAX CFG_HT_RX_AMPDU_FACTOR_64K
  619. #define CFG_HT_RX_AMPDU_FACTOR_MIN CFG_HT_RX_AMPDU_FACTOR_8K
  620. /*
  621. * Maximal MPDU density for TX aggregation
  622. * 4 - 2us density
  623. * 5 - 4us density
  624. * 6 - 8us density
  625. * 7 - 16us density
  626. */
  627. #define CFG_HT_MPDU_DENSITY_2USEC (0x4)
  628. #define CFG_HT_MPDU_DENSITY_4USEC (0x5)
  629. #define CFG_HT_MPDU_DENSITY_8USEC (0x6)
  630. #define CFG_HT_MPDU_DENSITY_16USEC (0x7)
  631. #define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_4USEC
  632. #define CFG_HT_MPDU_DENSITY_MAX CFG_HT_MPDU_DENSITY_16USEC
  633. #define CFG_HT_MPDU_DENSITY_MIN (0x1)
  634. struct il_ht_config {
  635. bool single_chain_sufficient;
  636. enum ieee80211_smps_mode smps; /* current smps mode */
  637. };
  638. /* QoS structures */
  639. struct il_qos_info {
  640. int qos_active;
  641. struct il_qosparam_cmd def_qos_parm;
  642. };
  643. /*
  644. * Structure should be accessed with sta_lock held. When station addition
  645. * is in progress (IL_STA_UCODE_INPROGRESS) it is possible to access only
  646. * the commands (il_addsta_cmd and il_link_quality_cmd) without
  647. * sta_lock held.
  648. */
  649. struct il_station_entry {
  650. struct il_addsta_cmd sta;
  651. struct il_tid_data tid[MAX_TID_COUNT];
  652. u8 used;
  653. struct il_hw_key keyinfo;
  654. struct il_link_quality_cmd *lq;
  655. };
  656. struct il_station_priv_common {
  657. struct il_rxon_context *ctx;
  658. u8 sta_id;
  659. };
  660. /**
  661. * struct il_vif_priv - driver's ilate per-interface information
  662. *
  663. * When mac80211 allocates a virtual interface, it can allocate
  664. * space for us to put data into.
  665. */
  666. struct il_vif_priv {
  667. struct il_rxon_context *ctx;
  668. u8 ibss_bssid_sta_id;
  669. };
  670. /* one for each uCode image (inst/data, boot/init/runtime) */
  671. struct fw_desc {
  672. void *v_addr; /* access by driver */
  673. dma_addr_t p_addr; /* access by card's busmaster DMA */
  674. u32 len; /* bytes */
  675. };
  676. /* uCode file layout */
  677. struct il_ucode_header {
  678. __le32 ver; /* major/minor/API/serial */
  679. struct {
  680. __le32 inst_size; /* bytes of runtime code */
  681. __le32 data_size; /* bytes of runtime data */
  682. __le32 init_size; /* bytes of init code */
  683. __le32 init_data_size; /* bytes of init data */
  684. __le32 boot_size; /* bytes of bootstrap code */
  685. u8 data[0]; /* in same order as sizes */
  686. } v1;
  687. };
  688. struct il4965_ibss_seq {
  689. u8 mac[ETH_ALEN];
  690. u16 seq_num;
  691. u16 frag_num;
  692. unsigned long packet_time;
  693. struct list_head list;
  694. };
  695. struct il_sensitivity_ranges {
  696. u16 min_nrg_cck;
  697. u16 max_nrg_cck;
  698. u16 nrg_th_cck;
  699. u16 nrg_th_ofdm;
  700. u16 auto_corr_min_ofdm;
  701. u16 auto_corr_min_ofdm_mrc;
  702. u16 auto_corr_min_ofdm_x1;
  703. u16 auto_corr_min_ofdm_mrc_x1;
  704. u16 auto_corr_max_ofdm;
  705. u16 auto_corr_max_ofdm_mrc;
  706. u16 auto_corr_max_ofdm_x1;
  707. u16 auto_corr_max_ofdm_mrc_x1;
  708. u16 auto_corr_max_cck;
  709. u16 auto_corr_max_cck_mrc;
  710. u16 auto_corr_min_cck;
  711. u16 auto_corr_min_cck_mrc;
  712. u16 barker_corr_th_min;
  713. u16 barker_corr_th_min_mrc;
  714. u16 nrg_th_cca;
  715. };
  716. #define KELVIN_TO_CELSIUS(x) ((x)-273)
  717. #define CELSIUS_TO_KELVIN(x) ((x)+273)
  718. /**
  719. * struct il_hw_params
  720. * @bcast_id: f/w broadcast station ID
  721. * @max_txq_num: Max # Tx queues supported
  722. * @dma_chnl_num: Number of Tx DMA/FIFO channels
  723. * @scd_bc_tbls_size: size of scheduler byte count tables
  724. * @tfd_size: TFD size
  725. * @tx/rx_chains_num: Number of TX/RX chains
  726. * @valid_tx/rx_ant: usable antennas
  727. * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
  728. * @max_rxq_log: Log-base-2 of max_rxq_size
  729. * @rx_page_order: Rx buffer page order
  730. * @rx_wrt_ptr_reg: FH{39}_RSCSR_CHNL0_WPTR
  731. * @max_stations:
  732. * @ht40_channel: is 40MHz width possible in band 2.4
  733. * BIT(IEEE80211_BAND_5GHZ) BIT(IEEE80211_BAND_5GHZ)
  734. * @sw_crypto: 0 for hw, 1 for sw
  735. * @max_xxx_size: for ucode uses
  736. * @ct_kill_threshold: temperature threshold
  737. * @beacon_time_tsf_bits: number of valid tsf bits for beacon time
  738. * @struct il_sensitivity_ranges: range of sensitivity values
  739. */
  740. struct il_hw_params {
  741. u8 bcast_id;
  742. u8 max_txq_num;
  743. u8 dma_chnl_num;
  744. u16 scd_bc_tbls_size;
  745. u32 tfd_size;
  746. u8 tx_chains_num;
  747. u8 rx_chains_num;
  748. u8 valid_tx_ant;
  749. u8 valid_rx_ant;
  750. u16 max_rxq_size;
  751. u16 max_rxq_log;
  752. u32 rx_page_order;
  753. u32 rx_wrt_ptr_reg;
  754. u8 max_stations;
  755. u8 ht40_channel;
  756. u8 max_beacon_itrvl; /* in 1024 ms */
  757. u32 max_inst_size;
  758. u32 max_data_size;
  759. u32 max_bsm_size;
  760. u32 ct_kill_threshold; /* value in hw-dependent units */
  761. u16 beacon_time_tsf_bits;
  762. const struct il_sensitivity_ranges *sens;
  763. };
  764. /******************************************************************************
  765. *
  766. * Functions implemented in core module which are forward declared here
  767. * for use by iwl-[4-5].c
  768. *
  769. * NOTE: The implementation of these functions are not hardware specific
  770. * which is why they are in the core module files.
  771. *
  772. * Naming convention --
  773. * il_ <-- Is part of iwlwifi
  774. * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
  775. * il4965_bg_ <-- Called from work queue context
  776. * il4965_mac_ <-- mac80211 callback
  777. *
  778. ****************************************************************************/
  779. extern void il4965_update_chain_flags(struct il_priv *il);
  780. extern const u8 il_bcast_addr[ETH_ALEN];
  781. extern int il_queue_space(const struct il_queue *q);
  782. static inline int
  783. il_queue_used(const struct il_queue *q, int i)
  784. {
  785. return q->write_ptr >= q->read_ptr ? (i >= q->read_ptr &&
  786. i < q->write_ptr) : !(i <
  787. q->read_ptr
  788. && i >=
  789. q->
  790. write_ptr);
  791. }
  792. static inline u8
  793. il_get_cmd_idx(struct il_queue *q, u32 idx, int is_huge)
  794. {
  795. /*
  796. * This is for init calibration result and scan command which
  797. * required buffer > TFD_MAX_PAYLOAD_SIZE,
  798. * the big buffer at end of command array
  799. */
  800. if (is_huge)
  801. return q->n_win; /* must be power of 2 */
  802. /* Otherwise, use normal size buffers */
  803. return idx & (q->n_win - 1);
  804. }
  805. struct il_dma_ptr {
  806. dma_addr_t dma;
  807. void *addr;
  808. size_t size;
  809. };
  810. #define IL_OPERATION_MODE_AUTO 0
  811. #define IL_OPERATION_MODE_HT_ONLY 1
  812. #define IL_OPERATION_MODE_MIXED 2
  813. #define IL_OPERATION_MODE_20MHZ 3
  814. #define IL_TX_CRC_SIZE 4
  815. #define IL_TX_DELIMITER_SIZE 4
  816. #define TX_POWER_IL_ILLEGAL_VOLTAGE -10000
  817. /* Sensitivity and chain noise calibration */
  818. #define INITIALIZATION_VALUE 0xFFFF
  819. #define IL4965_CAL_NUM_BEACONS 20
  820. #define IL_CAL_NUM_BEACONS 16
  821. #define MAXIMUM_ALLOWED_PATHLOSS 15
  822. #define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
  823. #define MAX_FA_OFDM 50
  824. #define MIN_FA_OFDM 5
  825. #define MAX_FA_CCK 50
  826. #define MIN_FA_CCK 5
  827. #define AUTO_CORR_STEP_OFDM 1
  828. #define AUTO_CORR_STEP_CCK 3
  829. #define AUTO_CORR_MAX_TH_CCK 160
  830. #define NRG_DIFF 2
  831. #define NRG_STEP_CCK 2
  832. #define NRG_MARGIN 8
  833. #define MAX_NUMBER_CCK_NO_FA 100
  834. #define AUTO_CORR_CCK_MIN_VAL_DEF (125)
  835. #define CHAIN_A 0
  836. #define CHAIN_B 1
  837. #define CHAIN_C 2
  838. #define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
  839. #define ALL_BAND_FILTER 0xFF00
  840. #define IN_BAND_FILTER 0xFF
  841. #define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
  842. #define NRG_NUM_PREV_STAT_L 20
  843. #define NUM_RX_CHAINS 3
  844. enum il4965_false_alarm_state {
  845. IL_FA_TOO_MANY = 0,
  846. IL_FA_TOO_FEW = 1,
  847. IL_FA_GOOD_RANGE = 2,
  848. };
  849. enum il4965_chain_noise_state {
  850. IL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
  851. IL_CHAIN_NOISE_ACCUMULATE,
  852. IL_CHAIN_NOISE_CALIBRATED,
  853. IL_CHAIN_NOISE_DONE,
  854. };
  855. enum il4965_calib_enabled_state {
  856. IL_CALIB_DISABLED = 0, /* must be 0 */
  857. IL_CALIB_ENABLED = 1,
  858. };
  859. /*
  860. * enum il_calib
  861. * defines the order in which results of initial calibrations
  862. * should be sent to the runtime uCode
  863. */
  864. enum il_calib {
  865. IL_CALIB_MAX,
  866. };
  867. /* Opaque calibration results */
  868. struct il_calib_result {
  869. void *buf;
  870. size_t buf_len;
  871. };
  872. enum ucode_type {
  873. UCODE_NONE = 0,
  874. UCODE_INIT,
  875. UCODE_RT
  876. };
  877. /* Sensitivity calib data */
  878. struct il_sensitivity_data {
  879. u32 auto_corr_ofdm;
  880. u32 auto_corr_ofdm_mrc;
  881. u32 auto_corr_ofdm_x1;
  882. u32 auto_corr_ofdm_mrc_x1;
  883. u32 auto_corr_cck;
  884. u32 auto_corr_cck_mrc;
  885. u32 last_bad_plcp_cnt_ofdm;
  886. u32 last_fa_cnt_ofdm;
  887. u32 last_bad_plcp_cnt_cck;
  888. u32 last_fa_cnt_cck;
  889. u32 nrg_curr_state;
  890. u32 nrg_prev_state;
  891. u32 nrg_value[10];
  892. u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
  893. u32 nrg_silence_ref;
  894. u32 nrg_energy_idx;
  895. u32 nrg_silence_idx;
  896. u32 nrg_th_cck;
  897. s32 nrg_auto_corr_silence_diff;
  898. u32 num_in_cck_no_fa;
  899. u32 nrg_th_ofdm;
  900. u16 barker_corr_th_min;
  901. u16 barker_corr_th_min_mrc;
  902. u16 nrg_th_cca;
  903. };
  904. /* Chain noise (differential Rx gain) calib data */
  905. struct il_chain_noise_data {
  906. u32 active_chains;
  907. u32 chain_noise_a;
  908. u32 chain_noise_b;
  909. u32 chain_noise_c;
  910. u32 chain_signal_a;
  911. u32 chain_signal_b;
  912. u32 chain_signal_c;
  913. u16 beacon_count;
  914. u8 disconn_array[NUM_RX_CHAINS];
  915. u8 delta_gain_code[NUM_RX_CHAINS];
  916. u8 radio_write;
  917. u8 state;
  918. };
  919. #define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
  920. #define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
  921. #define IL_TRAFFIC_ENTRIES (256)
  922. #define IL_TRAFFIC_ENTRY_SIZE (64)
  923. enum {
  924. MEASUREMENT_READY = (1 << 0),
  925. MEASUREMENT_ACTIVE = (1 << 1),
  926. };
  927. /* interrupt stats */
  928. struct isr_stats {
  929. u32 hw;
  930. u32 sw;
  931. u32 err_code;
  932. u32 sch;
  933. u32 alive;
  934. u32 rfkill;
  935. u32 ctkill;
  936. u32 wakeup;
  937. u32 rx;
  938. u32 handlers[IL_CN_MAX];
  939. u32 tx;
  940. u32 unhandled;
  941. };
  942. /* management stats */
  943. enum il_mgmt_stats {
  944. MANAGEMENT_ASSOC_REQ = 0,
  945. MANAGEMENT_ASSOC_RESP,
  946. MANAGEMENT_REASSOC_REQ,
  947. MANAGEMENT_REASSOC_RESP,
  948. MANAGEMENT_PROBE_REQ,
  949. MANAGEMENT_PROBE_RESP,
  950. MANAGEMENT_BEACON,
  951. MANAGEMENT_ATIM,
  952. MANAGEMENT_DISASSOC,
  953. MANAGEMENT_AUTH,
  954. MANAGEMENT_DEAUTH,
  955. MANAGEMENT_ACTION,
  956. MANAGEMENT_MAX,
  957. };
  958. /* control stats */
  959. enum il_ctrl_stats {
  960. CONTROL_BACK_REQ = 0,
  961. CONTROL_BACK,
  962. CONTROL_PSPOLL,
  963. CONTROL_RTS,
  964. CONTROL_CTS,
  965. CONTROL_ACK,
  966. CONTROL_CFEND,
  967. CONTROL_CFENDACK,
  968. CONTROL_MAX,
  969. };
  970. struct traffic_stats {
  971. #ifdef CONFIG_IWLEGACY_DEBUGFS
  972. u32 mgmt[MANAGEMENT_MAX];
  973. u32 ctrl[CONTROL_MAX];
  974. u32 data_cnt;
  975. u64 data_bytes;
  976. #endif
  977. };
  978. /*
  979. * host interrupt timeout value
  980. * used with setting interrupt coalescing timer
  981. * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
  982. *
  983. * default interrupt coalescing timer is 64 x 32 = 2048 usecs
  984. * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs
  985. */
  986. #define IL_HOST_INT_TIMEOUT_MAX (0xFF)
  987. #define IL_HOST_INT_TIMEOUT_DEF (0x40)
  988. #define IL_HOST_INT_TIMEOUT_MIN (0x0)
  989. #define IL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF)
  990. #define IL_HOST_INT_CALIB_TIMEOUT_DEF (0x10)
  991. #define IL_HOST_INT_CALIB_TIMEOUT_MIN (0x0)
  992. #define IL_DELAY_NEXT_FORCE_FW_RELOAD (HZ*5)
  993. /* TX queue watchdog timeouts in mSecs */
  994. #define IL_DEF_WD_TIMEOUT (2000)
  995. #define IL_LONG_WD_TIMEOUT (10000)
  996. #define IL_MAX_WD_TIMEOUT (120000)
  997. struct il_force_reset {
  998. int reset_request_count;
  999. int reset_success_count;
  1000. int reset_reject_count;
  1001. unsigned long reset_duration;
  1002. unsigned long last_force_reset_jiffies;
  1003. };
  1004. /* extend beacon time format bit shifting */
  1005. /*
  1006. * for _3945 devices
  1007. * bits 31:24 - extended
  1008. * bits 23:0 - interval
  1009. */
  1010. #define IL3945_EXT_BEACON_TIME_POS 24
  1011. /*
  1012. * for _4965 devices
  1013. * bits 31:22 - extended
  1014. * bits 21:0 - interval
  1015. */
  1016. #define IL4965_EXT_BEACON_TIME_POS 22
  1017. struct il_rxon_context {
  1018. struct ieee80211_vif *vif;
  1019. const u8 *ac_to_queue;
  1020. /*
  1021. * We could use the vif to indicate active, but we
  1022. * also need it to be active during disabling when
  1023. * we already removed the vif for type setting.
  1024. */
  1025. bool always_active, is_active;
  1026. };
  1027. struct il_power_mgr {
  1028. struct il_powertable_cmd sleep_cmd;
  1029. struct il_powertable_cmd sleep_cmd_next;
  1030. int debug_sleep_level_override;
  1031. bool pci_pm;
  1032. };
  1033. struct il_priv {
  1034. /* ieee device used by generic ieee processing code */
  1035. struct ieee80211_hw *hw;
  1036. struct ieee80211_channel *ieee_channels;
  1037. struct ieee80211_rate *ieee_rates;
  1038. struct il_cfg *cfg;
  1039. /* temporary frame storage list */
  1040. struct list_head free_frames;
  1041. int frames_count;
  1042. enum ieee80211_band band;
  1043. int alloc_rxb_page;
  1044. void (*handlers[IL_CN_MAX]) (struct il_priv *il,
  1045. struct il_rx_buf *rxb);
  1046. struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
  1047. /* spectrum measurement report caching */
  1048. struct il_spectrum_notification measure_report;
  1049. u8 measurement_status;
  1050. /* ucode beacon time */
  1051. u32 ucode_beacon_time;
  1052. int missed_beacon_threshold;
  1053. /* track IBSS manager (last beacon) status */
  1054. u32 ibss_manager;
  1055. /* force reset */
  1056. struct il_force_reset force_reset;
  1057. /* we allocate array of il_channel_info for NIC's valid channels.
  1058. * Access via channel # using indirect idx array */
  1059. struct il_channel_info *channel_info; /* channel info array */
  1060. u8 channel_count; /* # of channels */
  1061. /* thermal calibration */
  1062. s32 temperature; /* degrees Kelvin */
  1063. s32 last_temperature;
  1064. /* init calibration results */
  1065. struct il_calib_result calib_results[IL_CALIB_MAX];
  1066. /* Scan related variables */
  1067. unsigned long scan_start;
  1068. unsigned long scan_start_tsf;
  1069. void *scan_cmd;
  1070. enum ieee80211_band scan_band;
  1071. struct cfg80211_scan_request *scan_request;
  1072. struct ieee80211_vif *scan_vif;
  1073. u8 scan_tx_ant[IEEE80211_NUM_BANDS];
  1074. u8 mgmt_tx_ant;
  1075. /* spinlock */
  1076. spinlock_t lock; /* protect general shared data */
  1077. spinlock_t hcmd_lock; /* protect hcmd */
  1078. spinlock_t reg_lock; /* protect hw register access */
  1079. struct mutex mutex;
  1080. /* basic pci-network driver stuff */
  1081. struct pci_dev *pci_dev;
  1082. /* pci hardware address support */
  1083. void __iomem *hw_base;
  1084. u32 hw_rev;
  1085. u32 hw_wa_rev;
  1086. u8 rev_id;
  1087. /* command queue number */
  1088. u8 cmd_queue;
  1089. /* max number of station keys */
  1090. u8 sta_key_max_num;
  1091. /* EEPROM MAC addresses */
  1092. struct mac_address addresses[1];
  1093. /* uCode images, save to reload in case of failure */
  1094. int fw_idx; /* firmware we're trying to load */
  1095. u32 ucode_ver; /* version of ucode, copy of
  1096. il_ucode.ver */
  1097. struct fw_desc ucode_code; /* runtime inst */
  1098. struct fw_desc ucode_data; /* runtime data original */
  1099. struct fw_desc ucode_data_backup; /* runtime data save/restore */
  1100. struct fw_desc ucode_init; /* initialization inst */
  1101. struct fw_desc ucode_init_data; /* initialization data */
  1102. struct fw_desc ucode_boot; /* bootstrap inst */
  1103. enum ucode_type ucode_type;
  1104. u8 ucode_write_complete; /* the image write is complete */
  1105. char firmware_name[25];
  1106. struct il_rxon_context ctx;
  1107. struct il_qos_info qos_data;
  1108. struct {
  1109. bool enabled;
  1110. bool is_40mhz;
  1111. bool non_gf_sta_present;
  1112. u8 protection;
  1113. u8 extension_chan_offset;
  1114. } ht;
  1115. /*
  1116. * We declare this const so it can only be
  1117. * changed via explicit cast within the
  1118. * routines that actually update the physical
  1119. * hardware.
  1120. */
  1121. const struct il_rxon_cmd active;
  1122. struct il_rxon_cmd staging;
  1123. struct il_rxon_time_cmd timing;
  1124. __le16 switch_channel;
  1125. /* 1st responses from initialize and runtime uCode images.
  1126. * _4965's initialize alive response contains some calibration data. */
  1127. struct il_init_alive_resp card_alive_init;
  1128. struct il_alive_resp card_alive;
  1129. u16 active_rate;
  1130. u8 start_calib;
  1131. struct il_sensitivity_data sensitivity_data;
  1132. struct il_chain_noise_data chain_noise_data;
  1133. __le16 sensitivity_tbl[HD_TBL_SIZE];
  1134. struct il_ht_config current_ht_config;
  1135. /* Rate scaling data */
  1136. u8 retry_rate;
  1137. wait_queue_head_t wait_command_queue;
  1138. int activity_timer_active;
  1139. /* Rx and Tx DMA processing queues */
  1140. struct il_rx_queue rxq;
  1141. struct il_tx_queue *txq;
  1142. unsigned long txq_ctx_active_msk;
  1143. struct il_dma_ptr kw; /* keep warm address */
  1144. struct il_dma_ptr scd_bc_tbls;
  1145. u32 scd_base_addr; /* scheduler sram base address */
  1146. unsigned long status;
  1147. /* counts mgmt, ctl, and data packets */
  1148. struct traffic_stats tx_stats;
  1149. struct traffic_stats rx_stats;
  1150. /* counts interrupts */
  1151. struct isr_stats isr_stats;
  1152. struct il_power_mgr power_data;
  1153. /* context information */
  1154. u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */
  1155. /* station table variables */
  1156. /* Note: if lock and sta_lock are needed, lock must be acquired first */
  1157. spinlock_t sta_lock;
  1158. int num_stations;
  1159. struct il_station_entry stations[IL_STATION_COUNT];
  1160. unsigned long ucode_key_table;
  1161. /* queue refcounts */
  1162. #define IL_MAX_HW_QUEUES 32
  1163. unsigned long queue_stopped[BITS_TO_LONGS(IL_MAX_HW_QUEUES)];
  1164. /* for each AC */
  1165. atomic_t queue_stop_count[4];
  1166. /* Indication if ieee80211_ops->open has been called */
  1167. u8 is_open;
  1168. u8 mac80211_registered;
  1169. /* eeprom -- this is in the card's little endian byte order */
  1170. u8 *eeprom;
  1171. struct il_eeprom_calib_info *calib_info;
  1172. enum nl80211_iftype iw_mode;
  1173. /* Last Rx'd beacon timestamp */
  1174. u64 timestamp;
  1175. union {
  1176. #if defined(CONFIG_IWL3945) || defined(CONFIG_IWL3945_MODULE)
  1177. struct {
  1178. void *shared_virt;
  1179. dma_addr_t shared_phys;
  1180. struct delayed_work thermal_periodic;
  1181. struct delayed_work rfkill_poll;
  1182. struct il3945_notif_stats stats;
  1183. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1184. struct il3945_notif_stats accum_stats;
  1185. struct il3945_notif_stats delta_stats;
  1186. struct il3945_notif_stats max_delta;
  1187. #endif
  1188. u32 sta_supp_rates;
  1189. int last_rx_rssi; /* From Rx packet stats */
  1190. /* Rx'd packet timing information */
  1191. u32 last_beacon_time;
  1192. u64 last_tsf;
  1193. /*
  1194. * each calibration channel group in the
  1195. * EEPROM has a derived clip setting for
  1196. * each rate.
  1197. */
  1198. const struct il3945_clip_group clip_groups[5];
  1199. } _3945;
  1200. #endif
  1201. #if defined(CONFIG_IWL4965) || defined(CONFIG_IWL4965_MODULE)
  1202. struct {
  1203. struct il_rx_phy_res last_phy_res;
  1204. bool last_phy_res_valid;
  1205. struct completion firmware_loading_complete;
  1206. /*
  1207. * chain noise reset and gain commands are the
  1208. * two extra calibration commands follows the standard
  1209. * phy calibration commands
  1210. */
  1211. u8 phy_calib_chain_noise_reset_cmd;
  1212. u8 phy_calib_chain_noise_gain_cmd;
  1213. u8 key_mapping_keys;
  1214. struct il_wep_key wep_keys[WEP_KEYS_MAX];
  1215. struct il_notif_stats stats;
  1216. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1217. struct il_notif_stats accum_stats;
  1218. struct il_notif_stats delta_stats;
  1219. struct il_notif_stats max_delta;
  1220. #endif
  1221. } _4965;
  1222. #endif
  1223. };
  1224. struct il_hw_params hw_params;
  1225. u32 inta_mask;
  1226. struct workqueue_struct *workqueue;
  1227. struct work_struct restart;
  1228. struct work_struct scan_completed;
  1229. struct work_struct rx_replenish;
  1230. struct work_struct abort_scan;
  1231. struct il_rxon_context *beacon_ctx;
  1232. struct sk_buff *beacon_skb;
  1233. struct work_struct tx_flush;
  1234. struct tasklet_struct irq_tasklet;
  1235. struct delayed_work init_alive_start;
  1236. struct delayed_work alive_start;
  1237. struct delayed_work scan_check;
  1238. /* TX Power */
  1239. s8 tx_power_user_lmt;
  1240. s8 tx_power_device_lmt;
  1241. s8 tx_power_next;
  1242. #ifdef CONFIG_IWLEGACY_DEBUG
  1243. /* debugging info */
  1244. u32 debug_level; /* per device debugging will override global
  1245. il_debug_level if set */
  1246. #endif /* CONFIG_IWLEGACY_DEBUG */
  1247. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1248. /* debugfs */
  1249. u16 tx_traffic_idx;
  1250. u16 rx_traffic_idx;
  1251. u8 *tx_traffic;
  1252. u8 *rx_traffic;
  1253. struct dentry *debugfs_dir;
  1254. u32 dbgfs_sram_offset, dbgfs_sram_len;
  1255. bool disable_ht40;
  1256. #endif /* CONFIG_IWLEGACY_DEBUGFS */
  1257. struct work_struct txpower_work;
  1258. u32 disable_sens_cal;
  1259. u32 disable_chain_noise_cal;
  1260. u32 disable_tx_power_cal;
  1261. struct work_struct run_time_calib_work;
  1262. struct timer_list stats_periodic;
  1263. struct timer_list watchdog;
  1264. bool hw_ready;
  1265. struct led_classdev led;
  1266. unsigned long blink_on, blink_off;
  1267. bool led_registered;
  1268. }; /*il_priv */
  1269. static inline void
  1270. il_txq_ctx_activate(struct il_priv *il, int txq_id)
  1271. {
  1272. set_bit(txq_id, &il->txq_ctx_active_msk);
  1273. }
  1274. static inline void
  1275. il_txq_ctx_deactivate(struct il_priv *il, int txq_id)
  1276. {
  1277. clear_bit(txq_id, &il->txq_ctx_active_msk);
  1278. }
  1279. static inline struct ieee80211_hdr *
  1280. il_tx_queue_get_hdr(struct il_priv *il, int txq_id, int idx)
  1281. {
  1282. if (il->txq[txq_id].txb[idx].skb)
  1283. return (struct ieee80211_hdr *)il->txq[txq_id].txb[idx].skb->
  1284. data;
  1285. return NULL;
  1286. }
  1287. static inline struct il_rxon_context *
  1288. il_rxon_ctx_from_vif(struct ieee80211_vif *vif)
  1289. {
  1290. struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
  1291. return vif_priv->ctx;
  1292. }
  1293. #define for_each_context(il, _ctx) \
  1294. for (_ctx = &il->ctx; _ctx == &il->ctx; _ctx++)
  1295. static inline int
  1296. il_is_associated(struct il_priv *il)
  1297. {
  1298. return (il->active.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
  1299. }
  1300. static inline int
  1301. il_is_any_associated(struct il_priv *il)
  1302. {
  1303. return il_is_associated(il);
  1304. }
  1305. static inline int
  1306. il_is_channel_valid(const struct il_channel_info *ch_info)
  1307. {
  1308. if (ch_info == NULL)
  1309. return 0;
  1310. return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
  1311. }
  1312. static inline int
  1313. il_is_channel_radar(const struct il_channel_info *ch_info)
  1314. {
  1315. return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
  1316. }
  1317. static inline u8
  1318. il_is_channel_a_band(const struct il_channel_info *ch_info)
  1319. {
  1320. return ch_info->band == IEEE80211_BAND_5GHZ;
  1321. }
  1322. static inline int
  1323. il_is_channel_passive(const struct il_channel_info *ch)
  1324. {
  1325. return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
  1326. }
  1327. static inline int
  1328. il_is_channel_ibss(const struct il_channel_info *ch)
  1329. {
  1330. return (ch->flags & EEPROM_CHANNEL_IBSS) ? 1 : 0;
  1331. }
  1332. static inline void
  1333. __il_free_pages(struct il_priv *il, struct page *page)
  1334. {
  1335. __free_pages(page, il->hw_params.rx_page_order);
  1336. il->alloc_rxb_page--;
  1337. }
  1338. static inline void
  1339. il_free_pages(struct il_priv *il, unsigned long page)
  1340. {
  1341. free_pages(page, il->hw_params.rx_page_order);
  1342. il->alloc_rxb_page--;
  1343. }
  1344. #define IWLWIFI_VERSION "in-tree:"
  1345. #define DRV_COPYRIGHT "Copyright(c) 2003-2011 Intel Corporation"
  1346. #define DRV_AUTHOR "<ilw@linux.intel.com>"
  1347. #define IL_PCI_DEVICE(dev, subdev, cfg) \
  1348. .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
  1349. .subvendor = PCI_ANY_ID, .subdevice = (subdev), \
  1350. .driver_data = (kernel_ulong_t)&(cfg)
  1351. #define TIME_UNIT 1024
  1352. #define IL_SKU_G 0x1
  1353. #define IL_SKU_A 0x2
  1354. #define IL_SKU_N 0x8
  1355. #define IL_CMD(x) case x: return #x
  1356. /* Size of one Rx buffer in host DRAM */
  1357. #define IL_RX_BUF_SIZE_3K (3 * 1000) /* 3945 only */
  1358. #define IL_RX_BUF_SIZE_4K (4 * 1024)
  1359. #define IL_RX_BUF_SIZE_8K (8 * 1024)
  1360. struct il_hcmd_ops {
  1361. int (*rxon_assoc) (struct il_priv *il, struct il_rxon_context *ctx);
  1362. int (*commit_rxon) (struct il_priv *il, struct il_rxon_context *ctx);
  1363. void (*set_rxon_chain) (struct il_priv *il,
  1364. struct il_rxon_context *ctx);
  1365. };
  1366. struct il_hcmd_utils_ops {
  1367. u16(*get_hcmd_size) (u8 cmd_id, u16 len);
  1368. u16(*build_addsta_hcmd) (const struct il_addsta_cmd *cmd, u8 *data);
  1369. int (*request_scan) (struct il_priv *il, struct ieee80211_vif *vif);
  1370. void (*post_scan) (struct il_priv *il);
  1371. };
  1372. struct il_apm_ops {
  1373. int (*init) (struct il_priv *il);
  1374. void (*config) (struct il_priv *il);
  1375. };
  1376. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1377. struct il_debugfs_ops {
  1378. ssize_t(*rx_stats_read) (struct file *file, char __user *user_buf,
  1379. size_t count, loff_t *ppos);
  1380. ssize_t(*tx_stats_read) (struct file *file, char __user *user_buf,
  1381. size_t count, loff_t *ppos);
  1382. ssize_t(*general_stats_read) (struct file *file,
  1383. char __user *user_buf, size_t count,
  1384. loff_t *ppos);
  1385. };
  1386. #endif
  1387. struct il_temp_ops {
  1388. void (*temperature) (struct il_priv *il);
  1389. };
  1390. struct il_lib_ops {
  1391. /* set hw dependent parameters */
  1392. int (*set_hw_params) (struct il_priv *il);
  1393. /* Handling TX */
  1394. void (*txq_update_byte_cnt_tbl) (struct il_priv *il,
  1395. struct il_tx_queue *txq,
  1396. u16 byte_cnt);
  1397. int (*txq_attach_buf_to_tfd) (struct il_priv *il,
  1398. struct il_tx_queue *txq, dma_addr_t addr,
  1399. u16 len, u8 reset, u8 pad);
  1400. void (*txq_free_tfd) (struct il_priv *il, struct il_tx_queue *txq);
  1401. int (*txq_init) (struct il_priv *il, struct il_tx_queue *txq);
  1402. /* setup Rx handler */
  1403. void (*handler_setup) (struct il_priv *il);
  1404. /* alive notification after init uCode load */
  1405. void (*init_alive_start) (struct il_priv *il);
  1406. /* check validity of rtc data address */
  1407. int (*is_valid_rtc_data_addr) (u32 addr);
  1408. /* 1st ucode load */
  1409. int (*load_ucode) (struct il_priv *il);
  1410. void (*dump_nic_error_log) (struct il_priv *il);
  1411. int (*dump_fh) (struct il_priv *il, char **buf, bool display);
  1412. int (*set_channel_switch) (struct il_priv *il,
  1413. struct ieee80211_channel_switch *ch_switch);
  1414. /* power management */
  1415. struct il_apm_ops apm_ops;
  1416. /* power */
  1417. int (*send_tx_power) (struct il_priv *il);
  1418. void (*update_chain_flags) (struct il_priv *il);
  1419. /* eeprom operations */
  1420. struct il_eeprom_ops eeprom_ops;
  1421. /* temperature */
  1422. struct il_temp_ops temp_ops;
  1423. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1424. struct il_debugfs_ops debugfs_ops;
  1425. #endif
  1426. };
  1427. struct il_led_ops {
  1428. int (*cmd) (struct il_priv *il, struct il_led_cmd *led_cmd);
  1429. };
  1430. struct il_legacy_ops {
  1431. void (*post_associate) (struct il_priv *il);
  1432. void (*config_ap) (struct il_priv *il);
  1433. /* station management */
  1434. int (*update_bcast_stations) (struct il_priv *il);
  1435. int (*manage_ibss_station) (struct il_priv *il,
  1436. struct ieee80211_vif *vif, bool add);
  1437. };
  1438. struct il_ops {
  1439. const struct il_lib_ops *lib;
  1440. const struct il_hcmd_ops *hcmd;
  1441. const struct il_hcmd_utils_ops *utils;
  1442. const struct il_led_ops *led;
  1443. const struct il_nic_ops *nic;
  1444. const struct il_legacy_ops *legacy;
  1445. const struct ieee80211_ops *ieee80211_ops;
  1446. };
  1447. struct il_mod_params {
  1448. int sw_crypto; /* def: 0 = using hardware encryption */
  1449. int disable_hw_scan; /* def: 0 = use h/w scan */
  1450. int num_of_queues; /* def: HW dependent */
  1451. int disable_11n; /* def: 0 = 11n capabilities enabled */
  1452. int amsdu_size_8K; /* def: 1 = enable 8K amsdu size */
  1453. int antenna; /* def: 0 = both antennas (use diversity) */
  1454. int restart_fw; /* def: 1 = restart firmware */
  1455. };
  1456. /*
  1457. * @led_compensation: compensate on the led on/off time per HW according
  1458. * to the deviation to achieve the desired led frequency.
  1459. * The detail algorithm is described in common.c
  1460. * @chain_noise_num_beacons: number of beacons used to compute chain noise
  1461. * @wd_timeout: TX queues watchdog timeout
  1462. * @temperature_kelvin: temperature report by uCode in kelvin
  1463. * @ucode_tracing: support ucode continuous tracing
  1464. * @sensitivity_calib_by_driver: driver has the capability to perform
  1465. * sensitivity calibration operation
  1466. * @chain_noise_calib_by_driver: driver has the capability to perform
  1467. * chain noise calibration operation
  1468. */
  1469. struct il_base_params {
  1470. int eeprom_size;
  1471. int num_of_queues; /* def: HW dependent */
  1472. int num_of_ampdu_queues; /* def: HW dependent */
  1473. /* for il_apm_init() */
  1474. u32 pll_cfg_val;
  1475. bool set_l0s;
  1476. bool use_bsm;
  1477. u16 led_compensation;
  1478. int chain_noise_num_beacons;
  1479. unsigned int wd_timeout;
  1480. bool temperature_kelvin;
  1481. const bool ucode_tracing;
  1482. const bool sensitivity_calib_by_driver;
  1483. const bool chain_noise_calib_by_driver;
  1484. };
  1485. #define IL_LED_SOLID 11
  1486. #define IL_DEF_LED_INTRVL cpu_to_le32(1000)
  1487. #define IL_LED_ACTIVITY (0<<1)
  1488. #define IL_LED_LINK (1<<1)
  1489. /*
  1490. * LED mode
  1491. * IL_LED_DEFAULT: use device default
  1492. * IL_LED_RF_STATE: turn LED on/off based on RF state
  1493. * LED ON = RF ON
  1494. * LED OFF = RF OFF
  1495. * IL_LED_BLINK: adjust led blink rate based on blink table
  1496. */
  1497. enum il_led_mode {
  1498. IL_LED_DEFAULT,
  1499. IL_LED_RF_STATE,
  1500. IL_LED_BLINK,
  1501. };
  1502. void il_leds_init(struct il_priv *il);
  1503. void il_leds_exit(struct il_priv *il);
  1504. /**
  1505. * struct il_cfg
  1506. * @fw_name_pre: Firmware filename prefix. The api version and extension
  1507. * (.ucode) will be added to filename before loading from disk. The
  1508. * filename is constructed as fw_name_pre<api>.ucode.
  1509. * @ucode_api_max: Highest version of uCode API supported by driver.
  1510. * @ucode_api_min: Lowest version of uCode API supported by driver.
  1511. * @scan_antennas: available antenna for scan operation
  1512. * @led_mode: 0=blinking, 1=On(RF On)/Off(RF Off)
  1513. *
  1514. * We enable the driver to be backward compatible wrt API version. The
  1515. * driver specifies which APIs it supports (with @ucode_api_max being the
  1516. * highest and @ucode_api_min the lowest). Firmware will only be loaded if
  1517. * it has a supported API version. The firmware's API version will be
  1518. * stored in @il_priv, enabling the driver to make runtime changes based
  1519. * on firmware version used.
  1520. *
  1521. * For example,
  1522. * if (IL_UCODE_API(il->ucode_ver) >= 2) {
  1523. * Driver interacts with Firmware API version >= 2.
  1524. * } else {
  1525. * Driver interacts with Firmware API version 1.
  1526. * }
  1527. *
  1528. * The ideal usage of this infrastructure is to treat a new ucode API
  1529. * release as a new hardware revision. That is, through utilizing the
  1530. * il_hcmd_utils_ops etc. we accommodate different command structures
  1531. * and flows between hardware versions as well as their API
  1532. * versions.
  1533. *
  1534. */
  1535. struct il_cfg {
  1536. /* params specific to an individual device within a device family */
  1537. const char *name;
  1538. const char *fw_name_pre;
  1539. const unsigned int ucode_api_max;
  1540. const unsigned int ucode_api_min;
  1541. u8 valid_tx_ant;
  1542. u8 valid_rx_ant;
  1543. unsigned int sku;
  1544. u16 eeprom_ver;
  1545. u16 eeprom_calib_ver;
  1546. const struct il_ops *ops;
  1547. /* module based parameters which can be set from modprobe cmd */
  1548. const struct il_mod_params *mod_params;
  1549. /* params not likely to change within a device family */
  1550. struct il_base_params *base_params;
  1551. /* params likely to change within a device family */
  1552. u8 scan_rx_antennas[IEEE80211_NUM_BANDS];
  1553. enum il_led_mode led_mode;
  1554. };
  1555. /***************************
  1556. * L i b *
  1557. ***************************/
  1558. struct ieee80211_hw *il_alloc_all(struct il_cfg *cfg);
  1559. int il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1560. u16 queue, const struct ieee80211_tx_queue_params *params);
  1561. int il_mac_tx_last_beacon(struct ieee80211_hw *hw);
  1562. void il_set_rxon_hwcrypto(struct il_priv *il, struct il_rxon_context *ctx,
  1563. int hw_decrypt);
  1564. int il_check_rxon_cmd(struct il_priv *il, struct il_rxon_context *ctx);
  1565. int il_full_rxon_required(struct il_priv *il, struct il_rxon_context *ctx);
  1566. int il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
  1567. struct il_rxon_context *ctx);
  1568. void il_set_flags_for_band(struct il_priv *il, struct il_rxon_context *ctx,
  1569. enum ieee80211_band band, struct ieee80211_vif *vif);
  1570. u8 il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band);
  1571. void il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf);
  1572. bool il_is_ht40_tx_allowed(struct il_priv *il, struct il_rxon_context *ctx,
  1573. struct ieee80211_sta_ht_cap *ht_cap);
  1574. void il_connection_init_rx_config(struct il_priv *il,
  1575. struct il_rxon_context *ctx);
  1576. void il_set_rate(struct il_priv *il);
  1577. int il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr,
  1578. u32 decrypt_res, struct ieee80211_rx_status *stats);
  1579. void il_irq_handle_error(struct il_priv *il);
  1580. int il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  1581. void il_mac_remove_interface(struct ieee80211_hw *hw,
  1582. struct ieee80211_vif *vif);
  1583. int il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1584. enum nl80211_iftype newtype, bool newp2p);
  1585. int il_alloc_txq_mem(struct il_priv *il);
  1586. void il_txq_mem(struct il_priv *il);
  1587. #ifdef CONFIG_IWLEGACY_DEBUGFS
  1588. int il_alloc_traffic_mem(struct il_priv *il);
  1589. void il_free_traffic_mem(struct il_priv *il);
  1590. void il_reset_traffic_log(struct il_priv *il);
  1591. void il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
  1592. struct ieee80211_hdr *header);
  1593. void il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
  1594. struct ieee80211_hdr *header);
  1595. const char *il_get_mgmt_string(int cmd);
  1596. const char *il_get_ctrl_string(int cmd);
  1597. void il_clear_traffic_stats(struct il_priv *il);
  1598. void il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len);
  1599. #else
  1600. static inline int
  1601. il_alloc_traffic_mem(struct il_priv *il)
  1602. {
  1603. return 0;
  1604. }
  1605. static inline void
  1606. il_free_traffic_mem(struct il_priv *il)
  1607. {
  1608. }
  1609. static inline void
  1610. il_reset_traffic_log(struct il_priv *il)
  1611. {
  1612. }
  1613. static inline void
  1614. il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
  1615. struct ieee80211_hdr *header)
  1616. {
  1617. }
  1618. static inline void
  1619. il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
  1620. struct ieee80211_hdr *header)
  1621. {
  1622. }
  1623. static inline void
  1624. il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
  1625. {
  1626. }
  1627. #endif
  1628. /*****************************************************
  1629. * RX handlers.
  1630. * **************************************************/
  1631. void il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb);
  1632. void il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb);
  1633. void il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb);
  1634. /*****************************************************
  1635. * RX
  1636. ******************************************************/
  1637. void il_cmd_queue_unmap(struct il_priv *il);
  1638. void il_cmd_queue_free(struct il_priv *il);
  1639. int il_rx_queue_alloc(struct il_priv *il);
  1640. void il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q);
  1641. int il_rx_queue_space(const struct il_rx_queue *q);
  1642. void il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb);
  1643. /* Handlers */
  1644. void il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb);
  1645. void il_recover_from_stats(struct il_priv *il, struct il_rx_pkt *pkt);
  1646. void il_chswitch_done(struct il_priv *il, bool is_success);
  1647. void il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb);
  1648. /* TX helpers */
  1649. /*****************************************************
  1650. * TX
  1651. ******************************************************/
  1652. void il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq);
  1653. int il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
  1654. u32 txq_id);
  1655. void il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq,
  1656. int slots_num, u32 txq_id);
  1657. void il_tx_queue_unmap(struct il_priv *il, int txq_id);
  1658. void il_tx_queue_free(struct il_priv *il, int txq_id);
  1659. void il_setup_watchdog(struct il_priv *il);
  1660. /*****************************************************
  1661. * TX power
  1662. ****************************************************/
  1663. int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force);
  1664. /*******************************************************************************
  1665. * Rate
  1666. ******************************************************************************/
  1667. u8 il_get_lowest_plcp(struct il_priv *il, struct il_rxon_context *ctx);
  1668. /*******************************************************************************
  1669. * Scanning
  1670. ******************************************************************************/
  1671. void il_init_scan_params(struct il_priv *il);
  1672. int il_scan_cancel(struct il_priv *il);
  1673. int il_scan_cancel_timeout(struct il_priv *il, unsigned long ms);
  1674. void il_force_scan_end(struct il_priv *il);
  1675. int il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1676. struct cfg80211_scan_request *req);
  1677. void il_internal_short_hw_scan(struct il_priv *il);
  1678. int il_force_reset(struct il_priv *il, bool external);
  1679. u16 il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame,
  1680. const u8 *ta, const u8 *ie, int ie_len, int left);
  1681. void il_setup_rx_scan_handlers(struct il_priv *il);
  1682. u16 il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
  1683. u8 n_probes);
  1684. u16 il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band,
  1685. struct ieee80211_vif *vif);
  1686. void il_setup_scan_deferred_work(struct il_priv *il);
  1687. void il_cancel_scan_deferred_work(struct il_priv *il);
  1688. /* For faster active scanning, scan will move to the next channel if fewer than
  1689. * PLCP_QUIET_THRESH packets are heard on this channel within
  1690. * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
  1691. * time if it's a quiet channel (nothing responded to our probe, and there's
  1692. * no other traffic).
  1693. * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
  1694. #define IL_ACTIVE_QUIET_TIME cpu_to_le16(10) /* msec */
  1695. #define IL_PLCP_QUIET_THRESH cpu_to_le16(1) /* packets */
  1696. #define IL_SCAN_CHECK_WATCHDOG (HZ * 7)
  1697. /*****************************************************
  1698. * S e n d i n g H o s t C o m m a n d s *
  1699. *****************************************************/
  1700. const char *il_get_cmd_string(u8 cmd);
  1701. int __must_check il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd);
  1702. int il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd);
  1703. int __must_check il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len,
  1704. const void *data);
  1705. int il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data,
  1706. void (*callback) (struct il_priv *il,
  1707. struct il_device_cmd *cmd,
  1708. struct il_rx_pkt *pkt));
  1709. int il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd);
  1710. /*****************************************************
  1711. * PCI *
  1712. *****************************************************/
  1713. static inline u16
  1714. il_pcie_link_ctl(struct il_priv *il)
  1715. {
  1716. int pos;
  1717. u16 pci_lnk_ctl;
  1718. pos = pci_pcie_cap(il->pci_dev);
  1719. pci_read_config_word(il->pci_dev, pos + PCI_EXP_LNKCTL, &pci_lnk_ctl);
  1720. return pci_lnk_ctl;
  1721. }
  1722. void il_bg_watchdog(unsigned long data);
  1723. u32 il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval);
  1724. __le32 il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
  1725. u32 beacon_interval);
  1726. #ifdef CONFIG_PM
  1727. int il_pci_suspend(struct device *device);
  1728. int il_pci_resume(struct device *device);
  1729. extern const struct dev_pm_ops il_pm_ops;
  1730. #define IL_LEGACY_PM_OPS (&il_pm_ops)
  1731. #else /* !CONFIG_PM */
  1732. #define IL_LEGACY_PM_OPS NULL
  1733. #endif /* !CONFIG_PM */
  1734. /*****************************************************
  1735. * Error Handling Debugging
  1736. ******************************************************/
  1737. void il4965_dump_nic_error_log(struct il_priv *il);
  1738. #ifdef CONFIG_IWLEGACY_DEBUG
  1739. void il_print_rx_config_cmd(struct il_priv *il, struct il_rxon_context *ctx);
  1740. #else
  1741. static inline void
  1742. il_print_rx_config_cmd(struct il_priv *il, struct il_rxon_context *ctx)
  1743. {
  1744. }
  1745. #endif
  1746. void il_clear_isr_stats(struct il_priv *il);
  1747. /*****************************************************
  1748. * GEOS
  1749. ******************************************************/
  1750. int il_init_geos(struct il_priv *il);
  1751. void il_free_geos(struct il_priv *il);
  1752. /*************** DRIVER STATUS FUNCTIONS *****/
  1753. #define S_HCMD_ACTIVE 0 /* host command in progress */
  1754. /* 1 is unused (used to be S_HCMD_SYNC_ACTIVE) */
  1755. #define S_INT_ENABLED 2
  1756. #define S_RF_KILL_HW 3
  1757. #define S_CT_KILL 4
  1758. #define S_INIT 5
  1759. #define S_ALIVE 6
  1760. #define S_READY 7
  1761. #define S_TEMPERATURE 8
  1762. #define S_GEO_CONFIGURED 9
  1763. #define S_EXIT_PENDING 10
  1764. #define S_STATS 12
  1765. #define S_SCANNING 13
  1766. #define S_SCAN_ABORTING 14
  1767. #define S_SCAN_HW 15
  1768. #define S_POWER_PMI 16
  1769. #define S_FW_ERROR 17
  1770. #define S_CHANNEL_SWITCH_PENDING 18
  1771. static inline int
  1772. il_is_ready(struct il_priv *il)
  1773. {
  1774. /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
  1775. * set but EXIT_PENDING is not */
  1776. return test_bit(S_READY, &il->status) &&
  1777. test_bit(S_GEO_CONFIGURED, &il->status) &&
  1778. !test_bit(S_EXIT_PENDING, &il->status);
  1779. }
  1780. static inline int
  1781. il_is_alive(struct il_priv *il)
  1782. {
  1783. return test_bit(S_ALIVE, &il->status);
  1784. }
  1785. static inline int
  1786. il_is_init(struct il_priv *il)
  1787. {
  1788. return test_bit(S_INIT, &il->status);
  1789. }
  1790. static inline int
  1791. il_is_rfkill_hw(struct il_priv *il)
  1792. {
  1793. return test_bit(S_RF_KILL_HW, &il->status);
  1794. }
  1795. static inline int
  1796. il_is_rfkill(struct il_priv *il)
  1797. {
  1798. return il_is_rfkill_hw(il);
  1799. }
  1800. static inline int
  1801. il_is_ctkill(struct il_priv *il)
  1802. {
  1803. return test_bit(S_CT_KILL, &il->status);
  1804. }
  1805. static inline int
  1806. il_is_ready_rf(struct il_priv *il)
  1807. {
  1808. if (il_is_rfkill(il))
  1809. return 0;
  1810. return il_is_ready(il);
  1811. }
  1812. extern void il_send_bt_config(struct il_priv *il);
  1813. extern int il_send_stats_request(struct il_priv *il, u8 flags, bool clear);
  1814. void il_apm_stop(struct il_priv *il);
  1815. int il_apm_init(struct il_priv *il);
  1816. int il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx);
  1817. static inline int
  1818. il_send_rxon_assoc(struct il_priv *il, struct il_rxon_context *ctx)
  1819. {
  1820. return il->cfg->ops->hcmd->rxon_assoc(il, ctx);
  1821. }
  1822. static inline int
  1823. il_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx)
  1824. {
  1825. return il->cfg->ops->hcmd->commit_rxon(il, ctx);
  1826. }
  1827. static inline const struct ieee80211_supported_band *
  1828. il_get_hw_mode(struct il_priv *il, enum ieee80211_band band)
  1829. {
  1830. return il->hw->wiphy->bands[band];
  1831. }
  1832. /* mac80211 handlers */
  1833. int il_mac_config(struct ieee80211_hw *hw, u32 changed);
  1834. void il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  1835. void il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1836. struct ieee80211_bss_conf *bss_conf, u32 changes);
  1837. void il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
  1838. __le16 fc, __le32 *tx_flags);
  1839. irqreturn_t il_isr(int irq, void *data);
  1840. extern void il_set_bit(struct il_priv *p, u32 r, u32 m);
  1841. extern void il_clear_bit(struct il_priv *p, u32 r, u32 m);
  1842. extern int _il_grab_nic_access(struct il_priv *il);
  1843. extern int _il_poll_bit(struct il_priv *il, u32 addr, u32 bits, u32 mask, int timeout);
  1844. extern int il_poll_bit(struct il_priv *il, u32 addr, u32 mask, int timeout);
  1845. extern u32 il_rd_prph(struct il_priv *il, u32 reg);
  1846. extern void il_wr_prph(struct il_priv *il, u32 addr, u32 val);
  1847. extern u32 il_read_targ_mem(struct il_priv *il, u32 addr);
  1848. extern void il_write_targ_mem(struct il_priv *il, u32 addr, u32 val);
  1849. static inline void
  1850. _il_write8(struct il_priv *il, u32 ofs, u8 val)
  1851. {
  1852. iowrite8(val, il->hw_base + ofs);
  1853. }
  1854. #define il_write8(il, ofs, val) _il_write8(il, ofs, val)
  1855. static inline void
  1856. _il_wr(struct il_priv *il, u32 ofs, u32 val)
  1857. {
  1858. iowrite32(val, il->hw_base + ofs);
  1859. }
  1860. static inline u32
  1861. _il_rd(struct il_priv *il, u32 ofs)
  1862. {
  1863. return ioread32(il->hw_base + ofs);
  1864. }
  1865. static inline void
  1866. _il_clear_bit(struct il_priv *il, u32 reg, u32 mask)
  1867. {
  1868. _il_wr(il, reg, _il_rd(il, reg) & ~mask);
  1869. }
  1870. static inline void
  1871. _il_set_bit(struct il_priv *il, u32 reg, u32 mask)
  1872. {
  1873. _il_wr(il, reg, _il_rd(il, reg) | mask);
  1874. }
  1875. static inline void
  1876. _il_release_nic_access(struct il_priv *il)
  1877. {
  1878. _il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
  1879. }
  1880. static inline u32
  1881. il_rd(struct il_priv *il, u32 reg)
  1882. {
  1883. u32 value;
  1884. unsigned long reg_flags;
  1885. spin_lock_irqsave(&il->reg_lock, reg_flags);
  1886. _il_grab_nic_access(il);
  1887. value = _il_rd(il, reg);
  1888. _il_release_nic_access(il);
  1889. spin_unlock_irqrestore(&il->reg_lock, reg_flags);
  1890. return value;
  1891. }
  1892. static inline void
  1893. il_wr(struct il_priv *il, u32 reg, u32 value)
  1894. {
  1895. unsigned long reg_flags;
  1896. spin_lock_irqsave(&il->reg_lock, reg_flags);
  1897. if (!_il_grab_nic_access(il)) {
  1898. _il_wr(il, reg, value);
  1899. _il_release_nic_access(il);
  1900. }
  1901. spin_unlock_irqrestore(&il->reg_lock, reg_flags);
  1902. }
  1903. static inline u32
  1904. _il_rd_prph(struct il_priv *il, u32 reg)
  1905. {
  1906. _il_wr(il, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
  1907. rmb();
  1908. return _il_rd(il, HBUS_TARG_PRPH_RDAT);
  1909. }
  1910. static inline void
  1911. _il_wr_prph(struct il_priv *il, u32 addr, u32 val)
  1912. {
  1913. _il_wr(il, HBUS_TARG_PRPH_WADDR, ((addr & 0x0000FFFF) | (3 << 24)));
  1914. wmb();
  1915. _il_wr(il, HBUS_TARG_PRPH_WDAT, val);
  1916. }
  1917. static inline void
  1918. il_set_bits_prph(struct il_priv *il, u32 reg, u32 mask)
  1919. {
  1920. unsigned long reg_flags;
  1921. spin_lock_irqsave(&il->reg_lock, reg_flags);
  1922. _il_grab_nic_access(il);
  1923. _il_wr_prph(il, reg, (_il_rd_prph(il, reg) | mask));
  1924. _il_release_nic_access(il);
  1925. spin_unlock_irqrestore(&il->reg_lock, reg_flags);
  1926. }
  1927. static inline void
  1928. il_set_bits_mask_prph(struct il_priv *il, u32 reg, u32 bits, u32 mask)
  1929. {
  1930. unsigned long reg_flags;
  1931. spin_lock_irqsave(&il->reg_lock, reg_flags);
  1932. _il_grab_nic_access(il);
  1933. _il_wr_prph(il, reg, ((_il_rd_prph(il, reg) & mask) | bits));
  1934. _il_release_nic_access(il);
  1935. spin_unlock_irqrestore(&il->reg_lock, reg_flags);
  1936. }
  1937. static inline void
  1938. il_clear_bits_prph(struct il_priv *il, u32 reg, u32 mask)
  1939. {
  1940. unsigned long reg_flags;
  1941. u32 val;
  1942. spin_lock_irqsave(&il->reg_lock, reg_flags);
  1943. _il_grab_nic_access(il);
  1944. val = _il_rd_prph(il, reg);
  1945. _il_wr_prph(il, reg, (val & ~mask));
  1946. _il_release_nic_access(il);
  1947. spin_unlock_irqrestore(&il->reg_lock, reg_flags);
  1948. }
  1949. #define HW_KEY_DYNAMIC 0
  1950. #define HW_KEY_DEFAULT 1
  1951. #define IL_STA_DRIVER_ACTIVE BIT(0) /* driver entry is active */
  1952. #define IL_STA_UCODE_ACTIVE BIT(1) /* ucode entry is active */
  1953. #define IL_STA_UCODE_INPROGRESS BIT(2) /* ucode entry is in process of
  1954. being activated */
  1955. #define IL_STA_LOCAL BIT(3) /* station state not directed by mac80211;
  1956. (this is for the IBSS BSSID stations) */
  1957. #define IL_STA_BCAST BIT(4) /* this station is the special bcast station */
  1958. void il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx);
  1959. void il_clear_ucode_stations(struct il_priv *il, struct il_rxon_context *ctx);
  1960. void il_dealloc_bcast_stations(struct il_priv *il);
  1961. int il_get_free_ucode_key_idx(struct il_priv *il);
  1962. int il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags);
  1963. int il_add_station_common(struct il_priv *il, struct il_rxon_context *ctx,
  1964. const u8 *addr, bool is_ap,
  1965. struct ieee80211_sta *sta, u8 *sta_id_r);
  1966. int il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr);
  1967. int il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1968. struct ieee80211_sta *sta);
  1969. u8 il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
  1970. const u8 *addr, bool is_ap, struct ieee80211_sta *sta);
  1971. int il_send_lq_cmd(struct il_priv *il, struct il_rxon_context *ctx,
  1972. struct il_link_quality_cmd *lq, u8 flags, bool init);
  1973. /**
  1974. * il_clear_driver_stations - clear knowledge of all stations from driver
  1975. * @il: iwl il struct
  1976. *
  1977. * This is called during il_down() to make sure that in the case
  1978. * we're coming there from a hardware restart mac80211 will be
  1979. * able to reconfigure stations -- if we're getting there in the
  1980. * normal down flow then the stations will already be cleared.
  1981. */
  1982. static inline void
  1983. il_clear_driver_stations(struct il_priv *il)
  1984. {
  1985. unsigned long flags;
  1986. spin_lock_irqsave(&il->sta_lock, flags);
  1987. memset(il->stations, 0, sizeof(il->stations));
  1988. il->num_stations = 0;
  1989. il->ucode_key_table = 0;
  1990. spin_unlock_irqrestore(&il->sta_lock, flags);
  1991. }
  1992. static inline int
  1993. il_sta_id(struct ieee80211_sta *sta)
  1994. {
  1995. if (WARN_ON(!sta))
  1996. return IL_INVALID_STATION;
  1997. return ((struct il_station_priv_common *)sta->drv_priv)->sta_id;
  1998. }
  1999. /**
  2000. * il_sta_id_or_broadcast - return sta_id or broadcast sta
  2001. * @il: iwl il
  2002. * @context: the current context
  2003. * @sta: mac80211 station
  2004. *
  2005. * In certain circumstances mac80211 passes a station pointer
  2006. * that may be %NULL, for example during TX or key setup. In
  2007. * that case, we need to use the broadcast station, so this
  2008. * inline wraps that pattern.
  2009. */
  2010. static inline int
  2011. il_sta_id_or_broadcast(struct il_priv *il, struct il_rxon_context *context,
  2012. struct ieee80211_sta *sta)
  2013. {
  2014. int sta_id;
  2015. if (!sta)
  2016. return il->hw_params.bcast_id;
  2017. sta_id = il_sta_id(sta);
  2018. /*
  2019. * mac80211 should not be passing a partially
  2020. * initialised station!
  2021. */
  2022. WARN_ON(sta_id == IL_INVALID_STATION);
  2023. return sta_id;
  2024. }
  2025. /**
  2026. * il_queue_inc_wrap - increment queue idx, wrap back to beginning
  2027. * @idx -- current idx
  2028. * @n_bd -- total number of entries in queue (must be power of 2)
  2029. */
  2030. static inline int
  2031. il_queue_inc_wrap(int idx, int n_bd)
  2032. {
  2033. return ++idx & (n_bd - 1);
  2034. }
  2035. /**
  2036. * il_queue_dec_wrap - decrement queue idx, wrap back to end
  2037. * @idx -- current idx
  2038. * @n_bd -- total number of entries in queue (must be power of 2)
  2039. */
  2040. static inline int
  2041. il_queue_dec_wrap(int idx, int n_bd)
  2042. {
  2043. return --idx & (n_bd - 1);
  2044. }
  2045. /* TODO: Move fw_desc functions to iwl-pci.ko */
  2046. static inline void
  2047. il_free_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
  2048. {
  2049. if (desc->v_addr)
  2050. dma_free_coherent(&pci_dev->dev, desc->len, desc->v_addr,
  2051. desc->p_addr);
  2052. desc->v_addr = NULL;
  2053. desc->len = 0;
  2054. }
  2055. static inline int
  2056. il_alloc_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
  2057. {
  2058. if (!desc->len) {
  2059. desc->v_addr = NULL;
  2060. return -EINVAL;
  2061. }
  2062. desc->v_addr =
  2063. dma_alloc_coherent(&pci_dev->dev, desc->len, &desc->p_addr,
  2064. GFP_KERNEL);
  2065. return (desc->v_addr != NULL) ? 0 : -ENOMEM;
  2066. }
  2067. /*
  2068. * we have 8 bits used like this:
  2069. *
  2070. * 7 6 5 4 3 2 1 0
  2071. * | | | | | | | |
  2072. * | | | | | | +-+-------- AC queue (0-3)
  2073. * | | | | | |
  2074. * | +-+-+-+-+------------ HW queue ID
  2075. * |
  2076. * +---------------------- unused
  2077. */
  2078. static inline void
  2079. il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq)
  2080. {
  2081. BUG_ON(ac > 3); /* only have 2 bits */
  2082. BUG_ON(hwq > 31); /* only use 5 bits */
  2083. txq->swq_id = (hwq << 2) | ac;
  2084. }
  2085. static inline void
  2086. il_wake_queue(struct il_priv *il, struct il_tx_queue *txq)
  2087. {
  2088. u8 queue = txq->swq_id;
  2089. u8 ac = queue & 3;
  2090. u8 hwq = (queue >> 2) & 0x1f;
  2091. if (test_and_clear_bit(hwq, il->queue_stopped))
  2092. if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0)
  2093. ieee80211_wake_queue(il->hw, ac);
  2094. }
  2095. static inline void
  2096. il_stop_queue(struct il_priv *il, struct il_tx_queue *txq)
  2097. {
  2098. u8 queue = txq->swq_id;
  2099. u8 ac = queue & 3;
  2100. u8 hwq = (queue >> 2) & 0x1f;
  2101. if (!test_and_set_bit(hwq, il->queue_stopped))
  2102. if (atomic_inc_return(&il->queue_stop_count[ac]) > 0)
  2103. ieee80211_stop_queue(il->hw, ac);
  2104. }
  2105. #ifdef ieee80211_stop_queue
  2106. #undef ieee80211_stop_queue
  2107. #endif
  2108. #define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue
  2109. #ifdef ieee80211_wake_queue
  2110. #undef ieee80211_wake_queue
  2111. #endif
  2112. #define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue
  2113. static inline void
  2114. il_disable_interrupts(struct il_priv *il)
  2115. {
  2116. clear_bit(S_INT_ENABLED, &il->status);
  2117. /* disable interrupts from uCode/NIC to host */
  2118. _il_wr(il, CSR_INT_MASK, 0x00000000);
  2119. /* acknowledge/clear/reset any interrupts still pending
  2120. * from uCode or flow handler (Rx/Tx DMA) */
  2121. _il_wr(il, CSR_INT, 0xffffffff);
  2122. _il_wr(il, CSR_FH_INT_STATUS, 0xffffffff);
  2123. }
  2124. static inline void
  2125. il_enable_rfkill_int(struct il_priv *il)
  2126. {
  2127. _il_wr(il, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
  2128. }
  2129. static inline void
  2130. il_enable_interrupts(struct il_priv *il)
  2131. {
  2132. set_bit(S_INT_ENABLED, &il->status);
  2133. _il_wr(il, CSR_INT_MASK, il->inta_mask);
  2134. }
  2135. /**
  2136. * il_beacon_time_mask_low - mask of lower 32 bit of beacon time
  2137. * @il -- pointer to il_priv data structure
  2138. * @tsf_bits -- number of bits need to shift for masking)
  2139. */
  2140. static inline u32
  2141. il_beacon_time_mask_low(struct il_priv *il, u16 tsf_bits)
  2142. {
  2143. return (1 << tsf_bits) - 1;
  2144. }
  2145. /**
  2146. * il_beacon_time_mask_high - mask of higher 32 bit of beacon time
  2147. * @il -- pointer to il_priv data structure
  2148. * @tsf_bits -- number of bits need to shift for masking)
  2149. */
  2150. static inline u32
  2151. il_beacon_time_mask_high(struct il_priv *il, u16 tsf_bits)
  2152. {
  2153. return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
  2154. }
  2155. /**
  2156. * struct il_rb_status - reseve buffer status host memory mapped FH registers
  2157. *
  2158. * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
  2159. * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
  2160. * @finished_rb_num [0:11] - Indicates the idx of the current RB
  2161. * in which the last frame was written to
  2162. * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
  2163. * which was transferred
  2164. */
  2165. struct il_rb_status {
  2166. __le16 closed_rb_num;
  2167. __le16 closed_fr_num;
  2168. __le16 finished_rb_num;
  2169. __le16 finished_fr_nam;
  2170. __le32 __unused; /* 3945 only */
  2171. } __packed;
  2172. #define TFD_QUEUE_SIZE_MAX (256)
  2173. #define TFD_QUEUE_SIZE_BC_DUP (64)
  2174. #define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP)
  2175. #define IL_TX_DMA_MASK DMA_BIT_MASK(36)
  2176. #define IL_NUM_OF_TBS 20
  2177. static inline u8
  2178. il_get_dma_hi_addr(dma_addr_t addr)
  2179. {
  2180. return (sizeof(addr) > sizeof(u32) ? (addr >> 16) >> 16 : 0) & 0xF;
  2181. }
  2182. /**
  2183. * struct il_tfd_tb transmit buffer descriptor within transmit frame descriptor
  2184. *
  2185. * This structure contains dma address and length of transmission address
  2186. *
  2187. * @lo: low [31:0] portion of the dma address of TX buffer every even is
  2188. * unaligned on 16 bit boundary
  2189. * @hi_n_len: 0-3 [35:32] portion of dma
  2190. * 4-15 length of the tx buffer
  2191. */
  2192. struct il_tfd_tb {
  2193. __le32 lo;
  2194. __le16 hi_n_len;
  2195. } __packed;
  2196. /**
  2197. * struct il_tfd
  2198. *
  2199. * Transmit Frame Descriptor (TFD)
  2200. *
  2201. * @ __reserved1[3] reserved
  2202. * @ num_tbs 0-4 number of active tbs
  2203. * 5 reserved
  2204. * 6-7 padding (not used)
  2205. * @ tbs[20] transmit frame buffer descriptors
  2206. * @ __pad padding
  2207. *
  2208. * Each Tx queue uses a circular buffer of 256 TFDs stored in host DRAM.
  2209. * Both driver and device share these circular buffers, each of which must be
  2210. * contiguous 256 TFDs x 128 bytes-per-TFD = 32 KBytes
  2211. *
  2212. * Driver must indicate the physical address of the base of each
  2213. * circular buffer via the FH49_MEM_CBBC_QUEUE registers.
  2214. *
  2215. * Each TFD contains pointer/size information for up to 20 data buffers
  2216. * in host DRAM. These buffers collectively contain the (one) frame described
  2217. * by the TFD. Each buffer must be a single contiguous block of memory within
  2218. * itself, but buffers may be scattered in host DRAM. Each buffer has max size
  2219. * of (4K - 4). The concatenates all of a TFD's buffers into a single
  2220. * Tx frame, up to 8 KBytes in size.
  2221. *
  2222. * A maximum of 255 (not 256!) TFDs may be on a queue waiting for Tx.
  2223. */
  2224. struct il_tfd {
  2225. u8 __reserved1[3];
  2226. u8 num_tbs;
  2227. struct il_tfd_tb tbs[IL_NUM_OF_TBS];
  2228. __le32 __pad;
  2229. } __packed;
  2230. /* PCI registers */
  2231. #define PCI_CFG_RETRY_TIMEOUT 0x041
  2232. /* PCI register values */
  2233. #define PCI_CFG_LINK_CTRL_VAL_L0S_EN 0x01
  2234. #define PCI_CFG_LINK_CTRL_VAL_L1_EN 0x02
  2235. struct il_rate_info {
  2236. u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
  2237. u8 plcp_siso; /* uCode API: RATE_SISO_6M_PLCP, etc. */
  2238. u8 plcp_mimo2; /* uCode API: RATE_MIMO2_6M_PLCP, etc. */
  2239. u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
  2240. u8 prev_ieee; /* previous rate in IEEE speeds */
  2241. u8 next_ieee; /* next rate in IEEE speeds */
  2242. u8 prev_rs; /* previous rate used in rs algo */
  2243. u8 next_rs; /* next rate used in rs algo */
  2244. u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
  2245. u8 next_rs_tgg; /* next rate used in TGG rs algo */
  2246. };
  2247. struct il3945_rate_info {
  2248. u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
  2249. u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
  2250. u8 prev_ieee; /* previous rate in IEEE speeds */
  2251. u8 next_ieee; /* next rate in IEEE speeds */
  2252. u8 prev_rs; /* previous rate used in rs algo */
  2253. u8 next_rs; /* next rate used in rs algo */
  2254. u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
  2255. u8 next_rs_tgg; /* next rate used in TGG rs algo */
  2256. u8 table_rs_idx; /* idx in rate scale table cmd */
  2257. u8 prev_table_rs; /* prev in rate table cmd */
  2258. };
  2259. /*
  2260. * These serve as idxes into
  2261. * struct il_rate_info il_rates[RATE_COUNT];
  2262. */
  2263. enum {
  2264. RATE_1M_IDX = 0,
  2265. RATE_2M_IDX,
  2266. RATE_5M_IDX,
  2267. RATE_11M_IDX,
  2268. RATE_6M_IDX,
  2269. RATE_9M_IDX,
  2270. RATE_12M_IDX,
  2271. RATE_18M_IDX,
  2272. RATE_24M_IDX,
  2273. RATE_36M_IDX,
  2274. RATE_48M_IDX,
  2275. RATE_54M_IDX,
  2276. RATE_60M_IDX,
  2277. RATE_COUNT,
  2278. RATE_COUNT_LEGACY = RATE_COUNT - 1, /* Excluding 60M */
  2279. RATE_COUNT_3945 = RATE_COUNT - 1,
  2280. RATE_INVM_IDX = RATE_COUNT,
  2281. RATE_INVALID = RATE_COUNT,
  2282. };
  2283. enum {
  2284. RATE_6M_IDX_TBL = 0,
  2285. RATE_9M_IDX_TBL,
  2286. RATE_12M_IDX_TBL,
  2287. RATE_18M_IDX_TBL,
  2288. RATE_24M_IDX_TBL,
  2289. RATE_36M_IDX_TBL,
  2290. RATE_48M_IDX_TBL,
  2291. RATE_54M_IDX_TBL,
  2292. RATE_1M_IDX_TBL,
  2293. RATE_2M_IDX_TBL,
  2294. RATE_5M_IDX_TBL,
  2295. RATE_11M_IDX_TBL,
  2296. RATE_INVM_IDX_TBL = RATE_INVM_IDX - 1,
  2297. };
  2298. enum {
  2299. IL_FIRST_OFDM_RATE = RATE_6M_IDX,
  2300. IL39_LAST_OFDM_RATE = RATE_54M_IDX,
  2301. IL_LAST_OFDM_RATE = RATE_60M_IDX,
  2302. IL_FIRST_CCK_RATE = RATE_1M_IDX,
  2303. IL_LAST_CCK_RATE = RATE_11M_IDX,
  2304. };
  2305. /* #define vs. enum to keep from defaulting to 'large integer' */
  2306. #define RATE_6M_MASK (1 << RATE_6M_IDX)
  2307. #define RATE_9M_MASK (1 << RATE_9M_IDX)
  2308. #define RATE_12M_MASK (1 << RATE_12M_IDX)
  2309. #define RATE_18M_MASK (1 << RATE_18M_IDX)
  2310. #define RATE_24M_MASK (1 << RATE_24M_IDX)
  2311. #define RATE_36M_MASK (1 << RATE_36M_IDX)
  2312. #define RATE_48M_MASK (1 << RATE_48M_IDX)
  2313. #define RATE_54M_MASK (1 << RATE_54M_IDX)
  2314. #define RATE_60M_MASK (1 << RATE_60M_IDX)
  2315. #define RATE_1M_MASK (1 << RATE_1M_IDX)
  2316. #define RATE_2M_MASK (1 << RATE_2M_IDX)
  2317. #define RATE_5M_MASK (1 << RATE_5M_IDX)
  2318. #define RATE_11M_MASK (1 << RATE_11M_IDX)
  2319. /* uCode API values for legacy bit rates, both OFDM and CCK */
  2320. enum {
  2321. RATE_6M_PLCP = 13,
  2322. RATE_9M_PLCP = 15,
  2323. RATE_12M_PLCP = 5,
  2324. RATE_18M_PLCP = 7,
  2325. RATE_24M_PLCP = 9,
  2326. RATE_36M_PLCP = 11,
  2327. RATE_48M_PLCP = 1,
  2328. RATE_54M_PLCP = 3,
  2329. RATE_60M_PLCP = 3, /*FIXME:RS:should be removed */
  2330. RATE_1M_PLCP = 10,
  2331. RATE_2M_PLCP = 20,
  2332. RATE_5M_PLCP = 55,
  2333. RATE_11M_PLCP = 110,
  2334. /*FIXME:RS:add RATE_LEGACY_INVM_PLCP = 0, */
  2335. };
  2336. /* uCode API values for OFDM high-throughput (HT) bit rates */
  2337. enum {
  2338. RATE_SISO_6M_PLCP = 0,
  2339. RATE_SISO_12M_PLCP = 1,
  2340. RATE_SISO_18M_PLCP = 2,
  2341. RATE_SISO_24M_PLCP = 3,
  2342. RATE_SISO_36M_PLCP = 4,
  2343. RATE_SISO_48M_PLCP = 5,
  2344. RATE_SISO_54M_PLCP = 6,
  2345. RATE_SISO_60M_PLCP = 7,
  2346. RATE_MIMO2_6M_PLCP = 0x8,
  2347. RATE_MIMO2_12M_PLCP = 0x9,
  2348. RATE_MIMO2_18M_PLCP = 0xa,
  2349. RATE_MIMO2_24M_PLCP = 0xb,
  2350. RATE_MIMO2_36M_PLCP = 0xc,
  2351. RATE_MIMO2_48M_PLCP = 0xd,
  2352. RATE_MIMO2_54M_PLCP = 0xe,
  2353. RATE_MIMO2_60M_PLCP = 0xf,
  2354. RATE_SISO_INVM_PLCP,
  2355. RATE_MIMO2_INVM_PLCP = RATE_SISO_INVM_PLCP,
  2356. };
  2357. /* MAC header values for bit rates */
  2358. enum {
  2359. RATE_6M_IEEE = 12,
  2360. RATE_9M_IEEE = 18,
  2361. RATE_12M_IEEE = 24,
  2362. RATE_18M_IEEE = 36,
  2363. RATE_24M_IEEE = 48,
  2364. RATE_36M_IEEE = 72,
  2365. RATE_48M_IEEE = 96,
  2366. RATE_54M_IEEE = 108,
  2367. RATE_60M_IEEE = 120,
  2368. RATE_1M_IEEE = 2,
  2369. RATE_2M_IEEE = 4,
  2370. RATE_5M_IEEE = 11,
  2371. RATE_11M_IEEE = 22,
  2372. };
  2373. #define IL_CCK_BASIC_RATES_MASK \
  2374. (RATE_1M_MASK | \
  2375. RATE_2M_MASK)
  2376. #define IL_CCK_RATES_MASK \
  2377. (IL_CCK_BASIC_RATES_MASK | \
  2378. RATE_5M_MASK | \
  2379. RATE_11M_MASK)
  2380. #define IL_OFDM_BASIC_RATES_MASK \
  2381. (RATE_6M_MASK | \
  2382. RATE_12M_MASK | \
  2383. RATE_24M_MASK)
  2384. #define IL_OFDM_RATES_MASK \
  2385. (IL_OFDM_BASIC_RATES_MASK | \
  2386. RATE_9M_MASK | \
  2387. RATE_18M_MASK | \
  2388. RATE_36M_MASK | \
  2389. RATE_48M_MASK | \
  2390. RATE_54M_MASK)
  2391. #define IL_BASIC_RATES_MASK \
  2392. (IL_OFDM_BASIC_RATES_MASK | \
  2393. IL_CCK_BASIC_RATES_MASK)
  2394. #define RATES_MASK ((1 << RATE_COUNT) - 1)
  2395. #define RATES_MASK_3945 ((1 << RATE_COUNT_3945) - 1)
  2396. #define IL_INVALID_VALUE -1
  2397. #define IL_MIN_RSSI_VAL -100
  2398. #define IL_MAX_RSSI_VAL 0
  2399. /* These values specify how many Tx frame attempts before
  2400. * searching for a new modulation mode */
  2401. #define IL_LEGACY_FAILURE_LIMIT 160
  2402. #define IL_LEGACY_SUCCESS_LIMIT 480
  2403. #define IL_LEGACY_TBL_COUNT 160
  2404. #define IL_NONE_LEGACY_FAILURE_LIMIT 400
  2405. #define IL_NONE_LEGACY_SUCCESS_LIMIT 4500
  2406. #define IL_NONE_LEGACY_TBL_COUNT 1500
  2407. /* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
  2408. #define IL_RS_GOOD_RATIO 12800 /* 100% */
  2409. #define RATE_SCALE_SWITCH 10880 /* 85% */
  2410. #define RATE_HIGH_TH 10880 /* 85% */
  2411. #define RATE_INCREASE_TH 6400 /* 50% */
  2412. #define RATE_DECREASE_TH 1920 /* 15% */
  2413. /* possible actions when in legacy mode */
  2414. #define IL_LEGACY_SWITCH_ANTENNA1 0
  2415. #define IL_LEGACY_SWITCH_ANTENNA2 1
  2416. #define IL_LEGACY_SWITCH_SISO 2
  2417. #define IL_LEGACY_SWITCH_MIMO2_AB 3
  2418. #define IL_LEGACY_SWITCH_MIMO2_AC 4
  2419. #define IL_LEGACY_SWITCH_MIMO2_BC 5
  2420. /* possible actions when in siso mode */
  2421. #define IL_SISO_SWITCH_ANTENNA1 0
  2422. #define IL_SISO_SWITCH_ANTENNA2 1
  2423. #define IL_SISO_SWITCH_MIMO2_AB 2
  2424. #define IL_SISO_SWITCH_MIMO2_AC 3
  2425. #define IL_SISO_SWITCH_MIMO2_BC 4
  2426. #define IL_SISO_SWITCH_GI 5
  2427. /* possible actions when in mimo mode */
  2428. #define IL_MIMO2_SWITCH_ANTENNA1 0
  2429. #define IL_MIMO2_SWITCH_ANTENNA2 1
  2430. #define IL_MIMO2_SWITCH_SISO_A 2
  2431. #define IL_MIMO2_SWITCH_SISO_B 3
  2432. #define IL_MIMO2_SWITCH_SISO_C 4
  2433. #define IL_MIMO2_SWITCH_GI 5
  2434. #define IL_MAX_SEARCH IL_MIMO2_SWITCH_GI
  2435. #define IL_ACTION_LIMIT 3 /* # possible actions */
  2436. #define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
  2437. /* load per tid defines for A-MPDU activation */
  2438. #define IL_AGG_TPT_THREHOLD 0
  2439. #define IL_AGG_LOAD_THRESHOLD 10
  2440. #define IL_AGG_ALL_TID 0xff
  2441. #define TID_QUEUE_CELL_SPACING 50 /*mS */
  2442. #define TID_QUEUE_MAX_SIZE 20
  2443. #define TID_ROUND_VALUE 5 /* mS */
  2444. #define TID_MAX_LOAD_COUNT 8
  2445. #define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
  2446. #define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
  2447. extern const struct il_rate_info il_rates[RATE_COUNT];
  2448. enum il_table_type {
  2449. LQ_NONE,
  2450. LQ_G, /* legacy types */
  2451. LQ_A,
  2452. LQ_SISO, /* high-throughput types */
  2453. LQ_MIMO2,
  2454. LQ_MAX,
  2455. };
  2456. #define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
  2457. #define is_siso(tbl) ((tbl) == LQ_SISO)
  2458. #define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
  2459. #define is_mimo(tbl) (is_mimo2(tbl))
  2460. #define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl))
  2461. #define is_a_band(tbl) ((tbl) == LQ_A)
  2462. #define is_g_and(tbl) ((tbl) == LQ_G)
  2463. #define ANT_NONE 0x0
  2464. #define ANT_A BIT(0)
  2465. #define ANT_B BIT(1)
  2466. #define ANT_AB (ANT_A | ANT_B)
  2467. #define ANT_C BIT(2)
  2468. #define ANT_AC (ANT_A | ANT_C)
  2469. #define ANT_BC (ANT_B | ANT_C)
  2470. #define ANT_ABC (ANT_AB | ANT_C)
  2471. #define IL_MAX_MCS_DISPLAY_SIZE 12
  2472. struct il_rate_mcs_info {
  2473. char mbps[IL_MAX_MCS_DISPLAY_SIZE];
  2474. char mcs[IL_MAX_MCS_DISPLAY_SIZE];
  2475. };
  2476. /**
  2477. * struct il_rate_scale_data -- tx success history for one rate
  2478. */
  2479. struct il_rate_scale_data {
  2480. u64 data; /* bitmap of successful frames */
  2481. s32 success_counter; /* number of frames successful */
  2482. s32 success_ratio; /* per-cent * 128 */
  2483. s32 counter; /* number of frames attempted */
  2484. s32 average_tpt; /* success ratio * expected throughput */
  2485. unsigned long stamp;
  2486. };
  2487. /**
  2488. * struct il_scale_tbl_info -- tx params and success history for all rates
  2489. *
  2490. * There are two of these in struct il_lq_sta,
  2491. * one for "active", and one for "search".
  2492. */
  2493. struct il_scale_tbl_info {
  2494. enum il_table_type lq_type;
  2495. u8 ant_type;
  2496. u8 is_SGI; /* 1 = short guard interval */
  2497. u8 is_ht40; /* 1 = 40 MHz channel width */
  2498. u8 is_dup; /* 1 = duplicated data streams */
  2499. u8 action; /* change modulation; IL_[LEGACY/SISO/MIMO]_SWITCH_* */
  2500. u8 max_search; /* maximun number of tables we can search */
  2501. s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
  2502. u32 current_rate; /* rate_n_flags, uCode API format */
  2503. struct il_rate_scale_data win[RATE_COUNT]; /* rate histories */
  2504. };
  2505. struct il_traffic_load {
  2506. unsigned long time_stamp; /* age of the oldest stats */
  2507. u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
  2508. * slice */
  2509. u32 total; /* total num of packets during the
  2510. * last TID_MAX_TIME_DIFF */
  2511. u8 queue_count; /* number of queues that has
  2512. * been used since the last cleanup */
  2513. u8 head; /* start of the circular buffer */
  2514. };
  2515. /**
  2516. * struct il_lq_sta -- driver's rate scaling ilate structure
  2517. *
  2518. * Pointer to this gets passed back and forth between driver and mac80211.
  2519. */
  2520. struct il_lq_sta {
  2521. u8 active_tbl; /* idx of active table, range 0-1 */
  2522. u8 enable_counter; /* indicates HT mode */
  2523. u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
  2524. u8 search_better_tbl; /* 1: currently trying alternate mode */
  2525. s32 last_tpt;
  2526. /* The following determine when to search for a new mode */
  2527. u32 table_count_limit;
  2528. u32 max_failure_limit; /* # failed frames before new search */
  2529. u32 max_success_limit; /* # successful frames before new search */
  2530. u32 table_count;
  2531. u32 total_failed; /* total failed frames, any/all rates */
  2532. u32 total_success; /* total successful frames, any/all rates */
  2533. u64 flush_timer; /* time staying in mode before new search */
  2534. u8 action_counter; /* # mode-switch actions tried */
  2535. u8 is_green;
  2536. u8 is_dup;
  2537. enum ieee80211_band band;
  2538. /* The following are bitmaps of rates; RATE_6M_MASK, etc. */
  2539. u32 supp_rates;
  2540. u16 active_legacy_rate;
  2541. u16 active_siso_rate;
  2542. u16 active_mimo2_rate;
  2543. s8 max_rate_idx; /* Max rate set by user */
  2544. u8 missed_rate_counter;
  2545. struct il_link_quality_cmd lq;
  2546. struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
  2547. struct il_traffic_load load[TID_MAX_LOAD_COUNT];
  2548. u8 tx_agg_tid_en;
  2549. #ifdef CONFIG_MAC80211_DEBUGFS
  2550. struct dentry *rs_sta_dbgfs_scale_table_file;
  2551. struct dentry *rs_sta_dbgfs_stats_table_file;
  2552. struct dentry *rs_sta_dbgfs_rate_scale_data_file;
  2553. struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
  2554. u32 dbg_fixed_rate;
  2555. #endif
  2556. struct il_priv *drv;
  2557. /* used to be in sta_info */
  2558. int last_txrate_idx;
  2559. /* last tx rate_n_flags */
  2560. u32 last_rate_n_flags;
  2561. /* packets destined for this STA are aggregated */
  2562. u8 is_agg;
  2563. };
  2564. /*
  2565. * il_station_priv: Driver's ilate station information
  2566. *
  2567. * When mac80211 creates a station it reserves some space (hw->sta_data_size)
  2568. * in the structure for use by driver. This structure is places in that
  2569. * space.
  2570. *
  2571. * The common struct MUST be first because it is shared between
  2572. * 3945 and 4965!
  2573. */
  2574. struct il_station_priv {
  2575. struct il_station_priv_common common;
  2576. struct il_lq_sta lq_sta;
  2577. atomic_t pending_frames;
  2578. bool client;
  2579. bool asleep;
  2580. };
  2581. static inline u8
  2582. il4965_num_of_ant(u8 m)
  2583. {
  2584. return !!(m & ANT_A) + !!(m & ANT_B) + !!(m & ANT_C);
  2585. }
  2586. static inline u8
  2587. il4965_first_antenna(u8 mask)
  2588. {
  2589. if (mask & ANT_A)
  2590. return ANT_A;
  2591. if (mask & ANT_B)
  2592. return ANT_B;
  2593. return ANT_C;
  2594. }
  2595. /**
  2596. * il3945_rate_scale_init - Initialize the rate scale table based on assoc info
  2597. *
  2598. * The specific throughput table used is based on the type of network
  2599. * the associated with, including A, B, G, and G w/ TGG protection
  2600. */
  2601. extern void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
  2602. /* Initialize station's rate scaling information after adding station */
  2603. extern void il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
  2604. u8 sta_id);
  2605. extern void il3945_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
  2606. u8 sta_id);
  2607. /**
  2608. * il_rate_control_register - Register the rate control algorithm callbacks
  2609. *
  2610. * Since the rate control algorithm is hardware specific, there is no need
  2611. * or reason to place it as a stand alone module. The driver can call
  2612. * il_rate_control_register in order to register the rate control callbacks
  2613. * with the mac80211 subsystem. This should be performed prior to calling
  2614. * ieee80211_register_hw
  2615. *
  2616. */
  2617. extern int il4965_rate_control_register(void);
  2618. extern int il3945_rate_control_register(void);
  2619. /**
  2620. * il_rate_control_unregister - Unregister the rate control callbacks
  2621. *
  2622. * This should be called after calling ieee80211_unregister_hw, but before
  2623. * the driver is unloaded.
  2624. */
  2625. extern void il4965_rate_control_unregister(void);
  2626. extern void il3945_rate_control_unregister(void);
  2627. extern int il_power_update_mode(struct il_priv *il, bool force);
  2628. extern void il_power_initialize(struct il_priv *il);
  2629. extern u32 il_debug_level;
  2630. #ifdef CONFIG_IWLEGACY_DEBUG
  2631. /*
  2632. * il_get_debug_level: Return active debug level for device
  2633. *
  2634. * Using sysfs it is possible to set per device debug level. This debug
  2635. * level will be used if set, otherwise the global debug level which can be
  2636. * set via module parameter is used.
  2637. */
  2638. static inline u32
  2639. il_get_debug_level(struct il_priv *il)
  2640. {
  2641. if (il->debug_level)
  2642. return il->debug_level;
  2643. else
  2644. return il_debug_level;
  2645. }
  2646. #else
  2647. static inline u32
  2648. il_get_debug_level(struct il_priv *il)
  2649. {
  2650. return il_debug_level;
  2651. }
  2652. #endif
  2653. #define il_print_hex_error(il, p, len) \
  2654. do { \
  2655. print_hex_dump(KERN_ERR, "iwl data: ", \
  2656. DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
  2657. } while (0)
  2658. #ifdef CONFIG_IWLEGACY_DEBUG
  2659. #define IL_DBG(level, fmt, args...) \
  2660. do { \
  2661. if (il_get_debug_level(il) & level) \
  2662. dev_printk(KERN_ERR, &il->hw->wiphy->dev, \
  2663. "%c %s " fmt, in_interrupt() ? 'I' : 'U', \
  2664. __func__ , ## args); \
  2665. } while (0)
  2666. #define il_print_hex_dump(il, level, p, len) \
  2667. do { \
  2668. if (il_get_debug_level(il) & level) \
  2669. print_hex_dump(KERN_DEBUG, "iwl data: ", \
  2670. DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
  2671. } while (0)
  2672. #else
  2673. #define IL_DBG(level, fmt, args...)
  2674. static inline void
  2675. il_print_hex_dump(struct il_priv *il, int level, const void *p, u32 len)
  2676. {
  2677. }
  2678. #endif /* CONFIG_IWLEGACY_DEBUG */
  2679. #ifdef CONFIG_IWLEGACY_DEBUGFS
  2680. int il_dbgfs_register(struct il_priv *il, const char *name);
  2681. void il_dbgfs_unregister(struct il_priv *il);
  2682. #else
  2683. static inline int
  2684. il_dbgfs_register(struct il_priv *il, const char *name)
  2685. {
  2686. return 0;
  2687. }
  2688. static inline void
  2689. il_dbgfs_unregister(struct il_priv *il)
  2690. {
  2691. }
  2692. #endif /* CONFIG_IWLEGACY_DEBUGFS */
  2693. /*
  2694. * To use the debug system:
  2695. *
  2696. * If you are defining a new debug classification, simply add it to the #define
  2697. * list here in the form of
  2698. *
  2699. * #define IL_DL_xxxx VALUE
  2700. *
  2701. * where xxxx should be the name of the classification (for example, WEP).
  2702. *
  2703. * You then need to either add a IL_xxxx_DEBUG() macro definition for your
  2704. * classification, or use IL_DBG(IL_DL_xxxx, ...) whenever you want
  2705. * to send output to that classification.
  2706. *
  2707. * The active debug levels can be accessed via files
  2708. *
  2709. * /sys/module/iwl4965/parameters/debug
  2710. * /sys/module/iwl3945/parameters/debug
  2711. * /sys/class/net/wlan0/device/debug_level
  2712. *
  2713. * when CONFIG_IWLEGACY_DEBUG=y.
  2714. */
  2715. /* 0x0000000F - 0x00000001 */
  2716. #define IL_DL_INFO (1 << 0)
  2717. #define IL_DL_MAC80211 (1 << 1)
  2718. #define IL_DL_HCMD (1 << 2)
  2719. #define IL_DL_STATE (1 << 3)
  2720. /* 0x000000F0 - 0x00000010 */
  2721. #define IL_DL_MACDUMP (1 << 4)
  2722. #define IL_DL_HCMD_DUMP (1 << 5)
  2723. #define IL_DL_EEPROM (1 << 6)
  2724. #define IL_DL_RADIO (1 << 7)
  2725. /* 0x00000F00 - 0x00000100 */
  2726. #define IL_DL_POWER (1 << 8)
  2727. #define IL_DL_TEMP (1 << 9)
  2728. #define IL_DL_NOTIF (1 << 10)
  2729. #define IL_DL_SCAN (1 << 11)
  2730. /* 0x0000F000 - 0x00001000 */
  2731. #define IL_DL_ASSOC (1 << 12)
  2732. #define IL_DL_DROP (1 << 13)
  2733. #define IL_DL_TXPOWER (1 << 14)
  2734. #define IL_DL_AP (1 << 15)
  2735. /* 0x000F0000 - 0x00010000 */
  2736. #define IL_DL_FW (1 << 16)
  2737. #define IL_DL_RF_KILL (1 << 17)
  2738. #define IL_DL_FW_ERRORS (1 << 18)
  2739. #define IL_DL_LED (1 << 19)
  2740. /* 0x00F00000 - 0x00100000 */
  2741. #define IL_DL_RATE (1 << 20)
  2742. #define IL_DL_CALIB (1 << 21)
  2743. #define IL_DL_WEP (1 << 22)
  2744. #define IL_DL_TX (1 << 23)
  2745. /* 0x0F000000 - 0x01000000 */
  2746. #define IL_DL_RX (1 << 24)
  2747. #define IL_DL_ISR (1 << 25)
  2748. #define IL_DL_HT (1 << 26)
  2749. /* 0xF0000000 - 0x10000000 */
  2750. #define IL_DL_11H (1 << 28)
  2751. #define IL_DL_STATS (1 << 29)
  2752. #define IL_DL_TX_REPLY (1 << 30)
  2753. #define IL_DL_QOS (1 << 31)
  2754. #define D_INFO(f, a...) IL_DBG(IL_DL_INFO, f, ## a)
  2755. #define D_MAC80211(f, a...) IL_DBG(IL_DL_MAC80211, f, ## a)
  2756. #define D_MACDUMP(f, a...) IL_DBG(IL_DL_MACDUMP, f, ## a)
  2757. #define D_TEMP(f, a...) IL_DBG(IL_DL_TEMP, f, ## a)
  2758. #define D_SCAN(f, a...) IL_DBG(IL_DL_SCAN, f, ## a)
  2759. #define D_RX(f, a...) IL_DBG(IL_DL_RX, f, ## a)
  2760. #define D_TX(f, a...) IL_DBG(IL_DL_TX, f, ## a)
  2761. #define D_ISR(f, a...) IL_DBG(IL_DL_ISR, f, ## a)
  2762. #define D_LED(f, a...) IL_DBG(IL_DL_LED, f, ## a)
  2763. #define D_WEP(f, a...) IL_DBG(IL_DL_WEP, f, ## a)
  2764. #define D_HC(f, a...) IL_DBG(IL_DL_HCMD, f, ## a)
  2765. #define D_HC_DUMP(f, a...) IL_DBG(IL_DL_HCMD_DUMP, f, ## a)
  2766. #define D_EEPROM(f, a...) IL_DBG(IL_DL_EEPROM, f, ## a)
  2767. #define D_CALIB(f, a...) IL_DBG(IL_DL_CALIB, f, ## a)
  2768. #define D_FW(f, a...) IL_DBG(IL_DL_FW, f, ## a)
  2769. #define D_RF_KILL(f, a...) IL_DBG(IL_DL_RF_KILL, f, ## a)
  2770. #define D_DROP(f, a...) IL_DBG(IL_DL_DROP, f, ## a)
  2771. #define D_AP(f, a...) IL_DBG(IL_DL_AP, f, ## a)
  2772. #define D_TXPOWER(f, a...) IL_DBG(IL_DL_TXPOWER, f, ## a)
  2773. #define D_RATE(f, a...) IL_DBG(IL_DL_RATE, f, ## a)
  2774. #define D_NOTIF(f, a...) IL_DBG(IL_DL_NOTIF, f, ## a)
  2775. #define D_ASSOC(f, a...) IL_DBG(IL_DL_ASSOC, f, ## a)
  2776. #define D_HT(f, a...) IL_DBG(IL_DL_HT, f, ## a)
  2777. #define D_STATS(f, a...) IL_DBG(IL_DL_STATS, f, ## a)
  2778. #define D_TX_REPLY(f, a...) IL_DBG(IL_DL_TX_REPLY, f, ## a)
  2779. #define D_QOS(f, a...) IL_DBG(IL_DL_QOS, f, ## a)
  2780. #define D_RADIO(f, a...) IL_DBG(IL_DL_RADIO, f, ## a)
  2781. #define D_POWER(f, a...) IL_DBG(IL_DL_POWER, f, ## a)
  2782. #define D_11H(f, a...) IL_DBG(IL_DL_11H, f, ## a)
  2783. #endif /* __il_core_h__ */