iwlwifi: update copyright year to 2010
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-4965-hw.h
CommitLineData
b481de9c
ZY
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
1f447808 8 * Copyright(c) 2005 - 2010 Intel Corporation. All rights reserved.
b481de9c
ZY
9 *
10 * This program is free software; you can redistribute it and/or modify
01ebd063 11 * it under the terms of version 2 of the GNU General Public License as
b481de9c
ZY
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
759ef89f 28 * Intel Linux Wireless <ilw@linux.intel.com>
b481de9c
ZY
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
1f447808 33 * Copyright(c) 2005 - 2010 Intel Corporation. All rights reserved.
b481de9c
ZY
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
fcd427bb
BC
63/*
64 * Please use this file (iwl-4965-hw.h) only for hardware-related definitions.
5a36ba0e 65 * Use iwl-commands.h for uCode API definitions.
3e0d4cb1 66 * Use iwl-dev.h for driver implementation definitions.
fcd427bb 67 */
b481de9c
ZY
68
69#ifndef __iwl_4965_hw_h__
70#define __iwl_4965_hw_h__
71
4b52c39d
EG
72#include "iwl-fh.h"
73
a96a27f9 74/* EEPROM */
073d3f5f
TW
75#define IWL4965_EEPROM_IMG_SIZE 1024
76
1fea8e88
BC
77/*
78 * uCode queue management definitions ...
1fea8e88
BC
79 * The first queue used for block-ack aggregation is #7 (4965 only).
80 * All block-ack aggregation queues should map to Tx DMA/FIFO channel 7.
81 */
7f3e4bb6 82#define IWL49_FIRST_AMPDU_QUEUE 7
5d08cd1d 83
5d08cd1d
CH
84/* Time constants */
85#define SHORT_SLOT_TIME 9
86#define LONG_SLOT_TIME 20
87
88/* RSSI to dBm */
250bdd21 89#define IWL49_RSSI_OFFSET 44
5d08cd1d 90
5d08cd1d 91
8f061891 92/* PCI registers */
e7b63581 93#define PCI_CFG_RETRY_TIMEOUT 0x041
8f061891
TW
94
95/* PCI register values */
e7b63581
TW
96#define PCI_CFG_LINK_CTRL_VAL_L0S_EN 0x01
97#define PCI_CFG_LINK_CTRL_VAL_L1_EN 0x02
5d08cd1d 98
5d08cd1d
CH
99#define IWL_NUM_SCAN_RATES (2)
100
5d08cd1d 101#define IWL_DEFAULT_TX_RETRY 15
5d08cd1d 102
fcd427bb
BC
103
104/* Sizes and addresses for instruction and data memory (SRAM) in
105 * 4965's embedded processor. Driver access is via HBUS_TARG_MEM_* regs. */
250bdd21 106#define IWL49_RTC_INST_LOWER_BOUND (0x000000)
12a81f60 107#define IWL49_RTC_INST_UPPER_BOUND (0x018000)
fcd427bb 108
250bdd21 109#define IWL49_RTC_DATA_LOWER_BOUND (0x800000)
12a81f60 110#define IWL49_RTC_DATA_UPPER_BOUND (0x80A000)
fcd427bb 111
250bdd21
SO
112#define IWL49_RTC_INST_SIZE (IWL49_RTC_INST_UPPER_BOUND - \
113 IWL49_RTC_INST_LOWER_BOUND)
114#define IWL49_RTC_DATA_SIZE (IWL49_RTC_DATA_UPPER_BOUND - \
115 IWL49_RTC_DATA_LOWER_BOUND)
b481de9c 116
250bdd21
SO
117#define IWL49_MAX_INST_SIZE IWL49_RTC_INST_SIZE
118#define IWL49_MAX_DATA_SIZE IWL49_RTC_DATA_SIZE
b481de9c 119
fcd427bb 120/* Size of uCode instruction memory in bootstrap state machine */
250bdd21 121#define IWL49_MAX_BSM_SIZE BSM_SRAM_SIZE
fcd427bb 122
bb8c093b 123static inline int iwl4965_hw_valid_rtc_data_addr(u32 addr)
b481de9c 124{
250bdd21 125 return (addr >= IWL49_RTC_DATA_LOWER_BOUND) &&
12a81f60 126 (addr < IWL49_RTC_DATA_UPPER_BOUND);
b481de9c
ZY
127}
128
5991b419 129/********************* START TEMPERATURE *************************************/
b481de9c 130
0c434c5a 131/**
5991b419
BC
132 * 4965 temperature calculation.
133 *
134 * The driver must calculate the device temperature before calculating
135 * a txpower setting (amplifier gain is temperature dependent). The
136 * calculation uses 4 measurements, 3 of which (R1, R2, R3) are calibration
137 * values used for the life of the driver, and one of which (R4) is the
138 * real-time temperature indicator.
139 *
140 * uCode provides all 4 values to the driver via the "initialize alive"
141 * notification (see struct iwl4965_init_alive_resp). After the runtime uCode
142 * image loads, uCode updates the R4 value via statistics notifications
143 * (see STATISTICS_NOTIFICATION), which occur after each received beacon
144 * when associated, or can be requested via REPLY_STATISTICS_CMD.
145 *
146 * NOTE: uCode provides the R4 value as a 23-bit signed value. Driver
147 * must sign-extend to 32 bits before applying formula below.
148 *
149 * Formula:
150 *
151 * degrees Kelvin = ((97 * 259 * (R4 - R2) / (R3 - R1)) / 100) + 8
152 *
153 * NOTE: The basic formula is 259 * (R4-R2) / (R3-R1). The 97/100 is
154 * an additional correction, which should be centered around 0 degrees
155 * Celsius (273 degrees Kelvin). The 8 (3 percent of 273) compensates for
156 * centering the 97/100 correction around 0 degrees K.
157 *
158 * Add 273 to Kelvin value to find degrees Celsius, for comparing current
159 * temperature with factory-measured temperatures when calculating txpower
160 * settings.
161 */
b481de9c
ZY
162#define TEMPERATURE_CALIB_KELVIN_OFFSET 8
163#define TEMPERATURE_CALIB_A_VAL 259
164
5991b419 165/* Limit range of calculated temperature to be between these Kelvin values */
b481de9c
ZY
166#define IWL_TX_POWER_TEMPERATURE_MIN (263)
167#define IWL_TX_POWER_TEMPERATURE_MAX (410)
168
169#define IWL_TX_POWER_TEMPERATURE_OUT_OF_RANGE(t) \
170 (((t) < IWL_TX_POWER_TEMPERATURE_MIN) || \
171 ((t) > IWL_TX_POWER_TEMPERATURE_MAX))
172
5991b419
BC
173/********************* END TEMPERATURE ***************************************/
174
175/********************* START TXPOWER *****************************************/
176
0c434c5a
BC
177/**
178 * 4965 txpower calculations rely on information from three sources:
179 *
180 * 1) EEPROM
181 * 2) "initialize" alive notification
182 * 3) statistics notifications
183 *
184 * EEPROM data consists of:
185 *
186 * 1) Regulatory information (max txpower and channel usage flags) is provided
187 * separately for each channel that can possibly supported by 4965.
7aafef1c 188 * 40 MHz wide (.11n HT40) channels are listed separately from 20 MHz
0c434c5a
BC
189 * (legacy) channels.
190 *
191 * See struct iwl4965_eeprom_channel for format, and struct iwl4965_eeprom
192 * for locations in EEPROM.
193 *
194 * 2) Factory txpower calibration information is provided separately for
195 * sub-bands of contiguous channels. 2.4GHz has just one sub-band,
196 * but 5 GHz has several sub-bands.
197 *
198 * In addition, per-band (2.4 and 5 Ghz) saturation txpowers are provided.
199 *
200 * See struct iwl4965_eeprom_calib_info (and the tree of structures
201 * contained within it) for format, and struct iwl4965_eeprom for
202 * locations in EEPROM.
203 *
204 * "Initialization alive" notification (see struct iwl4965_init_alive_resp)
205 * consists of:
206 *
207 * 1) Temperature calculation parameters.
208 *
209 * 2) Power supply voltage measurement.
210 *
211 * 3) Tx gain compensation to balance 2 transmitters for MIMO use.
212 *
213 * Statistics notifications deliver:
214 *
215 * 1) Current values for temperature param R4.
216 */
5991b419 217
0c434c5a
BC
218/**
219 * To calculate a txpower setting for a given desired target txpower, channel,
220 * modulation bit rate, and transmitter chain (4965 has 2 transmitters to
221 * support MIMO and transmit diversity), driver must do the following:
222 *
223 * 1) Compare desired txpower vs. (EEPROM) regulatory limit for this channel.
224 * Do not exceed regulatory limit; reduce target txpower if necessary.
225 *
226 * If setting up txpowers for MIMO rates (rate indexes 8-15, 24-31),
227 * 2 transmitters will be used simultaneously; driver must reduce the
228 * regulatory limit by 3 dB (half-power) for each transmitter, so the
229 * combined total output of the 2 transmitters is within regulatory limits.
230 *
231 *
232 * 2) Compare target txpower vs. (EEPROM) saturation txpower *reduced by
233 * backoff for this bit rate*. Do not exceed (saturation - backoff[rate]);
234 * reduce target txpower if necessary.
235 *
236 * Backoff values below are in 1/2 dB units (equivalent to steps in
237 * txpower gain tables):
238 *
239 * OFDM 6 - 36 MBit: 10 steps (5 dB)
240 * OFDM 48 MBit: 15 steps (7.5 dB)
241 * OFDM 54 MBit: 17 steps (8.5 dB)
242 * OFDM 60 MBit: 20 steps (10 dB)
243 * CCK all rates: 10 steps (5 dB)
244 *
245 * Backoff values apply to saturation txpower on a per-transmitter basis;
246 * when using MIMO (2 transmitters), each transmitter uses the same
247 * saturation level provided in EEPROM, and the same backoff values;
248 * no reduction (such as with regulatory txpower limits) is required.
249 *
250 * Saturation and Backoff values apply equally to 20 Mhz (legacy) channel
7aafef1c
WYG
251 * widths and 40 Mhz (.11n HT40) channel widths; there is no separate
252 * factory measurement for ht40 channels.
0c434c5a
BC
253 *
254 * The result of this step is the final target txpower. The rest of
255 * the steps figure out the proper settings for the device to achieve
256 * that target txpower.
257 *
258 *
a96a27f9
TW
259 * 3) Determine (EEPROM) calibration sub band for the target channel, by
260 * comparing against first and last channels in each sub band
0c434c5a
BC
261 * (see struct iwl4965_eeprom_calib_subband_info).
262 *
263 *
264 * 4) Linearly interpolate (EEPROM) factory calibration measurement sets,
a96a27f9 265 * referencing the 2 factory-measured (sample) channels within the sub band.
0c434c5a
BC
266 *
267 * Interpolation is based on difference between target channel's frequency
268 * and the sample channels' frequencies. Since channel numbers are based
269 * on frequency (5 MHz between each channel number), this is equivalent
270 * to interpolating based on channel number differences.
271 *
272 * Note that the sample channels may or may not be the channels at the
a96a27f9 273 * edges of the sub band. The target channel may be "outside" of the
0c434c5a
BC
274 * span of the sampled channels.
275 *
276 * Driver may choose the pair (for 2 Tx chains) of measurements (see
277 * struct iwl4965_eeprom_calib_ch_info) for which the actual measured
278 * txpower comes closest to the desired txpower. Usually, though,
279 * the middle set of measurements is closest to the regulatory limits,
280 * and is therefore a good choice for all txpower calculations (this
281 * assumes that high accuracy is needed for maximizing legal txpower,
282 * while lower txpower configurations do not need as much accuracy).
283 *
284 * Driver should interpolate both members of the chosen measurement pair,
285 * i.e. for both Tx chains (radio transmitters), unless the driver knows
286 * that only one of the chains will be used (e.g. only one tx antenna
287 * connected, but this should be unusual). The rate scaling algorithm
288 * switches antennas to find best performance, so both Tx chains will
289 * be used (although only one at a time) even for non-MIMO transmissions.
290 *
291 * Driver should interpolate factory values for temperature, gain table
292 * index, and actual power. The power amplifier detector values are
293 * not used by the driver.
294 *
295 * Sanity check: If the target channel happens to be one of the sample
296 * channels, the results should agree with the sample channel's
297 * measurements!
298 *
299 *
300 * 5) Find difference between desired txpower and (interpolated)
301 * factory-measured txpower. Using (interpolated) factory gain table index
302 * (shown elsewhere) as a starting point, adjust this index lower to
303 * increase txpower, or higher to decrease txpower, until the target
304 * txpower is reached. Each step in the gain table is 1/2 dB.
305 *
306 * For example, if factory measured txpower is 16 dBm, and target txpower
307 * is 13 dBm, add 6 steps to the factory gain index to reduce txpower
308 * by 3 dB.
309 *
310 *
311 * 6) Find difference between current device temperature and (interpolated)
312 * factory-measured temperature for sub-band. Factory values are in
313 * degrees Celsius. To calculate current temperature, see comments for
314 * "4965 temperature calculation".
315 *
316 * If current temperature is higher than factory temperature, driver must
a96a27f9 317 * increase gain (lower gain table index), and vice verse.
0c434c5a
BC
318 *
319 * Temperature affects gain differently for different channels:
320 *
321 * 2.4 GHz all channels: 3.5 degrees per half-dB step
322 * 5 GHz channels 34-43: 4.5 degrees per half-dB step
323 * 5 GHz channels >= 44: 4.0 degrees per half-dB step
324 *
325 * NOTE: Temperature can increase rapidly when transmitting, especially
326 * with heavy traffic at high txpowers. Driver should update
327 * temperature calculations often under these conditions to
328 * maintain strong txpower in the face of rising temperature.
329 *
330 *
331 * 7) Find difference between current power supply voltage indicator
332 * (from "initialize alive") and factory-measured power supply voltage
333 * indicator (EEPROM).
334 *
335 * If the current voltage is higher (indicator is lower) than factory
336 * voltage, gain should be reduced (gain table index increased) by:
337 *
338 * (eeprom - current) / 7
339 *
340 * If the current voltage is lower (indicator is higher) than factory
341 * voltage, gain should be increased (gain table index decreased) by:
342 *
343 * 2 * (current - eeprom) / 7
344 *
345 * If number of index steps in either direction turns out to be > 2,
346 * something is wrong ... just use 0.
347 *
348 * NOTE: Voltage compensation is independent of band/channel.
349 *
350 * NOTE: "Initialize" uCode measures current voltage, which is assumed
351 * to be constant after this initial measurement. Voltage
352 * compensation for txpower (number of steps in gain table)
353 * may be calculated once and used until the next uCode bootload.
354 *
355 *
356 * 8) If setting up txpowers for MIMO rates (rate indexes 8-15, 24-31),
357 * adjust txpower for each transmitter chain, so txpower is balanced
358 * between the two chains. There are 5 pairs of tx_atten[group][chain]
359 * values in "initialize alive", one pair for each of 5 channel ranges:
360 *
361 * Group 0: 5 GHz channel 34-43
362 * Group 1: 5 GHz channel 44-70
363 * Group 2: 5 GHz channel 71-124
364 * Group 3: 5 GHz channel 125-200
365 * Group 4: 2.4 GHz all channels
366 *
367 * Add the tx_atten[group][chain] value to the index for the target chain.
368 * The values are signed, but are in pairs of 0 and a non-negative number,
369 * so as to reduce gain (if necessary) of the "hotter" channel. This
370 * avoids any need to double-check for regulatory compliance after
371 * this step.
372 *
373 *
374 * 9) If setting up for a CCK rate, lower the gain by adding a CCK compensation
375 * value to the index:
376 *
377 * Hardware rev B: 9 steps (4.5 dB)
378 * Hardware rev C: 5 steps (2.5 dB)
379 *
380 * Hardware rev for 4965 can be determined by reading CSR_HW_REV_WA_REG,
381 * bits [3:2], 1 = B, 2 = C.
382 *
383 * NOTE: This compensation is in addition to any saturation backoff that
384 * might have been applied in an earlier step.
385 *
386 *
387 * 10) Select the gain table, based on band (2.4 vs 5 GHz).
388 *
389 * Limit the adjusted index to stay within the table!
390 *
391 *
392 * 11) Read gain table entries for DSP and radio gain, place into appropriate
393 * location(s) in command (struct iwl4965_txpowertable_cmd).
394 */
b481de9c 395
0c434c5a 396/* Limit range of txpower output target to be between these values */
b481de9c
ZY
397#define IWL_TX_POWER_TARGET_POWER_MIN (0) /* 0 dBm = 1 milliwatt */
398#define IWL_TX_POWER_TARGET_POWER_MAX (16) /* 16 dBm */
399
0c434c5a
BC
400/**
401 * When MIMO is used (2 transmitters operating simultaneously), driver should
402 * limit each transmitter to deliver a max of 3 dB below the regulatory limit
403 * for the device. That is, use half power for each transmitter, so total
404 * txpower is within regulatory limits.
405 *
406 * The value "6" represents number of steps in gain table to reduce power 3 dB.
407 * Each step is 1/2 dB.
408 */
409#define IWL_TX_POWER_MIMO_REGULATORY_COMPENSATION (6)
410
411/**
412 * CCK gain compensation.
413 *
414 * When calculating txpowers for CCK, after making sure that the target power
415 * is within regulatory and saturation limits, driver must additionally
416 * back off gain by adding these values to the gain table index.
417 *
418 * Hardware rev for 4965 can be determined by reading CSR_HW_REV_WA_REG,
419 * bits [3:2], 1 = B, 2 = C.
420 */
421#define IWL_TX_POWER_CCK_COMPENSATION_B_STEP (9)
422#define IWL_TX_POWER_CCK_COMPENSATION_C_STEP (5)
423
424/*
425 * 4965 power supply voltage compensation for txpower
426 */
427#define TX_POWER_IWL_VOLTAGE_CODES_PER_03V (7)
428
429/**
430 * Gain tables.
431 *
432 * The following tables contain pair of values for setting txpower, i.e.
433 * gain settings for the output of the device's digital signal processor (DSP),
434 * and for the analog gain structure of the transmitter.
435 *
436 * Each entry in the gain tables represents a step of 1/2 dB. Note that these
437 * are *relative* steps, not indications of absolute output power. Output
438 * power varies with temperature, voltage, and channel frequency, and also
439 * requires consideration of average power (to satisfy regulatory constraints),
440 * and peak power (to avoid distortion of the output signal).
441 *
442 * Each entry contains two values:
443 * 1) DSP gain (or sometimes called DSP attenuation). This is a fine-grained
444 * linear value that multiplies the output of the digital signal processor,
445 * before being sent to the analog radio.
446 * 2) Radio gain. This sets the analog gain of the radio Tx path.
447 * It is a coarser setting, and behaves in a logarithmic (dB) fashion.
448 *
449 * EEPROM contains factory calibration data for txpower. This maps actual
450 * measured txpower levels to gain settings in the "well known" tables
451 * below ("well-known" means here that both factory calibration *and* the
452 * driver work with the same table).
453 *
454 * There are separate tables for 2.4 GHz and 5 GHz bands. The 5 GHz table
455 * has an extension (into negative indexes), in case the driver needs to
456 * boost power setting for high device temperatures (higher than would be
457 * present during factory calibration). A 5 Ghz EEPROM index of "40"
458 * corresponds to the 49th entry in the table used by the driver.
459 */
460#define MIN_TX_GAIN_INDEX (0) /* highest gain, lowest idx, 2.4 */
461#define MIN_TX_GAIN_INDEX_52GHZ_EXT (-9) /* highest gain, lowest idx, 5 */
462
463/**
464 * 2.4 GHz gain table
465 *
466 * Index Dsp gain Radio gain
467 * 0 110 0x3f (highest gain)
468 * 1 104 0x3f
469 * 2 98 0x3f
470 * 3 110 0x3e
471 * 4 104 0x3e
472 * 5 98 0x3e
473 * 6 110 0x3d
474 * 7 104 0x3d
475 * 8 98 0x3d
476 * 9 110 0x3c
477 * 10 104 0x3c
478 * 11 98 0x3c
479 * 12 110 0x3b
480 * 13 104 0x3b
481 * 14 98 0x3b
482 * 15 110 0x3a
483 * 16 104 0x3a
484 * 17 98 0x3a
485 * 18 110 0x39
486 * 19 104 0x39
487 * 20 98 0x39
488 * 21 110 0x38
489 * 22 104 0x38
490 * 23 98 0x38
491 * 24 110 0x37
492 * 25 104 0x37
493 * 26 98 0x37
494 * 27 110 0x36
495 * 28 104 0x36
496 * 29 98 0x36
497 * 30 110 0x35
498 * 31 104 0x35
499 * 32 98 0x35
500 * 33 110 0x34
501 * 34 104 0x34
502 * 35 98 0x34
503 * 36 110 0x33
504 * 37 104 0x33
505 * 38 98 0x33
506 * 39 110 0x32
507 * 40 104 0x32
508 * 41 98 0x32
509 * 42 110 0x31
510 * 43 104 0x31
511 * 44 98 0x31
512 * 45 110 0x30
513 * 46 104 0x30
514 * 47 98 0x30
515 * 48 110 0x6
516 * 49 104 0x6
517 * 50 98 0x6
518 * 51 110 0x5
519 * 52 104 0x5
520 * 53 98 0x5
521 * 54 110 0x4
522 * 55 104 0x4
523 * 56 98 0x4
524 * 57 110 0x3
525 * 58 104 0x3
526 * 59 98 0x3
527 * 60 110 0x2
528 * 61 104 0x2
529 * 62 98 0x2
530 * 63 110 0x1
531 * 64 104 0x1
532 * 65 98 0x1
533 * 66 110 0x0
534 * 67 104 0x0
535 * 68 98 0x0
536 * 69 97 0
537 * 70 96 0
538 * 71 95 0
539 * 72 94 0
540 * 73 93 0
541 * 74 92 0
542 * 75 91 0
543 * 76 90 0
544 * 77 89 0
545 * 78 88 0
546 * 79 87 0
547 * 80 86 0
548 * 81 85 0
549 * 82 84 0
550 * 83 83 0
551 * 84 82 0
552 * 85 81 0
553 * 86 80 0
554 * 87 79 0
555 * 88 78 0
556 * 89 77 0
557 * 90 76 0
558 * 91 75 0
559 * 92 74 0
560 * 93 73 0
561 * 94 72 0
562 * 95 71 0
563 * 96 70 0
564 * 97 69 0
565 * 98 68 0
566 */
567
568/**
569 * 5 GHz gain table
570 *
571 * Index Dsp gain Radio gain
572 * -9 123 0x3F (highest gain)
573 * -8 117 0x3F
574 * -7 110 0x3F
575 * -6 104 0x3F
576 * -5 98 0x3F
577 * -4 110 0x3E
578 * -3 104 0x3E
579 * -2 98 0x3E
580 * -1 110 0x3D
581 * 0 104 0x3D
582 * 1 98 0x3D
583 * 2 110 0x3C
584 * 3 104 0x3C
585 * 4 98 0x3C
586 * 5 110 0x3B
587 * 6 104 0x3B
588 * 7 98 0x3B
589 * 8 110 0x3A
590 * 9 104 0x3A
591 * 10 98 0x3A
592 * 11 110 0x39
593 * 12 104 0x39
594 * 13 98 0x39
595 * 14 110 0x38
596 * 15 104 0x38
597 * 16 98 0x38
598 * 17 110 0x37
599 * 18 104 0x37
600 * 19 98 0x37
601 * 20 110 0x36
602 * 21 104 0x36
603 * 22 98 0x36
604 * 23 110 0x35
605 * 24 104 0x35
606 * 25 98 0x35
607 * 26 110 0x34
608 * 27 104 0x34
609 * 28 98 0x34
610 * 29 110 0x33
611 * 30 104 0x33
612 * 31 98 0x33
613 * 32 110 0x32
614 * 33 104 0x32
615 * 34 98 0x32
616 * 35 110 0x31
617 * 36 104 0x31
618 * 37 98 0x31
619 * 38 110 0x30
620 * 39 104 0x30
621 * 40 98 0x30
622 * 41 110 0x25
623 * 42 104 0x25
624 * 43 98 0x25
625 * 44 110 0x24
626 * 45 104 0x24
627 * 46 98 0x24
628 * 47 110 0x23
629 * 48 104 0x23
630 * 49 98 0x23
631 * 50 110 0x22
632 * 51 104 0x18
633 * 52 98 0x18
634 * 53 110 0x17
635 * 54 104 0x17
636 * 55 98 0x17
637 * 56 110 0x16
638 * 57 104 0x16
639 * 58 98 0x16
640 * 59 110 0x15
641 * 60 104 0x15
642 * 61 98 0x15
643 * 62 110 0x14
644 * 63 104 0x14
645 * 64 98 0x14
646 * 65 110 0x13
647 * 66 104 0x13
648 * 67 98 0x13
649 * 68 110 0x12
650 * 69 104 0x08
651 * 70 98 0x08
652 * 71 110 0x07
653 * 72 104 0x07
654 * 73 98 0x07
655 * 74 110 0x06
656 * 75 104 0x06
657 * 76 98 0x06
658 * 77 110 0x05
659 * 78 104 0x05
660 * 79 98 0x05
661 * 80 110 0x04
662 * 81 104 0x04
663 * 82 98 0x04
664 * 83 110 0x03
665 * 84 104 0x03
666 * 85 98 0x03
667 * 86 110 0x02
668 * 87 104 0x02
669 * 88 98 0x02
670 * 89 110 0x01
671 * 90 104 0x01
672 * 91 98 0x01
673 * 92 110 0x00
674 * 93 104 0x00
675 * 94 98 0x00
676 * 95 93 0x00
677 * 96 88 0x00
678 * 97 83 0x00
679 * 98 78 0x00
680 */
b481de9c 681
0c434c5a
BC
682
683/**
684 * Sanity checks and default values for EEPROM regulatory levels.
685 * If EEPROM values fall outside MIN/MAX range, use default values.
686 *
687 * Regulatory limits refer to the maximum average txpower allowed by
688 * regulatory agencies in the geographies in which the device is meant
689 * to be operated. These limits are SKU-specific (i.e. geography-specific),
690 * and channel-specific; each channel has an individual regulatory limit
691 * listed in the EEPROM.
692 *
693 * Units are in half-dBm (i.e. "34" means 17 dBm).
694 */
b481de9c
ZY
695#define IWL_TX_POWER_DEFAULT_REGULATORY_24 (34)
696#define IWL_TX_POWER_DEFAULT_REGULATORY_52 (34)
697#define IWL_TX_POWER_REGULATORY_MIN (0)
698#define IWL_TX_POWER_REGULATORY_MAX (34)
0c434c5a
BC
699
700/**
701 * Sanity checks and default values for EEPROM saturation levels.
702 * If EEPROM values fall outside MIN/MAX range, use default values.
703 *
704 * Saturation is the highest level that the output power amplifier can produce
705 * without significant clipping distortion. This is a "peak" power level.
706 * Different types of modulation (i.e. various "rates", and OFDM vs. CCK)
707 * require differing amounts of backoff, relative to their average power output,
708 * in order to avoid clipping distortion.
709 *
710 * Driver must make sure that it is violating neither the saturation limit,
711 * nor the regulatory limit, when calculating Tx power settings for various
712 * rates.
713 *
714 * Units are in half-dBm (i.e. "38" means 19 dBm).
715 */
b481de9c
ZY
716#define IWL_TX_POWER_DEFAULT_SATURATION_24 (38)
717#define IWL_TX_POWER_DEFAULT_SATURATION_52 (38)
718#define IWL_TX_POWER_SATURATION_MIN (20)
719#define IWL_TX_POWER_SATURATION_MAX (50)
720
0c434c5a
BC
721/**
722 * Channel groups used for Tx Attenuation calibration (MIMO tx channel balance)
723 * and thermal Txpower calibration.
724 *
725 * When calculating txpower, driver must compensate for current device
726 * temperature; higher temperature requires higher gain. Driver must calculate
727 * current temperature (see "4965 temperature calculation"), then compare vs.
728 * factory calibration temperature in EEPROM; if current temperature is higher
729 * than factory temperature, driver must *increase* gain by proportions shown
730 * in table below. If current temperature is lower than factory, driver must
731 * *decrease* gain.
732 *
733 * Different frequency ranges require different compensation, as shown below.
734 */
735/* Group 0, 5.2 GHz ch 34-43: 4.5 degrees per 1/2 dB. */
b481de9c
ZY
736#define CALIB_IWL_TX_ATTEN_GR1_FCH 34
737#define CALIB_IWL_TX_ATTEN_GR1_LCH 43
0c434c5a
BC
738
739/* Group 1, 5.3 GHz ch 44-70: 4.0 degrees per 1/2 dB. */
b481de9c
ZY
740#define CALIB_IWL_TX_ATTEN_GR2_FCH 44
741#define CALIB_IWL_TX_ATTEN_GR2_LCH 70
0c434c5a
BC
742
743/* Group 2, 5.5 GHz ch 71-124: 4.0 degrees per 1/2 dB. */
b481de9c
ZY
744#define CALIB_IWL_TX_ATTEN_GR3_FCH 71
745#define CALIB_IWL_TX_ATTEN_GR3_LCH 124
0c434c5a
BC
746
747/* Group 3, 5.7 GHz ch 125-200: 4.0 degrees per 1/2 dB. */
b481de9c
ZY
748#define CALIB_IWL_TX_ATTEN_GR4_FCH 125
749#define CALIB_IWL_TX_ATTEN_GR4_LCH 200
0c434c5a
BC
750
751/* Group 4, 2.4 GHz all channels: 3.5 degrees per 1/2 dB. */
b481de9c
ZY
752#define CALIB_IWL_TX_ATTEN_GR5_FCH 1
753#define CALIB_IWL_TX_ATTEN_GR5_LCH 20
754
0c434c5a
BC
755enum {
756 CALIB_CH_GROUP_1 = 0,
757 CALIB_CH_GROUP_2 = 1,
758 CALIB_CH_GROUP_3 = 2,
759 CALIB_CH_GROUP_4 = 3,
760 CALIB_CH_GROUP_5 = 4,
761 CALIB_CH_GROUP_MAX
762};
763
b481de9c
ZY
764/********************* END TXPOWER *****************************************/
765
5d5456fe
BC
766
767/**
768 * Tx/Rx Queues
769 *
770 * Most communication between driver and 4965 is via queues of data buffers.
771 * For example, all commands that the driver issues to device's embedded
772 * controller (uCode) are via the command queue (one of the Tx queues). All
773 * uCode command responses/replies/notifications, including Rx frames, are
774 * conveyed from uCode to driver via the Rx queue.
775 *
776 * Most support for these queues, including handshake support, resides in
777 * structures in host DRAM, shared between the driver and the device. When
778 * allocating this memory, the driver must make sure that data written by
779 * the host CPU updates DRAM immediately (and does not get "stuck" in CPU's
780 * cache memory), so DRAM and cache are consistent, and the device can
781 * immediately see changes made by the driver.
782 *
783 * 4965 supports up to 16 DRAM-based Tx queues, and services these queues via
784 * up to 7 DMA channels (FIFOs). Each Tx queue is supported by a circular array
785 * in DRAM containing 256 Transmit Frame Descriptors (TFDs).
786 */
038669e4
EG
787#define IWL49_NUM_FIFOS 7
788#define IWL49_CMD_FIFO_NUM 4
789#define IWL49_NUM_QUEUES 16
9f17b318 790#define IWL49_NUM_AMPDU_QUEUES 8
5d5456fe 791
b481de9c 792
5d5456fe 793/**
127901ab 794 * struct iwl4965_schedq_bc_tbl
5d5456fe
BC
795 *
796 * Byte Count table
797 *
798 * Each Tx queue uses a byte-count table containing 320 entries:
799 * one 16-bit entry for each of 256 TFDs, plus an additional 64 entries that
800 * duplicate the first 64 entries (to avoid wrap-around within a Tx window;
801 * max Tx window is 64 TFDs).
802 *
803 * When driver sets up a new TFD, it must also enter the total byte count
804 * of the frame to be transmitted into the corresponding entry in the byte
805 * count table for the chosen Tx queue. If the TFD index is 0-63, the driver
806 * must duplicate the byte count entry in corresponding index 256-319.
807 *
127901ab 808 * padding puts each byte count table on a 1024-byte boundary;
5d5456fe
BC
809 * 4965 assumes tables are separated by 1024 bytes.
810 */
4ddbb7d0 811struct iwl4965_scd_bc_tbl {
127901ab
TW
812 __le16 tfd_offset[TFD_QUEUE_BC_SIZE];
813 u8 pad[1024 - (TFD_QUEUE_BC_SIZE) * sizeof(__le16)];
b481de9c
ZY
814} __attribute__ ((packed));
815
4ddbb7d0 816#endif /* !__iwl_4965_hw_h__ */
This page took 0.440423 seconds and 5 git commands to generate.