iwl-dev.h 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2009 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. /*
  27. * Please use this file (iwl-dev.h) for driver implementation definitions.
  28. * Please use iwl-commands.h for uCode API definitions.
  29. * Please use iwl-4965-hw.h for hardware-related definitions.
  30. */
  31. #ifndef __iwl_dev_h__
  32. #define __iwl_dev_h__
  33. #include <linux/pci.h> /* for struct pci_device_id */
  34. #include <linux/kernel.h>
  35. #include <net/ieee80211_radiotap.h>
  36. #include "iwl-eeprom.h"
  37. #include "iwl-csr.h"
  38. #include "iwl-prph.h"
  39. #include "iwl-fh.h"
  40. #include "iwl-debug.h"
  41. #include "iwl-4965-hw.h"
  42. #include "iwl-3945-hw.h"
  43. #include "iwl-led.h"
  44. #include "iwl-power.h"
  45. #include "iwl-agn-rs.h"
  46. /* configuration for the iwl4965 */
  47. extern struct iwl_cfg iwl4965_agn_cfg;
  48. extern struct iwl_cfg iwl5300_agn_cfg;
  49. extern struct iwl_cfg iwl5100_agn_cfg;
  50. extern struct iwl_cfg iwl5350_agn_cfg;
  51. extern struct iwl_cfg iwl5100_bg_cfg;
  52. extern struct iwl_cfg iwl5100_abg_cfg;
  53. extern struct iwl_cfg iwl5150_agn_cfg;
  54. extern struct iwl_cfg iwl6000h_2agn_cfg;
  55. extern struct iwl_cfg iwl6000h_2abg_cfg;
  56. extern struct iwl_cfg iwl6000h_2bg_cfg;
  57. extern struct iwl_cfg iwl6000i_2agn_cfg;
  58. extern struct iwl_cfg iwl6000i_2abg_cfg;
  59. extern struct iwl_cfg iwl6000i_2bg_cfg;
  60. extern struct iwl_cfg iwl6000_3agn_cfg;
  61. extern struct iwl_cfg iwl6050_2agn_cfg;
  62. extern struct iwl_cfg iwl6050_2abg_cfg;
  63. extern struct iwl_cfg iwl6050_3agn_cfg;
  64. extern struct iwl_cfg iwl1000_bgn_cfg;
  65. extern struct iwl_cfg iwl1000_bg_cfg;
  66. struct iwl_tx_queue;
  67. /* shared structures from iwl-5000.c */
  68. extern struct iwl_mod_params iwl50_mod_params;
  69. extern struct iwl_ucode_ops iwl5000_ucode;
  70. extern struct iwl_lib_ops iwl5000_lib;
  71. extern struct iwl_hcmd_ops iwl5000_hcmd;
  72. extern struct iwl_hcmd_utils_ops iwl5000_hcmd_utils;
  73. /* shared functions from iwl-5000.c */
  74. extern u16 iwl5000_get_hcmd_size(u8 cmd_id, u16 len);
  75. extern u16 iwl5000_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd,
  76. u8 *data);
  77. extern void iwl5000_rts_tx_cmd_flag(struct ieee80211_tx_info *info,
  78. __le32 *tx_flags);
  79. extern int iwl5000_calc_rssi(struct iwl_priv *priv,
  80. struct iwl_rx_phy_res *rx_resp);
  81. extern void iwl5000_nic_config(struct iwl_priv *priv);
  82. extern u16 iwl5000_eeprom_calib_version(struct iwl_priv *priv);
  83. extern const u8 *iwl5000_eeprom_query_addr(const struct iwl_priv *priv,
  84. size_t offset);
  85. extern void iwl5000_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
  86. struct iwl_tx_queue *txq,
  87. u16 byte_cnt);
  88. extern void iwl5000_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
  89. struct iwl_tx_queue *txq);
  90. extern int iwl5000_load_ucode(struct iwl_priv *priv);
  91. extern void iwl5000_init_alive_start(struct iwl_priv *priv);
  92. extern int iwl5000_alive_notify(struct iwl_priv *priv);
  93. extern int iwl5000_hw_set_hw_params(struct iwl_priv *priv);
  94. extern int iwl5000_txq_agg_enable(struct iwl_priv *priv, int txq_id,
  95. int tx_fifo, int sta_id, int tid, u16 ssn_idx);
  96. extern int iwl5000_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
  97. u16 ssn_idx, u8 tx_fifo);
  98. extern void iwl5000_txq_set_sched(struct iwl_priv *priv, u32 mask);
  99. extern void iwl5000_setup_deferred_work(struct iwl_priv *priv);
  100. extern void iwl5000_rx_handler_setup(struct iwl_priv *priv);
  101. extern int iwl5000_hw_valid_rtc_data_addr(u32 addr);
  102. extern int iwl5000_send_tx_power(struct iwl_priv *priv);
  103. extern void iwl5000_temperature(struct iwl_priv *priv);
  104. /* CT-KILL constants */
  105. #define CT_KILL_THRESHOLD_LEGACY 110 /* in Celsius */
  106. #define CT_KILL_THRESHOLD 114 /* in Celsius */
  107. #define CT_KILL_EXIT_THRESHOLD 95 /* in Celsius */
  108. /* Default noise level to report when noise measurement is not available.
  109. * This may be because we're:
  110. * 1) Not associated (4965, no beacon statistics being sent to driver)
  111. * 2) Scanning (noise measurement does not apply to associated channel)
  112. * 3) Receiving CCK (3945 delivers noise info only for OFDM frames)
  113. * Use default noise value of -127 ... this is below the range of measurable
  114. * Rx dBm for either 3945 or 4965, so it can indicate "unmeasurable" to user.
  115. * Also, -127 works better than 0 when averaging frames with/without
  116. * noise info (e.g. averaging might be done in app); measured dBm values are
  117. * always negative ... using a negative value as the default keeps all
  118. * averages within an s8's (used in some apps) range of negative values. */
  119. #define IWL_NOISE_MEAS_NOT_AVAILABLE (-127)
  120. /*
  121. * RTS threshold here is total size [2347] minus 4 FCS bytes
  122. * Per spec:
  123. * a value of 0 means RTS on all data/management packets
  124. * a value > max MSDU size means no RTS
  125. * else RTS for data/management frames where MPDU is larger
  126. * than RTS value.
  127. */
  128. #define DEFAULT_RTS_THRESHOLD 2347U
  129. #define MIN_RTS_THRESHOLD 0U
  130. #define MAX_RTS_THRESHOLD 2347U
  131. #define MAX_MSDU_SIZE 2304U
  132. #define MAX_MPDU_SIZE 2346U
  133. #define DEFAULT_BEACON_INTERVAL 100U
  134. #define DEFAULT_SHORT_RETRY_LIMIT 7U
  135. #define DEFAULT_LONG_RETRY_LIMIT 4U
  136. struct iwl_rx_mem_buffer {
  137. dma_addr_t page_dma;
  138. struct page *page;
  139. struct list_head list;
  140. };
  141. #define rxb_addr(r) page_address(r->page)
  142. /* defined below */
  143. struct iwl_device_cmd;
  144. struct iwl_cmd_meta {
  145. /* only for SYNC commands, iff the reply skb is wanted */
  146. struct iwl_host_cmd *source;
  147. /*
  148. * only for ASYNC commands
  149. * (which is somewhat stupid -- look at iwl-sta.c for instance
  150. * which duplicates a bunch of code because the callback isn't
  151. * invoked for SYNC commands, if it were and its result passed
  152. * through it would be simpler...)
  153. */
  154. void (*callback)(struct iwl_priv *priv,
  155. struct iwl_device_cmd *cmd,
  156. struct iwl_rx_packet *pkt);
  157. /* The CMD_SIZE_HUGE flag bit indicates that the command
  158. * structure is stored at the end of the shared queue memory. */
  159. u32 flags;
  160. DECLARE_PCI_UNMAP_ADDR(mapping)
  161. DECLARE_PCI_UNMAP_LEN(len)
  162. };
  163. /*
  164. * Generic queue structure
  165. *
  166. * Contains common data for Rx and Tx queues
  167. */
  168. struct iwl_queue {
  169. int n_bd; /* number of BDs in this queue */
  170. int write_ptr; /* 1-st empty entry (index) host_w*/
  171. int read_ptr; /* last used entry (index) host_r*/
  172. dma_addr_t dma_addr; /* physical addr for BD's */
  173. int n_window; /* safe queue window */
  174. u32 id;
  175. int low_mark; /* low watermark, resume queue if free
  176. * space more than this */
  177. int high_mark; /* high watermark, stop queue if free
  178. * space less than this */
  179. } __attribute__ ((packed));
  180. /* One for each TFD */
  181. struct iwl_tx_info {
  182. struct sk_buff *skb[IWL_NUM_OF_TBS - 1];
  183. };
  184. /**
  185. * struct iwl_tx_queue - Tx Queue for DMA
  186. * @q: generic Rx/Tx queue descriptor
  187. * @bd: base of circular buffer of TFDs
  188. * @cmd: array of command/TX buffer pointers
  189. * @meta: array of meta data for each command/tx buffer
  190. * @dma_addr_cmd: physical address of cmd/tx buffer array
  191. * @txb: array of per-TFD driver data
  192. * @need_update: indicates need to update read/write index
  193. * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
  194. *
  195. * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
  196. * descriptors) and required locking structures.
  197. */
  198. #define TFD_TX_CMD_SLOTS 256
  199. #define TFD_CMD_SLOTS 32
  200. struct iwl_tx_queue {
  201. struct iwl_queue q;
  202. void *tfds;
  203. struct iwl_device_cmd **cmd;
  204. struct iwl_cmd_meta *meta;
  205. struct iwl_tx_info *txb;
  206. u8 need_update;
  207. u8 sched_retry;
  208. u8 active;
  209. u8 swq_id;
  210. };
  211. #define IWL_NUM_SCAN_RATES (2)
  212. struct iwl4965_channel_tgd_info {
  213. u8 type;
  214. s8 max_power;
  215. };
  216. struct iwl4965_channel_tgh_info {
  217. s64 last_radar_time;
  218. };
  219. #define IWL4965_MAX_RATE (33)
  220. struct iwl3945_clip_group {
  221. /* maximum power level to prevent clipping for each rate, derived by
  222. * us from this band's saturation power in EEPROM */
  223. const s8 clip_powers[IWL_MAX_RATES];
  224. };
  225. /* current Tx power values to use, one for each rate for each channel.
  226. * requested power is limited by:
  227. * -- regulatory EEPROM limits for this channel
  228. * -- hardware capabilities (clip-powers)
  229. * -- spectrum management
  230. * -- user preference (e.g. iwconfig)
  231. * when requested power is set, base power index must also be set. */
  232. struct iwl3945_channel_power_info {
  233. struct iwl3945_tx_power tpc; /* actual radio and DSP gain settings */
  234. s8 power_table_index; /* actual (compenst'd) index into gain table */
  235. s8 base_power_index; /* gain index for power at factory temp. */
  236. s8 requested_power; /* power (dBm) requested for this chnl/rate */
  237. };
  238. /* current scan Tx power values to use, one for each scan rate for each
  239. * channel. */
  240. struct iwl3945_scan_power_info {
  241. struct iwl3945_tx_power tpc; /* actual radio and DSP gain settings */
  242. s8 power_table_index; /* actual (compenst'd) index into gain table */
  243. s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
  244. };
  245. /*
  246. * One for each channel, holds all channel setup data
  247. * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
  248. * with one another!
  249. */
  250. struct iwl_channel_info {
  251. struct iwl4965_channel_tgd_info tgd;
  252. struct iwl4965_channel_tgh_info tgh;
  253. struct iwl_eeprom_channel eeprom; /* EEPROM regulatory limit */
  254. struct iwl_eeprom_channel ht40_eeprom; /* EEPROM regulatory limit for
  255. * HT40 channel */
  256. u8 channel; /* channel number */
  257. u8 flags; /* flags copied from EEPROM */
  258. s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
  259. s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) limit */
  260. s8 min_power; /* always 0 */
  261. s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
  262. u8 group_index; /* 0-4, maps channel to group1/2/3/4/5 */
  263. u8 band_index; /* 0-4, maps channel to band1/2/3/4/5 */
  264. enum ieee80211_band band;
  265. /* HT40 channel info */
  266. s8 ht40_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
  267. s8 ht40_curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) */
  268. s8 ht40_min_power; /* always 0 */
  269. s8 ht40_scan_power; /* (dBm) eeprom, direct scans, any rate */
  270. u8 ht40_flags; /* flags copied from EEPROM */
  271. u8 ht40_extension_channel; /* HT_IE_EXT_CHANNEL_* */
  272. /* Radio/DSP gain settings for each "normal" data Tx rate.
  273. * These include, in addition to RF and DSP gain, a few fields for
  274. * remembering/modifying gain settings (indexes). */
  275. struct iwl3945_channel_power_info power_info[IWL4965_MAX_RATE];
  276. /* Radio/DSP gain settings for each scan rate, for directed scans. */
  277. struct iwl3945_scan_power_info scan_pwr_info[IWL_NUM_SCAN_RATES];
  278. };
  279. #define IWL_TX_FIFO_AC0 0
  280. #define IWL_TX_FIFO_AC1 1
  281. #define IWL_TX_FIFO_AC2 2
  282. #define IWL_TX_FIFO_AC3 3
  283. #define IWL_TX_FIFO_HCCA_1 5
  284. #define IWL_TX_FIFO_HCCA_2 6
  285. #define IWL_TX_FIFO_NONE 7
  286. /* Minimum number of queues. MAX_NUM is defined in hw specific files.
  287. * Set the minimum to accommodate the 4 standard TX queues, 1 command
  288. * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
  289. #define IWL_MIN_NUM_QUEUES 10
  290. /*
  291. * uCode queue management definitions ...
  292. * Queue #4 is the command queue for 3945/4965/5x00/1000/6x00.
  293. */
  294. #define IWL_CMD_QUEUE_NUM 4
  295. /* Power management (not Tx power) structures */
  296. enum iwl_pwr_src {
  297. IWL_PWR_SRC_VMAIN,
  298. IWL_PWR_SRC_VAUX,
  299. };
  300. #define IEEE80211_DATA_LEN 2304
  301. #define IEEE80211_4ADDR_LEN 30
  302. #define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
  303. #define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
  304. struct iwl_frame {
  305. union {
  306. struct ieee80211_hdr frame;
  307. struct iwl_tx_beacon_cmd beacon;
  308. u8 raw[IEEE80211_FRAME_LEN];
  309. u8 cmd[360];
  310. } u;
  311. struct list_head list;
  312. };
  313. #define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
  314. #define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
  315. #define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
  316. enum {
  317. CMD_SYNC = 0,
  318. CMD_SIZE_NORMAL = 0,
  319. CMD_NO_SKB = 0,
  320. CMD_SIZE_HUGE = (1 << 0),
  321. CMD_ASYNC = (1 << 1),
  322. CMD_WANT_SKB = (1 << 2),
  323. };
  324. #define DEF_CMD_PAYLOAD_SIZE 320
  325. /*
  326. * IWL_LINK_HDR_MAX should include ieee80211_hdr, radiotap header,
  327. * SNAP header and alignment. It should also be big enough for 802.11
  328. * control frames.
  329. */
  330. #define IWL_LINK_HDR_MAX 64
  331. /**
  332. * struct iwl_device_cmd
  333. *
  334. * For allocation of the command and tx queues, this establishes the overall
  335. * size of the largest command we send to uCode, except for a scan command
  336. * (which is relatively huge; space is allocated separately).
  337. */
  338. struct iwl_device_cmd {
  339. struct iwl_cmd_header hdr; /* uCode API */
  340. union {
  341. u32 flags;
  342. u8 val8;
  343. u16 val16;
  344. u32 val32;
  345. struct iwl_tx_cmd tx;
  346. struct iwl6000_channel_switch_cmd chswitch;
  347. u8 payload[DEF_CMD_PAYLOAD_SIZE];
  348. } __attribute__ ((packed)) cmd;
  349. } __attribute__ ((packed));
  350. #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd))
  351. struct iwl_host_cmd {
  352. const void *data;
  353. unsigned long reply_page;
  354. void (*callback)(struct iwl_priv *priv,
  355. struct iwl_device_cmd *cmd,
  356. struct iwl_rx_packet *pkt);
  357. u32 flags;
  358. u16 len;
  359. u8 id;
  360. };
  361. /*
  362. * RX related structures and functions
  363. */
  364. #define RX_FREE_BUFFERS 64
  365. #define RX_LOW_WATERMARK 8
  366. #define SUP_RATE_11A_MAX_NUM_CHANNELS 8
  367. #define SUP_RATE_11B_MAX_NUM_CHANNELS 4
  368. #define SUP_RATE_11G_MAX_NUM_CHANNELS 12
  369. /**
  370. * struct iwl_rx_queue - Rx queue
  371. * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
  372. * @dma_addr: bus address of buffer of receive buffer descriptors (rbd)
  373. * @read: Shared index to newest available Rx buffer
  374. * @write: Shared index to oldest written Rx packet
  375. * @free_count: Number of pre-allocated buffers in rx_free
  376. * @rx_free: list of free SKBs for use
  377. * @rx_used: List of Rx buffers with no SKB
  378. * @need_update: flag to indicate we need to update read/write index
  379. * @rb_stts: driver's pointer to receive buffer status
  380. * @rb_stts_dma: bus address of receive buffer status
  381. *
  382. * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
  383. */
  384. struct iwl_rx_queue {
  385. __le32 *bd;
  386. dma_addr_t dma_addr;
  387. struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
  388. struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
  389. u32 read;
  390. u32 write;
  391. u32 free_count;
  392. u32 write_actual;
  393. struct list_head rx_free;
  394. struct list_head rx_used;
  395. int need_update;
  396. struct iwl_rb_status *rb_stts;
  397. dma_addr_t rb_stts_dma;
  398. spinlock_t lock;
  399. };
  400. #define IWL_SUPPORTED_RATES_IE_LEN 8
  401. #define MAX_TID_COUNT 9
  402. #define IWL_INVALID_RATE 0xFF
  403. #define IWL_INVALID_VALUE -1
  404. /**
  405. * struct iwl_ht_agg -- aggregation status while waiting for block-ack
  406. * @txq_id: Tx queue used for Tx attempt
  407. * @frame_count: # frames attempted by Tx command
  408. * @wait_for_ba: Expect block-ack before next Tx reply
  409. * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx window
  410. * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx window
  411. * @bitmap1: High order, one bit for each frame pending ACK in Tx window
  412. * @rate_n_flags: Rate at which Tx was attempted
  413. *
  414. * If REPLY_TX indicates that aggregation was attempted, driver must wait
  415. * for block ack (REPLY_COMPRESSED_BA). This struct stores tx reply info
  416. * until block ack arrives.
  417. */
  418. struct iwl_ht_agg {
  419. u16 txq_id;
  420. u16 frame_count;
  421. u16 wait_for_ba;
  422. u16 start_idx;
  423. u64 bitmap;
  424. u32 rate_n_flags;
  425. #define IWL_AGG_OFF 0
  426. #define IWL_AGG_ON 1
  427. #define IWL_EMPTYING_HW_QUEUE_ADDBA 2
  428. #define IWL_EMPTYING_HW_QUEUE_DELBA 3
  429. u8 state;
  430. };
  431. struct iwl_tid_data {
  432. u16 seq_number;
  433. u16 tfds_in_queue;
  434. struct iwl_ht_agg agg;
  435. };
  436. struct iwl_hw_key {
  437. enum ieee80211_key_alg alg;
  438. int keylen;
  439. u8 keyidx;
  440. u8 key[32];
  441. };
  442. union iwl_ht_rate_supp {
  443. u16 rates;
  444. struct {
  445. u8 siso_rate;
  446. u8 mimo_rate;
  447. };
  448. };
  449. #define CFG_HT_RX_AMPDU_FACTOR_DEF (0x3)
  450. /*
  451. * Maximal MPDU density for TX aggregation
  452. * 4 - 2us density
  453. * 5 - 4us density
  454. * 6 - 8us density
  455. * 7 - 16us density
  456. */
  457. #define CFG_HT_MPDU_DENSITY_4USEC (0x5)
  458. #define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_4USEC
  459. struct iwl_ht_config {
  460. /* self configuration data */
  461. bool is_ht;
  462. bool is_40mhz;
  463. bool single_chain_sufficient;
  464. /* BSS related data */
  465. u8 extension_chan_offset;
  466. u8 ht_protection;
  467. u8 non_GF_STA_present;
  468. };
  469. union iwl_qos_capabity {
  470. struct {
  471. u8 edca_count:4; /* bit 0-3 */
  472. u8 q_ack:1; /* bit 4 */
  473. u8 queue_request:1; /* bit 5 */
  474. u8 txop_request:1; /* bit 6 */
  475. u8 reserved:1; /* bit 7 */
  476. } q_AP;
  477. struct {
  478. u8 acvo_APSD:1; /* bit 0 */
  479. u8 acvi_APSD:1; /* bit 1 */
  480. u8 ac_bk_APSD:1; /* bit 2 */
  481. u8 ac_be_APSD:1; /* bit 3 */
  482. u8 q_ack:1; /* bit 4 */
  483. u8 max_len:2; /* bit 5-6 */
  484. u8 more_data_ack:1; /* bit 7 */
  485. } q_STA;
  486. u8 val;
  487. };
  488. /* QoS structures */
  489. struct iwl_qos_info {
  490. int qos_active;
  491. union iwl_qos_capabity qos_cap;
  492. struct iwl_qosparam_cmd def_qos_parm;
  493. };
  494. #define STA_PS_STATUS_WAKE 0
  495. #define STA_PS_STATUS_SLEEP 1
  496. struct iwl3945_station_entry {
  497. struct iwl3945_addsta_cmd sta;
  498. struct iwl_tid_data tid[MAX_TID_COUNT];
  499. u8 used;
  500. u8 ps_status;
  501. struct iwl_hw_key keyinfo;
  502. };
  503. struct iwl_station_entry {
  504. struct iwl_addsta_cmd sta;
  505. struct iwl_tid_data tid[MAX_TID_COUNT];
  506. u8 used;
  507. u8 ps_status;
  508. struct iwl_hw_key keyinfo;
  509. };
  510. /*
  511. * iwl_station_priv: Driver's private station information
  512. *
  513. * When mac80211 creates a station it reserves some space (hw->sta_data_size)
  514. * in the structure for use by driver. This structure is places in that
  515. * space.
  516. *
  517. * At the moment use it for the station's rate scaling information.
  518. */
  519. struct iwl_station_priv {
  520. struct iwl_lq_sta lq_sta;
  521. };
  522. /* one for each uCode image (inst/data, boot/init/runtime) */
  523. struct fw_desc {
  524. void *v_addr; /* access by driver */
  525. dma_addr_t p_addr; /* access by card's busmaster DMA */
  526. u32 len; /* bytes */
  527. };
  528. /* uCode file layout */
  529. struct iwl_ucode_header {
  530. __le32 ver; /* major/minor/API/serial */
  531. union {
  532. struct {
  533. __le32 inst_size; /* bytes of runtime code */
  534. __le32 data_size; /* bytes of runtime data */
  535. __le32 init_size; /* bytes of init code */
  536. __le32 init_data_size; /* bytes of init data */
  537. __le32 boot_size; /* bytes of bootstrap code */
  538. u8 data[0]; /* in same order as sizes */
  539. } v1;
  540. struct {
  541. __le32 build; /* build number */
  542. __le32 inst_size; /* bytes of runtime code */
  543. __le32 data_size; /* bytes of runtime data */
  544. __le32 init_size; /* bytes of init code */
  545. __le32 init_data_size; /* bytes of init data */
  546. __le32 boot_size; /* bytes of bootstrap code */
  547. u8 data[0]; /* in same order as sizes */
  548. } v2;
  549. } u;
  550. };
  551. #define UCODE_HEADER_SIZE(ver) ((ver) == 1 ? 24 : 28)
  552. struct iwl4965_ibss_seq {
  553. u8 mac[ETH_ALEN];
  554. u16 seq_num;
  555. u16 frag_num;
  556. unsigned long packet_time;
  557. struct list_head list;
  558. };
  559. struct iwl_sensitivity_ranges {
  560. u16 min_nrg_cck;
  561. u16 max_nrg_cck;
  562. u16 nrg_th_cck;
  563. u16 nrg_th_ofdm;
  564. u16 auto_corr_min_ofdm;
  565. u16 auto_corr_min_ofdm_mrc;
  566. u16 auto_corr_min_ofdm_x1;
  567. u16 auto_corr_min_ofdm_mrc_x1;
  568. u16 auto_corr_max_ofdm;
  569. u16 auto_corr_max_ofdm_mrc;
  570. u16 auto_corr_max_ofdm_x1;
  571. u16 auto_corr_max_ofdm_mrc_x1;
  572. u16 auto_corr_max_cck;
  573. u16 auto_corr_max_cck_mrc;
  574. u16 auto_corr_min_cck;
  575. u16 auto_corr_min_cck_mrc;
  576. u16 barker_corr_th_min;
  577. u16 barker_corr_th_min_mrc;
  578. u16 nrg_th_cca;
  579. };
  580. #define KELVIN_TO_CELSIUS(x) ((x)-273)
  581. #define CELSIUS_TO_KELVIN(x) ((x)+273)
  582. /**
  583. * struct iwl_hw_params
  584. * @max_txq_num: Max # Tx queues supported
  585. * @dma_chnl_num: Number of Tx DMA/FIFO channels
  586. * @scd_bc_tbls_size: size of scheduler byte count tables
  587. * @tfd_size: TFD size
  588. * @tx/rx_chains_num: Number of TX/RX chains
  589. * @valid_tx/rx_ant: usable antennas
  590. * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
  591. * @max_rxq_log: Log-base-2 of max_rxq_size
  592. * @rx_page_order: Rx buffer page order
  593. * @rx_wrt_ptr_reg: FH{39}_RSCSR_CHNL0_WPTR
  594. * @max_stations:
  595. * @bcast_sta_id:
  596. * @ht40_channel: is 40MHz width possible in band 2.4
  597. * BIT(IEEE80211_BAND_5GHZ) BIT(IEEE80211_BAND_5GHZ)
  598. * @sw_crypto: 0 for hw, 1 for sw
  599. * @max_xxx_size: for ucode uses
  600. * @ct_kill_threshold: temperature threshold
  601. * @calib_init_cfg: setup initial calibrations for the hw
  602. * @struct iwl_sensitivity_ranges: range of sensitivity values
  603. */
  604. struct iwl_hw_params {
  605. u8 max_txq_num;
  606. u8 dma_chnl_num;
  607. u16 scd_bc_tbls_size;
  608. u32 tfd_size;
  609. u8 tx_chains_num;
  610. u8 rx_chains_num;
  611. u8 valid_tx_ant;
  612. u8 valid_rx_ant;
  613. u16 max_rxq_size;
  614. u16 max_rxq_log;
  615. u32 rx_page_order;
  616. u32 rx_wrt_ptr_reg;
  617. u8 max_stations;
  618. u8 bcast_sta_id;
  619. u8 ht40_channel;
  620. u8 max_beacon_itrvl; /* in 1024 ms */
  621. u32 max_inst_size;
  622. u32 max_data_size;
  623. u32 max_bsm_size;
  624. u32 ct_kill_threshold; /* value in hw-dependent units */
  625. u32 ct_kill_exit_threshold; /* value in hw-dependent units */
  626. /* for 1000, 6000 series and up */
  627. u32 calib_init_cfg;
  628. const struct iwl_sensitivity_ranges *sens;
  629. };
  630. /******************************************************************************
  631. *
  632. * Functions implemented in core module which are forward declared here
  633. * for use by iwl-[4-5].c
  634. *
  635. * NOTE: The implementation of these functions are not hardware specific
  636. * which is why they are in the core module files.
  637. *
  638. * Naming convention --
  639. * iwl_ <-- Is part of iwlwifi
  640. * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
  641. * iwl4965_bg_ <-- Called from work queue context
  642. * iwl4965_mac_ <-- mac80211 callback
  643. *
  644. ****************************************************************************/
  645. extern void iwl_update_chain_flags(struct iwl_priv *priv);
  646. extern int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src);
  647. extern const u8 iwl_bcast_addr[ETH_ALEN];
  648. extern int iwl_rxq_stop(struct iwl_priv *priv);
  649. extern void iwl_txq_ctx_stop(struct iwl_priv *priv);
  650. extern int iwl_queue_space(const struct iwl_queue *q);
  651. static inline int iwl_queue_used(const struct iwl_queue *q, int i)
  652. {
  653. return q->write_ptr > q->read_ptr ?
  654. (i >= q->read_ptr && i < q->write_ptr) :
  655. !(i < q->read_ptr && i >= q->write_ptr);
  656. }
  657. static inline u8 get_cmd_index(struct iwl_queue *q, u32 index, int is_huge)
  658. {
  659. /*
  660. * This is for init calibration result and scan command which
  661. * required buffer > TFD_MAX_PAYLOAD_SIZE,
  662. * the big buffer at end of command array
  663. */
  664. if (is_huge)
  665. return q->n_window; /* must be power of 2 */
  666. /* Otherwise, use normal size buffers */
  667. return index & (q->n_window - 1);
  668. }
  669. struct iwl_dma_ptr {
  670. dma_addr_t dma;
  671. void *addr;
  672. size_t size;
  673. };
  674. #define IWL_OPERATION_MODE_AUTO 0
  675. #define IWL_OPERATION_MODE_HT_ONLY 1
  676. #define IWL_OPERATION_MODE_MIXED 2
  677. #define IWL_OPERATION_MODE_20MHZ 3
  678. #define IWL_TX_CRC_SIZE 4
  679. #define IWL_TX_DELIMITER_SIZE 4
  680. #define TX_POWER_IWL_ILLEGAL_VOLTAGE -10000
  681. /* Sensitivity and chain noise calibration */
  682. #define INITIALIZATION_VALUE 0xFFFF
  683. #define IWL4965_CAL_NUM_BEACONS 20
  684. #define IWL_CAL_NUM_BEACONS 16
  685. #define MAXIMUM_ALLOWED_PATHLOSS 15
  686. #define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
  687. #define MAX_FA_OFDM 50
  688. #define MIN_FA_OFDM 5
  689. #define MAX_FA_CCK 50
  690. #define MIN_FA_CCK 5
  691. #define AUTO_CORR_STEP_OFDM 1
  692. #define AUTO_CORR_STEP_CCK 3
  693. #define AUTO_CORR_MAX_TH_CCK 160
  694. #define NRG_DIFF 2
  695. #define NRG_STEP_CCK 2
  696. #define NRG_MARGIN 8
  697. #define MAX_NUMBER_CCK_NO_FA 100
  698. #define AUTO_CORR_CCK_MIN_VAL_DEF (125)
  699. #define CHAIN_A 0
  700. #define CHAIN_B 1
  701. #define CHAIN_C 2
  702. #define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
  703. #define ALL_BAND_FILTER 0xFF00
  704. #define IN_BAND_FILTER 0xFF
  705. #define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
  706. #define NRG_NUM_PREV_STAT_L 20
  707. #define NUM_RX_CHAINS 3
  708. enum iwl4965_false_alarm_state {
  709. IWL_FA_TOO_MANY = 0,
  710. IWL_FA_TOO_FEW = 1,
  711. IWL_FA_GOOD_RANGE = 2,
  712. };
  713. enum iwl4965_chain_noise_state {
  714. IWL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
  715. IWL_CHAIN_NOISE_ACCUMULATE,
  716. IWL_CHAIN_NOISE_CALIBRATED,
  717. IWL_CHAIN_NOISE_DONE,
  718. };
  719. enum iwl4965_calib_enabled_state {
  720. IWL_CALIB_DISABLED = 0, /* must be 0 */
  721. IWL_CALIB_ENABLED = 1,
  722. };
  723. /*
  724. * enum iwl_calib
  725. * defines the order in which results of initial calibrations
  726. * should be sent to the runtime uCode
  727. */
  728. enum iwl_calib {
  729. IWL_CALIB_XTAL,
  730. IWL_CALIB_DC,
  731. IWL_CALIB_LO,
  732. IWL_CALIB_TX_IQ,
  733. IWL_CALIB_TX_IQ_PERD,
  734. IWL_CALIB_BASE_BAND,
  735. IWL_CALIB_MAX
  736. };
  737. /* Opaque calibration results */
  738. struct iwl_calib_result {
  739. void *buf;
  740. size_t buf_len;
  741. };
  742. enum ucode_type {
  743. UCODE_NONE = 0,
  744. UCODE_INIT,
  745. UCODE_RT
  746. };
  747. /* Sensitivity calib data */
  748. struct iwl_sensitivity_data {
  749. u32 auto_corr_ofdm;
  750. u32 auto_corr_ofdm_mrc;
  751. u32 auto_corr_ofdm_x1;
  752. u32 auto_corr_ofdm_mrc_x1;
  753. u32 auto_corr_cck;
  754. u32 auto_corr_cck_mrc;
  755. u32 last_bad_plcp_cnt_ofdm;
  756. u32 last_fa_cnt_ofdm;
  757. u32 last_bad_plcp_cnt_cck;
  758. u32 last_fa_cnt_cck;
  759. u32 nrg_curr_state;
  760. u32 nrg_prev_state;
  761. u32 nrg_value[10];
  762. u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
  763. u32 nrg_silence_ref;
  764. u32 nrg_energy_idx;
  765. u32 nrg_silence_idx;
  766. u32 nrg_th_cck;
  767. s32 nrg_auto_corr_silence_diff;
  768. u32 num_in_cck_no_fa;
  769. u32 nrg_th_ofdm;
  770. u16 barker_corr_th_min;
  771. u16 barker_corr_th_min_mrc;
  772. u16 nrg_th_cca;
  773. };
  774. /* Chain noise (differential Rx gain) calib data */
  775. struct iwl_chain_noise_data {
  776. u32 active_chains;
  777. u32 chain_noise_a;
  778. u32 chain_noise_b;
  779. u32 chain_noise_c;
  780. u32 chain_signal_a;
  781. u32 chain_signal_b;
  782. u32 chain_signal_c;
  783. u16 beacon_count;
  784. u8 disconn_array[NUM_RX_CHAINS];
  785. u8 delta_gain_code[NUM_RX_CHAINS];
  786. u8 radio_write;
  787. u8 state;
  788. };
  789. #define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
  790. #define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
  791. #define IWL_TRAFFIC_ENTRIES (256)
  792. #define IWL_TRAFFIC_ENTRY_SIZE (64)
  793. enum {
  794. MEASUREMENT_READY = (1 << 0),
  795. MEASUREMENT_ACTIVE = (1 << 1),
  796. };
  797. enum iwl_nvm_type {
  798. NVM_DEVICE_TYPE_EEPROM = 0,
  799. NVM_DEVICE_TYPE_OTP,
  800. };
  801. /*
  802. * Two types of OTP memory access modes
  803. * IWL_OTP_ACCESS_ABSOLUTE - absolute address mode,
  804. * based on physical memory addressing
  805. * IWL_OTP_ACCESS_RELATIVE - relative address mode,
  806. * based on logical memory addressing
  807. */
  808. enum iwl_access_mode {
  809. IWL_OTP_ACCESS_ABSOLUTE,
  810. IWL_OTP_ACCESS_RELATIVE,
  811. };
  812. /**
  813. * enum iwl_pa_type - Power Amplifier type
  814. * @IWL_PA_SYSTEM: based on uCode configuration
  815. * @IWL_PA_HYBRID: use both Internal and external PA
  816. * @IWL_PA_INTERNAL: use Internal only
  817. */
  818. enum iwl_pa_type {
  819. IWL_PA_SYSTEM = 0,
  820. IWL_PA_HYBRID = 1,
  821. IWL_PA_INTERNAL = 2,
  822. };
  823. /* interrupt statistics */
  824. struct isr_statistics {
  825. u32 hw;
  826. u32 sw;
  827. u32 sw_err;
  828. u32 sch;
  829. u32 alive;
  830. u32 rfkill;
  831. u32 ctkill;
  832. u32 wakeup;
  833. u32 rx;
  834. u32 rx_handlers[REPLY_MAX];
  835. u32 tx;
  836. u32 unhandled;
  837. };
  838. #ifdef CONFIG_IWLWIFI_DEBUGFS
  839. /* management statistics */
  840. enum iwl_mgmt_stats {
  841. MANAGEMENT_ASSOC_REQ = 0,
  842. MANAGEMENT_ASSOC_RESP,
  843. MANAGEMENT_REASSOC_REQ,
  844. MANAGEMENT_REASSOC_RESP,
  845. MANAGEMENT_PROBE_REQ,
  846. MANAGEMENT_PROBE_RESP,
  847. MANAGEMENT_BEACON,
  848. MANAGEMENT_ATIM,
  849. MANAGEMENT_DISASSOC,
  850. MANAGEMENT_AUTH,
  851. MANAGEMENT_DEAUTH,
  852. MANAGEMENT_ACTION,
  853. MANAGEMENT_MAX,
  854. };
  855. /* control statistics */
  856. enum iwl_ctrl_stats {
  857. CONTROL_BACK_REQ = 0,
  858. CONTROL_BACK,
  859. CONTROL_PSPOLL,
  860. CONTROL_RTS,
  861. CONTROL_CTS,
  862. CONTROL_ACK,
  863. CONTROL_CFEND,
  864. CONTROL_CFENDACK,
  865. CONTROL_MAX,
  866. };
  867. struct traffic_stats {
  868. u32 mgmt[MANAGEMENT_MAX];
  869. u32 ctrl[CONTROL_MAX];
  870. u32 data_cnt;
  871. u64 data_bytes;
  872. };
  873. #else
  874. struct traffic_stats {
  875. u64 data_bytes;
  876. };
  877. #endif
  878. struct iwl_priv {
  879. /* ieee device used by generic ieee processing code */
  880. struct ieee80211_hw *hw;
  881. struct ieee80211_channel *ieee_channels;
  882. struct ieee80211_rate *ieee_rates;
  883. struct iwl_cfg *cfg;
  884. /* temporary frame storage list */
  885. struct list_head free_frames;
  886. int frames_count;
  887. enum ieee80211_band band;
  888. int alloc_rxb_page;
  889. void (*rx_handlers[REPLY_MAX])(struct iwl_priv *priv,
  890. struct iwl_rx_mem_buffer *rxb);
  891. struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
  892. #if defined(CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT) || defined(CONFIG_IWL3945_SPECTRUM_MEASUREMENT)
  893. /* spectrum measurement report caching */
  894. struct iwl_spectrum_notification measure_report;
  895. u8 measurement_status;
  896. #endif
  897. /* ucode beacon time */
  898. u32 ucode_beacon_time;
  899. /* we allocate array of iwl4965_channel_info for NIC's valid channels.
  900. * Access via channel # using indirect index array */
  901. struct iwl_channel_info *channel_info; /* channel info array */
  902. u8 channel_count; /* # of channels */
  903. /* each calibration channel group in the EEPROM has a derived
  904. * clip setting for each rate. 3945 only.*/
  905. const struct iwl3945_clip_group clip39_groups[5];
  906. /* thermal calibration */
  907. s32 temperature; /* degrees Kelvin */
  908. s32 last_temperature;
  909. /* init calibration results */
  910. struct iwl_calib_result calib_results[IWL_CALIB_MAX];
  911. /* Scan related variables */
  912. unsigned long last_scan_jiffies;
  913. unsigned long next_scan_jiffies;
  914. unsigned long scan_start;
  915. unsigned long scan_pass_start;
  916. unsigned long scan_start_tsf;
  917. void *scan;
  918. int scan_bands;
  919. struct cfg80211_scan_request *scan_request;
  920. u8 scan_tx_ant[IEEE80211_NUM_BANDS];
  921. u8 mgmt_tx_ant;
  922. /* spinlock */
  923. spinlock_t lock; /* protect general shared data */
  924. spinlock_t hcmd_lock; /* protect hcmd */
  925. spinlock_t reg_lock; /* protect hw register access */
  926. struct mutex mutex;
  927. /* basic pci-network driver stuff */
  928. struct pci_dev *pci_dev;
  929. /* pci hardware address support */
  930. void __iomem *hw_base;
  931. u32 hw_rev;
  932. u32 hw_wa_rev;
  933. u8 rev_id;
  934. /* uCode images, save to reload in case of failure */
  935. u32 ucode_ver; /* version of ucode, copy of
  936. iwl_ucode.ver */
  937. struct fw_desc ucode_code; /* runtime inst */
  938. struct fw_desc ucode_data; /* runtime data original */
  939. struct fw_desc ucode_data_backup; /* runtime data save/restore */
  940. struct fw_desc ucode_init; /* initialization inst */
  941. struct fw_desc ucode_init_data; /* initialization data */
  942. struct fw_desc ucode_boot; /* bootstrap inst */
  943. enum ucode_type ucode_type;
  944. u8 ucode_write_complete; /* the image write is complete */
  945. struct iwl_rxon_time_cmd rxon_timing;
  946. /* We declare this const so it can only be
  947. * changed via explicit cast within the
  948. * routines that actually update the physical
  949. * hardware */
  950. const struct iwl_rxon_cmd active_rxon;
  951. struct iwl_rxon_cmd staging_rxon;
  952. struct iwl_rxon_cmd recovery_rxon;
  953. /* 1st responses from initialize and runtime uCode images.
  954. * 4965's initialize alive response contains some calibration data. */
  955. struct iwl_init_alive_resp card_alive_init;
  956. struct iwl_alive_resp card_alive;
  957. unsigned long last_blink_time;
  958. u8 last_blink_rate;
  959. u8 allow_blinking;
  960. u64 led_tpt;
  961. u16 active_rate;
  962. u16 active_rate_basic;
  963. u8 assoc_station_added;
  964. u8 start_calib;
  965. struct iwl_sensitivity_data sensitivity_data;
  966. struct iwl_chain_noise_data chain_noise_data;
  967. __le16 sensitivity_tbl[HD_TABLE_SIZE];
  968. struct iwl_ht_config current_ht_config;
  969. u8 last_phy_res[100];
  970. /* Rate scaling data */
  971. u8 retry_rate;
  972. wait_queue_head_t wait_command_queue;
  973. int activity_timer_active;
  974. /* Rx and Tx DMA processing queues */
  975. struct iwl_rx_queue rxq;
  976. struct iwl_tx_queue *txq;
  977. unsigned long txq_ctx_active_msk;
  978. struct iwl_dma_ptr kw; /* keep warm address */
  979. struct iwl_dma_ptr scd_bc_tbls;
  980. u32 scd_base_addr; /* scheduler sram base address */
  981. unsigned long status;
  982. int last_rx_rssi; /* From Rx packet statistics */
  983. int last_rx_noise; /* From beacon statistics */
  984. /* counts mgmt, ctl, and data packets */
  985. struct traffic_stats tx_stats;
  986. struct traffic_stats rx_stats;
  987. /* counts interrupts */
  988. struct isr_statistics isr_stats;
  989. struct iwl_power_mgr power_data;
  990. struct iwl_tt_mgmt thermal_throttle;
  991. struct iwl_notif_statistics statistics;
  992. #ifdef CONFIG_IWLWIFI_DEBUG
  993. struct iwl_notif_statistics accum_statistics;
  994. #endif
  995. /* context information */
  996. u16 rates_mask;
  997. u8 bssid[ETH_ALEN];
  998. u16 rts_threshold;
  999. u8 mac_addr[ETH_ALEN];
  1000. /*station table variables */
  1001. spinlock_t sta_lock;
  1002. int num_stations;
  1003. struct iwl_station_entry stations[IWL_STATION_COUNT];
  1004. struct iwl_wep_key wep_keys[WEP_KEYS_MAX];
  1005. u8 default_wep_key;
  1006. u8 key_mapping_key;
  1007. unsigned long ucode_key_table;
  1008. /* queue refcounts */
  1009. #define IWL_MAX_HW_QUEUES 32
  1010. unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
  1011. /* for each AC */
  1012. atomic_t queue_stop_count[4];
  1013. /* Indication if ieee80211_ops->open has been called */
  1014. u8 is_open;
  1015. u8 mac80211_registered;
  1016. /* Rx'd packet timing information */
  1017. u32 last_beacon_time;
  1018. u64 last_tsf;
  1019. /* eeprom */
  1020. u8 *eeprom;
  1021. int nvm_device_type;
  1022. struct iwl_eeprom_calib_info *calib_info;
  1023. enum nl80211_iftype iw_mode;
  1024. struct sk_buff *ibss_beacon;
  1025. /* Last Rx'd beacon timestamp */
  1026. u64 timestamp;
  1027. u16 beacon_int;
  1028. struct ieee80211_vif *vif;
  1029. /*Added for 3945 */
  1030. void *shared_virt;
  1031. dma_addr_t shared_phys;
  1032. /*End*/
  1033. struct iwl_hw_params hw_params;
  1034. /* INT ICT Table */
  1035. __le32 *ict_tbl;
  1036. dma_addr_t ict_tbl_dma;
  1037. dma_addr_t aligned_ict_tbl_dma;
  1038. int ict_index;
  1039. void *ict_tbl_vir;
  1040. u32 inta;
  1041. bool use_ict;
  1042. u32 inta_mask;
  1043. /* Current association information needed to configure the
  1044. * hardware */
  1045. u16 assoc_id;
  1046. u16 assoc_capability;
  1047. struct iwl_qos_info qos_data;
  1048. struct workqueue_struct *workqueue;
  1049. struct work_struct up;
  1050. struct work_struct restart;
  1051. struct work_struct calibrated_work;
  1052. struct work_struct scan_completed;
  1053. struct work_struct rx_replenish;
  1054. struct work_struct abort_scan;
  1055. struct work_struct update_link_led;
  1056. struct work_struct auth_work;
  1057. struct work_struct report_work;
  1058. struct work_struct request_scan;
  1059. struct work_struct beacon_update;
  1060. struct work_struct tt_work;
  1061. struct work_struct ct_enter;
  1062. struct work_struct ct_exit;
  1063. struct tasklet_struct irq_tasklet;
  1064. struct delayed_work init_alive_start;
  1065. struct delayed_work alive_start;
  1066. struct delayed_work scan_check;
  1067. /*For 3945 only*/
  1068. struct delayed_work thermal_periodic;
  1069. struct delayed_work rfkill_poll;
  1070. /* TX Power */
  1071. s8 tx_power_user_lmt;
  1072. s8 tx_power_device_lmt;
  1073. #ifdef CONFIG_IWLWIFI_DEBUG
  1074. /* debugging info */
  1075. u32 debug_level; /* per device debugging will override global
  1076. iwl_debug_level if set */
  1077. u32 framecnt_to_us;
  1078. atomic_t restrict_refcnt;
  1079. bool disable_ht40;
  1080. #ifdef CONFIG_IWLWIFI_DEBUGFS
  1081. /* debugfs */
  1082. u16 tx_traffic_idx;
  1083. u16 rx_traffic_idx;
  1084. u8 *tx_traffic;
  1085. u8 *rx_traffic;
  1086. struct iwl_debugfs *dbgfs;
  1087. #endif /* CONFIG_IWLWIFI_DEBUGFS */
  1088. #endif /* CONFIG_IWLWIFI_DEBUG */
  1089. struct work_struct txpower_work;
  1090. u32 disable_sens_cal;
  1091. u32 disable_chain_noise_cal;
  1092. u32 disable_tx_power_cal;
  1093. struct work_struct run_time_calib_work;
  1094. struct timer_list statistics_periodic;
  1095. bool hw_ready;
  1096. /*For 3945*/
  1097. #define IWL_DEFAULT_TX_POWER 0x0F
  1098. struct iwl3945_notif_statistics statistics_39;
  1099. u32 sta_supp_rates;
  1100. }; /*iwl_priv */
  1101. static inline void iwl_txq_ctx_activate(struct iwl_priv *priv, int txq_id)
  1102. {
  1103. set_bit(txq_id, &priv->txq_ctx_active_msk);
  1104. }
  1105. static inline void iwl_txq_ctx_deactivate(struct iwl_priv *priv, int txq_id)
  1106. {
  1107. clear_bit(txq_id, &priv->txq_ctx_active_msk);
  1108. }
  1109. #ifdef CONFIG_IWLWIFI_DEBUG
  1110. const char *iwl_get_tx_fail_reason(u32 status);
  1111. /*
  1112. * iwl_get_debug_level: Return active debug level for device
  1113. *
  1114. * Using sysfs it is possible to set per device debug level. This debug
  1115. * level will be used if set, otherwise the global debug level which can be
  1116. * set via module parameter is used.
  1117. */
  1118. static inline u32 iwl_get_debug_level(struct iwl_priv *priv)
  1119. {
  1120. if (priv->debug_level)
  1121. return priv->debug_level;
  1122. else
  1123. return iwl_debug_level;
  1124. }
  1125. #else
  1126. static inline const char *iwl_get_tx_fail_reason(u32 status) { return ""; }
  1127. static inline u32 iwl_get_debug_level(struct iwl_priv *priv)
  1128. {
  1129. return iwl_debug_level;
  1130. }
  1131. #endif
  1132. static inline struct ieee80211_hdr *iwl_tx_queue_get_hdr(struct iwl_priv *priv,
  1133. int txq_id, int idx)
  1134. {
  1135. if (priv->txq[txq_id].txb[idx].skb[0])
  1136. return (struct ieee80211_hdr *)priv->txq[txq_id].
  1137. txb[idx].skb[0]->data;
  1138. return NULL;
  1139. }
  1140. static inline int iwl_is_associated(struct iwl_priv *priv)
  1141. {
  1142. return (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
  1143. }
  1144. static inline int is_channel_valid(const struct iwl_channel_info *ch_info)
  1145. {
  1146. if (ch_info == NULL)
  1147. return 0;
  1148. return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
  1149. }
  1150. static inline int is_channel_radar(const struct iwl_channel_info *ch_info)
  1151. {
  1152. return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
  1153. }
  1154. static inline u8 is_channel_a_band(const struct iwl_channel_info *ch_info)
  1155. {
  1156. return ch_info->band == IEEE80211_BAND_5GHZ;
  1157. }
  1158. static inline u8 is_channel_bg_band(const struct iwl_channel_info *ch_info)
  1159. {
  1160. return ch_info->band == IEEE80211_BAND_2GHZ;
  1161. }
  1162. static inline int is_channel_passive(const struct iwl_channel_info *ch)
  1163. {
  1164. return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
  1165. }
  1166. static inline int is_channel_ibss(const struct iwl_channel_info *ch)
  1167. {
  1168. return ((ch->flags & EEPROM_CHANNEL_IBSS)) ? 1 : 0;
  1169. }
  1170. #endif /* __iwl_dev_h__ */