common.h 89 KB

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