iwlegacy: merge eeprom_ops into lib_ops
[linux-2.6-block.git] / drivers / net / wireless / iwlegacy / 4965.h
CommitLineData
4bc85c13 1/******************************************************************************
4bc85c13
WYG
2 *
3 * GPL LICENSE SUMMARY
4 *
af038f40 5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
4bc85c13
WYG
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
4bc85c13 28 *****************************************************************************/
af038f40
SG
29
30#ifndef __il_4965_h__
31#define __il_4965_h__
32
af038f40
SG
33struct il_rx_queue;
34struct il_rx_buf;
35struct il_rx_pkt;
36struct il_tx_queue;
37struct il_rxon_context;
38
39/* configuration for the _4965 devices */
40extern struct il_cfg il4965_cfg;
c39ae9fd 41extern const struct il_ops il4965_ops;
af038f40
SG
42
43extern struct il_mod_params il4965_mod_params;
44
af038f40 45/* tx queue */
e7392364
SG
46void il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid,
47 int freed);
af038f40
SG
48
49/* RXON */
83007196 50void il4965_set_rxon_chain(struct il_priv *il);
af038f40
SG
51
52/* uCode */
53int il4965_verify_ucode(struct il_priv *il);
54
55/* lib */
e7392364 56void il4965_check_abort_status(struct il_priv *il, u8 frame_count, u32 status);
af038f40
SG
57
58void il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq);
59int il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq);
60int il4965_hw_nic_init(struct il_priv *il);
61int il4965_dump_fh(struct il_priv *il, char **buf, bool display);
62
63/* rx */
64void il4965_rx_queue_restock(struct il_priv *il);
65void il4965_rx_replenish(struct il_priv *il);
66void il4965_rx_replenish_now(struct il_priv *il);
67void il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq);
68int il4965_rxq_stop(struct il_priv *il);
69int il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band);
af038f40
SG
70void il4965_rx_handle(struct il_priv *il);
71
72/* tx */
73void il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq);
e7392364
SG
74int il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, struct il_tx_queue *txq,
75 dma_addr_t addr, u16 len, u8 reset, u8 pad);
76int il4965_hw_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq);
af038f40 77void il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
e7392364 78 struct ieee80211_tx_info *info);
af038f40
SG
79int il4965_tx_skb(struct il_priv *il, struct sk_buff *skb);
80int il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif,
e7392364 81 struct ieee80211_sta *sta, u16 tid, u16 * ssn);
af038f40
SG
82int il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif,
83 struct ieee80211_sta *sta, u16 tid);
e7392364 84int il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id);
af038f40
SG
85int il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx);
86void il4965_hw_txq_ctx_free(struct il_priv *il);
87int il4965_txq_ctx_alloc(struct il_priv *il);
88void il4965_txq_ctx_reset(struct il_priv *il);
89void il4965_txq_ctx_stop(struct il_priv *il);
90void il4965_txq_set_sched(struct il_priv *il, u32 mask);
91
4bc85c13 92/*
af038f40 93 * Acquire il->lock before calling this function !
4bc85c13 94 */
af038f40
SG
95void il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx);
96/**
97 * il4965_tx_queue_set_status - (optionally) start Tx/Cmd queue
98 * @tx_fifo_id: Tx DMA/FIFO channel (range 0-7) that the queue will feed
99 * @scd_retry: (1) Indicates queue will be used in aggregation mode
100 *
101 * NOTE: Acquire il->lock before calling this function !
102 */
e7392364
SG
103void il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq,
104 int tx_fifo_id, int scd_retry);
af038f40 105
af038f40
SG
106/* scan */
107int il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif);
108
109/* station mgmt */
e7392364
SG
110int il4965_manage_ibss_station(struct il_priv *il, struct ieee80211_vif *vif,
111 bool add);
af038f40
SG
112
113/* hcmd */
114int il4965_send_beacon_cmd(struct il_priv *il);
115
116#ifdef CONFIG_IWLEGACY_DEBUG
117const char *il4965_get_tx_fail_reason(u32 status);
118#else
119static inline const char *
e7392364
SG
120il4965_get_tx_fail_reason(u32 status)
121{
122 return "";
123}
af038f40
SG
124#endif
125
126/* station management */
83007196
SG
127int il4965_alloc_bcast_station(struct il_priv *il);
128int il4965_add_bssid_station(struct il_priv *il, const u8 *addr, u8 *sta_id_r);
af038f40 129int il4965_remove_default_wep_key(struct il_priv *il,
e7392364 130 struct ieee80211_key_conf *key);
83007196 131int il4965_set_default_wep_key(struct il_priv *il,
af038f40 132 struct ieee80211_key_conf *key);
83007196
SG
133int il4965_restore_default_wep_keys(struct il_priv *il);
134int il4965_set_dynamic_key(struct il_priv *il,
e7392364 135 struct ieee80211_key_conf *key, u8 sta_id);
83007196 136int il4965_remove_dynamic_key(struct il_priv *il,
e7392364 137 struct ieee80211_key_conf *key, u8 sta_id);
83007196 138void il4965_update_tkip_key(struct il_priv *il,
e7392364
SG
139 struct ieee80211_key_conf *keyconf,
140 struct ieee80211_sta *sta, u32 iv32,
1722f8e1 141 u16 *phase1key);
e7392364 142int il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid);
af038f40 143int il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta,
e7392364 144 int tid, u16 ssn);
af038f40 145int il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta,
e7392364
SG
146 int tid);
147void il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt);
af038f40
SG
148int il4965_update_bcast_stations(struct il_priv *il);
149
150/* rate */
e7392364
SG
151static inline u8
152il4965_hw_get_rate(__le32 rate_n_flags)
af038f40
SG
153{
154 return le32_to_cpu(rate_n_flags) & 0xFF;
155}
4bc85c13 156
af038f40 157/* eeprom */
e7392364 158void il4965_eeprom_get_mac(const struct il_priv *il, u8 * mac);
af038f40
SG
159int il4965_eeprom_acquire_semaphore(struct il_priv *il);
160void il4965_eeprom_release_semaphore(struct il_priv *il);
e7392364 161int il4965_eeprom_check_version(struct il_priv *il);
af038f40
SG
162
163/* mac80211 handlers (for 4965) */
164void il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
165int il4965_mac_start(struct ieee80211_hw *hw);
166void il4965_mac_stop(struct ieee80211_hw *hw);
167void il4965_configure_filter(struct ieee80211_hw *hw,
168 unsigned int changed_flags,
e7392364 169 unsigned int *total_flags, u64 multicast);
af038f40
SG
170int il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
171 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
172 struct ieee80211_key_conf *key);
173void il4965_mac_update_tkip_key(struct ieee80211_hw *hw,
174 struct ieee80211_vif *vif,
175 struct ieee80211_key_conf *keyconf,
e7392364 176 struct ieee80211_sta *sta, u32 iv32,
1722f8e1 177 u16 *phase1key);
e7392364 178int il4965_mac_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
af038f40 179 enum ieee80211_ampdu_mlme_action action,
e7392364 180 struct ieee80211_sta *sta, u16 tid, u16 * ssn,
af038f40 181 u8 buf_size);
e7392364 182int il4965_mac_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
af038f40
SG
183 struct ieee80211_sta *sta);
184void il4965_mac_channel_switch(struct ieee80211_hw *hw,
185 struct ieee80211_channel_switch *ch_switch);
186
187void il4965_led_enable(struct il_priv *il);
4bc85c13 188
4bc85c13 189/* EEPROM */
d3175167 190#define IL4965_EEPROM_IMG_SIZE 1024
4bc85c13
WYG
191
192/*
193 * uCode queue management definitions ...
194 * The first queue used for block-ack aggregation is #7 (4965 only).
195 * All block-ack aggregation queues should map to Tx DMA/FIFO channel 7.
196 */
d3175167 197#define IL49_FIRST_AMPDU_QUEUE 7
4bc85c13
WYG
198
199/* Sizes and addresses for instruction and data memory (SRAM) in
200 * 4965's embedded processor. Driver access is via HBUS_TARG_MEM_* regs. */
d3175167
SG
201#define IL49_RTC_INST_LOWER_BOUND (0x000000)
202#define IL49_RTC_INST_UPPER_BOUND (0x018000)
4bc85c13 203
d3175167
SG
204#define IL49_RTC_DATA_LOWER_BOUND (0x800000)
205#define IL49_RTC_DATA_UPPER_BOUND (0x80A000)
4bc85c13 206
d3175167
SG
207#define IL49_RTC_INST_SIZE (IL49_RTC_INST_UPPER_BOUND - \
208 IL49_RTC_INST_LOWER_BOUND)
209#define IL49_RTC_DATA_SIZE (IL49_RTC_DATA_UPPER_BOUND - \
210 IL49_RTC_DATA_LOWER_BOUND)
4bc85c13 211
d3175167
SG
212#define IL49_MAX_INST_SIZE IL49_RTC_INST_SIZE
213#define IL49_MAX_DATA_SIZE IL49_RTC_DATA_SIZE
4bc85c13
WYG
214
215/* Size of uCode instruction memory in bootstrap state machine */
d3175167 216#define IL49_MAX_BSM_SIZE BSM_SRAM_SIZE
4bc85c13 217
e7392364
SG
218static inline int
219il4965_hw_valid_rtc_data_addr(u32 addr)
4bc85c13 220{
d3175167
SG
221 return (addr >= IL49_RTC_DATA_LOWER_BOUND &&
222 addr < IL49_RTC_DATA_UPPER_BOUND);
4bc85c13
WYG
223}
224
225/********************* START TEMPERATURE *************************************/
226
227/**
228 * 4965 temperature calculation.
229 *
230 * The driver must calculate the device temperature before calculating
231 * a txpower setting (amplifier gain is temperature dependent). The
232 * calculation uses 4 measurements, 3 of which (R1, R2, R3) are calibration
233 * values used for the life of the driver, and one of which (R4) is the
234 * real-time temperature indicator.
235 *
236 * uCode provides all 4 values to the driver via the "initialize alive"
e2ebc833 237 * notification (see struct il4965_init_alive_resp). After the runtime uCode
ebf0d90d 238 * image loads, uCode updates the R4 value via stats notifications
4d69c752
SG
239 * (see N_STATS), which occur after each received beacon
240 * when associated, or can be requested via C_STATS.
4bc85c13
WYG
241 *
242 * NOTE: uCode provides the R4 value as a 23-bit signed value. Driver
243 * must sign-extend to 32 bits before applying formula below.
244 *
245 * Formula:
246 *
247 * degrees Kelvin = ((97 * 259 * (R4 - R2) / (R3 - R1)) / 100) + 8
248 *
249 * NOTE: The basic formula is 259 * (R4-R2) / (R3-R1). The 97/100 is
250 * an additional correction, which should be centered around 0 degrees
251 * Celsius (273 degrees Kelvin). The 8 (3 percent of 273) compensates for
252 * centering the 97/100 correction around 0 degrees K.
253 *
254 * Add 273 to Kelvin value to find degrees Celsius, for comparing current
255 * temperature with factory-measured temperatures when calculating txpower
256 * settings.
257 */
258#define TEMPERATURE_CALIB_KELVIN_OFFSET 8
259#define TEMPERATURE_CALIB_A_VAL 259
260
261/* Limit range of calculated temperature to be between these Kelvin values */
e2ebc833
SG
262#define IL_TX_POWER_TEMPERATURE_MIN (263)
263#define IL_TX_POWER_TEMPERATURE_MAX (410)
4bc85c13 264
e2ebc833 265#define IL_TX_POWER_TEMPERATURE_OUT_OF_RANGE(t) \
232913b5
SG
266 ((t) < IL_TX_POWER_TEMPERATURE_MIN || \
267 (t) > IL_TX_POWER_TEMPERATURE_MAX)
4bc85c13 268
527901d0 269extern void il4965_temperature_calib(struct il_priv *il);
4bc85c13
WYG
270/********************* END TEMPERATURE ***************************************/
271
272/********************* START TXPOWER *****************************************/
273
274/**
275 * 4965 txpower calculations rely on information from three sources:
276 *
277 * 1) EEPROM
278 * 2) "initialize" alive notification
ebf0d90d 279 * 3) stats notifications
4bc85c13
WYG
280 *
281 * EEPROM data consists of:
282 *
283 * 1) Regulatory information (max txpower and channel usage flags) is provided
284 * separately for each channel that can possibly supported by 4965.
285 * 40 MHz wide (.11n HT40) channels are listed separately from 20 MHz
286 * (legacy) channels.
287 *
e2ebc833 288 * See struct il4965_eeprom_channel for format, and struct il4965_eeprom
4bc85c13
WYG
289 * for locations in EEPROM.
290 *
291 * 2) Factory txpower calibration information is provided separately for
292 * sub-bands of contiguous channels. 2.4GHz has just one sub-band,
293 * but 5 GHz has several sub-bands.
294 *
295 * In addition, per-band (2.4 and 5 Ghz) saturation txpowers are provided.
296 *
e2ebc833
SG
297 * See struct il4965_eeprom_calib_info (and the tree of structures
298 * contained within it) for format, and struct il4965_eeprom for
4bc85c13
WYG
299 * locations in EEPROM.
300 *
e2ebc833 301 * "Initialization alive" notification (see struct il4965_init_alive_resp)
4bc85c13
WYG
302 * consists of:
303 *
304 * 1) Temperature calculation parameters.
305 *
306 * 2) Power supply voltage measurement.
307 *
308 * 3) Tx gain compensation to balance 2 transmitters for MIMO use.
309 *
310 * Statistics notifications deliver:
311 *
312 * 1) Current values for temperature param R4.
313 */
314
315/**
316 * To calculate a txpower setting for a given desired target txpower, channel,
317 * modulation bit rate, and transmitter chain (4965 has 2 transmitters to
318 * support MIMO and transmit diversity), driver must do the following:
319 *
320 * 1) Compare desired txpower vs. (EEPROM) regulatory limit for this channel.
321 * Do not exceed regulatory limit; reduce target txpower if necessary.
322 *
0c2c8852 323 * If setting up txpowers for MIMO rates (rate idxes 8-15, 24-31),
4bc85c13
WYG
324 * 2 transmitters will be used simultaneously; driver must reduce the
325 * regulatory limit by 3 dB (half-power) for each transmitter, so the
326 * combined total output of the 2 transmitters is within regulatory limits.
327 *
328 *
329 * 2) Compare target txpower vs. (EEPROM) saturation txpower *reduced by
330 * backoff for this bit rate*. Do not exceed (saturation - backoff[rate]);
331 * reduce target txpower if necessary.
332 *
333 * Backoff values below are in 1/2 dB units (equivalent to steps in
334 * txpower gain tables):
335 *
336 * OFDM 6 - 36 MBit: 10 steps (5 dB)
337 * OFDM 48 MBit: 15 steps (7.5 dB)
338 * OFDM 54 MBit: 17 steps (8.5 dB)
339 * OFDM 60 MBit: 20 steps (10 dB)
340 * CCK all rates: 10 steps (5 dB)
341 *
342 * Backoff values apply to saturation txpower on a per-transmitter basis;
343 * when using MIMO (2 transmitters), each transmitter uses the same
344 * saturation level provided in EEPROM, and the same backoff values;
345 * no reduction (such as with regulatory txpower limits) is required.
346 *
347 * Saturation and Backoff values apply equally to 20 Mhz (legacy) channel
348 * widths and 40 Mhz (.11n HT40) channel widths; there is no separate
349 * factory measurement for ht40 channels.
350 *
351 * The result of this step is the final target txpower. The rest of
352 * the steps figure out the proper settings for the device to achieve
353 * that target txpower.
354 *
355 *
356 * 3) Determine (EEPROM) calibration sub band for the target channel, by
357 * comparing against first and last channels in each sub band
e2ebc833 358 * (see struct il4965_eeprom_calib_subband_info).
4bc85c13
WYG
359 *
360 *
361 * 4) Linearly interpolate (EEPROM) factory calibration measurement sets,
362 * referencing the 2 factory-measured (sample) channels within the sub band.
363 *
364 * Interpolation is based on difference between target channel's frequency
365 * and the sample channels' frequencies. Since channel numbers are based
366 * on frequency (5 MHz between each channel number), this is equivalent
367 * to interpolating based on channel number differences.
368 *
369 * Note that the sample channels may or may not be the channels at the
370 * edges of the sub band. The target channel may be "outside" of the
371 * span of the sampled channels.
372 *
373 * Driver may choose the pair (for 2 Tx chains) of measurements (see
e2ebc833 374 * struct il4965_eeprom_calib_ch_info) for which the actual measured
4bc85c13
WYG
375 * txpower comes closest to the desired txpower. Usually, though,
376 * the middle set of measurements is closest to the regulatory limits,
377 * and is therefore a good choice for all txpower calculations (this
378 * assumes that high accuracy is needed for maximizing legal txpower,
379 * while lower txpower configurations do not need as much accuracy).
380 *
381 * Driver should interpolate both members of the chosen measurement pair,
382 * i.e. for both Tx chains (radio transmitters), unless the driver knows
383 * that only one of the chains will be used (e.g. only one tx antenna
384 * connected, but this should be unusual). The rate scaling algorithm
385 * switches antennas to find best performance, so both Tx chains will
386 * be used (although only one at a time) even for non-MIMO transmissions.
387 *
388 * Driver should interpolate factory values for temperature, gain table
0c2c8852 389 * idx, and actual power. The power amplifier detector values are
4bc85c13
WYG
390 * not used by the driver.
391 *
392 * Sanity check: If the target channel happens to be one of the sample
393 * channels, the results should agree with the sample channel's
394 * measurements!
395 *
396 *
397 * 5) Find difference between desired txpower and (interpolated)
0c2c8852
SG
398 * factory-measured txpower. Using (interpolated) factory gain table idx
399 * (shown elsewhere) as a starting point, adjust this idx lower to
4bc85c13
WYG
400 * increase txpower, or higher to decrease txpower, until the target
401 * txpower is reached. Each step in the gain table is 1/2 dB.
402 *
403 * For example, if factory measured txpower is 16 dBm, and target txpower
0c2c8852 404 * is 13 dBm, add 6 steps to the factory gain idx to reduce txpower
4bc85c13
WYG
405 * by 3 dB.
406 *
407 *
408 * 6) Find difference between current device temperature and (interpolated)
409 * factory-measured temperature for sub-band. Factory values are in
410 * degrees Celsius. To calculate current temperature, see comments for
411 * "4965 temperature calculation".
412 *
413 * If current temperature is higher than factory temperature, driver must
0c2c8852 414 * increase gain (lower gain table idx), and vice verse.
4bc85c13
WYG
415 *
416 * Temperature affects gain differently for different channels:
417 *
418 * 2.4 GHz all channels: 3.5 degrees per half-dB step
419 * 5 GHz channels 34-43: 4.5 degrees per half-dB step
420 * 5 GHz channels >= 44: 4.0 degrees per half-dB step
421 *
422 * NOTE: Temperature can increase rapidly when transmitting, especially
423 * with heavy traffic at high txpowers. Driver should update
424 * temperature calculations often under these conditions to
425 * maintain strong txpower in the face of rising temperature.
426 *
427 *
428 * 7) Find difference between current power supply voltage indicator
429 * (from "initialize alive") and factory-measured power supply voltage
430 * indicator (EEPROM).
431 *
432 * If the current voltage is higher (indicator is lower) than factory
0c2c8852 433 * voltage, gain should be reduced (gain table idx increased) by:
4bc85c13
WYG
434 *
435 * (eeprom - current) / 7
436 *
437 * If the current voltage is lower (indicator is higher) than factory
0c2c8852 438 * voltage, gain should be increased (gain table idx decreased) by:
4bc85c13
WYG
439 *
440 * 2 * (current - eeprom) / 7
441 *
0c2c8852 442 * If number of idx steps in either direction turns out to be > 2,
4bc85c13
WYG
443 * something is wrong ... just use 0.
444 *
445 * NOTE: Voltage compensation is independent of band/channel.
446 *
447 * NOTE: "Initialize" uCode measures current voltage, which is assumed
448 * to be constant after this initial measurement. Voltage
449 * compensation for txpower (number of steps in gain table)
450 * may be calculated once and used until the next uCode bootload.
451 *
452 *
0c2c8852 453 * 8) If setting up txpowers for MIMO rates (rate idxes 8-15, 24-31),
4bc85c13
WYG
454 * adjust txpower for each transmitter chain, so txpower is balanced
455 * between the two chains. There are 5 pairs of tx_atten[group][chain]
456 * values in "initialize alive", one pair for each of 5 channel ranges:
457 *
458 * Group 0: 5 GHz channel 34-43
459 * Group 1: 5 GHz channel 44-70
460 * Group 2: 5 GHz channel 71-124
461 * Group 3: 5 GHz channel 125-200
462 * Group 4: 2.4 GHz all channels
463 *
0c2c8852 464 * Add the tx_atten[group][chain] value to the idx for the target chain.
4bc85c13
WYG
465 * The values are signed, but are in pairs of 0 and a non-negative number,
466 * so as to reduce gain (if necessary) of the "hotter" channel. This
467 * avoids any need to double-check for regulatory compliance after
468 * this step.
469 *
470 *
471 * 9) If setting up for a CCK rate, lower the gain by adding a CCK compensation
0c2c8852 472 * value to the idx:
4bc85c13
WYG
473 *
474 * Hardware rev B: 9 steps (4.5 dB)
475 * Hardware rev C: 5 steps (2.5 dB)
476 *
477 * Hardware rev for 4965 can be determined by reading CSR_HW_REV_WA_REG,
478 * bits [3:2], 1 = B, 2 = C.
479 *
480 * NOTE: This compensation is in addition to any saturation backoff that
481 * might have been applied in an earlier step.
482 *
483 *
484 * 10) Select the gain table, based on band (2.4 vs 5 GHz).
485 *
0c2c8852 486 * Limit the adjusted idx to stay within the table!
4bc85c13
WYG
487 *
488 *
489 * 11) Read gain table entries for DSP and radio gain, place into appropriate
e2ebc833 490 * location(s) in command (struct il4965_txpowertable_cmd).
4bc85c13
WYG
491 */
492
493/**
494 * When MIMO is used (2 transmitters operating simultaneously), driver should
495 * limit each transmitter to deliver a max of 3 dB below the regulatory limit
496 * for the device. That is, use half power for each transmitter, so total
497 * txpower is within regulatory limits.
498 *
499 * The value "6" represents number of steps in gain table to reduce power 3 dB.
500 * Each step is 1/2 dB.
501 */
e2ebc833 502#define IL_TX_POWER_MIMO_REGULATORY_COMPENSATION (6)
4bc85c13
WYG
503
504/**
505 * CCK gain compensation.
506 *
507 * When calculating txpowers for CCK, after making sure that the target power
508 * is within regulatory and saturation limits, driver must additionally
0c2c8852 509 * back off gain by adding these values to the gain table idx.
4bc85c13
WYG
510 *
511 * Hardware rev for 4965 can be determined by reading CSR_HW_REV_WA_REG,
512 * bits [3:2], 1 = B, 2 = C.
513 */
e2ebc833
SG
514#define IL_TX_POWER_CCK_COMPENSATION_B_STEP (9)
515#define IL_TX_POWER_CCK_COMPENSATION_C_STEP (5)
4bc85c13
WYG
516
517/*
518 * 4965 power supply voltage compensation for txpower
519 */
e2ebc833 520#define TX_POWER_IL_VOLTAGE_CODES_PER_03V (7)
4bc85c13
WYG
521
522/**
523 * Gain tables.
524 *
525 * The following tables contain pair of values for setting txpower, i.e.
526 * gain settings for the output of the device's digital signal processor (DSP),
527 * and for the analog gain structure of the transmitter.
528 *
529 * Each entry in the gain tables represents a step of 1/2 dB. Note that these
530 * are *relative* steps, not indications of absolute output power. Output
531 * power varies with temperature, voltage, and channel frequency, and also
532 * requires consideration of average power (to satisfy regulatory constraints),
533 * and peak power (to avoid distortion of the output signal).
534 *
535 * Each entry contains two values:
536 * 1) DSP gain (or sometimes called DSP attenuation). This is a fine-grained
537 * linear value that multiplies the output of the digital signal processor,
538 * before being sent to the analog radio.
539 * 2) Radio gain. This sets the analog gain of the radio Tx path.
540 * It is a coarser setting, and behaves in a logarithmic (dB) fashion.
541 *
542 * EEPROM contains factory calibration data for txpower. This maps actual
543 * measured txpower levels to gain settings in the "well known" tables
544 * below ("well-known" means here that both factory calibration *and* the
545 * driver work with the same table).
546 *
547 * There are separate tables for 2.4 GHz and 5 GHz bands. The 5 GHz table
0c2c8852 548 * has an extension (into negative idxes), in case the driver needs to
4bc85c13 549 * boost power setting for high device temperatures (higher than would be
0c2c8852 550 * present during factory calibration). A 5 Ghz EEPROM idx of "40"
4bc85c13
WYG
551 * corresponds to the 49th entry in the table used by the driver.
552 */
e7392364
SG
553#define MIN_TX_GAIN_IDX (0) /* highest gain, lowest idx, 2.4 */
554#define MIN_TX_GAIN_IDX_52GHZ_EXT (-9) /* highest gain, lowest idx, 5 */
4bc85c13
WYG
555
556/**
557 * 2.4 GHz gain table
558 *
559 * Index Dsp gain Radio gain
560 * 0 110 0x3f (highest gain)
561 * 1 104 0x3f
562 * 2 98 0x3f
563 * 3 110 0x3e
564 * 4 104 0x3e
565 * 5 98 0x3e
566 * 6 110 0x3d
567 * 7 104 0x3d
568 * 8 98 0x3d
569 * 9 110 0x3c
570 * 10 104 0x3c
571 * 11 98 0x3c
572 * 12 110 0x3b
573 * 13 104 0x3b
574 * 14 98 0x3b
575 * 15 110 0x3a
576 * 16 104 0x3a
577 * 17 98 0x3a
578 * 18 110 0x39
579 * 19 104 0x39
580 * 20 98 0x39
581 * 21 110 0x38
582 * 22 104 0x38
583 * 23 98 0x38
584 * 24 110 0x37
585 * 25 104 0x37
586 * 26 98 0x37
587 * 27 110 0x36
588 * 28 104 0x36
589 * 29 98 0x36
590 * 30 110 0x35
591 * 31 104 0x35
592 * 32 98 0x35
593 * 33 110 0x34
594 * 34 104 0x34
595 * 35 98 0x34
596 * 36 110 0x33
597 * 37 104 0x33
598 * 38 98 0x33
599 * 39 110 0x32
600 * 40 104 0x32
601 * 41 98 0x32
602 * 42 110 0x31
603 * 43 104 0x31
604 * 44 98 0x31
605 * 45 110 0x30
606 * 46 104 0x30
607 * 47 98 0x30
608 * 48 110 0x6
609 * 49 104 0x6
610 * 50 98 0x6
611 * 51 110 0x5
612 * 52 104 0x5
613 * 53 98 0x5
614 * 54 110 0x4
615 * 55 104 0x4
616 * 56 98 0x4
617 * 57 110 0x3
618 * 58 104 0x3
619 * 59 98 0x3
620 * 60 110 0x2
621 * 61 104 0x2
622 * 62 98 0x2
623 * 63 110 0x1
624 * 64 104 0x1
625 * 65 98 0x1
626 * 66 110 0x0
627 * 67 104 0x0
628 * 68 98 0x0
629 * 69 97 0
630 * 70 96 0
631 * 71 95 0
632 * 72 94 0
633 * 73 93 0
634 * 74 92 0
635 * 75 91 0
636 * 76 90 0
637 * 77 89 0
638 * 78 88 0
639 * 79 87 0
640 * 80 86 0
641 * 81 85 0
642 * 82 84 0
643 * 83 83 0
644 * 84 82 0
645 * 85 81 0
646 * 86 80 0
647 * 87 79 0
648 * 88 78 0
649 * 89 77 0
650 * 90 76 0
651 * 91 75 0
652 * 92 74 0
653 * 93 73 0
654 * 94 72 0
655 * 95 71 0
656 * 96 70 0
657 * 97 69 0
658 * 98 68 0
659 */
660
661/**
662 * 5 GHz gain table
663 *
664 * Index Dsp gain Radio gain
665 * -9 123 0x3F (highest gain)
666 * -8 117 0x3F
667 * -7 110 0x3F
668 * -6 104 0x3F
669 * -5 98 0x3F
670 * -4 110 0x3E
671 * -3 104 0x3E
672 * -2 98 0x3E
673 * -1 110 0x3D
674 * 0 104 0x3D
675 * 1 98 0x3D
676 * 2 110 0x3C
677 * 3 104 0x3C
678 * 4 98 0x3C
679 * 5 110 0x3B
680 * 6 104 0x3B
681 * 7 98 0x3B
682 * 8 110 0x3A
683 * 9 104 0x3A
684 * 10 98 0x3A
685 * 11 110 0x39
686 * 12 104 0x39
687 * 13 98 0x39
688 * 14 110 0x38
689 * 15 104 0x38
690 * 16 98 0x38
691 * 17 110 0x37
692 * 18 104 0x37
693 * 19 98 0x37
694 * 20 110 0x36
695 * 21 104 0x36
696 * 22 98 0x36
697 * 23 110 0x35
698 * 24 104 0x35
699 * 25 98 0x35
700 * 26 110 0x34
701 * 27 104 0x34
702 * 28 98 0x34
703 * 29 110 0x33
704 * 30 104 0x33
705 * 31 98 0x33
706 * 32 110 0x32
707 * 33 104 0x32
708 * 34 98 0x32
709 * 35 110 0x31
710 * 36 104 0x31
711 * 37 98 0x31
712 * 38 110 0x30
713 * 39 104 0x30
714 * 40 98 0x30
715 * 41 110 0x25
716 * 42 104 0x25
717 * 43 98 0x25
718 * 44 110 0x24
719 * 45 104 0x24
720 * 46 98 0x24
721 * 47 110 0x23
722 * 48 104 0x23
723 * 49 98 0x23
724 * 50 110 0x22
725 * 51 104 0x18
726 * 52 98 0x18
727 * 53 110 0x17
728 * 54 104 0x17
729 * 55 98 0x17
730 * 56 110 0x16
731 * 57 104 0x16
732 * 58 98 0x16
733 * 59 110 0x15
734 * 60 104 0x15
735 * 61 98 0x15
736 * 62 110 0x14
737 * 63 104 0x14
738 * 64 98 0x14
739 * 65 110 0x13
740 * 66 104 0x13
741 * 67 98 0x13
742 * 68 110 0x12
743 * 69 104 0x08
744 * 70 98 0x08
745 * 71 110 0x07
746 * 72 104 0x07
747 * 73 98 0x07
748 * 74 110 0x06
749 * 75 104 0x06
750 * 76 98 0x06
751 * 77 110 0x05
752 * 78 104 0x05
753 * 79 98 0x05
754 * 80 110 0x04
755 * 81 104 0x04
756 * 82 98 0x04
757 * 83 110 0x03
758 * 84 104 0x03
759 * 85 98 0x03
760 * 86 110 0x02
761 * 87 104 0x02
762 * 88 98 0x02
763 * 89 110 0x01
764 * 90 104 0x01
765 * 91 98 0x01
766 * 92 110 0x00
767 * 93 104 0x00
768 * 94 98 0x00
769 * 95 93 0x00
770 * 96 88 0x00
771 * 97 83 0x00
772 * 98 78 0x00
773 */
774
4bc85c13
WYG
775/**
776 * Sanity checks and default values for EEPROM regulatory levels.
777 * If EEPROM values fall outside MIN/MAX range, use default values.
778 *
779 * Regulatory limits refer to the maximum average txpower allowed by
780 * regulatory agencies in the geographies in which the device is meant
781 * to be operated. These limits are SKU-specific (i.e. geography-specific),
782 * and channel-specific; each channel has an individual regulatory limit
783 * listed in the EEPROM.
784 *
785 * Units are in half-dBm (i.e. "34" means 17 dBm).
786 */
e2ebc833
SG
787#define IL_TX_POWER_DEFAULT_REGULATORY_24 (34)
788#define IL_TX_POWER_DEFAULT_REGULATORY_52 (34)
789#define IL_TX_POWER_REGULATORY_MIN (0)
790#define IL_TX_POWER_REGULATORY_MAX (34)
4bc85c13
WYG
791
792/**
793 * Sanity checks and default values for EEPROM saturation levels.
794 * If EEPROM values fall outside MIN/MAX range, use default values.
795 *
796 * Saturation is the highest level that the output power amplifier can produce
797 * without significant clipping distortion. This is a "peak" power level.
798 * Different types of modulation (i.e. various "rates", and OFDM vs. CCK)
799 * require differing amounts of backoff, relative to their average power output,
800 * in order to avoid clipping distortion.
801 *
802 * Driver must make sure that it is violating neither the saturation limit,
803 * nor the regulatory limit, when calculating Tx power settings for various
804 * rates.
805 *
806 * Units are in half-dBm (i.e. "38" means 19 dBm).
807 */
e2ebc833
SG
808#define IL_TX_POWER_DEFAULT_SATURATION_24 (38)
809#define IL_TX_POWER_DEFAULT_SATURATION_52 (38)
810#define IL_TX_POWER_SATURATION_MIN (20)
811#define IL_TX_POWER_SATURATION_MAX (50)
4bc85c13
WYG
812
813/**
814 * Channel groups used for Tx Attenuation calibration (MIMO tx channel balance)
815 * and thermal Txpower calibration.
816 *
817 * When calculating txpower, driver must compensate for current device
818 * temperature; higher temperature requires higher gain. Driver must calculate
819 * current temperature (see "4965 temperature calculation"), then compare vs.
820 * factory calibration temperature in EEPROM; if current temperature is higher
821 * than factory temperature, driver must *increase* gain by proportions shown
822 * in table below. If current temperature is lower than factory, driver must
823 * *decrease* gain.
824 *
825 * Different frequency ranges require different compensation, as shown below.
826 */
827/* Group 0, 5.2 GHz ch 34-43: 4.5 degrees per 1/2 dB. */
e2ebc833
SG
828#define CALIB_IL_TX_ATTEN_GR1_FCH 34
829#define CALIB_IL_TX_ATTEN_GR1_LCH 43
4bc85c13
WYG
830
831/* Group 1, 5.3 GHz ch 44-70: 4.0 degrees per 1/2 dB. */
e2ebc833
SG
832#define CALIB_IL_TX_ATTEN_GR2_FCH 44
833#define CALIB_IL_TX_ATTEN_GR2_LCH 70
4bc85c13
WYG
834
835/* Group 2, 5.5 GHz ch 71-124: 4.0 degrees per 1/2 dB. */
e2ebc833
SG
836#define CALIB_IL_TX_ATTEN_GR3_FCH 71
837#define CALIB_IL_TX_ATTEN_GR3_LCH 124
4bc85c13
WYG
838
839/* Group 3, 5.7 GHz ch 125-200: 4.0 degrees per 1/2 dB. */
e2ebc833
SG
840#define CALIB_IL_TX_ATTEN_GR4_FCH 125
841#define CALIB_IL_TX_ATTEN_GR4_LCH 200
4bc85c13
WYG
842
843/* Group 4, 2.4 GHz all channels: 3.5 degrees per 1/2 dB. */
e2ebc833
SG
844#define CALIB_IL_TX_ATTEN_GR5_FCH 1
845#define CALIB_IL_TX_ATTEN_GR5_LCH 20
4bc85c13
WYG
846
847enum {
848 CALIB_CH_GROUP_1 = 0,
849 CALIB_CH_GROUP_2 = 1,
850 CALIB_CH_GROUP_3 = 2,
851 CALIB_CH_GROUP_4 = 3,
852 CALIB_CH_GROUP_5 = 4,
853 CALIB_CH_GROUP_MAX
854};
855
856/********************* END TXPOWER *****************************************/
857
4bc85c13
WYG
858/**
859 * Tx/Rx Queues
860 *
861 * Most communication between driver and 4965 is via queues of data buffers.
862 * For example, all commands that the driver issues to device's embedded
863 * controller (uCode) are via the command queue (one of the Tx queues). All
864 * uCode command responses/replies/notifications, including Rx frames, are
865 * conveyed from uCode to driver via the Rx queue.
866 *
867 * Most support for these queues, including handshake support, resides in
868 * structures in host DRAM, shared between the driver and the device. When
869 * allocating this memory, the driver must make sure that data written by
870 * the host CPU updates DRAM immediately (and does not get "stuck" in CPU's
871 * cache memory), so DRAM and cache are consistent, and the device can
872 * immediately see changes made by the driver.
873 *
874 * 4965 supports up to 16 DRAM-based Tx queues, and services these queues via
875 * up to 7 DMA channels (FIFOs). Each Tx queue is supported by a circular array
876 * in DRAM containing 256 Transmit Frame Descriptors (TFDs).
877 */
d3175167
SG
878#define IL49_NUM_FIFOS 7
879#define IL49_CMD_FIFO_NUM 4
880#define IL49_NUM_QUEUES 16
881#define IL49_NUM_AMPDU_QUEUES 8
4bc85c13 882
4bc85c13 883/**
e2ebc833 884 * struct il4965_schedq_bc_tbl
4bc85c13
WYG
885 *
886 * Byte Count table
887 *
888 * Each Tx queue uses a byte-count table containing 320 entries:
889 * one 16-bit entry for each of 256 TFDs, plus an additional 64 entries that
6ce1dc45
SG
890 * duplicate the first 64 entries (to avoid wrap-around within a Tx win;
891 * max Tx win is 64 TFDs).
4bc85c13
WYG
892 *
893 * When driver sets up a new TFD, it must also enter the total byte count
894 * of the frame to be transmitted into the corresponding entry in the byte
0c2c8852
SG
895 * count table for the chosen Tx queue. If the TFD idx is 0-63, the driver
896 * must duplicate the byte count entry in corresponding idx 256-319.
4bc85c13
WYG
897 *
898 * padding puts each byte count table on a 1024-byte boundary;
899 * 4965 assumes tables are separated by 1024 bytes.
900 */
e2ebc833 901struct il4965_scd_bc_tbl {
4bc85c13
WYG
902 __le16 tfd_offset[TFD_QUEUE_BC_SIZE];
903 u8 pad[1024 - (TFD_QUEUE_BC_SIZE) * sizeof(__le16)];
904} __packed;
905
d3175167 906#define IL4965_RTC_INST_LOWER_BOUND (0x000000)
be663ab6
WYG
907
908/* RSSI to dBm */
d3175167 909#define IL4965_RSSI_OFFSET 44
be663ab6
WYG
910
911/* PCI registers */
912#define PCI_CFG_RETRY_TIMEOUT 0x041
913
914/* PCI register values */
915#define PCI_CFG_LINK_CTRL_VAL_L0S_EN 0x01
916#define PCI_CFG_LINK_CTRL_VAL_L1_EN 0x02
917
d3175167 918#define IL4965_DEFAULT_TX_RETRY 15
be663ab6 919
be663ab6 920/* EEPROM */
d3175167 921#define IL4965_FIRST_AMPDU_QUEUE 10
be663ab6 922
af038f40
SG
923/* Calibration */
924void il4965_chain_noise_calibration(struct il_priv *il, void *stat_resp);
925void il4965_sensitivity_calibration(struct il_priv *il, void *resp);
926void il4965_init_sensitivity(struct il_priv *il);
927void il4965_reset_run_time_calib(struct il_priv *il);
928void il4965_calib_free_results(struct il_priv *il);
929
930/* Debug */
931#ifdef CONFIG_IWLEGACY_DEBUGFS
93b7654e 932extern const struct il_debugfs_ops il4965_debugfs_ops;
af038f40 933#endif
be663ab6 934
eac3b212
SG
935/****************************/
936/* Flow Handler Definitions */
937/****************************/
938
939/**
940 * This I/O area is directly read/writable by driver (e.g. Linux uses writel())
941 * Addresses are offsets from device's PCI hardware base address.
942 */
943#define FH49_MEM_LOWER_BOUND (0x1000)
944#define FH49_MEM_UPPER_BOUND (0x2000)
945
946/**
947 * Keep-Warm (KW) buffer base address.
948 *
949 * Driver must allocate a 4KByte buffer that is used by 4965 for keeping the
950 * host DRAM powered on (via dummy accesses to DRAM) to maintain low-latency
951 * DRAM access when 4965 is Txing or Rxing. The dummy accesses prevent host
952 * from going into a power-savings mode that would cause higher DRAM latency,
953 * and possible data over/under-runs, before all Tx/Rx is complete.
954 *
955 * Driver loads FH49_KW_MEM_ADDR_REG with the physical address (bits 35:4)
956 * of the buffer, which must be 4K aligned. Once this is set up, the 4965
957 * automatically invokes keep-warm accesses when normal accesses might not
958 * be sufficient to maintain fast DRAM response.
959 *
960 * Bit fields:
961 * 31-0: Keep-warm buffer physical base address [35:4], must be 4K aligned
962 */
963#define FH49_KW_MEM_ADDR_REG (FH49_MEM_LOWER_BOUND + 0x97C)
964
eac3b212
SG
965/**
966 * TFD Circular Buffers Base (CBBC) addresses
967 *
968 * 4965 has 16 base pointer registers, one for each of 16 host-DRAM-resident
969 * circular buffers (CBs/queues) containing Transmit Frame Descriptors (TFDs)
970 * (see struct il_tfd_frame). These 16 pointer registers are offset by 0x04
971 * bytes from one another. Each TFD circular buffer in DRAM must be 256-byte
972 * aligned (address bits 0-7 must be 0).
973 *
974 * Bit fields in each pointer register:
975 * 27-0: TFD CB physical base address [35:8], must be 256-byte aligned
976 */
977#define FH49_MEM_CBBC_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0x9D0)
978#define FH49_MEM_CBBC_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xA10)
979
980/* Find TFD CB base pointer for given queue (range 0-15). */
981#define FH49_MEM_CBBC_QUEUE(x) (FH49_MEM_CBBC_LOWER_BOUND + (x) * 0x4)
982
eac3b212
SG
983/**
984 * Rx SRAM Control and Status Registers (RSCSR)
985 *
986 * These registers provide handshake between driver and 4965 for the Rx queue
987 * (this queue handles *all* command responses, notifications, Rx data, etc.
988 * sent from 4965 uCode to host driver). Unlike Tx, there is only one Rx
989 * queue, and only one Rx DMA/FIFO channel. Also unlike Tx, which can
990 * concatenate up to 20 DRAM buffers to form a Tx frame, each Receive Buffer
991 * Descriptor (RBD) points to only one Rx Buffer (RB); there is a 1:1
992 * mapping between RBDs and RBs.
993 *
994 * Driver must allocate host DRAM memory for the following, and set the
995 * physical address of each into 4965 registers:
996 *
997 * 1) Receive Buffer Descriptor (RBD) circular buffer (CB), typically with 256
998 * entries (although any power of 2, up to 4096, is selectable by driver).
999 * Each entry (1 dword) points to a receive buffer (RB) of consistent size
1000 * (typically 4K, although 8K or 16K are also selectable by driver).
1001 * Driver sets up RB size and number of RBDs in the CB via Rx config
1002 * register FH49_MEM_RCSR_CHNL0_CONFIG_REG.
1003 *
1004 * Bit fields within one RBD:
1005 * 27-0: Receive Buffer physical address bits [35:8], 256-byte aligned
1006 *
1007 * Driver sets physical address [35:8] of base of RBD circular buffer
1008 * into FH49_RSCSR_CHNL0_RBDCB_BASE_REG [27:0].
1009 *
1010 * 2) Rx status buffer, 8 bytes, in which 4965 indicates which Rx Buffers
1011 * (RBs) have been filled, via a "write pointer", actually the idx of
1012 * the RB's corresponding RBD within the circular buffer. Driver sets
1013 * physical address [35:4] into FH49_RSCSR_CHNL0_STTS_WPTR_REG [31:0].
1014 *
1015 * Bit fields in lower dword of Rx status buffer (upper dword not used
1016 * by driver; see struct il4965_shared, val0):
1017 * 31-12: Not used by driver
1018 * 11- 0: Index of last filled Rx buffer descriptor
1019 * (4965 writes, driver reads this value)
1020 *
1021 * As the driver prepares Receive Buffers (RBs) for 4965 to fill, driver must
1022 * enter pointers to these RBs into contiguous RBD circular buffer entries,
1023 * and update the 4965's "write" idx register,
1024 * FH49_RSCSR_CHNL0_RBDCB_WPTR_REG.
1025 *
1026 * This "write" idx corresponds to the *next* RBD that the driver will make
1027 * available, i.e. one RBD past the tail of the ready-to-fill RBDs within
1028 * the circular buffer. This value should initially be 0 (before preparing any
1029 * RBs), should be 8 after preparing the first 8 RBs (for example), and must
1030 * wrap back to 0 at the end of the circular buffer (but don't wrap before
1031 * "read" idx has advanced past 1! See below).
1032 * NOTE: 4965 EXPECTS THE WRITE IDX TO BE INCREMENTED IN MULTIPLES OF 8.
1033 *
1034 * As the 4965 fills RBs (referenced from contiguous RBDs within the circular
1035 * buffer), it updates the Rx status buffer in host DRAM, 2) described above,
1036 * to tell the driver the idx of the latest filled RBD. The driver must
1037 * read this "read" idx from DRAM after receiving an Rx interrupt from 4965.
1038 *
1039 * The driver must also internally keep track of a third idx, which is the
1040 * next RBD to process. When receiving an Rx interrupt, driver should process
1041 * all filled but unprocessed RBs up to, but not including, the RB
1042 * corresponding to the "read" idx. For example, if "read" idx becomes "1",
1043 * driver may process the RB pointed to by RBD 0. Depending on volume of
1044 * traffic, there may be many RBs to process.
1045 *
1046 * If read idx == write idx, 4965 thinks there is no room to put new data.
1047 * Due to this, the maximum number of filled RBs is 255, instead of 256. To
1048 * be safe, make sure that there is a gap of at least 2 RBDs between "write"
1049 * and "read" idxes; that is, make sure that there are no more than 254
1050 * buffers waiting to be filled.
1051 */
1052#define FH49_MEM_RSCSR_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0xBC0)
1053#define FH49_MEM_RSCSR_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xC00)
1054#define FH49_MEM_RSCSR_CHNL0 (FH49_MEM_RSCSR_LOWER_BOUND)
1055
1056/**
1057 * Physical base address of 8-byte Rx Status buffer.
1058 * Bit fields:
1059 * 31-0: Rx status buffer physical base address [35:4], must 16-byte aligned.
1060 */
1061#define FH49_RSCSR_CHNL0_STTS_WPTR_REG (FH49_MEM_RSCSR_CHNL0)
1062
1063/**
1064 * Physical base address of Rx Buffer Descriptor Circular Buffer.
1065 * Bit fields:
1066 * 27-0: RBD CD physical base address [35:8], must be 256-byte aligned.
1067 */
1068#define FH49_RSCSR_CHNL0_RBDCB_BASE_REG (FH49_MEM_RSCSR_CHNL0 + 0x004)
1069
1070/**
1071 * Rx write pointer (idx, really!).
1072 * Bit fields:
1073 * 11-0: Index of driver's most recent prepared-to-be-filled RBD, + 1.
1074 * NOTE: For 256-entry circular buffer, use only bits [7:0].
1075 */
1076#define FH49_RSCSR_CHNL0_RBDCB_WPTR_REG (FH49_MEM_RSCSR_CHNL0 + 0x008)
1077#define FH49_RSCSR_CHNL0_WPTR (FH49_RSCSR_CHNL0_RBDCB_WPTR_REG)
1078
eac3b212
SG
1079/**
1080 * Rx Config/Status Registers (RCSR)
1081 * Rx Config Reg for channel 0 (only channel used)
1082 *
1083 * Driver must initialize FH49_MEM_RCSR_CHNL0_CONFIG_REG as follows for
1084 * normal operation (see bit fields).
1085 *
1086 * Clearing FH49_MEM_RCSR_CHNL0_CONFIG_REG to 0 turns off Rx DMA.
1087 * Driver should poll FH49_MEM_RSSR_RX_STATUS_REG for
1088 * FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (bit 24) before continuing.
1089 *
1090 * Bit fields:
1091 * 31-30: Rx DMA channel enable: '00' off/pause, '01' pause at end of frame,
1092 * '10' operate normally
1093 * 29-24: reserved
1094 * 23-20: # RBDs in circular buffer = 2^value; use "8" for 256 RBDs (normal),
1095 * min "5" for 32 RBDs, max "12" for 4096 RBDs.
1096 * 19-18: reserved
1097 * 17-16: size of each receive buffer; '00' 4K (normal), '01' 8K,
1098 * '10' 12K, '11' 16K.
1099 * 15-14: reserved
1100 * 13-12: IRQ destination; '00' none, '01' host driver (normal operation)
1101 * 11- 4: timeout for closing Rx buffer and interrupting host (units 32 usec)
1102 * typical value 0x10 (about 1/2 msec)
1103 * 3- 0: reserved
1104 */
1105#define FH49_MEM_RCSR_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0xC00)
1106#define FH49_MEM_RCSR_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xCC0)
1107#define FH49_MEM_RCSR_CHNL0 (FH49_MEM_RCSR_LOWER_BOUND)
1108
1109#define FH49_MEM_RCSR_CHNL0_CONFIG_REG (FH49_MEM_RCSR_CHNL0)
1110
e7392364
SG
1111#define FH49_RCSR_CHNL0_RX_CONFIG_RB_TIMEOUT_MSK (0x00000FF0) /* bits 4-11 */
1112#define FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_MSK (0x00001000) /* bits 12 */
1113#define FH49_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK (0x00008000) /* bit 15 */
1114#define FH49_RCSR_CHNL0_RX_CONFIG_RB_SIZE_MSK (0x00030000) /* bits 16-17 */
1115#define FH49_RCSR_CHNL0_RX_CONFIG_RBDBC_SIZE_MSK (0x00F00000) /* bits 20-23 */
1116#define FH49_RCSR_CHNL0_RX_CONFIG_DMA_CHNL_EN_MSK (0xC0000000) /* bits 30-31 */
eac3b212
SG
1117
1118#define FH49_RCSR_RX_CONFIG_RBDCB_SIZE_POS (20)
1119#define FH49_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS (4)
1120#define RX_RB_TIMEOUT (0x10)
1121
1122#define FH49_RCSR_RX_CONFIG_CHNL_EN_PAUSE_VAL (0x00000000)
1123#define FH49_RCSR_RX_CONFIG_CHNL_EN_PAUSE_EOF_VAL (0x40000000)
1124#define FH49_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL (0x80000000)
1125
1126#define FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K (0x00000000)
1127#define FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K (0x00010000)
1128#define FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_12K (0x00020000)
1129#define FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_16K (0x00030000)
1130
1131#define FH49_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY (0x00000004)
1132#define FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000)
1133#define FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000)
1134
1135/**
1136 * Rx Shared Status Registers (RSSR)
1137 *
1138 * After stopping Rx DMA channel (writing 0 to
1139 * FH49_MEM_RCSR_CHNL0_CONFIG_REG), driver must poll
1140 * FH49_MEM_RSSR_RX_STATUS_REG until Rx channel is idle.
1141 *
1142 * Bit fields:
1143 * 24: 1 = Channel 0 is idle
1144 *
1145 * FH49_MEM_RSSR_SHARED_CTRL_REG and FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV
1146 * contain default values that should not be altered by the driver.
1147 */
1148#define FH49_MEM_RSSR_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0xC40)
1149#define FH49_MEM_RSSR_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xD00)
1150
1151#define FH49_MEM_RSSR_SHARED_CTRL_REG (FH49_MEM_RSSR_LOWER_BOUND)
1152#define FH49_MEM_RSSR_RX_STATUS_REG (FH49_MEM_RSSR_LOWER_BOUND + 0x004)
1153#define FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV\
1154 (FH49_MEM_RSSR_LOWER_BOUND + 0x008)
1155
1156#define FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (0x01000000)
1157
1158#define FH49_MEM_TFDIB_REG1_ADDR_BITSHIFT 28
1159
1160/* TFDB Area - TFDs buffer table */
1161#define FH49_MEM_TFDIB_DRAM_ADDR_LSB_MSK (0xFFFFFFFF)
1162#define FH49_TFDIB_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0x900)
1163#define FH49_TFDIB_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0x958)
1164#define FH49_TFDIB_CTRL0_REG(_chnl) (FH49_TFDIB_LOWER_BOUND + 0x8 * (_chnl))
1165#define FH49_TFDIB_CTRL1_REG(_chnl) (FH49_TFDIB_LOWER_BOUND + 0x8 * (_chnl) + 0x4)
1166
1167/**
1168 * Transmit DMA Channel Control/Status Registers (TCSR)
1169 *
1170 * 4965 has one configuration register for each of 8 Tx DMA/FIFO channels
1171 * supported in hardware (don't confuse these with the 16 Tx queues in DRAM,
1172 * which feed the DMA/FIFO channels); config regs are separated by 0x20 bytes.
1173 *
1174 * To use a Tx DMA channel, driver must initialize its
1175 * FH49_TCSR_CHNL_TX_CONFIG_REG(chnl) with:
1176 *
1177 * FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
1178 * FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL
1179 *
1180 * All other bits should be 0.
1181 *
1182 * Bit fields:
1183 * 31-30: Tx DMA channel enable: '00' off/pause, '01' pause at end of frame,
1184 * '10' operate normally
1185 * 29- 4: Reserved, set to "0"
1186 * 3: Enable internal DMA requests (1, normal operation), disable (0)
1187 * 2- 0: Reserved, set to "0"
1188 */
1189#define FH49_TCSR_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0xD00)
1190#define FH49_TCSR_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xE60)
1191
1192/* Find Control/Status reg for given Tx DMA/FIFO channel */
1193#define FH49_TCSR_CHNL_NUM (7)
1194#define FH50_TCSR_CHNL_NUM (8)
1195
1196/* TCSR: tx_config register values */
1197#define FH49_TCSR_CHNL_TX_CONFIG_REG(_chnl) \
1198 (FH49_TCSR_LOWER_BOUND + 0x20 * (_chnl))
1199#define FH49_TCSR_CHNL_TX_CREDIT_REG(_chnl) \
1200 (FH49_TCSR_LOWER_BOUND + 0x20 * (_chnl) + 0x4)
1201#define FH49_TCSR_CHNL_TX_BUF_STS_REG(_chnl) \
1202 (FH49_TCSR_LOWER_BOUND + 0x20 * (_chnl) + 0x8)
1203
1204#define FH49_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF (0x00000000)
1205#define FH49_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_DRV (0x00000001)
1206
1207#define FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE (0x00000000)
1208#define FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE (0x00000008)
1209
1210#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_NOINT (0x00000000)
1211#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD (0x00100000)
1212#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD (0x00200000)
1213
1214#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT (0x00000000)
1215#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_ENDTFD (0x00400000)
1216#define FH49_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_IFTFD (0x00800000)
1217
1218#define FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE (0x00000000)
1219#define FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE_EOF (0x40000000)
1220#define FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE (0x80000000)
1221
1222#define FH49_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_EMPTY (0x00000000)
1223#define FH49_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_WAIT (0x00002000)
1224#define FH49_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID (0x00000003)
1225
1226#define FH49_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM (20)
1227#define FH49_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX (12)
1228
1229/**
1230 * Tx Shared Status Registers (TSSR)
1231 *
1232 * After stopping Tx DMA channel (writing 0 to
1233 * FH49_TCSR_CHNL_TX_CONFIG_REG(chnl)), driver must poll
1234 * FH49_TSSR_TX_STATUS_REG until selected Tx channel is idle
1235 * (channel's buffers empty | no pending requests).
1236 *
1237 * Bit fields:
1238 * 31-24: 1 = Channel buffers empty (channel 7:0)
1239 * 23-16: 1 = No pending requests (channel 7:0)
1240 */
1241#define FH49_TSSR_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0xEA0)
1242#define FH49_TSSR_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0xEC0)
1243
1244#define FH49_TSSR_TX_STATUS_REG (FH49_TSSR_LOWER_BOUND + 0x010)
1245
1246/**
1247 * Bit fields for TSSR(Tx Shared Status & Control) error status register:
1248 * 31: Indicates an address error when accessed to internal memory
1249 * uCode/driver must write "1" in order to clear this flag
1250 * 30: Indicates that Host did not send the expected number of dwords to FH
1251 * uCode/driver must write "1" in order to clear this flag
1252 * 16-9:Each status bit is for one channel. Indicates that an (Error) ActDMA
1253 * command was received from the scheduler while the TRB was already full
1254 * with previous command
1255 * uCode/driver must write "1" in order to clear this flag
1256 * 7-0: Each status bit indicates a channel's TxCredit error. When an error
1257 * bit is set, it indicates that the FH has received a full indication
1258 * from the RTC TxFIFO and the current value of the TxCredit counter was
1259 * not equal to zero. This mean that the credit mechanism was not
1260 * synchronized to the TxFIFO status
1261 * uCode/driver must write "1" in order to clear this flag
1262 */
1263#define FH49_TSSR_TX_ERROR_REG (FH49_TSSR_LOWER_BOUND + 0x018)
1264
1265#define FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(_chnl) ((1 << (_chnl)) << 16)
1266
1267/* Tx service channels */
1268#define FH49_SRVC_CHNL (9)
1269#define FH49_SRVC_LOWER_BOUND (FH49_MEM_LOWER_BOUND + 0x9C8)
1270#define FH49_SRVC_UPPER_BOUND (FH49_MEM_LOWER_BOUND + 0x9D0)
1271#define FH49_SRVC_CHNL_SRAM_ADDR_REG(_chnl) \
1272 (FH49_SRVC_LOWER_BOUND + ((_chnl) - 9) * 0x4)
1273
1274#define FH49_TX_CHICKEN_BITS_REG (FH49_MEM_LOWER_BOUND + 0xE98)
1275/* Instruct FH to increment the retry count of a packet when
1276 * it is brought from the memory to TX-FIFO
1277 */
1278#define FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN (0x00000002)
1279
1280/* Keep Warm Size */
1281#define IL_KW_SIZE 0x1000 /* 4k */
1282
af038f40 1283#endif /* __il_4965_h__ */