blob: 70ba962732f76f7f96c44483bc070e913312695a [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
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 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -08008 * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07009 *
10 * This program is free software; you can redistribute it and/or modify
Ian Schram01ebd062007-10-25 17:15:22 +080011 * it under the terms of version 2 of the GNU General Public License as
Zhu Yib481de92007-09-25 17:54:57 -070012 * 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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080028 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070029 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -080033 * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -070034 * 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 *****************************************************************************/
Ben Cahillfcd427b2007-11-29 11:10:00 +080063/*
Tomas Winkler5a36ba02008-04-24 11:55:37 -070064 * Please use this file (iwl-commands.h) only for uCode API definitions.
Wey-Yi Guy767d0552010-08-23 07:56:53 -070065 * Please use iwl-xxxx-hw.h for hardware-related definitions.
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070066 * Please use iwl-dev.h for driver implementation definitions.
Ben Cahillfcd427b2007-11-29 11:10:00 +080067 */
Zhu Yib481de92007-09-25 17:54:57 -070068
Emmanuel Grumbach6a635782008-10-29 14:05:47 -070069#ifndef __iwl_commands_h__
70#define __iwl_commands_h__
Zhu Yib481de92007-09-25 17:54:57 -070071
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -070072#include <linux/etherdevice.h>
73#include <linux/ieee80211.h>
74
Samuel Ortiza3139c52008-12-19 10:37:09 +080075struct iwl_priv;
76
Tomas Winkler4c897252008-12-19 10:37:05 +080077/* Tx rates */
78#define IWL_CCK_RATES 4
79#define IWL_OFDM_RATES 8
80#define IWL_MAX_RATES (IWL_CCK_RATES + IWL_OFDM_RATES)
81
Zhu Yib481de92007-09-25 17:54:57 -070082enum {
83 REPLY_ALIVE = 0x1,
84 REPLY_ERROR = 0x2,
Wey-Yi Guye80eb002011-10-10 07:26:47 -070085 REPLY_ECHO = 0x3, /* test command */
Zhu Yib481de92007-09-25 17:54:57 -070086
87 /* RXON and QOS commands */
88 REPLY_RXON = 0x10,
89 REPLY_RXON_ASSOC = 0x11,
90 REPLY_QOS_PARAM = 0x13,
91 REPLY_RXON_TIMING = 0x14,
92
93 /* Multi-Station support */
94 REPLY_ADD_STA = 0x18,
Wey-Yi Guyfc66be22010-05-14 16:21:55 -070095 REPLY_REMOVE_STA = 0x19,
Zhu Yib481de92007-09-25 17:54:57 -070096 REPLY_REMOVE_ALL_STA = 0x1a, /* not used */
Wey-Yi Guy947279e2010-06-24 13:18:33 -070097 REPLY_TXFIFO_FLUSH = 0x1e,
Zhu Yib481de92007-09-25 17:54:57 -070098
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -070099 /* Security */
100 REPLY_WEPKEY = 0x20,
101
Zhu Yib481de92007-09-25 17:54:57 -0700102 /* RX, TX, LEDs */
Zhu Yib481de92007-09-25 17:54:57 -0700103 REPLY_TX = 0x1c,
Zhu Yib481de92007-09-25 17:54:57 -0700104 REPLY_LEDS_CMD = 0x48,
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -0800105 REPLY_TX_LINK_QUALITY_CMD = 0x4e,
Zhu Yib481de92007-09-25 17:54:57 -0700106
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800107 /* WiMAX coexistence */
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -0800108 COEX_PRIORITY_TABLE_CMD = 0x5a,
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800109 COEX_MEDIUM_NOTIFICATION = 0x5b,
110 COEX_EVENT_CMD = 0x5c,
111
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800112 /* Calibration */
Jay Sternberg1a5c3d62009-10-23 13:42:19 -0700113 TEMPERATURE_NOTIFICATION = 0x62,
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800114 CALIBRATION_CFG_CMD = 0x65,
115 CALIBRATION_RES_NOTIFICATION = 0x66,
116 CALIBRATION_COMPLETE_NOTIFICATION = 0x67,
117
Zhu Yib481de92007-09-25 17:54:57 -0700118 /* 802.11h related */
Zhu Yib481de92007-09-25 17:54:57 -0700119 REPLY_QUIET_CMD = 0x71, /* not used */
120 REPLY_CHANNEL_SWITCH = 0x72,
121 CHANNEL_SWITCH_NOTIFICATION = 0x73,
122 REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74,
123 SPECTRUM_MEASURE_NOTIFICATION = 0x75,
124
125 /* Power Management */
126 POWER_TABLE_CMD = 0x77,
127 PM_SLEEP_NOTIFICATION = 0x7A,
128 PM_DEBUG_STATISTIC_NOTIFIC = 0x7B,
129
130 /* Scan commands and notifications */
131 REPLY_SCAN_CMD = 0x80,
132 REPLY_SCAN_ABORT_CMD = 0x81,
133 SCAN_START_NOTIFICATION = 0x82,
134 SCAN_RESULTS_NOTIFICATION = 0x83,
135 SCAN_COMPLETE_NOTIFICATION = 0x84,
136
137 /* IBSS/AP commands */
138 BEACON_NOTIFICATION = 0x90,
139 REPLY_TX_BEACON = 0x91,
140 WHO_IS_AWAKE_NOTIFICATION = 0x94, /* not used */
141
142 /* Miscellaneous commands */
Jay Sternberg76a24072009-01-29 11:09:14 -0800143 REPLY_TX_POWER_DBM_CMD = 0x95,
Zhu Yib481de92007-09-25 17:54:57 -0700144 QUIET_NOTIFICATION = 0x96, /* not used */
145 REPLY_TX_PWR_TABLE_CMD = 0x97,
Jay Sternberg76a24072009-01-29 11:09:14 -0800146 REPLY_TX_POWER_DBM_CMD_V1 = 0x98, /* old version of API */
Wey-Yi Guy2f748de2009-09-17 10:43:51 -0700147 TX_ANT_CONFIGURATION_CMD = 0x98,
Zhu Yib481de92007-09-25 17:54:57 -0700148 MEASURE_ABORT_NOTIFICATION = 0x99, /* not used */
149
Tomas Winklera96a27f2008-10-23 23:48:56 -0700150 /* Bluetooth device coexistence config command */
Zhu Yib481de92007-09-25 17:54:57 -0700151 REPLY_BT_CONFIG = 0x9b,
152
Ben Cahill80cc0c32007-11-29 11:10:09 +0800153 /* Statistics */
Zhu Yib481de92007-09-25 17:54:57 -0700154 REPLY_STATISTICS_CMD = 0x9c,
155 STATISTICS_NOTIFICATION = 0x9d,
156
157 /* RF-KILL commands and notifications */
158 REPLY_CARD_STATE_CMD = 0xa0,
159 CARD_STATE_NOTIFICATION = 0xa1,
160
161 /* Missed beacons notification */
162 MISSED_BEACONS_NOTIFICATION = 0xa2,
163
Zhu Yib481de92007-09-25 17:54:57 -0700164 REPLY_CT_KILL_CONFIG_CMD = 0xa4,
165 SENSITIVITY_CMD = 0xa8,
166 REPLY_PHY_CALIBRATION_CMD = 0xb0,
167 REPLY_RX_PHY_CMD = 0xc0,
168 REPLY_RX_MPDU_CMD = 0xc1,
Tomas Winkler857485c2008-03-21 13:53:44 -0700169 REPLY_RX = 0xc3,
Zhu Yib481de92007-09-25 17:54:57 -0700170 REPLY_COMPRESSED_BA = 0xc5,
Johannes Berg0288d232010-08-23 07:56:54 -0700171
172 /* BT Coex */
173 REPLY_BT_COEX_PRIO_TABLE = 0xcc,
174 REPLY_BT_COEX_PROT_ENV = 0xcd,
175 REPLY_BT_COEX_PROFILE_NOTIF = 0xce,
176
Johannes Berg946ba302010-08-23 10:46:48 +0200177 /* PAN commands */
178 REPLY_WIPAN_PARAMS = 0xb2,
179 REPLY_WIPAN_RXON = 0xb3, /* use REPLY_RXON structure */
180 REPLY_WIPAN_RXON_TIMING = 0xb4, /* use REPLY_RXON_TIMING structure */
181 REPLY_WIPAN_RXON_ASSOC = 0xb6, /* use REPLY_RXON_ASSOC structure */
182 REPLY_WIPAN_QOS_PARAM = 0xb7, /* use REPLY_QOS_PARAM structure */
183 REPLY_WIPAN_WEPKEY = 0xb8, /* use REPLY_WEPKEY structure */
184 REPLY_WIPAN_P2P_CHANNEL_SWITCH = 0xb9,
185 REPLY_WIPAN_NOA_NOTIFICATION = 0xbc,
Johannes Berg311dce72011-01-04 16:22:01 -0800186 REPLY_WIPAN_DEACTIVATION_COMPLETE = 0xbd,
Johannes Berg946ba302010-08-23 10:46:48 +0200187
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700188 REPLY_WOWLAN_PATTERNS = 0xe0,
189 REPLY_WOWLAN_WAKEUP_FILTER = 0xe1,
190 REPLY_WOWLAN_TSC_RSC_PARAMS = 0xe2,
191 REPLY_WOWLAN_TKIP_PARAMS = 0xe3,
192 REPLY_WOWLAN_KEK_KCK_MATERIAL = 0xe4,
193 REPLY_WOWLAN_GET_STATUS = 0xe5,
Johannes Berg56012402011-10-14 12:54:43 -0700194 REPLY_D3_CONFIG = 0xd3,
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700195
Zhu Yib481de92007-09-25 17:54:57 -0700196 REPLY_MAX = 0xff
197};
198
199/******************************************************************************
200 * (0)
Ben Cahillabceddb2007-11-29 11:09:50 +0800201 * Commonly used structures and definitions:
Ben Cahill80cc0c32007-11-29 11:10:09 +0800202 * Command header, rate_n_flags, txpower
Zhu Yib481de92007-09-25 17:54:57 -0700203 *
204 *****************************************************************************/
205
Tomas Winkler857485c2008-03-21 13:53:44 -0700206/* iwl_cmd_header flags value */
Zhu Yib481de92007-09-25 17:54:57 -0700207#define IWL_CMD_FAILED_MSK 0x40
208
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800209/**
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800210 * iwlagn rate_n_flags bit fields
Ben Cahillabceddb2007-11-29 11:09:50 +0800211 *
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800212 * rate_n_flags format is used in following iwlagn commands:
Tomas Winkler857485c2008-03-21 13:53:44 -0700213 * REPLY_RX (response only)
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800214 * REPLY_RX_MPDU (response only)
Ben Cahillabceddb2007-11-29 11:09:50 +0800215 * REPLY_TX (both command and response)
216 * REPLY_TX_LINK_QUALITY_CMD
217 *
218 * High-throughput (HT) rate format for bits 7:0 (bit 8 must be "1"):
219 * 2-0: 0) 6 Mbps
220 * 1) 12 Mbps
221 * 2) 18 Mbps
222 * 3) 24 Mbps
223 * 4) 36 Mbps
224 * 5) 48 Mbps
225 * 6) 54 Mbps
226 * 7) 60 Mbps
227 *
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800228 * 4-3: 0) Single stream (SISO)
Ben Cahillabceddb2007-11-29 11:09:50 +0800229 * 1) Dual stream (MIMO)
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800230 * 2) Triple stream (MIMO)
Ben Cahillabceddb2007-11-29 11:09:50 +0800231 *
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700232 * 5: Value of 0x20 in bits 7:0 indicates 6 Mbps HT40 duplicate data
Ben Cahillabceddb2007-11-29 11:09:50 +0800233 *
234 * Legacy OFDM rate format for bits 7:0 (bit 8 must be "0", bit 9 "0"):
235 * 3-0: 0xD) 6 Mbps
236 * 0xF) 9 Mbps
237 * 0x5) 12 Mbps
238 * 0x7) 18 Mbps
239 * 0x9) 24 Mbps
240 * 0xB) 36 Mbps
241 * 0x1) 48 Mbps
242 * 0x3) 54 Mbps
243 *
244 * Legacy CCK rate format for bits 7:0 (bit 8 must be "0", bit 9 "1"):
Daniel Wu10617872008-12-20 10:53:29 -0800245 * 6-0: 10) 1 Mbps
Ben Cahillabceddb2007-11-29 11:09:50 +0800246 * 20) 2 Mbps
247 * 55) 5.5 Mbps
248 * 110) 11 Mbps
249 */
250#define RATE_MCS_CODE_MSK 0x7
Halperin, Daniel C5c5aa3f2008-11-07 09:58:38 -0800251#define RATE_MCS_SPATIAL_POS 3
252#define RATE_MCS_SPATIAL_MSK 0x18
Ben Cahillabceddb2007-11-29 11:09:50 +0800253#define RATE_MCS_HT_DUP_POS 5
254#define RATE_MCS_HT_DUP_MSK 0x20
Daniel Halperin25205462011-03-18 18:48:55 -0700255/* Both legacy and HT use bits 7:0 as the CCK/OFDM rate or HT MCS */
256#define RATE_MCS_RATE_MSK 0xff
Ben Cahillabceddb2007-11-29 11:09:50 +0800257
Ben Cahill075416c2007-11-29 11:10:08 +0800258/* Bit 8: (1) HT format, (0) legacy format in bits 7:0 */
Ben Cahillabceddb2007-11-29 11:09:50 +0800259#define RATE_MCS_FLAGS_POS 8
260#define RATE_MCS_HT_POS 8
261#define RATE_MCS_HT_MSK 0x100
262
Ben Cahill075416c2007-11-29 11:10:08 +0800263/* Bit 9: (1) CCK, (0) OFDM. HT (bit 8) must be "0" for this bit to be valid */
Ben Cahillabceddb2007-11-29 11:09:50 +0800264#define RATE_MCS_CCK_POS 9
265#define RATE_MCS_CCK_MSK 0x200
266
Ben Cahill075416c2007-11-29 11:10:08 +0800267/* Bit 10: (1) Use Green Field preamble */
Ben Cahillabceddb2007-11-29 11:09:50 +0800268#define RATE_MCS_GF_POS 10
269#define RATE_MCS_GF_MSK 0x400
270
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700271/* Bit 11: (1) Use 40Mhz HT40 chnl width, (0) use 20 MHz legacy chnl width */
272#define RATE_MCS_HT40_POS 11
273#define RATE_MCS_HT40_MSK 0x800
Ben Cahillabceddb2007-11-29 11:09:50 +0800274
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700275/* Bit 12: (1) Duplicate data on both 20MHz chnls. HT40 (bit 11) must be set. */
Ben Cahillabceddb2007-11-29 11:09:50 +0800276#define RATE_MCS_DUP_POS 12
277#define RATE_MCS_DUP_MSK 0x1000
278
Ben Cahill075416c2007-11-29 11:10:08 +0800279/* Bit 13: (1) Short guard interval (0.4 usec), (0) normal GI (0.8 usec) */
Ben Cahillabceddb2007-11-29 11:09:50 +0800280#define RATE_MCS_SGI_POS 13
281#define RATE_MCS_SGI_MSK 0x2000
282
283/**
Tomas Winkler76eff182008-10-14 12:32:45 -0700284 * rate_n_flags Tx antenna masks
285 * 4965 has 2 transmitters
286 * 5100 has 1 transmitter B
287 * 5150 has 1 transmitter A
288 * 5300 has 3 transmitters
289 * 5350 has 3 transmitters
290 * bit14:16
Ben Cahillabceddb2007-11-29 11:09:50 +0800291 */
Tomas Winkler600c0e12008-12-19 10:37:04 +0800292#define RATE_MCS_ANT_POS 14
293#define RATE_MCS_ANT_A_MSK 0x04000
294#define RATE_MCS_ANT_B_MSK 0x08000
295#define RATE_MCS_ANT_C_MSK 0x10000
296#define RATE_MCS_ANT_AB_MSK (RATE_MCS_ANT_A_MSK | RATE_MCS_ANT_B_MSK)
297#define RATE_MCS_ANT_ABC_MSK (RATE_MCS_ANT_AB_MSK | RATE_MCS_ANT_C_MSK)
Tomas Winkler76eff182008-10-14 12:32:45 -0700298#define RATE_ANT_NUM 3
Ben Cahill80cc0c32007-11-29 11:10:09 +0800299
300#define POWER_TABLE_NUM_ENTRIES 33
301#define POWER_TABLE_NUM_HT_OFDM_ENTRIES 32
302#define POWER_TABLE_CCK_ENTRY 32
303
Wey-Yi Guye57f1482009-10-09 13:20:34 -0700304#define IWL_PWR_NUM_HT_OFDM_ENTRIES 24
305#define IWL_PWR_CCK_ENTRIES 2
306
Ben Cahill80cc0c32007-11-29 11:10:09 +0800307/**
Ben Cahill80cc0c32007-11-29 11:10:09 +0800308 * struct tx_power_dual_stream
309 *
310 * Table entries in REPLY_TX_PWR_TABLE_CMD, REPLY_CHANNEL_SWITCH
311 *
312 * Same format as iwl_tx_power_dual_stream, but __le32
313 */
314struct tx_power_dual_stream {
315 __le32 dw;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000316} __packed;
Ben Cahill80cc0c32007-11-29 11:10:09 +0800317
318/**
Tomas Winklera96a27f2008-10-23 23:48:56 -0700319 * Command REPLY_TX_POWER_DBM_CMD = 0x98
Wey-Yi Guyab63c682010-09-20 09:12:31 -0700320 * struct iwlagn_tx_power_dbm_cmd
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800321 */
Wey-Yi Guyab63c682010-09-20 09:12:31 -0700322#define IWLAGN_TX_POWER_AUTO 0x7f
323#define IWLAGN_TX_POWER_NO_CLOSED (0x1 << 6)
Gregory Greenman853554a2008-06-30 17:23:01 +0800324
Wey-Yi Guyab63c682010-09-20 09:12:31 -0700325struct iwlagn_tx_power_dbm_cmd {
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800326 s8 global_lmt; /*in half-dBm (e.g. 30 = 15 dBm) */
327 u8 flags;
328 s8 srv_chan_lmt; /*in half-dBm (e.g. 30 = 15 dBm) */
329 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000330} __packed;
Ben Cahill80cc0c32007-11-29 11:10:09 +0800331
Wey-Yi Guy2f748de2009-09-17 10:43:51 -0700332/**
333 * Command TX_ANT_CONFIGURATION_CMD = 0x98
334 * This command is used to configure valid Tx antenna.
335 * By default uCode concludes the valid antenna according to the radio flavor.
336 * This command enables the driver to override/modify this conclusion.
337 */
338struct iwl_tx_ant_config_cmd {
339 __le32 valid;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000340} __packed;
Wey-Yi Guy2f748de2009-09-17 10:43:51 -0700341
Zhu Yib481de92007-09-25 17:54:57 -0700342/******************************************************************************
343 * (0a)
344 * Alive and Error Commands & Responses:
345 *
346 *****************************************************************************/
347
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800348#define UCODE_VALID_OK cpu_to_le32(0x1)
Johannes Bergca7966c2011-04-22 10:15:23 -0700349
Ben Cahill075416c2007-11-29 11:10:08 +0800350/**
351 * REPLY_ALIVE = 0x1 (response only, not a command)
352 *
353 * uCode issues this "alive" notification once the runtime image is ready
354 * to receive commands from the driver. This is the *second* "alive"
355 * notification that the driver will receive after rebooting uCode;
356 * this "alive" is indicated by subtype field != 9.
357 *
358 * See comments documenting "BSM" (bootstrap state machine).
359 *
360 * This response includes two pointers to structures within the device's
361 * data SRAM (access via HBUS_TARG_MEM_* regs) that are useful for debugging:
362 *
363 * 1) log_event_table_ptr indicates base of the event log. This traces
364 * a 256-entry history of uCode execution within a circular buffer.
365 * Its header format is:
366 *
367 * __le32 log_size; log capacity (in number of entries)
368 * __le32 type; (1) timestamp with each entry, (0) no timestamp
369 * __le32 wraps; # times uCode has wrapped to top of circular buffer
370 * __le32 write_index; next circular buffer entry that uCode would fill
371 *
372 * The header is followed by the circular buffer of log entries. Entries
373 * with timestamps have the following format:
374 *
375 * __le32 event_id; range 0 - 1500
376 * __le32 timestamp; low 32 bits of TSF (of network, if associated)
377 * __le32 data; event_id-specific data value
378 *
379 * Entries without timestamps contain only event_id and data.
380 *
Wey-Yi Guy461ef382010-03-30 17:57:53 -0700381 *
Ben Cahill075416c2007-11-29 11:10:08 +0800382 * 2) error_event_table_ptr indicates base of the error log. This contains
Wey-Yi Guy461ef382010-03-30 17:57:53 -0700383 * information about any uCode error that occurs. For agn, the format
Johannes Berge46f6532011-04-13 03:14:43 -0700384 * of the error log is defined by struct iwl_error_event_table.
Ben Cahill075416c2007-11-29 11:10:08 +0800385 *
386 * The Linux driver can print both logs to the system log when a uCode error
387 * occurs.
388 */
Johannes Berge46f6532011-04-13 03:14:43 -0700389
390/*
391 * Note: This structure is read from the device with IO accesses,
392 * and the reading already does the endian conversion. As it is
393 * read with u32-sized accesses, any members with a different size
394 * need to be ordered correctly though!
395 */
396struct iwl_error_event_table {
397 u32 valid; /* (nonzero) valid, (0) log is empty */
398 u32 error_id; /* type of error */
399 u32 pc; /* program counter */
400 u32 blink1; /* branch link */
401 u32 blink2; /* branch link */
402 u32 ilink1; /* interrupt link */
403 u32 ilink2; /* interrupt link */
404 u32 data1; /* error-specific data */
405 u32 data2; /* error-specific data */
406 u32 line; /* source code line of error */
407 u32 bcon_time; /* beacon timer */
408 u32 tsf_low; /* network timestamp function timer */
409 u32 tsf_hi; /* network timestamp function timer */
410 u32 gp1; /* GP1 timer register */
411 u32 gp2; /* GP2 timer register */
412 u32 gp3; /* GP3 timer register */
413 u32 ucode_ver; /* uCode version */
414 u32 hw_ver; /* HW Silicon version */
415 u32 brd_ver; /* HW board version */
416 u32 log_pc; /* log program counter */
417 u32 frame_ptr; /* frame pointer */
418 u32 stack_ptr; /* stack pointer */
419 u32 hcmd; /* last host command header */
Wey-Yi Guyd332f592011-11-30 12:32:42 -0800420 u32 isr0; /* isr status register LMPM_NIC_ISR0:
421 * rxtx_flag */
422 u32 isr1; /* isr status register LMPM_NIC_ISR1:
423 * host_flag */
424 u32 isr2; /* isr status register LMPM_NIC_ISR2:
425 * enc_flag */
426 u32 isr3; /* isr status register LMPM_NIC_ISR3:
427 * time_flag */
428 u32 isr4; /* isr status register LMPM_NIC_ISR4:
429 * wico interrupt */
Johannes Berge46f6532011-04-13 03:14:43 -0700430 u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
431 u32 wait_event; /* wait event() caller address */
432 u32 l2p_control; /* L2pControlField */
433 u32 l2p_duration; /* L2pDurationField */
434 u32 l2p_mhvalid; /* L2pMhValidBits */
435 u32 l2p_addr_match; /* L2pAddrMatchStat */
Wey-Yi Guyd332f592011-11-30 12:32:42 -0800436 u32 lmpm_pmg_sel; /* indicate which clocks are turned on
437 * (LMPM_PMG_SEL) */
438 u32 u_timestamp; /* indicate when the date and time of the
439 * compilation */
Johannes Berge46f6532011-04-13 03:14:43 -0700440 u32 flow_handler; /* FH read/write pointers, RX credit */
Johannes Berge46f6532011-04-13 03:14:43 -0700441} __packed;
442
Tomas Winkler885ba202008-05-29 16:34:55 +0800443struct iwl_alive_resp {
Ben Cahill075416c2007-11-29 11:10:08 +0800444 u8 ucode_minor;
445 u8 ucode_major;
446 __le16 reserved1;
447 u8 sw_rev[8];
448 u8 ver_type;
449 u8 ver_subtype; /* not "9" for runtime alive */
450 __le16 reserved2;
451 __le32 log_event_table_ptr; /* SRAM address for event log */
452 __le32 error_event_table_ptr; /* SRAM address for error log */
453 __le32 timestamp;
454 __le32 is_valid;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000455} __packed;
Ben Cahill075416c2007-11-29 11:10:08 +0800456
Zhu Yib481de92007-09-25 17:54:57 -0700457/*
458 * REPLY_ERROR = 0x2 (response only, not a command)
459 */
Tomas Winkler885ba202008-05-29 16:34:55 +0800460struct iwl_error_resp {
Zhu Yib481de92007-09-25 17:54:57 -0700461 __le32 error_type;
462 u8 cmd_id;
463 u8 reserved1;
464 __le16 bad_cmd_seq_num;
Zhu Yib481de92007-09-25 17:54:57 -0700465 __le32 error_info;
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800466 __le64 timestamp;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000467} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700468
469/******************************************************************************
470 * (1)
471 * RXON Commands & Responses:
472 *
473 *****************************************************************************/
474
475/*
476 * Rx config defines & structure
477 */
478/* rx_config device types */
479enum {
480 RXON_DEV_TYPE_AP = 1,
481 RXON_DEV_TYPE_ESS = 3,
482 RXON_DEV_TYPE_IBSS = 4,
483 RXON_DEV_TYPE_SNIFFER = 6,
Johannes Berg946ba302010-08-23 10:46:48 +0200484 RXON_DEV_TYPE_CP = 7,
485 RXON_DEV_TYPE_2STA = 8,
486 RXON_DEV_TYPE_P2P = 9,
Zhu Yib481de92007-09-25 17:54:57 -0700487};
488
Ben Cahill14519a02007-11-29 11:09:59 +0800489
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800490#define RXON_RX_CHAIN_DRIVER_FORCE_MSK cpu_to_le16(0x1 << 0)
Rick Farrington7b841722009-01-23 13:45:10 -0800491#define RXON_RX_CHAIN_DRIVER_FORCE_POS (0)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800492#define RXON_RX_CHAIN_VALID_MSK cpu_to_le16(0x7 << 1)
Ben Cahill14519a02007-11-29 11:09:59 +0800493#define RXON_RX_CHAIN_VALID_POS (1)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800494#define RXON_RX_CHAIN_FORCE_SEL_MSK cpu_to_le16(0x7 << 4)
Ben Cahill14519a02007-11-29 11:09:59 +0800495#define RXON_RX_CHAIN_FORCE_SEL_POS (4)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800496#define RXON_RX_CHAIN_FORCE_MIMO_SEL_MSK cpu_to_le16(0x7 << 7)
Ben Cahill14519a02007-11-29 11:09:59 +0800497#define RXON_RX_CHAIN_FORCE_MIMO_SEL_POS (7)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800498#define RXON_RX_CHAIN_CNT_MSK cpu_to_le16(0x3 << 10)
Ben Cahill14519a02007-11-29 11:09:59 +0800499#define RXON_RX_CHAIN_CNT_POS (10)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800500#define RXON_RX_CHAIN_MIMO_CNT_MSK cpu_to_le16(0x3 << 12)
Ben Cahill14519a02007-11-29 11:09:59 +0800501#define RXON_RX_CHAIN_MIMO_CNT_POS (12)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800502#define RXON_RX_CHAIN_MIMO_FORCE_MSK cpu_to_le16(0x1 << 14)
Ben Cahill14519a02007-11-29 11:09:59 +0800503#define RXON_RX_CHAIN_MIMO_FORCE_POS (14)
504
Zhu Yib481de92007-09-25 17:54:57 -0700505/* rx_config flags */
506/* band & modulation selection */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800507#define RXON_FLG_BAND_24G_MSK cpu_to_le32(1 << 0)
508#define RXON_FLG_CCK_MSK cpu_to_le32(1 << 1)
Zhu Yib481de92007-09-25 17:54:57 -0700509/* auto detection enable */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800510#define RXON_FLG_AUTO_DETECT_MSK cpu_to_le32(1 << 2)
Zhu Yib481de92007-09-25 17:54:57 -0700511/* TGg protection when tx */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800512#define RXON_FLG_TGG_PROTECT_MSK cpu_to_le32(1 << 3)
Zhu Yib481de92007-09-25 17:54:57 -0700513/* cck short slot & preamble */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800514#define RXON_FLG_SHORT_SLOT_MSK cpu_to_le32(1 << 4)
515#define RXON_FLG_SHORT_PREAMBLE_MSK cpu_to_le32(1 << 5)
Zhu Yib481de92007-09-25 17:54:57 -0700516/* antenna selection */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800517#define RXON_FLG_DIS_DIV_MSK cpu_to_le32(1 << 7)
518#define RXON_FLG_ANT_SEL_MSK cpu_to_le32(0x0f00)
519#define RXON_FLG_ANT_A_MSK cpu_to_le32(1 << 8)
520#define RXON_FLG_ANT_B_MSK cpu_to_le32(1 << 9)
Zhu Yib481de92007-09-25 17:54:57 -0700521/* radar detection enable */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800522#define RXON_FLG_RADAR_DETECT_MSK cpu_to_le32(1 << 12)
523#define RXON_FLG_TGJ_NARROW_BAND_MSK cpu_to_le32(1 << 13)
Zhu Yib481de92007-09-25 17:54:57 -0700524/* rx response to host with 8-byte TSF
525* (according to ON_AIR deassertion) */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800526#define RXON_FLG_TSF2HOST_MSK cpu_to_le32(1 << 15)
Zhu Yib481de92007-09-25 17:54:57 -0700527
Ben Cahill14519a02007-11-29 11:09:59 +0800528
529/* HT flags */
530#define RXON_FLG_CTRL_CHANNEL_LOC_POS (22)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800531#define RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK cpu_to_le32(0x1 << 22)
Ben Cahill14519a02007-11-29 11:09:59 +0800532
533#define RXON_FLG_HT_OPERATING_MODE_POS (23)
534
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800535#define RXON_FLG_HT_PROT_MSK cpu_to_le32(0x1 << 23)
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700536#define RXON_FLG_HT40_PROT_MSK cpu_to_le32(0x2 << 23)
Ben Cahill14519a02007-11-29 11:09:59 +0800537
538#define RXON_FLG_CHANNEL_MODE_POS (25)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800539#define RXON_FLG_CHANNEL_MODE_MSK cpu_to_le32(0x3 << 25)
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700540
541/* channel mode */
542enum {
543 CHANNEL_MODE_LEGACY = 0,
544 CHANNEL_MODE_PURE_40 = 1,
545 CHANNEL_MODE_MIXED = 2,
546 CHANNEL_MODE_RESERVED = 3,
547};
548#define RXON_FLG_CHANNEL_MODE_LEGACY cpu_to_le32(CHANNEL_MODE_LEGACY << RXON_FLG_CHANNEL_MODE_POS)
549#define RXON_FLG_CHANNEL_MODE_PURE_40 cpu_to_le32(CHANNEL_MODE_PURE_40 << RXON_FLG_CHANNEL_MODE_POS)
550#define RXON_FLG_CHANNEL_MODE_MIXED cpu_to_le32(CHANNEL_MODE_MIXED << RXON_FLG_CHANNEL_MODE_POS)
551
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800552/* CTS to self (if spec allows) flag */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800553#define RXON_FLG_SELF_CTS_EN cpu_to_le32(0x1<<30)
Ben Cahill14519a02007-11-29 11:09:59 +0800554
Zhu Yib481de92007-09-25 17:54:57 -0700555/* rx_config filter flags */
556/* accept all data frames */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800557#define RXON_FILTER_PROMISC_MSK cpu_to_le32(1 << 0)
Zhu Yib481de92007-09-25 17:54:57 -0700558/* pass control & management to host */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800559#define RXON_FILTER_CTL2HOST_MSK cpu_to_le32(1 << 1)
Zhu Yib481de92007-09-25 17:54:57 -0700560/* accept multi-cast */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800561#define RXON_FILTER_ACCEPT_GRP_MSK cpu_to_le32(1 << 2)
Zhu Yib481de92007-09-25 17:54:57 -0700562/* don't decrypt uni-cast frames */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800563#define RXON_FILTER_DIS_DECRYPT_MSK cpu_to_le32(1 << 3)
Zhu Yib481de92007-09-25 17:54:57 -0700564/* don't decrypt multi-cast frames */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800565#define RXON_FILTER_DIS_GRP_DECRYPT_MSK cpu_to_le32(1 << 4)
Zhu Yib481de92007-09-25 17:54:57 -0700566/* STA is associated */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800567#define RXON_FILTER_ASSOC_MSK cpu_to_le32(1 << 5)
Zhu Yib481de92007-09-25 17:54:57 -0700568/* transfer to host non bssid beacons in associated state */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800569#define RXON_FILTER_BCON_AWARE_MSK cpu_to_le32(1 << 6)
Zhu Yib481de92007-09-25 17:54:57 -0700570
Ben Cahill80cc0c32007-11-29 11:10:09 +0800571/**
Zhu Yib481de92007-09-25 17:54:57 -0700572 * REPLY_RXON = 0x10 (command, has simple generic response)
Ben Cahill80cc0c32007-11-29 11:10:09 +0800573 *
574 * RXON tunes the radio tuner to a service channel, and sets up a number
575 * of parameters that are used primarily for Rx, but also for Tx operations.
576 *
577 * NOTE: When tuning to a new channel, driver must set the
578 * RXON_FILTER_ASSOC_MSK to 0. This will clear station-dependent
579 * info within the device, including the station tables, tx retry
580 * rate tables, and txpower tables. Driver must build a new station
581 * table and txpower table before transmitting anything on the RXON
582 * channel.
583 *
584 * NOTE: All RXONs wipe clean the internal txpower table. Driver must
585 * issue a new REPLY_TX_PWR_TABLE_CMD after each REPLY_RXON (0x10),
586 * regardless of whether RXON_FILTER_ASSOC_MSK is set.
Zhu Yib481de92007-09-25 17:54:57 -0700587 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800588
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800589struct iwl_rxon_cmd {
590 u8 node_addr[6];
591 __le16 reserved1;
592 u8 bssid_addr[6];
593 __le16 reserved2;
594 u8 wlap_bssid_addr[6];
595 __le16 reserved3;
596 u8 dev_type;
597 u8 air_propagation;
598 __le16 rx_chain;
599 u8 ofdm_basic_rates;
600 u8 cck_basic_rates;
601 __le16 assoc_id;
602 __le32 flags;
603 __le32 filter_flags;
604 __le16 channel;
605 u8 ofdm_ht_single_stream_basic_rates;
606 u8 ofdm_ht_dual_stream_basic_rates;
607 u8 ofdm_ht_triple_stream_basic_rates;
608 u8 reserved5;
609 __le16 acquisition_data;
610 __le16 reserved6;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000611} __packed;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800612
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800613/*
614 * REPLY_RXON_ASSOC = 0x11 (command, has simple generic response)
615 */
Wey-Yi Guy89e746b2011-04-19 16:52:58 -0700616struct iwl_rxon_assoc_cmd {
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +0800617 __le32 flags;
618 __le32 filter_flags;
619 u8 ofdm_basic_rates;
620 u8 cck_basic_rates;
621 __le16 reserved1;
622 u8 ofdm_ht_single_stream_basic_rates;
623 u8 ofdm_ht_dual_stream_basic_rates;
624 u8 ofdm_ht_triple_stream_basic_rates;
625 u8 reserved2;
626 __le16 rx_chain_select_flags;
627 __le16 acquisition_data;
628 __le32 reserved3;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000629} __packed;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800630
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300631#define IWL_CONN_MAX_LISTEN_INTERVAL 10
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700632#define IWL_MAX_UCODE_BEACON_INTERVAL 4 /* 4096 */
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +0800633
Zhu Yib481de92007-09-25 17:54:57 -0700634/*
635 * REPLY_RXON_TIMING = 0x14 (command, has simple generic response)
636 */
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800637struct iwl_rxon_time_cmd {
638 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -0700639 __le16 beacon_interval;
640 __le16 atim_window;
641 __le32 beacon_init_val;
642 __le16 listen_interval;
Johannes Berg946ba302010-08-23 10:46:48 +0200643 u8 dtim_period;
644 u8 delta_cp_bss_tbtts;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000645} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700646
Zhu Yib481de92007-09-25 17:54:57 -0700647/*
648 * REPLY_CHANNEL_SWITCH = 0x72 (command, has simple generic response)
649 */
Wey-Yi Guye57f1482009-10-09 13:20:34 -0700650/**
651 * struct iwl5000_channel_switch_cmd
652 * @band: 0- 5.2GHz, 1- 2.4GHz
653 * @expect_beacon: 0- resume transmits after channel switch
654 * 1- wait for beacon to resume transmits
655 * @channel: new channel number
656 * @rxon_flags: Rx on flags
657 * @rxon_filter_flags: filtering parameters
658 * @switch_time: switch time in extended beacon format
659 * @reserved: reserved bytes
660 */
661struct iwl5000_channel_switch_cmd {
662 u8 band;
663 u8 expect_beacon;
664 __le16 channel;
665 __le32 rxon_flags;
666 __le32 rxon_filter_flags;
667 __le32 switch_time;
668 __le32 reserved[2][IWL_PWR_NUM_HT_OFDM_ENTRIES + IWL_PWR_CCK_ENTRIES];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000669} __packed;
Wey-Yi Guye57f1482009-10-09 13:20:34 -0700670
671/**
672 * struct iwl6000_channel_switch_cmd
673 * @band: 0- 5.2GHz, 1- 2.4GHz
674 * @expect_beacon: 0- resume transmits after channel switch
675 * 1- wait for beacon to resume transmits
676 * @channel: new channel number
677 * @rxon_flags: Rx on flags
678 * @rxon_filter_flags: filtering parameters
679 * @switch_time: switch time in extended beacon format
680 * @reserved: reserved bytes
681 */
682struct iwl6000_channel_switch_cmd {
683 u8 band;
684 u8 expect_beacon;
685 __le16 channel;
686 __le32 rxon_flags;
687 __le32 rxon_filter_flags;
688 __le32 switch_time;
689 __le32 reserved[3][IWL_PWR_NUM_HT_OFDM_ENTRIES + IWL_PWR_CCK_ENTRIES];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000690} __packed;
Wey-Yi Guye57f1482009-10-09 13:20:34 -0700691
Zhu Yib481de92007-09-25 17:54:57 -0700692/*
693 * CHANNEL_SWITCH_NOTIFICATION = 0x73 (notification only, not a command)
694 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800695struct iwl_csa_notification {
Zhu Yib481de92007-09-25 17:54:57 -0700696 __le16 band;
697 __le16 channel;
698 __le32 status; /* 0 - OK, 1 - fail */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000699} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700700
701/******************************************************************************
702 * (2)
703 * Quality-of-Service (QOS) Commands & Responses:
704 *
705 *****************************************************************************/
Ben Cahill2054a002007-11-29 11:10:10 +0800706
707/**
708 * struct iwl_ac_qos -- QOS timing params for REPLY_QOS_PARAM
709 * One for each of 4 EDCA access categories in struct iwl_qosparam_cmd
710 *
711 * @cw_min: Contention window, start value in numbers of slots.
712 * Should be a power-of-2, minus 1. Device's default is 0x0f.
713 * @cw_max: Contention window, max value in numbers of slots.
714 * Should be a power-of-2, minus 1. Device's default is 0x3f.
715 * @aifsn: Number of slots in Arbitration Interframe Space (before
716 * performing random backoff timing prior to Tx). Device default 1.
717 * @edca_txop: Length of Tx opportunity, in uSecs. Device default is 0.
718 *
719 * Device will automatically increase contention window by (2*CW) + 1 for each
720 * transmission retry. Device uses cw_max as a bit mask, ANDed with new CW
721 * value, to cap the CW value.
722 */
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800723struct iwl_ac_qos {
Zhu Yib481de92007-09-25 17:54:57 -0700724 __le16 cw_min;
725 __le16 cw_max;
726 u8 aifsn;
727 u8 reserved1;
728 __le16 edca_txop;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000729} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700730
731/* QoS flags defines */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800732#define QOS_PARAM_FLG_UPDATE_EDCA_MSK cpu_to_le32(0x01)
733#define QOS_PARAM_FLG_TGN_MSK cpu_to_le32(0x02)
734#define QOS_PARAM_FLG_TXOP_TYPE_MSK cpu_to_le32(0x10)
Zhu Yib481de92007-09-25 17:54:57 -0700735
Ben Cahill2054a002007-11-29 11:10:10 +0800736/* Number of Access Categories (AC) (EDCA), queues 0..3 */
Zhu Yib481de92007-09-25 17:54:57 -0700737#define AC_NUM 4
738
739/*
740 * REPLY_QOS_PARAM = 0x13 (command, has simple generic response)
Ben Cahill2054a002007-11-29 11:10:10 +0800741 *
742 * This command sets up timings for each of the 4 prioritized EDCA Tx FIFOs
743 * 0: Background, 1: Best Effort, 2: Video, 3: Voice.
Zhu Yib481de92007-09-25 17:54:57 -0700744 */
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800745struct iwl_qosparam_cmd {
Zhu Yib481de92007-09-25 17:54:57 -0700746 __le32 qos_flags;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800747 struct iwl_ac_qos ac[AC_NUM];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000748} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700749
750/******************************************************************************
751 * (3)
752 * Add/Modify Stations Commands & Responses:
753 *
754 *****************************************************************************/
755/*
756 * Multi station support
757 */
Ben Cahill2054a002007-11-29 11:10:10 +0800758
759/* Special, dedicated locations within device's station table */
Zhu Yib481de92007-09-25 17:54:57 -0700760#define IWL_AP_ID 0
Johannes Berg946ba302010-08-23 10:46:48 +0200761#define IWL_AP_ID_PAN 1
Zhu Yib481de92007-09-25 17:54:57 -0700762#define IWL_STA_ID 2
Johannes Berg946ba302010-08-23 10:46:48 +0200763#define IWLAGN_PAN_BCAST_ID 14
Wey-Yi Guybf3c7fd2010-06-24 14:08:05 -0700764#define IWLAGN_BROADCAST_ID 15
765#define IWLAGN_STATION_COUNT 16
Zhu Yib481de92007-09-25 17:54:57 -0700766
Zhu Yib481de92007-09-25 17:54:57 -0700767#define IWL_INVALID_STATION 255
Johannes Berg9a215e42011-12-02 12:22:54 -0800768#define IWL_MAX_TID_COUNT 8
Emmanuel Grumbach3d29dd92012-02-01 07:01:32 -0800769#define IWL_TID_NON_QOS IWL_MAX_TID_COUNT
Zhu Yib481de92007-09-25 17:54:57 -0700770
Johannes Berg1bd14ea2010-07-15 11:48:21 -0700771#define STA_FLG_TX_RATE_MSK cpu_to_le32(1 << 2)
772#define STA_FLG_PWR_SAVE_MSK cpu_to_le32(1 << 8)
Johannes Berg946ba302010-08-23 10:46:48 +0200773#define STA_FLG_PAN_STATION cpu_to_le32(1 << 13)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800774#define STA_FLG_RTS_MIMO_PROT_MSK cpu_to_le32(1 << 17)
775#define STA_FLG_AGG_MPDU_8US_MSK cpu_to_le32(1 << 18)
Ben Cahill74093dd2007-11-29 11:09:53 +0800776#define STA_FLG_MAX_AGG_SIZE_POS (19)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800777#define STA_FLG_MAX_AGG_SIZE_MSK cpu_to_le32(3 << 19)
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700778#define STA_FLG_HT40_EN_MSK cpu_to_le32(1 << 21)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800779#define STA_FLG_MIMO_DIS_MSK cpu_to_le32(1 << 22)
Ben Cahill74093dd2007-11-29 11:09:53 +0800780#define STA_FLG_AGG_MPDU_DENSITY_POS (23)
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800781#define STA_FLG_AGG_MPDU_DENSITY_MSK cpu_to_le32(7 << 23)
Zhu Yib481de92007-09-25 17:54:57 -0700782
Ben Cahill2054a002007-11-29 11:10:10 +0800783/* Use in mode field. 1: modify existing entry, 0: add new station entry */
Zhu Yib481de92007-09-25 17:54:57 -0700784#define STA_CONTROL_MODIFY_MSK 0x01
785
786/* key flags __le16*/
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800787#define STA_KEY_FLG_ENCRYPT_MSK cpu_to_le16(0x0007)
788#define STA_KEY_FLG_NO_ENC cpu_to_le16(0x0000)
789#define STA_KEY_FLG_WEP cpu_to_le16(0x0001)
790#define STA_KEY_FLG_CCMP cpu_to_le16(0x0002)
791#define STA_KEY_FLG_TKIP cpu_to_le16(0x0003)
Zhu Yib481de92007-09-25 17:54:57 -0700792
793#define STA_KEY_FLG_KEYID_POS 8
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800794#define STA_KEY_FLG_INVALID cpu_to_le16(0x0800)
Emmanuel Grumbacheaaf7892008-02-13 11:32:29 -0800795/* wep key is either from global key (0) or from station info array (1) */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800796#define STA_KEY_FLG_MAP_KEY_MSK cpu_to_le16(0x0008)
Emmanuel Grumbacheaaf7892008-02-13 11:32:29 -0800797
798/* wep key in STA: 5-bytes (0) or 13-bytes (1) */
Harvey Harrison51e9bf52008-11-26 13:12:52 -0800799#define STA_KEY_FLG_KEY_SIZE_MSK cpu_to_le16(0x1000)
800#define STA_KEY_MULTICAST_MSK cpu_to_le16(0x4000)
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700801#define STA_KEY_MAX_NUM 8
Johannes Bergc10afb62010-08-23 10:46:43 +0200802#define STA_KEY_MAX_NUM_PAN 16
Johannes Berg5a3d9882011-07-15 13:03:12 -0700803/* must not match WEP_INVALID_OFFSET */
804#define IWLAGN_HW_KEY_DEFAULT 0xfe
Zhu Yib481de92007-09-25 17:54:57 -0700805
Ben Cahill2054a002007-11-29 11:10:10 +0800806/* Flags indicate whether to modify vs. don't change various station params */
Zhu Yib481de92007-09-25 17:54:57 -0700807#define STA_MODIFY_KEY_MASK 0x01
808#define STA_MODIFY_TID_DISABLE_TX 0x02
809#define STA_MODIFY_TX_RATE_MSK 0x04
810#define STA_MODIFY_ADDBA_TID_MSK 0x08
811#define STA_MODIFY_DELBA_TID_MSK 0x10
Johannes Berg6ab10ff2009-11-13 11:56:37 -0800812#define STA_MODIFY_SLEEP_TX_COUNT_MSK 0x20
Ben Cahill2054a002007-11-29 11:10:10 +0800813
814/* Receiver address (actually, Rx station's index into station table),
815 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
Zhu Yib481de92007-09-25 17:54:57 -0700816#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
817
Wey-Yi Guya8029bb2010-09-20 09:12:32 -0700818/* agn */
Tomas Winkler133636d2008-05-05 10:22:34 +0800819struct iwl_keyinfo {
820 __le16 key_flags;
821 u8 tkip_rx_tsc_byte2; /* TSC[2] for key mix ph1 detection */
822 u8 reserved1;
823 __le16 tkip_rx_ttak[5]; /* 10-byte unicast TKIP TTAK */
824 u8 key_offset;
825 u8 reserved2;
826 u8 key[16]; /* 16-byte unicast decryption key */
827 __le64 tx_secur_seq_cnt;
828 __le64 hw_tkip_mic_rx_key;
829 __le64 hw_tkip_mic_tx_key;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000830} __packed;
Tomas Winkler133636d2008-05-05 10:22:34 +0800831
Ben Cahill2054a002007-11-29 11:10:10 +0800832/**
833 * struct sta_id_modify
834 * @addr[ETH_ALEN]: station's MAC address
835 * @sta_id: index of station in uCode's station table
836 * @modify_mask: STA_MODIFY_*, 1: modify, 0: don't change
837 *
838 * Driver selects unused table index when adding new station,
839 * or the index to a pre-existing station entry when modifying that station.
840 * Some indexes have special purposes (IWL_AP_ID, index 0, is for AP).
841 *
842 * modify_mask flags select which parameters to modify vs. leave alone.
843 */
Zhu Yib481de92007-09-25 17:54:57 -0700844struct sta_id_modify {
845 u8 addr[ETH_ALEN];
846 __le16 reserved1;
847 u8 sta_id;
848 u8 modify_mask;
849 __le16 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000850} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700851
852/*
853 * REPLY_ADD_STA = 0x18 (command)
Ben Cahill2054a002007-11-29 11:10:10 +0800854 *
855 * The device contains an internal table of per-station information,
856 * with info on security keys, aggregation parameters, and Tx rates for
Wey-Yi Guy767d0552010-08-23 07:56:53 -0700857 * initial Tx attempt and any retries (agn devices uses
858 * REPLY_TX_LINK_QUALITY_CMD,
Ben Cahill2054a002007-11-29 11:10:10 +0800859 *
860 * REPLY_ADD_STA sets up the table entry for one station, either creating
861 * a new entry, or modifying a pre-existing one.
862 *
863 * NOTE: RXON command (without "associated" bit set) wipes the station table
864 * clean. Moving into RF_KILL state does this also. Driver must set up
865 * new station table before transmitting anything on the RXON channel
866 * (except active scans or active measurements; those commands carry
867 * their own txpower/rate setup data).
868 *
869 * When getting started on a new channel, driver must set up the
870 * IWL_BROADCAST_ID entry (last entry in the table). For a client
871 * station in a BSS, once an AP is selected, driver sets up the AP STA
872 * in the IWL_AP_ID entry (1st entry in the table). BROADCAST and AP
873 * are all that are needed for a BSS client station. If the device is
874 * used as AP, or in an IBSS network, driver must set up station table
875 * entries for all STAs in network, starting with index IWL_STA_ID.
Zhu Yib481de92007-09-25 17:54:57 -0700876 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800877
Tomas Winkler133636d2008-05-05 10:22:34 +0800878struct iwl_addsta_cmd {
879 u8 mode; /* 1: modify existing, 0: add new station */
880 u8 reserved[3];
881 struct sta_id_modify sta;
882 struct iwl_keyinfo key;
883 __le32 station_flags; /* STA_FLG_* */
884 __le32 station_flags_msk; /* STA_FLG_* */
885
886 /* bit field to disable (1) or enable (0) Tx for Traffic ID (TID)
887 * corresponding to bit (e.g. bit 5 controls TID 5).
888 * Set modify_mask bit STA_MODIFY_TID_DISABLE_TX to use this field. */
889 __le16 tid_disable_tx;
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -0800890 __le16 legacy_reserved;
Tomas Winkler133636d2008-05-05 10:22:34 +0800891
892 /* TID for which to add block-ack support.
893 * Set modify_mask bit STA_MODIFY_ADDBA_TID_MSK to use this field. */
894 u8 add_immediate_ba_tid;
895
896 /* TID for which to remove block-ack support.
897 * Set modify_mask bit STA_MODIFY_DELBA_TID_MSK to use this field. */
898 u8 remove_immediate_ba_tid;
899
900 /* Starting Sequence Number for added block-ack support.
901 * Set modify_mask bit STA_MODIFY_ADDBA_TID_MSK to use this field. */
902 __le16 add_immediate_ba_ssn;
903
Johannes Berg9bb487b2009-11-13 11:56:36 -0800904 /*
905 * Number of packets OK to transmit to station even though
906 * it is asleep -- used to synchronise PS-poll and u-APSD
907 * responses while ucode keeps track of STA sleep state.
908 */
909 __le16 sleep_tx_count;
910
911 __le16 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000912} __packed;
Tomas Winkler133636d2008-05-05 10:22:34 +0800913
914
Ben Cahill2054a002007-11-29 11:10:10 +0800915#define ADD_STA_SUCCESS_MSK 0x1
916#define ADD_STA_NO_ROOM_IN_TABLE 0x2
917#define ADD_STA_NO_BLOCK_ACK_RESOURCE 0x4
918#define ADD_STA_MODIFY_NON_EXIST_STA 0x8
Zhu Yib481de92007-09-25 17:54:57 -0700919/*
920 * REPLY_ADD_STA = 0x18 (response)
921 */
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800922struct iwl_add_sta_resp {
Ben Cahill2054a002007-11-29 11:10:10 +0800923 u8 status; /* ADD_STA_* */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000924} __packed;
Zhu Yib481de92007-09-25 17:54:57 -0700925
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800926#define REM_STA_SUCCESS_MSK 0x1
927/*
928 * REPLY_REM_STA = 0x19 (response)
929 */
930struct iwl_rem_sta_resp {
931 u8 status;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000932} __packed;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800933
934/*
935 * REPLY_REM_STA = 0x19 (command)
936 */
937struct iwl_rem_sta_cmd {
938 u8 num_sta; /* number of removed stations */
939 u8 reserved[3];
940 u8 addr[ETH_ALEN]; /* MAC addr of the first station */
941 u8 reserved2[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000942} __packed;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800943
Wey-Yi Guyf88e0ec2011-06-08 09:57:25 -0700944
945/* WiFi queues mask */
946#define IWL_SCD_BK_MSK cpu_to_le32(BIT(0))
947#define IWL_SCD_BE_MSK cpu_to_le32(BIT(1))
948#define IWL_SCD_VI_MSK cpu_to_le32(BIT(2))
949#define IWL_SCD_VO_MSK cpu_to_le32(BIT(3))
950#define IWL_SCD_MGMT_MSK cpu_to_le32(BIT(3))
951
952/* PAN queues mask */
953#define IWL_PAN_SCD_BK_MSK cpu_to_le32(BIT(4))
954#define IWL_PAN_SCD_BE_MSK cpu_to_le32(BIT(5))
955#define IWL_PAN_SCD_VI_MSK cpu_to_le32(BIT(6))
956#define IWL_PAN_SCD_VO_MSK cpu_to_le32(BIT(7))
957#define IWL_PAN_SCD_MGMT_MSK cpu_to_le32(BIT(7))
958#define IWL_PAN_SCD_MULTICAST_MSK cpu_to_le32(BIT(8))
959
Wey-Yi Guy947279e2010-06-24 13:18:33 -0700960#define IWL_AGG_TX_QUEUE_MSK cpu_to_le32(0xffc00)
961
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700962#define IWL_DROP_SINGLE 0
Wey-Yi Guyecdbe862011-06-08 09:57:26 -0700963#define IWL_DROP_ALL (BIT(IWL_RXON_CTX_BSS) | BIT(IWL_RXON_CTX_PAN))
Wey-Yi Guy716c74b2010-06-24 13:22:36 -0700964
Wey-Yi Guy947279e2010-06-24 13:18:33 -0700965/*
966 * REPLY_TXFIFO_FLUSH = 0x1e(command and response)
967 *
968 * When using full FIFO flush this command checks the scheduler HW block WR/RD
969 * pointers to check if all the frames were transferred by DMA into the
970 * relevant TX FIFO queue. Only when the DMA is finished and the queue is
971 * empty the command can finish.
972 * This command is used to flush the TXFIFO from transmit commands, it may
973 * operate on single or multiple queues, the command queue can't be flushed by
974 * this command. The command response is returned when all the queue flush
975 * operations are done. Each TX command flushed return response with the FLUSH
976 * status set in the TX response status. When FIFO flush operation is used,
977 * the flush operation ends when both the scheduler DMA done and TXFIFO empty
978 * are set.
979 *
980 * @fifo_control: bit mask for which queues to flush
981 * @flush_control: flush controls
982 * 0: Dump single MSDU
983 * 1: Dump multiple MSDU according to PS, INVALID STA, TTL, TID disable.
984 * 2: Dump all FIFO
985 */
986struct iwl_txfifo_flush_cmd {
987 __le32 fifo_control;
988 __le16 flush_control;
989 __le16 reserved;
John W. Linville0e954092010-07-14 10:37:32 -0400990} __packed;
Wey-Yi Guy947279e2010-06-24 13:18:33 -0700991
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -0700992/*
993 * REPLY_WEP_KEY = 0x20
994 */
995struct iwl_wep_key {
996 u8 key_index;
997 u8 key_offset;
998 u8 reserved1[2];
999 u8 key_size;
1000 u8 reserved2[3];
1001 u8 key[16];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001002} __packed;
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -07001003
1004struct iwl_wep_cmd {
1005 u8 num_keys;
1006 u8 global_key_type;
1007 u8 flags;
1008 u8 reserved;
1009 struct iwl_wep_key key[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001010} __packed;
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -07001011
1012#define WEP_KEY_WEP_TYPE 1
1013#define WEP_KEYS_MAX 4
1014#define WEP_INVALID_OFFSET 0xff
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +08001015#define WEP_KEY_LEN_64 5
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -07001016#define WEP_KEY_LEN_128 13
Zhu Yib481de92007-09-25 17:54:57 -07001017
1018/******************************************************************************
1019 * (4)
1020 * Rx Responses:
1021 *
1022 *****************************************************************************/
1023
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001024#define RX_RES_STATUS_NO_CRC32_ERROR cpu_to_le32(1 << 0)
1025#define RX_RES_STATUS_NO_RXE_OVERFLOW cpu_to_le32(1 << 1)
Zhu Yib481de92007-09-25 17:54:57 -07001026
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001027#define RX_RES_PHY_FLAGS_BAND_24_MSK cpu_to_le16(1 << 0)
1028#define RX_RES_PHY_FLAGS_MOD_CCK_MSK cpu_to_le16(1 << 1)
1029#define RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK cpu_to_le16(1 << 2)
1030#define RX_RES_PHY_FLAGS_NARROW_BAND_MSK cpu_to_le16(1 << 3)
Reinette Chatre9024adf2009-10-02 13:43:57 -07001031#define RX_RES_PHY_FLAGS_ANTENNA_MSK 0xf0
Daniel C Halperin9f30e042009-08-13 13:30:56 -07001032#define RX_RES_PHY_FLAGS_ANTENNA_POS 4
Zhu Yib481de92007-09-25 17:54:57 -07001033
Tomas Winkler8211ef72008-03-02 01:36:04 +02001034#define RX_RES_STATUS_SEC_TYPE_MSK (0x7 << 8)
1035#define RX_RES_STATUS_SEC_TYPE_NONE (0x0 << 8)
1036#define RX_RES_STATUS_SEC_TYPE_WEP (0x1 << 8)
1037#define RX_RES_STATUS_SEC_TYPE_CCMP (0x2 << 8)
1038#define RX_RES_STATUS_SEC_TYPE_TKIP (0x3 << 8)
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07001039#define RX_RES_STATUS_SEC_TYPE_ERR (0x7 << 8)
1040
1041#define RX_RES_STATUS_STATION_FOUND (1<<6)
1042#define RX_RES_STATUS_NO_STATION_INFO_MISMATCH (1<<7)
Zhu Yib481de92007-09-25 17:54:57 -07001043
Tomas Winkler8211ef72008-03-02 01:36:04 +02001044#define RX_RES_STATUS_DECRYPT_TYPE_MSK (0x3 << 11)
1045#define RX_RES_STATUS_NOT_DECRYPT (0x0 << 11)
1046#define RX_RES_STATUS_DECRYPT_OK (0x3 << 11)
1047#define RX_RES_STATUS_BAD_ICV_MIC (0x1 << 11)
1048#define RX_RES_STATUS_BAD_KEY_TTAK (0x2 << 11)
Zhu Yib481de92007-09-25 17:54:57 -07001049
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07001050#define RX_MPDU_RES_STATUS_ICV_OK (0x20)
1051#define RX_MPDU_RES_STATUS_MIC_OK (0x40)
1052#define RX_MPDU_RES_STATUS_TTAK_OK (1 << 7)
1053#define RX_MPDU_RES_STATUS_DEC_DONE_MSK (0x800)
1054
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001055
Wey-Yi Guy7ccc8962010-08-04 08:42:17 -07001056#define IWLAGN_RX_RES_PHY_CNT 8
1057#define IWLAGN_RX_RES_AGC_IDX 1
1058#define IWLAGN_RX_RES_RSSI_AB_IDX 2
1059#define IWLAGN_RX_RES_RSSI_C_IDX 3
1060#define IWLAGN_OFDM_AGC_MSK 0xfe00
1061#define IWLAGN_OFDM_AGC_BIT_POS 9
1062#define IWLAGN_OFDM_RSSI_INBAND_A_BITMSK 0x00ff
1063#define IWLAGN_OFDM_RSSI_ALLBAND_A_BITMSK 0xff00
1064#define IWLAGN_OFDM_RSSI_A_BIT_POS 0
1065#define IWLAGN_OFDM_RSSI_INBAND_B_BITMSK 0xff0000
1066#define IWLAGN_OFDM_RSSI_ALLBAND_B_BITMSK 0xff000000
1067#define IWLAGN_OFDM_RSSI_B_BIT_POS 16
1068#define IWLAGN_OFDM_RSSI_INBAND_C_BITMSK 0x00ff
1069#define IWLAGN_OFDM_RSSI_ALLBAND_C_BITMSK 0xff00
1070#define IWLAGN_OFDM_RSSI_C_BIT_POS 0
Tomas Winklercaab8f12008-08-04 16:00:42 +08001071
Wey-Yi Guy7ccc8962010-08-04 08:42:17 -07001072struct iwlagn_non_cfg_phy {
1073 __le32 non_cfg_phy[IWLAGN_RX_RES_PHY_CNT]; /* up to 8 phy entries */
Eric Dumazetba2d3582010-06-02 18:10:09 +00001074} __packed;
Tomas Winklercaab8f12008-08-04 16:00:42 +08001075
1076
Zhu Yib481de92007-09-25 17:54:57 -07001077/*
Tomas Winkler857485c2008-03-21 13:53:44 -07001078 * REPLY_RX = 0xc3 (response only, not a command)
Zhu Yib481de92007-09-25 17:54:57 -07001079 * Used only for legacy (non 11n) frames.
1080 */
Tomas Winklercaab8f12008-08-04 16:00:42 +08001081struct iwl_rx_phy_res {
Zhu Yib481de92007-09-25 17:54:57 -07001082 u8 non_cfg_phy_cnt; /* non configurable DSP phy data byte count */
1083 u8 cfg_phy_cnt; /* configurable DSP phy data byte count */
1084 u8 stat_id; /* configurable DSP phy data set ID */
1085 u8 reserved1;
1086 __le64 timestamp; /* TSF at on air rise */
1087 __le32 beacon_time_stamp; /* beacon at on-air rise */
1088 __le16 phy_flags; /* general phy flags: band, modulation, ... */
1089 __le16 channel; /* channel number */
Tomas Winklercaab8f12008-08-04 16:00:42 +08001090 u8 non_cfg_phy_buf[32]; /* for various implementations of non_cfg_phy */
Ben Cahill52969982007-11-29 11:10:11 +08001091 __le32 rate_n_flags; /* RATE_MCS_* */
1092 __le16 byte_count; /* frame's byte-count */
Wey-Yi Guy30c1b0f2010-08-04 08:05:33 -07001093 __le16 frame_time; /* frame's time on the air */
Eric Dumazetba2d3582010-06-02 18:10:09 +00001094} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001095
Emmanuel Grumbach2fb291e2010-06-07 13:21:47 -07001096struct iwl_rx_mpdu_res_start {
Zhu Yib481de92007-09-25 17:54:57 -07001097 __le16 byte_count;
1098 __le16 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001099} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001100
1101
1102/******************************************************************************
1103 * (5)
1104 * Tx Commands & Responses:
1105 *
Ben Cahill52969982007-11-29 11:10:11 +08001106 * Driver must place each REPLY_TX command into one of the prioritized Tx
1107 * queues in host DRAM, shared between driver and device (see comments for
1108 * SCD registers and Tx/Rx Queues). When the device's Tx scheduler and uCode
1109 * are preparing to transmit, the device pulls the Tx command over the PCI
1110 * bus via one of the device's Tx DMA channels, to fill an internal FIFO
1111 * from which data will be transmitted.
1112 *
1113 * uCode handles all timing and protocol related to control frames
1114 * (RTS/CTS/ACK), based on flags in the Tx command. uCode and Tx scheduler
1115 * handle reception of block-acks; uCode updates the host driver via
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001116 * REPLY_COMPRESSED_BA.
Ben Cahill52969982007-11-29 11:10:11 +08001117 *
1118 * uCode handles retrying Tx when an ACK is expected but not received.
1119 * This includes trying lower data rates than the one requested in the Tx
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08001120 * command, as set up by the REPLY_TX_LINK_QUALITY_CMD (agn).
Ben Cahill52969982007-11-29 11:10:11 +08001121 *
1122 * Driver sets up transmit power for various rates via REPLY_TX_PWR_TABLE_CMD.
1123 * This command must be executed after every RXON command, before Tx can occur.
Zhu Yib481de92007-09-25 17:54:57 -07001124 *****************************************************************************/
1125
Ben Cahill52969982007-11-29 11:10:11 +08001126/* REPLY_TX Tx flags field */
1127
Wey-Yi Guy4e3243f2010-06-18 11:33:16 -07001128/*
1129 * 1: Use RTS/CTS protocol or CTS-to-self if spec allows it
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +08001130 * before this frame. if CTS-to-self required check
Wey-Yi Guy4e3243f2010-06-18 11:33:16 -07001131 * RXON_FLG_SELF_CTS_EN status.
Wey-Yi Guy4e3243f2010-06-18 11:33:16 -07001132 */
1133#define TX_CMD_FLG_PROT_REQUIRE_MSK cpu_to_le32(1 << 0)
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +08001134
Ben Cahill52969982007-11-29 11:10:11 +08001135/* 1: Expect ACK from receiving station
1136 * 0: Don't expect ACK (MAC header's duration field s/b 0)
1137 * Set this for unicast frames, but not broadcast/multicast. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001138#define TX_CMD_FLG_ACK_MSK cpu_to_le32(1 << 3)
Ben Cahill52969982007-11-29 11:10:11 +08001139
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001140/* For agn devices:
Ben Cahill52969982007-11-29 11:10:11 +08001141 * 1: Use rate scale table (see REPLY_TX_LINK_QUALITY_CMD).
1142 * Tx command's initial_rate_index indicates first rate to try;
1143 * uCode walks through table for additional Tx attempts.
1144 * 0: Use Tx rate/MCS from Tx command's rate_n_flags field.
1145 * This rate will be used for all Tx attempts; it will not be scaled. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001146#define TX_CMD_FLG_STA_RATE_MSK cpu_to_le32(1 << 4)
Ben Cahill52969982007-11-29 11:10:11 +08001147
1148/* 1: Expect immediate block-ack.
1149 * Set when Txing a block-ack request frame. Also set TX_CMD_FLG_ACK_MSK. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001150#define TX_CMD_FLG_IMM_BA_RSP_MASK cpu_to_le32(1 << 6)
Ben Cahill52969982007-11-29 11:10:11 +08001151
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08001152/* Tx antenna selection field; reserved (0) for agn devices. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001153#define TX_CMD_FLG_ANT_SEL_MSK cpu_to_le32(0xf00)
Zhu Yib481de92007-09-25 17:54:57 -07001154
Ben Cahill52969982007-11-29 11:10:11 +08001155/* 1: Ignore Bluetooth priority for this frame.
1156 * 0: Delay Tx until Bluetooth device is done (normal usage). */
Johannes Bergb2e86902010-04-13 01:04:32 -07001157#define TX_CMD_FLG_IGNORE_BT cpu_to_le32(1 << 12)
Zhu Yib481de92007-09-25 17:54:57 -07001158
Ben Cahill52969982007-11-29 11:10:11 +08001159/* 1: uCode overrides sequence control field in MAC header.
1160 * 0: Driver provides sequence control field in MAC header.
1161 * Set this for management frames, non-QOS data frames, non-unicast frames,
1162 * and also in Tx command embedded in REPLY_SCAN_CMD for active scans. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001163#define TX_CMD_FLG_SEQ_CTL_MSK cpu_to_le32(1 << 13)
Zhu Yib481de92007-09-25 17:54:57 -07001164
Ben Cahill52969982007-11-29 11:10:11 +08001165/* 1: This frame is non-last MPDU; more fragments are coming.
1166 * 0: Last fragment, or not using fragmentation. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001167#define TX_CMD_FLG_MORE_FRAG_MSK cpu_to_le32(1 << 14)
Zhu Yib481de92007-09-25 17:54:57 -07001168
Ben Cahill52969982007-11-29 11:10:11 +08001169/* 1: uCode calculates and inserts Timestamp Function (TSF) in outgoing frame.
1170 * 0: No TSF required in outgoing frame.
1171 * Set this for transmitting beacons and probe responses. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001172#define TX_CMD_FLG_TSF_MSK cpu_to_le32(1 << 16)
Zhu Yib481de92007-09-25 17:54:57 -07001173
Ben Cahill52969982007-11-29 11:10:11 +08001174/* 1: Driver inserted 2 bytes pad after the MAC header, for (required) dword
1175 * alignment of frame's payload data field.
1176 * 0: No pad
1177 * Set this for MAC headers with 26 or 30 bytes, i.e. those with QOS or ADDR4
1178 * field (but not both). Driver must align frame data (i.e. data following
1179 * MAC header) to DWORD boundary. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001180#define TX_CMD_FLG_MH_PAD_MSK cpu_to_le32(1 << 20)
Zhu Yib481de92007-09-25 17:54:57 -07001181
Max Stepanov8236e182008-03-12 16:58:48 -07001182/* accelerate aggregation support
1183 * 0 - no CCMP encryption; 1 - CCMP encryption */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001184#define TX_CMD_FLG_AGG_CCMP_MSK cpu_to_le32(1 << 22)
Max Stepanov8236e182008-03-12 16:58:48 -07001185
Zhu Yib481de92007-09-25 17:54:57 -07001186/* HCCA-AP - disable duration overwriting. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08001187#define TX_CMD_FLG_DUR_MSK cpu_to_le32(1 << 25)
Zhu Yib481de92007-09-25 17:54:57 -07001188
Ben Cahill52969982007-11-29 11:10:11 +08001189
Zhu Yib481de92007-09-25 17:54:57 -07001190/*
1191 * TX command security control
1192 */
1193#define TX_CMD_SEC_WEP 0x01
1194#define TX_CMD_SEC_CCM 0x02
1195#define TX_CMD_SEC_TKIP 0x03
1196#define TX_CMD_SEC_MSK 0x03
1197#define TX_CMD_SEC_SHIFT 6
1198#define TX_CMD_SEC_KEY128 0x08
1199
1200/*
Tomas Winkler3195cdb2008-04-23 17:15:00 -07001201 * security overhead sizes
1202 */
1203#define WEP_IV_LEN 4
1204#define WEP_ICV_LEN 4
1205#define CCMP_MIC_LEN 8
1206#define TKIP_ICV_LEN 4
1207
1208/*
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001209 * REPLY_TX = 0x1c (command)
1210 */
1211
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001212/*
Ben Cahill52969982007-11-29 11:10:11 +08001213 * 4965 uCode updates these Tx attempt count values in host DRAM.
1214 * Used for managing Tx retries when expecting block-acks.
1215 * Driver should set these fields to 0.
Zhu Yib481de92007-09-25 17:54:57 -07001216 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001217struct iwl_dram_scratch {
Ben Cahill52969982007-11-29 11:10:11 +08001218 u8 try_cnt; /* Tx attempts */
1219 u8 bt_kill_cnt; /* Tx attempts blocked by Bluetooth device */
Zhu Yib481de92007-09-25 17:54:57 -07001220 __le16 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001221} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001222
Tomas Winkler83d527d2008-05-15 13:54:05 +08001223struct iwl_tx_cmd {
Ben Cahill52969982007-11-29 11:10:11 +08001224 /*
1225 * MPDU byte count:
1226 * MAC header (24/26/30/32 bytes) + 2 bytes pad if 26/30 header size,
1227 * + 8 byte IV for CCM or TKIP (not used for WEP)
1228 * + Data payload
1229 * + 8-byte MIC (not used for CCM/WEP)
1230 * NOTE: Does not include Tx command bytes, post-MAC pad bytes,
1231 * MIC (CCM) 8 bytes, ICV (WEP/TKIP/CKIP) 4 bytes, CRC 4 bytes.i
1232 * Range: 14-2342 bytes.
1233 */
Zhu Yib481de92007-09-25 17:54:57 -07001234 __le16 len;
Ben Cahill52969982007-11-29 11:10:11 +08001235
1236 /*
1237 * MPDU or MSDU byte count for next frame.
1238 * Used for fragmentation and bursting, but not 11n aggregation.
1239 * Same as "len", but for next frame. Set to 0 if not applicable.
1240 */
Zhu Yib481de92007-09-25 17:54:57 -07001241 __le16 next_frame_len;
Ben Cahill52969982007-11-29 11:10:11 +08001242
1243 __le32 tx_flags; /* TX_CMD_FLG_* */
1244
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001245 /* uCode may modify this field of the Tx command (in host DRAM!).
Ben Cahill52969982007-11-29 11:10:11 +08001246 * Driver must also set dram_lsb_ptr and dram_msb_ptr in this cmd. */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001247 struct iwl_dram_scratch scratch;
Ben Cahill52969982007-11-29 11:10:11 +08001248
1249 /* Rate for *all* Tx attempts, if TX_CMD_FLG_STA_RATE_MSK is cleared. */
1250 __le32 rate_n_flags; /* RATE_MCS_* */
1251
1252 /* Index of destination station in uCode's station table */
Zhu Yib481de92007-09-25 17:54:57 -07001253 u8 sta_id;
Ben Cahill52969982007-11-29 11:10:11 +08001254
1255 /* Type of security encryption: CCM or TKIP */
1256 u8 sec_ctl; /* TX_CMD_SEC_* */
1257
1258 /*
1259 * Index into rate table (see REPLY_TX_LINK_QUALITY_CMD) for initial
1260 * Tx attempt, if TX_CMD_FLG_STA_RATE_MSK is set. Normally "0" for
1261 * data frames, this field may be used to selectively reduce initial
1262 * rate (via non-0 value) for special frames (e.g. management), while
1263 * still supporting rate scaling for all frames.
1264 */
Zhu Yib481de92007-09-25 17:54:57 -07001265 u8 initial_rate_index;
1266 u8 reserved;
Zhu Yib481de92007-09-25 17:54:57 -07001267 u8 key[16];
Zhu Yib481de92007-09-25 17:54:57 -07001268 __le16 next_frame_flags;
1269 __le16 reserved2;
Zhu Yib481de92007-09-25 17:54:57 -07001270 union {
1271 __le32 life_time;
1272 __le32 attempt;
1273 } stop_time;
Ben Cahill52969982007-11-29 11:10:11 +08001274
1275 /* Host DRAM physical address pointer to "scratch" in this command.
1276 * Must be dword aligned. "0" in dram_lsb_ptr disables usage. */
Zhu Yib481de92007-09-25 17:54:57 -07001277 __le32 dram_lsb_ptr;
1278 u8 dram_msb_ptr;
Ben Cahill52969982007-11-29 11:10:11 +08001279
Zhu Yib481de92007-09-25 17:54:57 -07001280 u8 rts_retry_limit; /*byte 50 */
1281 u8 data_retry_limit; /*byte 51 */
Zhu Yib481de92007-09-25 17:54:57 -07001282 u8 tid_tspec;
Zhu Yib481de92007-09-25 17:54:57 -07001283 union {
1284 __le16 pm_frame_timeout;
1285 __le16 attempt_duration;
1286 } timeout;
Ben Cahill52969982007-11-29 11:10:11 +08001287
1288 /*
1289 * Duration of EDCA burst Tx Opportunity, in 32-usec units.
1290 * Set this if txop time is not specified by HCCA protocol (e.g. by AP).
1291 */
Zhu Yib481de92007-09-25 17:54:57 -07001292 __le16 driver_txop;
Ben Cahill52969982007-11-29 11:10:11 +08001293
1294 /*
1295 * MAC header goes here, followed by 2 bytes padding if MAC header
1296 * length is 26 or 30 bytes, followed by payload data
1297 */
Zhu Yib481de92007-09-25 17:54:57 -07001298 u8 payload[0];
1299 struct ieee80211_hdr hdr[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001300} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001301
Wey-Yi Guy04569cb2010-03-31 17:57:28 -07001302/*
1303 * TX command response is sent after *agn* transmission attempts.
1304 *
1305 * both postpone and abort status are expected behavior from uCode. there is
1306 * no special operation required from driver; except for RFKILL_FLUSH,
1307 * which required tx flush host command to flush all the tx frames in queues
1308 */
1309enum {
Zhu Yib481de92007-09-25 17:54:57 -07001310 TX_STATUS_SUCCESS = 0x01,
1311 TX_STATUS_DIRECT_DONE = 0x02,
Wey-Yi Guy04569cb2010-03-31 17:57:28 -07001312 /* postpone TX */
1313 TX_STATUS_POSTPONE_DELAY = 0x40,
1314 TX_STATUS_POSTPONE_FEW_BYTES = 0x41,
1315 TX_STATUS_POSTPONE_BT_PRIO = 0x42,
1316 TX_STATUS_POSTPONE_QUIET_PERIOD = 0x43,
1317 TX_STATUS_POSTPONE_CALC_TTAK = 0x44,
1318 /* abort TX */
1319 TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY = 0x81,
Zhu Yib481de92007-09-25 17:54:57 -07001320 TX_STATUS_FAIL_SHORT_LIMIT = 0x82,
1321 TX_STATUS_FAIL_LONG_LIMIT = 0x83,
1322 TX_STATUS_FAIL_FIFO_UNDERRUN = 0x84,
Wey-Yi Guy04569cb2010-03-31 17:57:28 -07001323 TX_STATUS_FAIL_DRAIN_FLOW = 0x85,
1324 TX_STATUS_FAIL_RFKILL_FLUSH = 0x86,
Zhu Yib481de92007-09-25 17:54:57 -07001325 TX_STATUS_FAIL_LIFE_EXPIRE = 0x87,
1326 TX_STATUS_FAIL_DEST_PS = 0x88,
Wey-Yi Guy04569cb2010-03-31 17:57:28 -07001327 TX_STATUS_FAIL_HOST_ABORTED = 0x89,
Zhu Yib481de92007-09-25 17:54:57 -07001328 TX_STATUS_FAIL_BT_RETRY = 0x8a,
1329 TX_STATUS_FAIL_STA_INVALID = 0x8b,
1330 TX_STATUS_FAIL_FRAG_DROPPED = 0x8c,
1331 TX_STATUS_FAIL_TID_DISABLE = 0x8d,
Wey-Yi Guy04569cb2010-03-31 17:57:28 -07001332 TX_STATUS_FAIL_FIFO_FLUSHED = 0x8e,
Zhu Yib481de92007-09-25 17:54:57 -07001333 TX_STATUS_FAIL_INSUFFICIENT_CF_POLL = 0x8f,
Wey-Yi Guy1d270072010-09-07 12:42:20 -07001334 TX_STATUS_FAIL_PASSIVE_NO_RX = 0x90,
1335 TX_STATUS_FAIL_NO_BEACON_ON_RADAR = 0x91,
Zhu Yib481de92007-09-25 17:54:57 -07001336};
1337
1338#define TX_PACKET_MODE_REGULAR 0x0000
1339#define TX_PACKET_MODE_BURST_SEQ 0x0100
1340#define TX_PACKET_MODE_BURST_FIRST 0x0200
1341
1342enum {
1343 TX_POWER_PA_NOT_ACTIVE = 0x0,
1344};
1345
1346enum {
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001347 TX_STATUS_MSK = 0x000000ff, /* bits 0:7 */
Zhu Yib481de92007-09-25 17:54:57 -07001348 TX_STATUS_DELAY_MSK = 0x00000040,
1349 TX_STATUS_ABORT_MSK = 0x00000080,
1350 TX_PACKET_MODE_MSK = 0x0000ff00, /* bits 8:15 */
1351 TX_FIFO_NUMBER_MSK = 0x00070000, /* bits 16:18 */
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001352 TX_RESERVED = 0x00780000, /* bits 19:22 */
Zhu Yib481de92007-09-25 17:54:57 -07001353 TX_POWER_PA_DETECT_MSK = 0x7f800000, /* bits 23:30 */
1354 TX_ABORT_REQUIRED_MSK = 0x80000000, /* bits 31:31 */
1355};
1356
1357/* *******************************
Ben Cahill52969982007-11-29 11:10:11 +08001358 * TX aggregation status
Zhu Yib481de92007-09-25 17:54:57 -07001359 ******************************* */
1360
1361enum {
1362 AGG_TX_STATE_TRANSMITTED = 0x00,
1363 AGG_TX_STATE_UNDERRUN_MSK = 0x01,
1364 AGG_TX_STATE_BT_PRIO_MSK = 0x02,
1365 AGG_TX_STATE_FEW_BYTES_MSK = 0x04,
1366 AGG_TX_STATE_ABORT_MSK = 0x08,
1367 AGG_TX_STATE_LAST_SENT_TTL_MSK = 0x10,
1368 AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK = 0x20,
1369 AGG_TX_STATE_LAST_SENT_BT_KILL_MSK = 0x40,
1370 AGG_TX_STATE_SCD_QUERY_MSK = 0x80,
1371 AGG_TX_STATE_TEST_BAD_CRC32_MSK = 0x100,
1372 AGG_TX_STATE_RESPONSE_MSK = 0x1ff,
1373 AGG_TX_STATE_DUMP_TX_MSK = 0x200,
1374 AGG_TX_STATE_DELAY_TX_MSK = 0x400
1375};
1376
Wey-Yi Guye1b3fa02010-09-05 10:49:43 -07001377#define AGG_TX_STATUS_MSK 0x00000fff /* bits 0:11 */
1378#define AGG_TX_TRY_MSK 0x0000f000 /* bits 12:15 */
1379
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001380#define AGG_TX_STATE_LAST_SENT_MSK (AGG_TX_STATE_LAST_SENT_TTL_MSK | \
1381 AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK | \
1382 AGG_TX_STATE_LAST_SENT_BT_KILL_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07001383
Ben Cahill52969982007-11-29 11:10:11 +08001384/* # tx attempts for first frame in aggregation */
Zhu Yib481de92007-09-25 17:54:57 -07001385#define AGG_TX_STATE_TRY_CNT_POS 12
1386#define AGG_TX_STATE_TRY_CNT_MSK 0xf000
1387
Ben Cahill52969982007-11-29 11:10:11 +08001388/* Command ID and sequence number of Tx command for this frame */
Zhu Yib481de92007-09-25 17:54:57 -07001389#define AGG_TX_STATE_SEQ_NUM_POS 16
1390#define AGG_TX_STATE_SEQ_NUM_MSK 0xffff0000
1391
1392/*
1393 * REPLY_TX = 0x1c (response)
Ben Cahill52969982007-11-29 11:10:11 +08001394 *
1395 * This response may be in one of two slightly different formats, indicated
1396 * by the frame_count field:
1397 *
1398 * 1) No aggregation (frame_count == 1). This reports Tx results for
1399 * a single frame. Multiple attempts, at various bit rates, may have
1400 * been made for this frame.
1401 *
1402 * 2) Aggregation (frame_count > 1). This reports Tx results for
1403 * 2 or more frames that used block-acknowledge. All frames were
1404 * transmitted at same rate. Rate scaling may have been used if first
1405 * frame in this new agg block failed in previous agg block(s).
1406 *
1407 * Note that, for aggregation, ACK (block-ack) status is not delivered here;
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001408 * block-ack has not been received by the time the agn device records
1409 * this status.
Ben Cahill52969982007-11-29 11:10:11 +08001410 * This status relates to reasons the tx might have been blocked or aborted
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001411 * within the sending station (this agn device), rather than whether it was
Ben Cahill52969982007-11-29 11:10:11 +08001412 * received successfully by the destination station.
Zhu Yib481de92007-09-25 17:54:57 -07001413 */
Ron Rindjunsky001caff2008-05-29 16:35:07 +08001414struct agg_tx_status {
1415 __le16 status;
1416 __le16 sequence;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001417} __packed;
Ron Rindjunsky001caff2008-05-29 16:35:07 +08001418
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001419/*
1420 * definitions for initial rate index field
Tomas Winklera96a27f2008-10-23 23:48:56 -07001421 * bits [3:0] initial rate index
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001422 * bits [6:4] rate table color, used for the initial rate
1423 * bit-7 invalid rate indication
1424 * i.e. rate was not chosen from rate table
1425 * or rate table color was changed during frame retries
1426 * refer tlc rate info
1427 */
1428
1429#define IWL50_TX_RES_INIT_RATE_INDEX_POS 0
1430#define IWL50_TX_RES_INIT_RATE_INDEX_MSK 0x0f
1431#define IWL50_TX_RES_RATE_TABLE_COLOR_POS 4
1432#define IWL50_TX_RES_RATE_TABLE_COLOR_MSK 0x70
1433#define IWL50_TX_RES_INV_RATE_INDEX_MSK 0x80
1434
1435/* refer to ra_tid */
Wey-Yi Guy898dade2010-09-20 09:12:33 -07001436#define IWLAGN_TX_RES_TID_POS 0
1437#define IWLAGN_TX_RES_TID_MSK 0x0f
1438#define IWLAGN_TX_RES_RA_POS 4
1439#define IWLAGN_TX_RES_RA_MSK 0xf0
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001440
Wey-Yi Guy898dade2010-09-20 09:12:33 -07001441struct iwlagn_tx_resp {
Ron Rindjunsky001caff2008-05-29 16:35:07 +08001442 u8 frame_count; /* 1 no aggregation, >1 aggregation */
1443 u8 bt_kill_count; /* # blocked by bluetooth (unused for agg) */
1444 u8 failure_rts; /* # failures due to unsuccessful RTS */
1445 u8 failure_frame; /* # failures due to no ACK (unused for agg) */
1446
1447 /* For non-agg: Rate at which frame was successful.
1448 * For agg: Rate at which all frames were transmitted. */
1449 __le32 rate_n_flags; /* RATE_MCS_* */
1450
1451 /* For non-agg: RTS + CTS + frame tx attempts time + ACK.
1452 * For agg: RTS + CTS + aggregation tx time + block-ack time. */
1453 __le16 wireless_media_time; /* uSecs */
1454
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001455 u8 pa_status; /* RF power amplifier measurement (not used) */
1456 u8 pa_integ_res_a[3];
1457 u8 pa_integ_res_b[3];
1458 u8 pa_integ_res_C[3];
Ron Rindjunsky001caff2008-05-29 16:35:07 +08001459
1460 __le32 tfd_info;
1461 __le16 seq_ctl;
1462 __le16 byte_cnt;
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001463 u8 tlc_info;
1464 u8 ra_tid; /* tid (0:3), sta_id (4:7) */
1465 __le16 frame_ctrl;
Ron Rindjunsky001caff2008-05-29 16:35:07 +08001466 /*
1467 * For non-agg: frame status TX_STATUS_*
1468 * For agg: status of 1st frame, AGG_TX_STATE_*; other frame status
1469 * fields follow this one, up to frame_count.
1470 * Bit fields:
1471 * 11- 0: AGG_TX_STATE_* status code
1472 * 15-12: Retry count for 1st frame in aggregation (retries
1473 * occur if tx failed for this frame when it was a
1474 * member of a previous aggregation block). If rate
1475 * scaling is used, retry count indicates the rate
1476 * table entry used for all frames in the new agg.
1477 * 31-16: Sequence # for this frame's Tx cmd (not SSN!)
1478 */
1479 struct agg_tx_status status; /* TX status (in aggregation -
1480 * status of 1st frame) */
Eric Dumazetba2d3582010-06-02 18:10:09 +00001481} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001482/*
1483 * REPLY_COMPRESSED_BA = 0xc5 (response only, not a command)
Ben Cahill52969982007-11-29 11:10:11 +08001484 *
1485 * Reports Block-Acknowledge from recipient station
Zhu Yib481de92007-09-25 17:54:57 -07001486 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001487struct iwl_compressed_ba_resp {
Zhu Yib481de92007-09-25 17:54:57 -07001488 __le32 sta_addr_lo32;
1489 __le16 sta_addr_hi16;
1490 __le16 reserved;
Ben Cahill52969982007-11-29 11:10:11 +08001491
1492 /* Index of recipient (BA-sending) station in uCode's station table */
Zhu Yib481de92007-09-25 17:54:57 -07001493 u8 sta_id;
1494 u8 tid;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02001495 __le16 seq_ctl;
1496 __le64 bitmap;
Zhu Yib481de92007-09-25 17:54:57 -07001497 __le16 scd_flow;
1498 __le16 scd_ssn;
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001499 u8 txed; /* number of frames sent */
1500 u8 txed_2_done; /* number of frames acked */
Eric Dumazetba2d3582010-06-02 18:10:09 +00001501} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001502
1503/*
1504 * REPLY_TX_PWR_TABLE_CMD = 0x97 (command, has simple generic response)
Ben Cahill2bdc7032007-11-29 11:10:12 +08001505 *
Zhu Yib481de92007-09-25 17:54:57 -07001506 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001507
Zhu Yib481de92007-09-25 17:54:57 -07001508/*RS_NEW_API: only TLC_RTS remains and moved to bit 0 */
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001509#define LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK (1 << 0)
Zhu Yib481de92007-09-25 17:54:57 -07001510
Ben Cahill2bdc7032007-11-29 11:10:12 +08001511/* # of EDCA prioritized tx fifos */
Zhu Yib481de92007-09-25 17:54:57 -07001512#define LINK_QUAL_AC_NUM AC_NUM
Ben Cahill2bdc7032007-11-29 11:10:12 +08001513
1514/* # entries in rate scale table to support Tx retries */
Zhu Yib481de92007-09-25 17:54:57 -07001515#define LINK_QUAL_MAX_RETRY_NUM 16
1516
Ben Cahill2bdc7032007-11-29 11:10:12 +08001517/* Tx antenna selection values */
Reinette Chatre8a1b0242008-01-14 17:46:25 -08001518#define LINK_QUAL_ANT_A_MSK (1 << 0)
1519#define LINK_QUAL_ANT_B_MSK (1 << 1)
Zhu Yib481de92007-09-25 17:54:57 -07001520#define LINK_QUAL_ANT_MSK (LINK_QUAL_ANT_A_MSK|LINK_QUAL_ANT_B_MSK)
1521
Ben Cahill2bdc7032007-11-29 11:10:12 +08001522
1523/**
Tomas Winkler66c73db2008-04-15 16:01:40 -07001524 * struct iwl_link_qual_general_params
Ben Cahill2bdc7032007-11-29 11:10:12 +08001525 *
1526 * Used in REPLY_TX_LINK_QUALITY_CMD
1527 */
Tomas Winkler66c73db2008-04-15 16:01:40 -07001528struct iwl_link_qual_general_params {
Zhu Yib481de92007-09-25 17:54:57 -07001529 u8 flags;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001530
1531 /* No entries at or above this (driver chosen) index contain MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001532 u8 mimo_delimiter;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001533
1534 /* Best single antenna to use for single stream (legacy, SISO). */
1535 u8 single_stream_ant_msk; /* LINK_QUAL_ANT_* */
1536
1537 /* Best antennas to use for MIMO (unused for 4965, assumes both). */
1538 u8 dual_stream_ant_msk; /* LINK_QUAL_ANT_* */
1539
1540 /*
1541 * If driver needs to use different initial rates for different
1542 * EDCA QOS access categories (as implemented by tx fifos 0-3),
1543 * this table will set that up, by indicating the indexes in the
1544 * rs_table[LINK_QUAL_MAX_RETRY_NUM] rate table at which to start.
1545 * Otherwise, driver should set all entries to 0.
1546 *
1547 * Entry usage:
1548 * 0 = Background, 1 = Best Effort (normal), 2 = Video, 3 = Voice
1549 * TX FIFOs above 3 use same value (typically 0) as TX FIFO 3.
1550 */
Zhu Yib481de92007-09-25 17:54:57 -07001551 u8 start_rate_index[LINK_QUAL_AC_NUM];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001552} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001553
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07001554#define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000) /* 4 milliseconds */
Wey-Yi Guyb15826a2010-07-28 09:18:53 -07001555#define LINK_QUAL_AGG_TIME_LIMIT_MAX (8000)
1556#define LINK_QUAL_AGG_TIME_LIMIT_MIN (100)
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07001557
1558#define LINK_QUAL_AGG_DISABLE_START_DEF (3)
1559#define LINK_QUAL_AGG_DISABLE_START_MAX (255)
1560#define LINK_QUAL_AGG_DISABLE_START_MIN (0)
1561
Daniel Halperin42631082011-03-21 15:27:34 -07001562#define LINK_QUAL_AGG_FRAME_LIMIT_DEF (63)
Johannes Bergb623a9f2009-07-01 14:57:59 +02001563#define LINK_QUAL_AGG_FRAME_LIMIT_MAX (63)
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07001564#define LINK_QUAL_AGG_FRAME_LIMIT_MIN (0)
1565
Ben Cahill2bdc7032007-11-29 11:10:12 +08001566/**
Tomas Winkler66c73db2008-04-15 16:01:40 -07001567 * struct iwl_link_qual_agg_params
Ben Cahill2bdc7032007-11-29 11:10:12 +08001568 *
1569 * Used in REPLY_TX_LINK_QUALITY_CMD
1570 */
Tomas Winkler66c73db2008-04-15 16:01:40 -07001571struct iwl_link_qual_agg_params {
Ben Cahill2bdc7032007-11-29 11:10:12 +08001572
Wey-Yi Guy74697012010-07-28 09:18:54 -07001573 /*
1574 *Maximum number of uSec in aggregation.
1575 * default set to 4000 (4 milliseconds) if not configured in .cfg
1576 */
Zhu Yib481de92007-09-25 17:54:57 -07001577 __le16 agg_time_limit;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001578
1579 /*
1580 * Number of Tx retries allowed for a frame, before that frame will
1581 * no longer be considered for the start of an aggregation sequence
1582 * (scheduler will then try to tx it as single frame).
1583 * Driver should set this to 3.
1584 */
Zhu Yib481de92007-09-25 17:54:57 -07001585 u8 agg_dis_start_th;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001586
1587 /*
1588 * Maximum number of frames in aggregation.
1589 * 0 = no limit (default). 1 = no aggregation.
1590 * Other values = max # frames in aggregation.
1591 */
Zhu Yib481de92007-09-25 17:54:57 -07001592 u8 agg_frame_cnt_limit;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001593
Zhu Yib481de92007-09-25 17:54:57 -07001594 __le32 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001595} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001596
1597/*
1598 * REPLY_TX_LINK_QUALITY_CMD = 0x4e (command, has simple generic response)
Ben Cahill2bdc7032007-11-29 11:10:12 +08001599 *
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08001600 * For agn devices
Ben Cahill2bdc7032007-11-29 11:10:12 +08001601 *
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001602 * Each station in the agn device's internal station table has its own table
1603 * of 16
Ben Cahill2bdc7032007-11-29 11:10:12 +08001604 * Tx rates and modulation modes (e.g. legacy/SISO/MIMO) for retrying Tx when
1605 * an ACK is not received. This command replaces the entire table for
1606 * one station.
1607 *
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001608 * NOTE: Station must already be in agn device's station table.
1609 * Use REPLY_ADD_STA.
Ben Cahill2bdc7032007-11-29 11:10:12 +08001610 *
1611 * The rate scaling procedures described below work well. Of course, other
1612 * procedures are possible, and may work better for particular environments.
1613 *
1614 *
1615 * FILLING THE RATE TABLE
1616 *
1617 * Given a particular initial rate and mode, as determined by the rate
1618 * scaling algorithm described below, the Linux driver uses the following
1619 * formula to fill the rs_table[LINK_QUAL_MAX_RETRY_NUM] rate table in the
1620 * Link Quality command:
1621 *
1622 *
1623 * 1) If using High-throughput (HT) (SISO or MIMO) initial rate:
1624 * a) Use this same initial rate for first 3 entries.
1625 * b) Find next lower available rate using same mode (SISO or MIMO),
1626 * use for next 3 entries. If no lower rate available, switch to
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001627 * legacy mode (no HT40 channel, no MIMO, no short guard interval).
Ben Cahill2bdc7032007-11-29 11:10:12 +08001628 * c) If using MIMO, set command's mimo_delimiter to number of entries
1629 * using MIMO (3 or 6).
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001630 * d) After trying 2 HT rates, switch to legacy mode (no HT40 channel,
Ben Cahill2bdc7032007-11-29 11:10:12 +08001631 * no MIMO, no short guard interval), at the next lower bit rate
1632 * (e.g. if second HT bit rate was 54, try 48 legacy), and follow
1633 * legacy procedure for remaining table entries.
1634 *
1635 * 2) If using legacy initial rate:
1636 * a) Use the initial rate for only one entry.
1637 * b) For each following entry, reduce the rate to next lower available
1638 * rate, until reaching the lowest available rate.
1639 * c) When reducing rate, also switch antenna selection.
1640 * d) Once lowest available rate is reached, repeat this rate until
1641 * rate table is filled (16 entries), switching antenna each entry.
1642 *
1643 *
1644 * ACCUMULATING HISTORY
1645 *
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001646 * The rate scaling algorithm for agn devices, as implemented in Linux driver,
1647 * uses two sets of frame Tx success history: One for the current/active
1648 * modulation mode, and one for a speculative/search mode that is being
1649 * attempted. If the speculative mode turns out to be more effective (i.e.
1650 * actual transfer rate is better), then the driver continues to use the
1651 * speculative mode as the new current active mode.
Ben Cahill2bdc7032007-11-29 11:10:12 +08001652 *
1653 * Each history set contains, separately for each possible rate, data for a
1654 * sliding window of the 62 most recent tx attempts at that rate. The data
1655 * includes a shifting bitmap of success(1)/failure(0), and sums of successful
1656 * and attempted frames, from which the driver can additionally calculate a
1657 * success ratio (success / attempted) and number of failures
1658 * (attempted - success), and control the size of the window (attempted).
1659 * The driver uses the bit map to remove successes from the success sum, as
1660 * the oldest tx attempts fall out of the window.
1661 *
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001662 * When the agn device makes multiple tx attempts for a given frame, each
1663 * attempt might be at a different rate, and have different modulation
1664 * characteristics (e.g. antenna, fat channel, short guard interval), as set
1665 * up in the rate scaling table in the Link Quality command. The driver must
1666 * determine which rate table entry was used for each tx attempt, to determine
1667 * which rate-specific history to update, and record only those attempts that
Ben Cahill2bdc7032007-11-29 11:10:12 +08001668 * match the modulation characteristics of the history set.
1669 *
1670 * When using block-ack (aggregation), all frames are transmitted at the same
Tomas Winklera96a27f2008-10-23 23:48:56 -07001671 * rate, since there is no per-attempt acknowledgment from the destination
Ben Cahill2bdc7032007-11-29 11:10:12 +08001672 * station. The Tx response struct iwl_tx_resp indicates the Tx rate in
1673 * rate_n_flags field. After receiving a block-ack, the driver can update
1674 * history for the entire block all at once.
1675 *
1676 *
1677 * FINDING BEST STARTING RATE:
1678 *
1679 * When working with a selected initial modulation mode (see below), the
1680 * driver attempts to find a best initial rate. The initial rate is the
1681 * first entry in the Link Quality command's rate table.
1682 *
1683 * 1) Calculate actual throughput (success ratio * expected throughput, see
1684 * table below) for current initial rate. Do this only if enough frames
1685 * have been attempted to make the value meaningful: at least 6 failed
1686 * tx attempts, or at least 8 successes. If not enough, don't try rate
1687 * scaling yet.
1688 *
1689 * 2) Find available rates adjacent to current initial rate. Available means:
1690 * a) supported by hardware &&
1691 * b) supported by association &&
1692 * c) within any constraints selected by user
1693 *
1694 * 3) Gather measured throughputs for adjacent rates. These might not have
1695 * enough history to calculate a throughput. That's okay, we might try
1696 * using one of them anyway!
1697 *
1698 * 4) Try decreasing rate if, for current rate:
1699 * a) success ratio is < 15% ||
1700 * b) lower adjacent rate has better measured throughput ||
1701 * c) higher adjacent rate has worse throughput, and lower is unmeasured
1702 *
1703 * As a sanity check, if decrease was determined above, leave rate
1704 * unchanged if:
1705 * a) lower rate unavailable
1706 * b) success ratio at current rate > 85% (very good)
1707 * c) current measured throughput is better than expected throughput
1708 * of lower rate (under perfect 100% tx conditions, see table below)
1709 *
1710 * 5) Try increasing rate if, for current rate:
1711 * a) success ratio is < 15% ||
1712 * b) both adjacent rates' throughputs are unmeasured (try it!) ||
1713 * b) higher adjacent rate has better measured throughput ||
1714 * c) lower adjacent rate has worse throughput, and higher is unmeasured
1715 *
1716 * As a sanity check, if increase was determined above, leave rate
1717 * unchanged if:
1718 * a) success ratio at current rate < 70%. This is not particularly
1719 * good performance; higher rate is sure to have poorer success.
1720 *
1721 * 6) Re-evaluate the rate after each tx frame. If working with block-
1722 * acknowledge, history and statistics may be calculated for the entire
1723 * block (including prior history that fits within the history windows),
1724 * before re-evaluation.
1725 *
1726 * FINDING BEST STARTING MODULATION MODE:
1727 *
1728 * After working with a modulation mode for a "while" (and doing rate scaling),
1729 * the driver searches for a new initial mode in an attempt to improve
1730 * throughput. The "while" is measured by numbers of attempted frames:
1731 *
1732 * For legacy mode, search for new mode after:
1733 * 480 successful frames, or 160 failed frames
1734 * For high-throughput modes (SISO or MIMO), search for new mode after:
1735 * 4500 successful frames, or 400 failed frames
1736 *
1737 * Mode switch possibilities are (3 for each mode):
1738 *
1739 * For legacy:
1740 * Change antenna, try SISO (if HT association), try MIMO (if HT association)
1741 * For SISO:
1742 * Change antenna, try MIMO, try shortened guard interval (SGI)
1743 * For MIMO:
1744 * Try SISO antenna A, SISO antenna B, try shortened guard interval (SGI)
1745 *
1746 * When trying a new mode, use the same bit rate as the old/current mode when
1747 * trying antenna switches and shortened guard interval. When switching to
1748 * SISO from MIMO or legacy, or to MIMO from SISO or legacy, use a rate
1749 * for which the expected throughput (under perfect conditions) is about the
1750 * same or slightly better than the actual measured throughput delivered by
1751 * the old/current mode.
1752 *
1753 * Actual throughput can be estimated by multiplying the expected throughput
1754 * by the success ratio (successful / attempted tx frames). Frame size is
1755 * not considered in this calculation; it assumes that frame size will average
1756 * out to be fairly consistent over several samples. The following are
1757 * metric values for expected throughput assuming 100% success ratio.
1758 * Only G band has support for CCK rates:
1759 *
1760 * RATE: 1 2 5 11 6 9 12 18 24 36 48 54 60
1761 *
1762 * G: 7 13 35 58 40 57 72 98 121 154 177 186 186
1763 * A: 0 0 0 0 40 57 72 98 121 154 177 186 186
1764 * SISO 20MHz: 0 0 0 0 42 42 76 102 124 159 183 193 202
1765 * SGI SISO 20MHz: 0 0 0 0 46 46 82 110 132 168 192 202 211
1766 * MIMO 20MHz: 0 0 0 0 74 74 123 155 179 214 236 244 251
1767 * SGI MIMO 20MHz: 0 0 0 0 81 81 131 164 188 222 243 251 257
1768 * SISO 40MHz: 0 0 0 0 77 77 127 160 184 220 242 250 257
1769 * SGI SISO 40MHz: 0 0 0 0 83 83 135 169 193 229 250 257 264
1770 * MIMO 40MHz: 0 0 0 0 123 123 182 214 235 264 279 285 289
1771 * SGI MIMO 40MHz: 0 0 0 0 131 131 191 222 242 270 284 289 293
1772 *
1773 * After the new mode has been tried for a short while (minimum of 6 failed
1774 * frames or 8 successful frames), compare success ratio and actual throughput
1775 * estimate of the new mode with the old. If either is better with the new
1776 * mode, continue to use the new mode.
1777 *
1778 * Continue comparing modes until all 3 possibilities have been tried.
1779 * If moving from legacy to HT, try all 3 possibilities from the new HT
1780 * mode. After trying all 3, a best mode is found. Continue to use this mode
1781 * for the longer "while" described above (e.g. 480 successful frames for
1782 * legacy), and then repeat the search process.
1783 *
Zhu Yib481de92007-09-25 17:54:57 -07001784 */
Tomas Winkler66c73db2008-04-15 16:01:40 -07001785struct iwl_link_quality_cmd {
Ben Cahill2bdc7032007-11-29 11:10:12 +08001786
1787 /* Index of destination/recipient station in uCode's station table */
Zhu Yib481de92007-09-25 17:54:57 -07001788 u8 sta_id;
1789 u8 reserved1;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001790 __le16 control; /* not used */
Tomas Winkler66c73db2008-04-15 16:01:40 -07001791 struct iwl_link_qual_general_params general_params;
1792 struct iwl_link_qual_agg_params agg_params;
Ben Cahill2bdc7032007-11-29 11:10:12 +08001793
1794 /*
1795 * Rate info; when using rate-scaling, Tx command's initial_rate_index
1796 * specifies 1st Tx rate attempted, via index into this table.
Wey-Yi Guy767d0552010-08-23 07:56:53 -07001797 * agn devices works its way through table when retrying Tx.
Ben Cahill2bdc7032007-11-29 11:10:12 +08001798 */
Zhu Yib481de92007-09-25 17:54:57 -07001799 struct {
Ben Cahill2bdc7032007-11-29 11:10:12 +08001800 __le32 rate_n_flags; /* RATE_MCS_*, IWL_RATE_* */
Zhu Yib481de92007-09-25 17:54:57 -07001801 } rs_table[LINK_QUAL_MAX_RETRY_NUM];
1802 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001803} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001804
Wey-Yi Guydab1c162010-01-22 14:22:50 -08001805/*
1806 * BT configuration enable flags:
1807 * bit 0 - 1: BT channel announcement enabled
1808 * 0: disable
1809 * bit 1 - 1: priority of BT device enabled
1810 * 0: disable
1811 * bit 2 - 1: BT 2 wire support enabled
1812 * 0: disable
1813 */
Wey-Yi Guy456d0f72009-10-23 13:42:23 -07001814#define BT_COEX_DISABLE (0x0)
Wey-Yi Guydab1c162010-01-22 14:22:50 -08001815#define BT_ENABLE_CHANNEL_ANNOUNCE BIT(0)
1816#define BT_ENABLE_PRIORITY BIT(1)
1817#define BT_ENABLE_2_WIRE BIT(2)
Wey-Yi Guy456d0f72009-10-23 13:42:23 -07001818
Wey-Yi Guy06702a72010-01-22 14:22:51 -08001819#define BT_COEX_DISABLE (0x0)
1820#define BT_COEX_ENABLE (BT_ENABLE_CHANNEL_ANNOUNCE | BT_ENABLE_PRIORITY)
1821
Wey-Yi Guy456d0f72009-10-23 13:42:23 -07001822#define BT_LEAD_TIME_MIN (0x0)
1823#define BT_LEAD_TIME_DEF (0x1E)
1824#define BT_LEAD_TIME_MAX (0xFF)
1825
1826#define BT_MAX_KILL_MIN (0x1)
1827#define BT_MAX_KILL_DEF (0x5)
1828#define BT_MAX_KILL_MAX (0xFF)
1829
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07001830#define BT_DURATION_LIMIT_DEF 625
1831#define BT_DURATION_LIMIT_MAX 1250
1832#define BT_DURATION_LIMIT_MIN 625
1833
1834#define BT_ON_THRESHOLD_DEF 4
1835#define BT_ON_THRESHOLD_MAX 1000
1836#define BT_ON_THRESHOLD_MIN 1
1837
1838#define BT_FRAG_THRESHOLD_DEF 0
1839#define BT_FRAG_THRESHOLD_MAX 0
1840#define BT_FRAG_THRESHOLD_MIN 0
1841
Wey-Yi Guy95a5ede2010-11-08 14:55:43 -08001842#define BT_AGG_THRESHOLD_DEF 1200
1843#define BT_AGG_THRESHOLD_MAX 8000
1844#define BT_AGG_THRESHOLD_MIN 400
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07001845
Zhu Yib481de92007-09-25 17:54:57 -07001846/*
1847 * REPLY_BT_CONFIG = 0x9b (command, has simple generic response)
Ben Cahill3058f022008-01-14 17:46:17 -08001848 *
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08001849 * agn devices support hardware handshake with Bluetooth device on
Ben Cahill3058f022008-01-14 17:46:17 -08001850 * same platform. Bluetooth device alerts wireless device when it will Tx;
Tomas Winklera96a27f2008-10-23 23:48:56 -07001851 * wireless device can delay or kill its own Tx to accommodate.
Zhu Yib481de92007-09-25 17:54:57 -07001852 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001853struct iwl_bt_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07001854 u8 flags;
1855 u8 lead_time;
1856 u8 max_kill;
1857 u8 reserved;
1858 __le32 kill_ack_mask;
1859 __le32 kill_cts_mask;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001860} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001861
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001862#define IWLAGN_BT_FLAG_CHANNEL_INHIBITION BIT(0)
Johannes Berg670245e2010-08-23 07:56:55 -07001863
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001864#define IWLAGN_BT_FLAG_COEX_MODE_MASK (BIT(3)|BIT(4)|BIT(5))
1865#define IWLAGN_BT_FLAG_COEX_MODE_SHIFT 3
1866#define IWLAGN_BT_FLAG_COEX_MODE_DISABLED 0
1867#define IWLAGN_BT_FLAG_COEX_MODE_LEGACY_2W 1
1868#define IWLAGN_BT_FLAG_COEX_MODE_3W 2
1869#define IWLAGN_BT_FLAG_COEX_MODE_4W 3
Johannes Berg670245e2010-08-23 07:56:55 -07001870
Wey-Yi Guyeeb1f832010-11-23 10:58:52 -08001871#define IWLAGN_BT_FLAG_UCODE_DEFAULT BIT(6)
1872/* Disable Sync PSPoll on SCO/eSCO */
1873#define IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE BIT(7)
Johannes Berg670245e2010-08-23 07:56:55 -07001874
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -07001875#define IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD -75 /* dBm */
1876#define IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD -65 /* dBm */
1877
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001878#define IWLAGN_BT_PRIO_BOOST_MAX 0xFF
1879#define IWLAGN_BT_PRIO_BOOST_MIN 0x00
1880#define IWLAGN_BT_PRIO_BOOST_DEFAULT 0xF0
Johannes Berg670245e2010-08-23 07:56:55 -07001881
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001882#define IWLAGN_BT_MAX_KILL_DEFAULT 5
Johannes Berg670245e2010-08-23 07:56:55 -07001883
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001884#define IWLAGN_BT3_T7_DEFAULT 1
Johannes Berg670245e2010-08-23 07:56:55 -07001885
Wey-Yi Guy05433df2010-11-08 12:37:20 -08001886#define IWLAGN_BT_KILL_ACK_MASK_DEFAULT cpu_to_le32(0xffff0000)
1887#define IWLAGN_BT_KILL_CTS_MASK_DEFAULT cpu_to_le32(0xffff0000)
Wey-Yi Guy506aa152010-11-24 17:25:03 -08001888#define IWLAGN_BT_KILL_ACK_CTS_MASK_SCO cpu_to_le32(0xffffffff)
Johannes Berg670245e2010-08-23 07:56:55 -07001889
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001890#define IWLAGN_BT3_PRIO_SAMPLE_DEFAULT 2
Johannes Berg670245e2010-08-23 07:56:55 -07001891
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001892#define IWLAGN_BT3_T2_DEFAULT 0xc
Johannes Berg670245e2010-08-23 07:56:55 -07001893
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001894#define IWLAGN_BT_VALID_ENABLE_FLAGS cpu_to_le16(BIT(0))
1895#define IWLAGN_BT_VALID_BOOST cpu_to_le16(BIT(1))
1896#define IWLAGN_BT_VALID_MAX_KILL cpu_to_le16(BIT(2))
1897#define IWLAGN_BT_VALID_3W_TIMERS cpu_to_le16(BIT(3))
1898#define IWLAGN_BT_VALID_KILL_ACK_MASK cpu_to_le16(BIT(4))
1899#define IWLAGN_BT_VALID_KILL_CTS_MASK cpu_to_le16(BIT(5))
1900#define IWLAGN_BT_VALID_BT4_TIMES cpu_to_le16(BIT(6))
1901#define IWLAGN_BT_VALID_3W_LUT cpu_to_le16(BIT(7))
Johannes Berg670245e2010-08-23 07:56:55 -07001902
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001903#define IWLAGN_BT_ALL_VALID_MSK (IWLAGN_BT_VALID_ENABLE_FLAGS | \
1904 IWLAGN_BT_VALID_BOOST | \
1905 IWLAGN_BT_VALID_MAX_KILL | \
1906 IWLAGN_BT_VALID_3W_TIMERS | \
1907 IWLAGN_BT_VALID_KILL_ACK_MASK | \
1908 IWLAGN_BT_VALID_KILL_CTS_MASK | \
1909 IWLAGN_BT_VALID_BT4_TIMES | \
1910 IWLAGN_BT_VALID_3W_LUT)
Johannes Berg670245e2010-08-23 07:56:55 -07001911
Wey-Yi Guy60132702011-02-18 17:23:54 -08001912struct iwl_basic_bt_cmd {
Johannes Berg670245e2010-08-23 07:56:55 -07001913 u8 flags;
1914 u8 ledtime; /* unused */
1915 u8 max_kill;
1916 u8 bt3_timer_t7_value;
1917 __le32 kill_ack_mask;
1918 __le32 kill_cts_mask;
1919 u8 bt3_prio_sample_time;
1920 u8 bt3_timer_t2_value;
1921 __le16 bt4_reaction_time; /* unused */
1922 __le32 bt3_lookup_table[12];
1923 __le16 bt4_decision_time; /* unused */
1924 __le16 valid;
Wey-Yi Guy60132702011-02-18 17:23:54 -08001925};
1926
1927struct iwl6000_bt_cmd {
1928 struct iwl_basic_bt_cmd basic;
Johannes Berg670245e2010-08-23 07:56:55 -07001929 u8 prio_boost;
Wey-Yi Guyb345f4d2010-09-13 07:51:03 -07001930 /*
1931 * set IWLAGN_BT_VALID_BOOST to "1" in "valid" bitmask
1932 * if configure the following patterns
1933 */
1934 u8 tx_prio_boost; /* SW boost of WiFi tx priority */
1935 __le16 rx_prio_boost; /* SW boost of WiFi rx priority */
Johannes Berg670245e2010-08-23 07:56:55 -07001936};
1937
Wey-Yi Guyd6f62652011-02-18 17:23:51 -08001938struct iwl2000_bt_cmd {
Wey-Yi Guy60132702011-02-18 17:23:54 -08001939 struct iwl_basic_bt_cmd basic;
Wey-Yi Guyd6f62652011-02-18 17:23:51 -08001940 __le32 prio_boost;
1941 /*
1942 * set IWLAGN_BT_VALID_BOOST to "1" in "valid" bitmask
1943 * if configure the following patterns
1944 */
1945 u8 reserved;
1946 u8 tx_prio_boost; /* SW boost of WiFi tx priority */
1947 __le16 rx_prio_boost; /* SW boost of WiFi rx priority */
1948};
1949
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001950#define IWLAGN_BT_SCO_ACTIVE cpu_to_le32(BIT(0))
Johannes Berg9e4afc22010-08-23 07:56:57 -07001951
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07001952struct iwlagn_bt_sco_cmd {
Johannes Berg9e4afc22010-08-23 07:56:57 -07001953 __le32 flags;
1954};
1955
Zhu Yib481de92007-09-25 17:54:57 -07001956/******************************************************************************
1957 * (6)
1958 * Spectrum Management (802.11h) Commands, Responses, Notifications:
1959 *
1960 *****************************************************************************/
1961
1962/*
1963 * Spectrum Management
1964 */
1965#define MEASUREMENT_FILTER_FLAG (RXON_FILTER_PROMISC_MSK | \
1966 RXON_FILTER_CTL2HOST_MSK | \
1967 RXON_FILTER_ACCEPT_GRP_MSK | \
1968 RXON_FILTER_DIS_DECRYPT_MSK | \
1969 RXON_FILTER_DIS_GRP_DECRYPT_MSK | \
1970 RXON_FILTER_ASSOC_MSK | \
1971 RXON_FILTER_BCON_AWARE_MSK)
1972
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001973struct iwl_measure_channel {
Zhu Yib481de92007-09-25 17:54:57 -07001974 __le32 duration; /* measurement duration in extended beacon
1975 * format */
1976 u8 channel; /* channel to measure */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001977 u8 type; /* see enum iwl_measure_type */
Zhu Yib481de92007-09-25 17:54:57 -07001978 __le16 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001979} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001980
1981/*
1982 * REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74 (command)
1983 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001984struct iwl_spectrum_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07001985 __le16 len; /* number of bytes starting from token */
1986 u8 token; /* token id */
1987 u8 id; /* measurement id -- 0 or 1 */
1988 u8 origin; /* 0 = TGh, 1 = other, 2 = TGk */
1989 u8 periodic; /* 1 = periodic */
1990 __le16 path_loss_timeout;
1991 __le32 start_time; /* start time in extended beacon format */
1992 __le32 reserved2;
1993 __le32 flags; /* rxon flags */
1994 __le32 filter_flags; /* rxon filter flags */
1995 __le16 channel_count; /* minimum 1, maximum 10 */
1996 __le16 reserved3;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001997 struct iwl_measure_channel channels[10];
Eric Dumazetba2d3582010-06-02 18:10:09 +00001998} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07001999
2000/*
2001 * REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74 (response)
2002 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002003struct iwl_spectrum_resp {
Zhu Yib481de92007-09-25 17:54:57 -07002004 u8 token;
2005 u8 id; /* id of the prior command replaced, or 0xff */
2006 __le16 status; /* 0 - command will be handled
2007 * 1 - cannot handle (conflicts with another
2008 * measurement) */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002009} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002010
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002011enum iwl_measurement_state {
Zhu Yib481de92007-09-25 17:54:57 -07002012 IWL_MEASUREMENT_START = 0,
2013 IWL_MEASUREMENT_STOP = 1,
2014};
2015
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002016enum iwl_measurement_status {
Zhu Yib481de92007-09-25 17:54:57 -07002017 IWL_MEASUREMENT_OK = 0,
2018 IWL_MEASUREMENT_CONCURRENT = 1,
2019 IWL_MEASUREMENT_CSA_CONFLICT = 2,
2020 IWL_MEASUREMENT_TGH_CONFLICT = 3,
2021 /* 4-5 reserved */
2022 IWL_MEASUREMENT_STOPPED = 6,
2023 IWL_MEASUREMENT_TIMEOUT = 7,
2024 IWL_MEASUREMENT_PERIODIC_FAILED = 8,
2025};
2026
2027#define NUM_ELEMENTS_IN_HISTOGRAM 8
2028
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002029struct iwl_measurement_histogram {
Zhu Yib481de92007-09-25 17:54:57 -07002030 __le32 ofdm[NUM_ELEMENTS_IN_HISTOGRAM]; /* in 0.8usec counts */
2031 __le32 cck[NUM_ELEMENTS_IN_HISTOGRAM]; /* in 1usec counts */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002032} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002033
2034/* clear channel availability counters */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002035struct iwl_measurement_cca_counters {
Zhu Yib481de92007-09-25 17:54:57 -07002036 __le32 ofdm;
2037 __le32 cck;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002038} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002039
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002040enum iwl_measure_type {
Zhu Yib481de92007-09-25 17:54:57 -07002041 IWL_MEASURE_BASIC = (1 << 0),
2042 IWL_MEASURE_CHANNEL_LOAD = (1 << 1),
2043 IWL_MEASURE_HISTOGRAM_RPI = (1 << 2),
2044 IWL_MEASURE_HISTOGRAM_NOISE = (1 << 3),
2045 IWL_MEASURE_FRAME = (1 << 4),
2046 /* bits 5:6 are reserved */
2047 IWL_MEASURE_IDLE = (1 << 7),
2048};
2049
2050/*
2051 * SPECTRUM_MEASURE_NOTIFICATION = 0x75 (notification only, not a command)
2052 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002053struct iwl_spectrum_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002054 u8 id; /* measurement id -- 0 or 1 */
2055 u8 token;
2056 u8 channel_index; /* index in measurement channel list */
2057 u8 state; /* 0 - start, 1 - stop */
2058 __le32 start_time; /* lower 32-bits of TSF */
2059 u8 band; /* 0 - 5.2GHz, 1 - 2.4GHz */
2060 u8 channel;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002061 u8 type; /* see enum iwl_measurement_type */
Zhu Yib481de92007-09-25 17:54:57 -07002062 u8 reserved1;
2063 /* NOTE: cca_ofdm, cca_cck, basic_type, and histogram are only only
2064 * valid if applicable for measurement type requested. */
2065 __le32 cca_ofdm; /* cca fraction time in 40Mhz clock periods */
2066 __le32 cca_cck; /* cca fraction time in 44Mhz clock periods */
2067 __le32 cca_time; /* channel load time in usecs */
2068 u8 basic_type; /* 0 - bss, 1 - ofdm preamble, 2 -
2069 * unidentified */
2070 u8 reserved2[3];
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002071 struct iwl_measurement_histogram histogram;
Zhu Yib481de92007-09-25 17:54:57 -07002072 __le32 stop_time; /* lower 32-bits of TSF */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002073 __le32 status; /* see iwl_measurement_status */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002074} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002075
2076/******************************************************************************
2077 * (7)
2078 * Power Management Commands, Responses, Notifications:
2079 *
2080 *****************************************************************************/
2081
2082/**
Mohamed Abbasca579612008-07-18 13:52:57 +08002083 * struct iwl_powertable_cmd - Power Table Command
Zhu Yib481de92007-09-25 17:54:57 -07002084 * @flags: See below:
2085 *
2086 * POWER_TABLE_CMD = 0x77 (command, has simple generic response)
2087 *
2088 * PM allow:
2089 * bit 0 - '0' Driver not allow power management
2090 * '1' Driver allow PM (use rest of parameters)
Johannes Berge312c242009-08-07 15:41:51 -07002091 *
Zhu Yib481de92007-09-25 17:54:57 -07002092 * uCode send sleep notifications:
2093 * bit 1 - '0' Don't send sleep notification
2094 * '1' send sleep notification (SEND_PM_NOTIFICATION)
Johannes Berge312c242009-08-07 15:41:51 -07002095 *
Zhu Yib481de92007-09-25 17:54:57 -07002096 * Sleep over DTIM
2097 * bit 2 - '0' PM have to walk up every DTIM
2098 * '1' PM could sleep over DTIM till listen Interval.
Johannes Berge312c242009-08-07 15:41:51 -07002099 *
Zhu Yib481de92007-09-25 17:54:57 -07002100 * PCI power managed
Tomas Winklere7b63582008-09-03 11:26:49 +08002101 * bit 3 - '0' (PCI_CFG_LINK_CTRL & 0x1)
2102 * '1' !(PCI_CFG_LINK_CTRL & 0x1)
Johannes Berge312c242009-08-07 15:41:51 -07002103 *
2104 * Fast PD
2105 * bit 4 - '1' Put radio to sleep when receiving frame for others
2106 *
Zhu Yib481de92007-09-25 17:54:57 -07002107 * Force sleep Modes
2108 * bit 31/30- '00' use both mac/xtal sleeps
2109 * '01' force Mac sleep
2110 * '10' force xtal sleep
2111 * '11' Illegal set
2112 *
2113 * NOTE: if sleep_interval[SLEEP_INTRVL_TABLE_SIZE-1] > DTIM period then
Tomas Winklera96a27f2008-10-23 23:48:56 -07002114 * ucode assume sleep over DTIM is allowed and we don't need to wake up
Zhu Yib481de92007-09-25 17:54:57 -07002115 * for every DTIM.
2116 */
2117#define IWL_POWER_VEC_SIZE 5
2118
Tomas Winkler600c0e12008-12-19 10:37:04 +08002119#define IWL_POWER_DRIVER_ALLOW_SLEEP_MSK cpu_to_le16(BIT(0))
Wey-Yi Guy35162ba2010-11-23 10:58:56 -08002120#define IWL_POWER_POWER_SAVE_ENA_MSK cpu_to_le16(BIT(0))
2121#define IWL_POWER_POWER_MANAGEMENT_ENA_MSK cpu_to_le16(BIT(1))
Tomas Winkler600c0e12008-12-19 10:37:04 +08002122#define IWL_POWER_SLEEP_OVER_DTIM_MSK cpu_to_le16(BIT(2))
2123#define IWL_POWER_PCI_PM_MSK cpu_to_le16(BIT(3))
2124#define IWL_POWER_FAST_PD cpu_to_le16(BIT(4))
Wey-Yi Guy97badb02010-11-23 10:58:53 -08002125#define IWL_POWER_BEACON_FILTERING cpu_to_le16(BIT(5))
2126#define IWL_POWER_SHADOW_REG_ENA cpu_to_le16(BIT(6))
2127#define IWL_POWER_CT_KILL_SET cpu_to_le16(BIT(7))
2128#define IWL_POWER_BT_SCO_ENA cpu_to_le16(BIT(8))
Wey-Yi Guy35162ba2010-11-23 10:58:56 -08002129#define IWL_POWER_ADVANCE_PM_ENA_MSK cpu_to_le16(BIT(9))
Tomas Winkler600c0e12008-12-19 10:37:04 +08002130
Mohamed Abbasca579612008-07-18 13:52:57 +08002131struct iwl_powertable_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07002132 __le16 flags;
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08002133 u8 keep_alive_seconds;
2134 u8 debug_flags;
Zhu Yib481de92007-09-25 17:54:57 -07002135 __le32 rx_data_timeout;
2136 __le32 tx_data_timeout;
2137 __le32 sleep_interval[IWL_POWER_VEC_SIZE];
2138 __le32 keep_alive_beacons;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002139} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002140
2141/*
2142 * PM_SLEEP_NOTIFICATION = 0x7A (notification only, not a command)
Wey-Yi Guy767d0552010-08-23 07:56:53 -07002143 * all devices identical.
Zhu Yib481de92007-09-25 17:54:57 -07002144 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002145struct iwl_sleep_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002146 u8 pm_sleep_mode;
2147 u8 pm_wakeup_src;
2148 __le16 reserved;
2149 __le32 sleep_time;
2150 __le32 tsf_low;
2151 __le32 bcon_timer;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002152} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002153
Wey-Yi Guy767d0552010-08-23 07:56:53 -07002154/* Sleep states. all devices identical. */
Zhu Yib481de92007-09-25 17:54:57 -07002155enum {
2156 IWL_PM_NO_SLEEP = 0,
2157 IWL_PM_SLP_MAC = 1,
2158 IWL_PM_SLP_FULL_MAC_UNASSOCIATE = 2,
2159 IWL_PM_SLP_FULL_MAC_CARD_STATE = 3,
2160 IWL_PM_SLP_PHY = 4,
2161 IWL_PM_SLP_REPENT = 5,
2162 IWL_PM_WAKEUP_BY_TIMER = 6,
2163 IWL_PM_WAKEUP_BY_DRIVER = 7,
2164 IWL_PM_WAKEUP_BY_RFKILL = 8,
2165 /* 3 reserved */
2166 IWL_PM_NUM_OF_MODES = 12,
2167};
2168
2169/*
2170 * REPLY_CARD_STATE_CMD = 0xa0 (command, has simple generic response)
2171 */
2172#define CARD_STATE_CMD_DISABLE 0x00 /* Put card to sleep */
2173#define CARD_STATE_CMD_ENABLE 0x01 /* Wake up card */
2174#define CARD_STATE_CMD_HALT 0x02 /* Power down permanently */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002175struct iwl_card_state_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07002176 __le32 status; /* CARD_STATE_CMD_* request new power state */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002177} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179/*
2180 * CARD_STATE_NOTIFICATION = 0xa1 (notification only, not a command)
2181 */
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002182struct iwl_card_state_notif {
Zhu Yib481de92007-09-25 17:54:57 -07002183 __le32 flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002184} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002185
2186#define HW_CARD_DISABLED 0x01
2187#define SW_CARD_DISABLED 0x02
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -08002188#define CT_CARD_DISABLED 0x04
Zhu Yib481de92007-09-25 17:54:57 -07002189#define RXON_CARD_DISABLED 0x10
2190
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002191struct iwl_ct_kill_config {
Zhu Yib481de92007-09-25 17:54:57 -07002192 __le32 reserved;
2193 __le32 critical_temperature_M;
2194 __le32 critical_temperature_R;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002195} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002196
Wey-Yi Guy672639d2009-07-24 11:13:01 -07002197/* 1000, and 6x00 */
2198struct iwl_ct_kill_throttling_config {
2199 __le32 critical_temperature_exit;
2200 __le32 reserved;
2201 __le32 critical_temperature_enter;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002202} __packed;
Wey-Yi Guy672639d2009-07-24 11:13:01 -07002203
Zhu Yib481de92007-09-25 17:54:57 -07002204/******************************************************************************
2205 * (8)
2206 * Scan Commands, Responses, Notifications:
2207 *
2208 *****************************************************************************/
2209
Harvey Harrison51e9bf52008-11-26 13:12:52 -08002210#define SCAN_CHANNEL_TYPE_PASSIVE cpu_to_le32(0)
2211#define SCAN_CHANNEL_TYPE_ACTIVE cpu_to_le32(1)
Tomas Winklerd16dc482008-07-11 11:53:38 +08002212
Ben Cahill3058f022008-01-14 17:46:17 -08002213/**
Tomas Winkler2a421b92008-06-12 09:47:10 +08002214 * struct iwl_scan_channel - entry in REPLY_SCAN_CMD channel table
Ben Cahill3058f022008-01-14 17:46:17 -08002215 *
2216 * One for each channel in the scan list.
2217 * Each channel can independently select:
2218 * 1) SSID for directed active scans
2219 * 2) Txpower setting (for rate specified within Tx command)
2220 * 3) How long to stay on-channel (behavior may be modified by quiet_time,
2221 * quiet_plcp_th, good_CRC_th)
2222 *
2223 * To avoid uCode errors, make sure the following are true (see comments
Tomas Winkler2a421b92008-06-12 09:47:10 +08002224 * under struct iwl_scan_cmd about max_out_time and quiet_time):
Ben Cahill3058f022008-01-14 17:46:17 -08002225 * 1) If using passive_dwell (i.e. passive_dwell != 0):
2226 * active_dwell <= passive_dwell (< max_out_time if max_out_time != 0)
2227 * 2) quiet_time <= active_dwell
2228 * 3) If restricting off-channel time (i.e. max_out_time !=0):
2229 * passive_dwell < max_out_time
2230 * active_dwell < max_out_time
2231 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002232
Tomas Winkler2a421b92008-06-12 09:47:10 +08002233struct iwl_scan_channel {
Ben Cahill3058f022008-01-14 17:46:17 -08002234 /*
2235 * type is defined as:
2236 * 0:0 1 = active, 0 = passive
Tomas Winklerd16dc482008-07-11 11:53:38 +08002237 * 1:20 SSID direct bit map; if a bit is set, then corresponding
Ben Cahill3058f022008-01-14 17:46:17 -08002238 * SSID IE is transmitted in probe request.
Tomas Winklerd16dc482008-07-11 11:53:38 +08002239 * 21:31 reserved
Zhu Yib481de92007-09-25 17:54:57 -07002240 */
Tomas Winklerd16dc482008-07-11 11:53:38 +08002241 __le32 type;
2242 __le16 channel; /* band is selected by iwl_scan_cmd "flags" field */
Tomas Winklerf53696d2008-06-12 09:47:12 +08002243 u8 tx_gain; /* gain for analog radio */
2244 u8 dsp_atten; /* gain for DSP */
Ben Cahill3058f022008-01-14 17:46:17 -08002245 __le16 active_dwell; /* in 1024-uSec TU (time units), typ 5-50 */
2246 __le16 passive_dwell; /* in 1024-uSec TU (time units), typ 20-500 */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002247} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002248
Winkler, Tomas0d210442009-01-23 13:45:21 -08002249/* set number of direct probes __le32 type */
2250#define IWL_SCAN_PROBE_MASK(n) cpu_to_le32((BIT(n) | (BIT(n) - BIT(1))))
2251
Ben Cahill3058f022008-01-14 17:46:17 -08002252/**
Tomas Winkler2a421b92008-06-12 09:47:10 +08002253 * struct iwl_ssid_ie - directed scan network information element
Ben Cahill3058f022008-01-14 17:46:17 -08002254 *
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08002255 * Up to 20 of these may appear in REPLY_SCAN_CMD,
2256 * selected by "type" bit field in struct iwl_scan_channel;
2257 * each channel may select different ssids from among the 20 entries.
Ben Cahill2a3b7932009-11-06 14:52:59 -08002258 * SSID IEs get transmitted in reverse order of entry.
Ben Cahill3058f022008-01-14 17:46:17 -08002259 */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002260struct iwl_ssid_ie {
Zhu Yib481de92007-09-25 17:54:57 -07002261 u8 id;
2262 u8 len;
2263 u8 ssid[32];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002264} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002265
Johannes Berg9b3bf062009-04-20 14:36:55 -07002266#define PROBE_OPTION_MAX 20
Harvey Harrison51e9bf52008-11-26 13:12:52 -08002267#define TX_CMD_LIFE_TIME_INFINITE cpu_to_le32(0xFFFFFFFF)
Johannes Berg96ff5642010-04-30 14:42:15 -07002268#define IWL_GOOD_CRC_TH_DISABLED 0
2269#define IWL_GOOD_CRC_TH_DEFAULT cpu_to_le16(1)
2270#define IWL_GOOD_CRC_TH_NEVER cpu_to_le16(0xffff)
Zhu Yib481de92007-09-25 17:54:57 -07002271#define IWL_MAX_SCAN_SIZE 1024
Abhijeet Kolekar89612122010-02-19 11:49:49 -08002272#define IWL_MAX_CMD_SIZE 4096
Zhu Yib481de92007-09-25 17:54:57 -07002273
2274/*
2275 * REPLY_SCAN_CMD = 0x80 (command)
Ben Cahill3058f022008-01-14 17:46:17 -08002276 *
2277 * The hardware scan command is very powerful; the driver can set it up to
2278 * maintain (relatively) normal network traffic while doing a scan in the
2279 * background. The max_out_time and suspend_time control the ratio of how
2280 * long the device stays on an associated network channel ("service channel")
2281 * vs. how long it's away from the service channel, i.e. tuned to other channels
2282 * for scanning.
2283 *
2284 * max_out_time is the max time off-channel (in usec), and suspend_time
2285 * is how long (in "extended beacon" format) that the scan is "suspended"
2286 * after returning to the service channel. That is, suspend_time is the
2287 * time that we stay on the service channel, doing normal work, between
2288 * scan segments. The driver may set these parameters differently to support
2289 * scanning when associated vs. not associated, and light vs. heavy traffic
2290 * loads when associated.
2291 *
2292 * After receiving this command, the device's scan engine does the following;
2293 *
2294 * 1) Sends SCAN_START notification to driver
2295 * 2) Checks to see if it has time to do scan for one channel
2296 * 3) Sends NULL packet, with power-save (PS) bit set to 1,
2297 * to tell AP that we're going off-channel
2298 * 4) Tunes to first channel in scan list, does active or passive scan
2299 * 5) Sends SCAN_RESULT notification to driver
2300 * 6) Checks to see if it has time to do scan on *next* channel in list
2301 * 7) Repeats 4-6 until it no longer has time to scan the next channel
2302 * before max_out_time expires
2303 * 8) Returns to service channel
2304 * 9) Sends NULL packet with PS=0 to tell AP that we're back
2305 * 10) Stays on service channel until suspend_time expires
2306 * 11) Repeats entire process 2-10 until list is complete
2307 * 12) Sends SCAN_COMPLETE notification
2308 *
2309 * For fast, efficient scans, the scan command also has support for staying on
2310 * a channel for just a short time, if doing active scanning and getting no
2311 * responses to the transmitted probe request. This time is controlled by
2312 * quiet_time, and the number of received packets below which a channel is
2313 * considered "quiet" is controlled by quiet_plcp_threshold.
2314 *
2315 * For active scanning on channels that have regulatory restrictions against
2316 * blindly transmitting, the scan can listen before transmitting, to make sure
2317 * that there is already legitimate activity on the channel. If enough
2318 * packets are cleanly received on the channel (controlled by good_CRC_th,
2319 * typical value 1), the scan engine starts transmitting probe requests.
2320 *
2321 * Driver must use separate scan commands for 2.4 vs. 5 GHz bands.
2322 *
2323 * To avoid uCode errors, see timing restrictions described under
Tomas Winkler2a421b92008-06-12 09:47:10 +08002324 * struct iwl_scan_channel.
Zhu Yib481de92007-09-25 17:54:57 -07002325 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002326
Johannes Berg266af4c72011-03-10 20:13:26 -08002327enum iwl_scan_flags {
2328 /* BIT(0) currently unused */
2329 IWL_SCAN_FLAGS_ACTION_FRAME_TX = BIT(1),
2330 /* bits 2-7 reserved */
2331};
2332
Tomas Winkler2a421b92008-06-12 09:47:10 +08002333struct iwl_scan_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07002334 __le16 len;
Johannes Berg266af4c72011-03-10 20:13:26 -08002335 u8 scan_flags; /* scan flags: see enum iwl_scan_flags */
Ben Cahill3058f022008-01-14 17:46:17 -08002336 u8 channel_count; /* # channels in channel list */
2337 __le16 quiet_time; /* dwell only this # millisecs on quiet channel
2338 * (only for active scan) */
2339 __le16 quiet_plcp_th; /* quiet chnl is < this # pkts (typ. 1) */
2340 __le16 good_CRC_th; /* passive -> active promotion threshold */
2341 __le16 rx_chain; /* RXON_RX_CHAIN_* */
2342 __le32 max_out_time; /* max usec to be away from associated (service)
2343 * channel */
2344 __le32 suspend_time; /* pause scan this long (in "extended beacon
2345 * format") when returning to service chnl:
Ben Cahill3058f022008-01-14 17:46:17 -08002346 */
2347 __le32 flags; /* RXON_FLG_* */
2348 __le32 filter_flags; /* RXON_FILTER_* */
Zhu Yib481de92007-09-25 17:54:57 -07002349
Ben Cahill3058f022008-01-14 17:46:17 -08002350 /* For active scans (set to all-0s for passive scans).
2351 * Does not include payload. Must specify Tx rate; no rate scaling. */
Tomas Winkler83d527d2008-05-15 13:54:05 +08002352 struct iwl_tx_cmd tx_cmd;
Ben Cahill3058f022008-01-14 17:46:17 -08002353
2354 /* For directed active scans (set to all-0s otherwise) */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002355 struct iwl_ssid_ie direct_scan[PROBE_OPTION_MAX];
Zhu Yib481de92007-09-25 17:54:57 -07002356
Zhu Yib481de92007-09-25 17:54:57 -07002357 /*
Ben Cahill3058f022008-01-14 17:46:17 -08002358 * Probe request frame, followed by channel list.
2359 *
2360 * Size of probe request frame is specified by byte count in tx_cmd.
2361 * Channel list follows immediately after probe request frame.
2362 * Number of channels in list is specified by channel_count.
2363 * Each channel in list is of type:
Zhu Yib481de92007-09-25 17:54:57 -07002364 *
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002365 * struct iwl_scan_channel channels[0];
Zhu Yib481de92007-09-25 17:54:57 -07002366 *
2367 * NOTE: Only one band of channels can be scanned per pass. You
Ben Cahill3058f022008-01-14 17:46:17 -08002368 * must not mix 2.4GHz channels and 5.2GHz channels, and you must wait
2369 * for one scan to complete (i.e. receive SCAN_COMPLETE_NOTIFICATION)
2370 * before requesting another scan.
Zhu Yib481de92007-09-25 17:54:57 -07002371 */
Ben Cahill3058f022008-01-14 17:46:17 -08002372 u8 data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002373} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002374
2375/* Can abort will notify by complete notification with abort status. */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08002376#define CAN_ABORT_STATUS cpu_to_le32(0x1)
Zhu Yib481de92007-09-25 17:54:57 -07002377/* complete notification statuses */
2378#define ABORT_STATUS 0x2
2379
2380/*
2381 * REPLY_SCAN_CMD = 0x80 (response)
2382 */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002383struct iwl_scanreq_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002384 __le32 status; /* 1: okay, 2: cannot fulfill request */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002385} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002386
2387/*
2388 * SCAN_START_NOTIFICATION = 0x82 (notification only, not a command)
2389 */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002390struct iwl_scanstart_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002391 __le32 tsf_low;
2392 __le32 tsf_high;
2393 __le32 beacon_timer;
2394 u8 channel;
2395 u8 band;
2396 u8 reserved[2];
2397 __le32 status;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002398} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002399
Phil Carmody497888c2011-07-14 15:07:13 +03002400#define SCAN_OWNER_STATUS 0x1
2401#define MEASURE_OWNER_STATUS 0x2
Zhu Yib481de92007-09-25 17:54:57 -07002402
Johannes Berg0288d232010-08-23 07:56:54 -07002403#define IWL_PROBE_STATUS_OK 0
2404#define IWL_PROBE_STATUS_TX_FAILED BIT(0)
2405/* error statuses combined with TX_FAILED */
2406#define IWL_PROBE_STATUS_FAIL_TTL BIT(1)
2407#define IWL_PROBE_STATUS_FAIL_BT BIT(2)
2408
Zhu Yib481de92007-09-25 17:54:57 -07002409#define NUMBER_OF_STATISTICS 1 /* first __le32 is good CRC */
2410/*
2411 * SCAN_RESULTS_NOTIFICATION = 0x83 (notification only, not a command)
2412 */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002413struct iwl_scanresults_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002414 u8 channel;
2415 u8 band;
Johannes Berg0288d232010-08-23 07:56:54 -07002416 u8 probe_status;
2417 u8 num_probe_not_sent; /* not enough time to send */
Zhu Yib481de92007-09-25 17:54:57 -07002418 __le32 tsf_low;
2419 __le32 tsf_high;
2420 __le32 statistics[NUMBER_OF_STATISTICS];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002421} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002422
2423/*
2424 * SCAN_COMPLETE_NOTIFICATION = 0x84 (notification only, not a command)
2425 */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002426struct iwl_scancomplete_notification {
Zhu Yib481de92007-09-25 17:54:57 -07002427 u8 scanned_channels;
2428 u8 status;
Wey-Yi Guyf78e5452010-08-23 07:57:15 -07002429 u8 bt_status; /* BT On/Off status */
Zhu Yib481de92007-09-25 17:54:57 -07002430 u8 last_channel;
2431 __le32 tsf_low;
2432 __le32 tsf_high;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002433} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002434
2435
2436/******************************************************************************
2437 * (9)
2438 * IBSS/AP Commands and Notifications:
2439 *
2440 *****************************************************************************/
2441
Johannes Berga85d7cc2010-07-31 08:34:10 -07002442enum iwl_ibss_manager {
2443 IWL_NOT_IBSS_MANAGER = 0,
2444 IWL_IBSS_MANAGER = 1,
2445};
2446
Zhu Yib481de92007-09-25 17:54:57 -07002447/*
2448 * BEACON_NOTIFICATION = 0x90 (notification only, not a command)
2449 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002450
Johannes Berg241887a2011-01-19 11:11:22 -08002451struct iwlagn_beacon_notif {
2452 struct iwlagn_tx_resp beacon_notify_hdr;
2453 __le32 low_tsf;
2454 __le32 high_tsf;
2455 __le32 ibss_mgr_status;
2456} __packed;
2457
Zhu Yib481de92007-09-25 17:54:57 -07002458/*
2459 * REPLY_TX_BEACON = 0x91 (command, has simple generic response)
2460 */
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002461
Tomas Winkler4bf64ef2008-07-18 13:53:03 +08002462struct iwl_tx_beacon_cmd {
Tomas Winkler83d527d2008-05-15 13:54:05 +08002463 struct iwl_tx_cmd tx;
Zhu Yib481de92007-09-25 17:54:57 -07002464 __le16 tim_idx;
2465 u8 tim_size;
2466 u8 reserved1;
2467 struct ieee80211_hdr frame[0]; /* beacon frame */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002468} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002469
2470/******************************************************************************
2471 * (10)
2472 * Statistics Commands and Notifications:
2473 *
2474 *****************************************************************************/
2475
2476#define IWL_TEMP_CONVERT 260
2477
2478#define SUP_RATE_11A_MAX_NUM_CHANNELS 8
2479#define SUP_RATE_11B_MAX_NUM_CHANNELS 4
2480#define SUP_RATE_11G_MAX_NUM_CHANNELS 12
2481
2482/* Used for passing to driver number of successes and failures per rate */
2483struct rate_histogram {
2484 union {
2485 __le32 a[SUP_RATE_11A_MAX_NUM_CHANNELS];
2486 __le32 b[SUP_RATE_11B_MAX_NUM_CHANNELS];
2487 __le32 g[SUP_RATE_11G_MAX_NUM_CHANNELS];
2488 } success;
2489 union {
2490 __le32 a[SUP_RATE_11A_MAX_NUM_CHANNELS];
2491 __le32 b[SUP_RATE_11B_MAX_NUM_CHANNELS];
2492 __le32 g[SUP_RATE_11G_MAX_NUM_CHANNELS];
2493 } failed;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002494} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002495
2496/* statistics command response */
2497
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002498struct statistics_dbg {
2499 __le32 burst_check;
2500 __le32 burst_count;
Wey-Yi Guy7c094c52010-07-06 10:39:32 -07002501 __le32 wait_for_silence_timeout_cnt;
2502 __le32 reserved[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +00002503} __packed;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002504
Zhu Yib481de92007-09-25 17:54:57 -07002505struct statistics_rx_phy {
2506 __le32 ina_cnt;
2507 __le32 fina_cnt;
2508 __le32 plcp_err;
2509 __le32 crc32_err;
2510 __le32 overrun_err;
2511 __le32 early_overrun_err;
2512 __le32 crc32_good;
2513 __le32 false_alarm_cnt;
2514 __le32 fina_sync_err_cnt;
2515 __le32 sfd_timeout;
2516 __le32 fina_timeout;
2517 __le32 unresponded_rts;
2518 __le32 rxe_frame_limit_overrun;
2519 __le32 sent_ack_cnt;
2520 __le32 sent_cts_cnt;
Zhu Yib481de92007-09-25 17:54:57 -07002521 __le32 sent_ba_rsp_cnt;
2522 __le32 dsp_self_kill;
2523 __le32 mh_format_err;
2524 __le32 re_acq_main_rssi_sum;
2525 __le32 reserved3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002526} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002527
Zhu Yib481de92007-09-25 17:54:57 -07002528struct statistics_rx_ht_phy {
2529 __le32 plcp_err;
2530 __le32 overrun_err;
2531 __le32 early_overrun_err;
2532 __le32 crc32_good;
2533 __le32 crc32_err;
2534 __le32 mh_format_err;
2535 __le32 agg_crc32_good;
2536 __le32 agg_mpdu_cnt;
2537 __le32 agg_cnt;
Wey-Yi Guyf0118a42010-01-08 10:04:42 -08002538 __le32 unsupport_mcs;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002539} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002540
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08002541#define INTERFERENCE_DATA_AVAILABLE cpu_to_le32(1)
Winkler, Tomas34c22cf2008-12-17 16:52:27 +08002542
Zhu Yib481de92007-09-25 17:54:57 -07002543struct statistics_rx_non_phy {
2544 __le32 bogus_cts; /* CTS received when not expecting CTS */
2545 __le32 bogus_ack; /* ACK received when not expecting ACK */
2546 __le32 non_bssid_frames; /* number of frames with BSSID that
2547 * doesn't belong to the STA BSSID */
2548 __le32 filtered_frames; /* count frames that were dumped in the
2549 * filtering process */
2550 __le32 non_channel_beacons; /* beacons with our bss id but not on
2551 * our serving channel */
Zhu Yib481de92007-09-25 17:54:57 -07002552 __le32 channel_beacons; /* beacons with our bss id and in our
2553 * serving channel */
2554 __le32 num_missed_bcon; /* number of missed beacons */
2555 __le32 adc_rx_saturation_time; /* count in 0.8us units the time the
2556 * ADC was in saturation */
2557 __le32 ina_detection_search_time;/* total time (in 0.8us) searched
2558 * for INA */
2559 __le32 beacon_silence_rssi_a; /* RSSI silence after beacon frame */
2560 __le32 beacon_silence_rssi_b; /* RSSI silence after beacon frame */
2561 __le32 beacon_silence_rssi_c; /* RSSI silence after beacon frame */
2562 __le32 interference_data_flag; /* flag for interference data
2563 * availability. 1 when data is
2564 * available. */
Ben Cahill3058f022008-01-14 17:46:17 -08002565 __le32 channel_load; /* counts RX Enable time in uSec */
Zhu Yib481de92007-09-25 17:54:57 -07002566 __le32 dsp_false_alarms; /* DSP false alarm (both OFDM
2567 * and CCK) counter */
2568 __le32 beacon_rssi_a;
2569 __le32 beacon_rssi_b;
2570 __le32 beacon_rssi_c;
2571 __le32 beacon_energy_a;
2572 __le32 beacon_energy_b;
2573 __le32 beacon_energy_c;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002574} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002575
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002576struct statistics_rx_non_phy_bt {
2577 struct statistics_rx_non_phy common;
2578 /* additional stats for bt */
2579 __le32 num_bt_kills;
2580 __le32 reserved[2];
John W. Linvilleda22f792010-07-26 15:04:12 -04002581} __packed;
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002582
Zhu Yib481de92007-09-25 17:54:57 -07002583struct statistics_rx {
2584 struct statistics_rx_phy ofdm;
2585 struct statistics_rx_phy cck;
2586 struct statistics_rx_non_phy general;
Zhu Yib481de92007-09-25 17:54:57 -07002587 struct statistics_rx_ht_phy ofdm_ht;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002588} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002589
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002590struct statistics_rx_bt {
2591 struct statistics_rx_phy ofdm;
2592 struct statistics_rx_phy cck;
2593 struct statistics_rx_non_phy_bt general;
2594 struct statistics_rx_ht_phy ofdm_ht;
John W. Linvilleda22f792010-07-26 15:04:12 -04002595} __packed;
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002596
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -07002597/**
2598 * struct statistics_tx_power - current tx power
2599 *
2600 * @ant_a: current tx power on chain a in 1/2 dB step
2601 * @ant_b: current tx power on chain b in 1/2 dB step
2602 * @ant_c: current tx power on chain c in 1/2 dB step
2603 */
2604struct statistics_tx_power {
2605 u8 ant_a;
2606 u8 ant_b;
2607 u8 ant_c;
2608 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002609} __packed;
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -07002610
Zhu Yib481de92007-09-25 17:54:57 -07002611struct statistics_tx_non_phy_agg {
2612 __le32 ba_timeout;
2613 __le32 ba_reschedule_frames;
2614 __le32 scd_query_agg_frame_cnt;
2615 __le32 scd_query_no_agg;
2616 __le32 scd_query_agg;
2617 __le32 scd_query_mismatch;
2618 __le32 frame_not_ready;
2619 __le32 underrun;
2620 __le32 bt_prio_kill;
2621 __le32 rx_ba_rsp_cnt;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002622} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002623
2624struct statistics_tx {
2625 __le32 preamble_cnt;
2626 __le32 rx_detected_cnt;
2627 __le32 bt_prio_defer_cnt;
2628 __le32 bt_prio_kill_cnt;
2629 __le32 few_bytes_cnt;
2630 __le32 cts_timeout;
2631 __le32 ack_timeout;
2632 __le32 expected_ack_cnt;
2633 __le32 actual_ack_cnt;
Zhu Yib481de92007-09-25 17:54:57 -07002634 __le32 dump_msdu_cnt;
2635 __le32 burst_abort_next_frame_mismatch_cnt;
2636 __le32 burst_abort_missing_next_frame_cnt;
2637 __le32 cts_timeout_collision;
2638 __le32 ack_or_ba_timeout_collision;
2639 struct statistics_tx_non_phy_agg agg;
Wey-Yi Guy470356b2010-04-30 11:35:15 -07002640 /*
2641 * "tx_power" are optional parameters provided by uCode,
2642 * 6000 series is the only device provide the information,
2643 * Those are reserved fields for all the other devices
2644 */
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -07002645 struct statistics_tx_power tx_power;
2646 __le32 reserved1;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002647} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002648
Zhu Yib481de92007-09-25 17:54:57 -07002649
2650struct statistics_div {
2651 __le32 tx_on_a;
2652 __le32 tx_on_b;
2653 __le32 exec_time;
2654 __le32 probe_time;
Zhu Yib481de92007-09-25 17:54:57 -07002655 __le32 reserved1;
2656 __le32 reserved2;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002657} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002658
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002659struct statistics_general_common {
Wey-Yi Guyf0118a42010-01-08 10:04:42 -08002660 __le32 temperature; /* radio temperature */
Wey-Yi Guy7f62cd12011-11-30 09:41:22 -08002661 __le32 temperature_m; /* radio voltage */
Zhu Yib481de92007-09-25 17:54:57 -07002662 struct statistics_dbg dbg;
2663 __le32 sleep_time;
2664 __le32 slots_out;
2665 __le32 slots_idle;
2666 __le32 ttl_timestamp;
2667 struct statistics_div div;
Zhu Yib481de92007-09-25 17:54:57 -07002668 __le32 rx_enable_counter;
Wey-Yi Guy11fc5242010-01-15 13:43:35 -08002669 /*
2670 * num_of_sos_states:
2671 * count the number of times we have to re-tune
2672 * in order to get out of bad PHY status
2673 */
2674 __le32 num_of_sos_states;
John W. Linvilleda22f792010-07-26 15:04:12 -04002675} __packed;
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002676
2677struct statistics_bt_activity {
2678 /* Tx statistics */
2679 __le32 hi_priority_tx_req_cnt;
2680 __le32 hi_priority_tx_denied_cnt;
2681 __le32 lo_priority_tx_req_cnt;
2682 __le32 lo_priority_tx_denied_cnt;
2683 /* Rx statistics */
2684 __le32 hi_priority_rx_req_cnt;
2685 __le32 hi_priority_rx_denied_cnt;
2686 __le32 lo_priority_rx_req_cnt;
2687 __le32 lo_priority_rx_denied_cnt;
John W. Linvilleda22f792010-07-26 15:04:12 -04002688} __packed;
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002689
2690struct statistics_general {
2691 struct statistics_general_common common;
2692 __le32 reserved2;
2693 __le32 reserved3;
John W. Linvilleda22f792010-07-26 15:04:12 -04002694} __packed;
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002695
2696struct statistics_general_bt {
2697 struct statistics_general_common common;
2698 struct statistics_bt_activity activity;
Zhu Yib481de92007-09-25 17:54:57 -07002699 __le32 reserved2;
2700 __le32 reserved3;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002701} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002702
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08002703#define UCODE_STATISTICS_CLEAR_MSK (0x1 << 0)
2704#define UCODE_STATISTICS_FREQUENCY_MSK (0x1 << 1)
2705#define UCODE_STATISTICS_NARROW_BAND_MSK (0x1 << 2)
2706
Zhu Yib481de92007-09-25 17:54:57 -07002707/*
2708 * REPLY_STATISTICS_CMD = 0x9c,
Wey-Yi Guy767d0552010-08-23 07:56:53 -07002709 * all devices identical.
Zhu Yib481de92007-09-25 17:54:57 -07002710 *
2711 * This command triggers an immediate response containing uCode statistics.
2712 * The response is in the same format as STATISTICS_NOTIFICATION 0x9d, below.
2713 *
2714 * If the CLEAR_STATS configuration flag is set, uCode will clear its
2715 * internal copy of the statistics (counters) after issuing the response.
2716 * This flag does not affect STATISTICS_NOTIFICATIONs after beacons (see below).
2717 *
2718 * If the DISABLE_NOTIF configuration flag is set, uCode will not issue
2719 * STATISTICS_NOTIFICATIONs after received beacons (see below). This flag
2720 * does not affect the response to the REPLY_STATISTICS_CMD 0x9c itself.
2721 */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08002722#define IWL_STATS_CONF_CLEAR_STATS cpu_to_le32(0x1) /* see above */
2723#define IWL_STATS_CONF_DISABLE_NOTIF cpu_to_le32(0x2)/* see above */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08002724struct iwl_statistics_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07002725 __le32 configuration_flags; /* IWL_STATS_CONF_* */
Eric Dumazetba2d3582010-06-02 18:10:09 +00002726} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002727
2728/*
2729 * STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
2730 *
2731 * By default, uCode issues this notification after receiving a beacon
2732 * while associated. To disable this behavior, set DISABLE_NOTIF flag in the
2733 * REPLY_STATISTICS_CMD 0x9c, above.
2734 *
2735 * Statistics counters continue to increment beacon after beacon, but are
2736 * cleared when changing channels or when driver issues REPLY_STATISTICS_CMD
2737 * 0x9c with CLEAR_STATS bit set (see above).
2738 *
2739 * uCode also issues this notification during scans. uCode clears statistics
2740 * appropriately so that each notification contains statistics for only the
2741 * one channel that has just been scanned.
2742 */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08002743#define STATISTICS_REPLY_FLG_BAND_24G_MSK cpu_to_le32(0x2)
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002744#define STATISTICS_REPLY_FLG_HT40_MODE_MSK cpu_to_le32(0x8)
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002745
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08002746struct iwl_notif_statistics {
Zhu Yib481de92007-09-25 17:54:57 -07002747 __le32 flag;
2748 struct statistics_rx rx;
2749 struct statistics_tx tx;
2750 struct statistics_general general;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002751} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002752
Wey-Yi Guy325322e2010-07-14 08:07:27 -07002753struct iwl_bt_notif_statistics {
2754 __le32 flag;
2755 struct statistics_rx_bt rx;
2756 struct statistics_tx tx;
2757 struct statistics_general_bt general;
John W. Linvilleda22f792010-07-26 15:04:12 -04002758} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002759
2760/*
2761 * MISSED_BEACONS_NOTIFICATION = 0xa2 (notification only, not a command)
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002762 *
2763 * uCode send MISSED_BEACONS_NOTIFICATION to driver when detect beacon missed
2764 * in regardless of how many missed beacons, which mean when driver receive the
2765 * notification, inside the command, it can find all the beacons information
2766 * which include number of total missed beacons, number of consecutive missed
2767 * beacons, number of beacons received and number of beacons expected to
2768 * receive.
2769 *
2770 * If uCode detected consecutive_missed_beacons > 5, it will reset the radio
2771 * in order to bring the radio/PHY back to working state; which has no relation
2772 * to when driver will perform sensitivity calibration.
2773 *
2774 * Driver should set it own missed_beacon_threshold to decide when to perform
2775 * sensitivity calibration based on number of consecutive missed beacons in
2776 * order to improve overall performance, especially in noisy environment.
2777 *
Zhu Yib481de92007-09-25 17:54:57 -07002778 */
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002779
2780#define IWL_MISSED_BEACON_THRESHOLD_MIN (1)
2781#define IWL_MISSED_BEACON_THRESHOLD_DEF (5)
2782#define IWL_MISSED_BEACON_THRESHOLD_MAX IWL_MISSED_BEACON_THRESHOLD_DEF
Zhu Yib481de92007-09-25 17:54:57 -07002783
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08002784struct iwl_missed_beacon_notif {
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002785 __le32 consecutive_missed_beacons;
Zhu Yib481de92007-09-25 17:54:57 -07002786 __le32 total_missed_becons;
2787 __le32 num_expected_beacons;
2788 __le32 num_recvd_beacons;
Eric Dumazetba2d3582010-06-02 18:10:09 +00002789} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07002790
Ben Cahillf7d09d72007-11-29 11:09:51 +08002791
Zhu Yib481de92007-09-25 17:54:57 -07002792/******************************************************************************
2793 * (11)
2794 * Rx Calibration Commands:
2795 *
Ben Cahillf7d09d72007-11-29 11:09:51 +08002796 * With the uCode used for open source drivers, most Tx calibration (except
2797 * for Tx Power) and most Rx calibration is done by uCode during the
2798 * "initialize" phase of uCode boot. Driver must calibrate only:
2799 *
2800 * 1) Tx power (depends on temperature), described elsewhere
2801 * 2) Receiver gain balance (optimize MIMO, and detect disconnected antennas)
2802 * 3) Receiver sensitivity (to optimize signal detection)
2803 *
Zhu Yib481de92007-09-25 17:54:57 -07002804 *****************************************************************************/
2805
Ben Cahillf7d09d72007-11-29 11:09:51 +08002806/**
2807 * SENSITIVITY_CMD = 0xa8 (command, has simple generic response)
2808 *
2809 * This command sets up the Rx signal detector for a sensitivity level that
2810 * is high enough to lock onto all signals within the associated network,
2811 * but low enough to ignore signals that are below a certain threshold, so as
2812 * not to have too many "false alarms". False alarms are signals that the
2813 * Rx DSP tries to lock onto, but then discards after determining that they
2814 * are noise.
2815 *
2816 * The optimum number of false alarms is between 5 and 50 per 200 TUs
2817 * (200 * 1024 uSecs, i.e. 204.8 milliseconds) of actual Rx time (i.e.
2818 * time listening, not transmitting). Driver must adjust sensitivity so that
2819 * the ratio of actual false alarms to actual Rx time falls within this range.
2820 *
2821 * While associated, uCode delivers STATISTICS_NOTIFICATIONs after each
2822 * received beacon. These provide information to the driver to analyze the
2823 * sensitivity. Don't analyze statistics that come in from scanning, or any
2824 * other non-associated-network source. Pertinent statistics include:
2825 *
2826 * From "general" statistics (struct statistics_rx_non_phy):
2827 *
2828 * (beacon_energy_[abc] & 0x0FF00) >> 8 (unsigned, higher value is lower level)
2829 * Measure of energy of desired signal. Used for establishing a level
2830 * below which the device does not detect signals.
2831 *
2832 * (beacon_silence_rssi_[abc] & 0x0FF00) >> 8 (unsigned, units in dB)
2833 * Measure of background noise in silent period after beacon.
2834 *
2835 * channel_load
2836 * uSecs of actual Rx time during beacon period (varies according to
2837 * how much time was spent transmitting).
2838 *
2839 * From "cck" and "ofdm" statistics (struct statistics_rx_phy), separately:
2840 *
2841 * false_alarm_cnt
2842 * Signal locks abandoned early (before phy-level header).
2843 *
2844 * plcp_err
2845 * Signal locks abandoned late (during phy-level header).
2846 *
2847 * NOTE: Both false_alarm_cnt and plcp_err increment monotonically from
2848 * beacon to beacon, i.e. each value is an accumulation of all errors
2849 * before and including the latest beacon. Values will wrap around to 0
2850 * after counting up to 2^32 - 1. Driver must differentiate vs.
2851 * previous beacon's values to determine # false alarms in the current
2852 * beacon period.
2853 *
2854 * Total number of false alarms = false_alarms + plcp_errs
2855 *
2856 * For OFDM, adjust the following table entries in struct iwl_sensitivity_cmd
2857 * (notice that the start points for OFDM are at or close to settings for
2858 * maximum sensitivity):
2859 *
2860 * START / MIN / MAX
2861 * HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX 90 / 85 / 120
2862 * HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX 170 / 170 / 210
2863 * HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX 105 / 105 / 140
2864 * HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX 220 / 220 / 270
2865 *
2866 * If actual rate of OFDM false alarms (+ plcp_errors) is too high
2867 * (greater than 50 for each 204.8 msecs listening), reduce sensitivity
2868 * by *adding* 1 to all 4 of the table entries above, up to the max for
2869 * each entry. Conversely, if false alarm rate is too low (less than 5
2870 * for each 204.8 msecs listening), *subtract* 1 from each entry to
2871 * increase sensitivity.
2872 *
2873 * For CCK sensitivity, keep track of the following:
2874 *
2875 * 1). 20-beacon history of maximum background noise, indicated by
2876 * (beacon_silence_rssi_[abc] & 0x0FF00), units in dB, across the
2877 * 3 receivers. For any given beacon, the "silence reference" is
2878 * the maximum of last 60 samples (20 beacons * 3 receivers).
2879 *
2880 * 2). 10-beacon history of strongest signal level, as indicated
2881 * by (beacon_energy_[abc] & 0x0FF00) >> 8, across the 3 receivers,
2882 * i.e. the strength of the signal through the best receiver at the
2883 * moment. These measurements are "upside down", with lower values
2884 * for stronger signals, so max energy will be *minimum* value.
2885 *
2886 * Then for any given beacon, the driver must determine the *weakest*
2887 * of the strongest signals; this is the minimum level that needs to be
2888 * successfully detected, when using the best receiver at the moment.
2889 * "Max cck energy" is the maximum (higher value means lower energy!)
2890 * of the last 10 minima. Once this is determined, driver must add
2891 * a little margin by adding "6" to it.
2892 *
2893 * 3). Number of consecutive beacon periods with too few false alarms.
2894 * Reset this to 0 at the first beacon period that falls within the
2895 * "good" range (5 to 50 false alarms per 204.8 milliseconds rx).
2896 *
2897 * Then, adjust the following CCK table entries in struct iwl_sensitivity_cmd
2898 * (notice that the start points for CCK are at maximum sensitivity):
2899 *
2900 * START / MIN / MAX
2901 * HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX 125 / 125 / 200
2902 * HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX 200 / 200 / 400
2903 * HD_MIN_ENERGY_CCK_DET_INDEX 100 / 0 / 100
2904 *
2905 * If actual rate of CCK false alarms (+ plcp_errors) is too high
2906 * (greater than 50 for each 204.8 msecs listening), method for reducing
2907 * sensitivity is:
2908 *
2909 * 1) *Add* 3 to value in HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX,
2910 * up to max 400.
2911 *
2912 * 2) If current value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX is < 160,
2913 * sensitivity has been reduced a significant amount; bring it up to
2914 * a moderate 161. Otherwise, *add* 3, up to max 200.
2915 *
2916 * 3) a) If current value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX is > 160,
2917 * sensitivity has been reduced only a moderate or small amount;
2918 * *subtract* 2 from value in HD_MIN_ENERGY_CCK_DET_INDEX,
2919 * down to min 0. Otherwise (if gain has been significantly reduced),
2920 * don't change the HD_MIN_ENERGY_CCK_DET_INDEX value.
2921 *
2922 * b) Save a snapshot of the "silence reference".
2923 *
2924 * If actual rate of CCK false alarms (+ plcp_errors) is too low
2925 * (less than 5 for each 204.8 msecs listening), method for increasing
2926 * sensitivity is used only if:
2927 *
2928 * 1a) Previous beacon did not have too many false alarms
2929 * 1b) AND difference between previous "silence reference" and current
2930 * "silence reference" (prev - current) is 2 or more,
2931 * OR 2) 100 or more consecutive beacon periods have had rate of
2932 * less than 5 false alarms per 204.8 milliseconds rx time.
2933 *
2934 * Method for increasing sensitivity:
2935 *
2936 * 1) *Subtract* 3 from value in HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX,
2937 * down to min 125.
2938 *
2939 * 2) *Subtract* 3 from value in HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX,
2940 * down to min 200.
2941 *
2942 * 3) *Add* 2 to value in HD_MIN_ENERGY_CCK_DET_INDEX, up to max 100.
2943 *
2944 * If actual rate of CCK false alarms (+ plcp_errors) is within good range
2945 * (between 5 and 50 for each 204.8 msecs listening):
2946 *
2947 * 1) Save a snapshot of the silence reference.
2948 *
2949 * 2) If previous beacon had too many CCK false alarms (+ plcp_errors),
2950 * give some extra margin to energy threshold by *subtracting* 8
2951 * from value in HD_MIN_ENERGY_CCK_DET_INDEX.
2952 *
2953 * For all cases (too few, too many, good range), make sure that the CCK
2954 * detection threshold (energy) is below the energy level for robust
2955 * detection over the past 10 beacon periods, the "Max cck energy".
2956 * Lower values mean higher energy; this means making sure that the value
2957 * in HD_MIN_ENERGY_CCK_DET_INDEX is at or *above* "Max cck energy".
2958 *
Ben Cahillf7d09d72007-11-29 11:09:51 +08002959 */
Zhu Yib481de92007-09-25 17:54:57 -07002960
Ben Cahillf7d09d72007-11-29 11:09:51 +08002961/*
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07002962 * Table entries in SENSITIVITY_CMD (struct iwl_sensitivity_cmd)
Ben Cahillf7d09d72007-11-29 11:09:51 +08002963 */
2964#define HD_TABLE_SIZE (11) /* number of entries */
2965#define HD_MIN_ENERGY_CCK_DET_INDEX (0) /* table indexes */
2966#define HD_MIN_ENERGY_OFDM_DET_INDEX (1)
2967#define HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX (2)
2968#define HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX (3)
2969#define HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX (4)
2970#define HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX (5)
2971#define HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX (6)
2972#define HD_BARKER_CORR_TH_ADD_MIN_INDEX (7)
2973#define HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX (8)
2974#define HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX (9)
2975#define HD_OFDM_ENERGY_TH_IN_INDEX (10)
2976
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002977/*
2978 * Additional table entries in enhance SENSITIVITY_CMD
2979 */
2980#define HD_INA_NON_SQUARE_DET_OFDM_INDEX (11)
2981#define HD_INA_NON_SQUARE_DET_CCK_INDEX (12)
2982#define HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX (13)
2983#define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX (14)
2984#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX (15)
2985#define HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX (16)
2986#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX (17)
2987#define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX (18)
2988#define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX (19)
2989#define HD_CCK_NON_SQUARE_DET_SLOPE_INDEX (20)
2990#define HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX (21)
2991#define HD_RESERVED (22)
2992
2993/* number of entries for enhanced tbl */
2994#define ENHANCE_HD_TABLE_SIZE (23)
2995
2996/* number of additional entries for enhanced tbl */
2997#define ENHANCE_HD_TABLE_ENTRIES (ENHANCE_HD_TABLE_SIZE - HD_TABLE_SIZE)
2998
Wey-Yi Guyae7f9a72011-07-23 10:24:50 -07002999#define HD_INA_NON_SQUARE_DET_OFDM_DATA_V1 cpu_to_le16(0)
3000#define HD_INA_NON_SQUARE_DET_CCK_DATA_V1 cpu_to_le16(0)
3001#define HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V1 cpu_to_le16(0)
3002#define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V1 cpu_to_le16(668)
3003#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1 cpu_to_le16(4)
3004#define HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V1 cpu_to_le16(486)
3005#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V1 cpu_to_le16(37)
3006#define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V1 cpu_to_le16(853)
3007#define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1 cpu_to_le16(4)
3008#define HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V1 cpu_to_le16(476)
3009#define HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V1 cpu_to_le16(99)
3010
3011#define HD_INA_NON_SQUARE_DET_OFDM_DATA_V2 cpu_to_le16(1)
3012#define HD_INA_NON_SQUARE_DET_CCK_DATA_V2 cpu_to_le16(1)
3013#define HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V2 cpu_to_le16(1)
3014#define HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V2 cpu_to_le16(600)
3015#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2 cpu_to_le16(40)
3016#define HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V2 cpu_to_le16(486)
3017#define HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V2 cpu_to_le16(45)
3018#define HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V2 cpu_to_le16(853)
3019#define HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2 cpu_to_le16(60)
3020#define HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V2 cpu_to_le16(476)
3021#define HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V2 cpu_to_le16(99)
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07003022
3023
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003024/* Control field in struct iwl_sensitivity_cmd */
Harvey Harrison51e9bf52008-11-26 13:12:52 -08003025#define SENSITIVITY_CMD_CONTROL_DEFAULT_TABLE cpu_to_le16(0)
3026#define SENSITIVITY_CMD_CONTROL_WORK_TABLE cpu_to_le16(1)
Ben Cahillf7d09d72007-11-29 11:09:51 +08003027
3028/**
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003029 * struct iwl_sensitivity_cmd
Ben Cahillf7d09d72007-11-29 11:09:51 +08003030 * @control: (1) updates working table, (0) updates default table
3031 * @table: energy threshold values, use HD_* as index into table
3032 *
3033 * Always use "1" in "control" to update uCode's working table and DSP.
3034 */
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003035struct iwl_sensitivity_cmd {
Ben Cahillf7d09d72007-11-29 11:09:51 +08003036 __le16 control; /* always use "1" */
3037 __le16 table[HD_TABLE_SIZE]; /* use HD_* as index */
Eric Dumazetba2d3582010-06-02 18:10:09 +00003038} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07003039
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07003040/*
3041 *
3042 */
3043struct iwl_enhance_sensitivity_cmd {
3044 __le16 control; /* always use "1" */
3045 __le16 enhance_table[ENHANCE_HD_TABLE_SIZE]; /* use HD_* as index */
John W. Linville0e954092010-07-14 10:37:32 -04003046} __packed;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07003047
Ben Cahillf7d09d72007-11-29 11:09:51 +08003048
3049/**
3050 * REPLY_PHY_CALIBRATION_CMD = 0xb0 (command, has simple generic response)
3051 *
Wey-Yi Guy767d0552010-08-23 07:56:53 -07003052 * This command sets the relative gains of agn device's 3 radio receiver chains.
Ben Cahillf7d09d72007-11-29 11:09:51 +08003053 *
3054 * After the first association, driver should accumulate signal and noise
3055 * statistics from the STATISTICS_NOTIFICATIONs that follow the first 20
3056 * beacons from the associated network (don't collect statistics that come
3057 * in from scanning, or any other non-network source).
3058 *
3059 * DISCONNECTED ANTENNA:
3060 *
3061 * Driver should determine which antennas are actually connected, by comparing
3062 * average beacon signal levels for the 3 Rx chains. Accumulate (add) the
3063 * following values over 20 beacons, one accumulator for each of the chains
3064 * a/b/c, from struct statistics_rx_non_phy:
3065 *
3066 * beacon_rssi_[abc] & 0x0FF (unsigned, units in dB)
3067 *
3068 * Find the strongest signal from among a/b/c. Compare the other two to the
3069 * strongest. If any signal is more than 15 dB (times 20, unless you
3070 * divide the accumulated values by 20) below the strongest, the driver
3071 * considers that antenna to be disconnected, and should not try to use that
3072 * antenna/chain for Rx or Tx. If both A and B seem to be disconnected,
3073 * driver should declare the stronger one as connected, and attempt to use it
3074 * (A and B are the only 2 Tx chains!).
3075 *
3076 *
3077 * RX BALANCE:
3078 *
3079 * Driver should balance the 3 receivers (but just the ones that are connected
3080 * to antennas, see above) for gain, by comparing the average signal levels
3081 * detected during the silence after each beacon (background noise).
3082 * Accumulate (add) the following values over 20 beacons, one accumulator for
3083 * each of the chains a/b/c, from struct statistics_rx_non_phy:
3084 *
3085 * beacon_silence_rssi_[abc] & 0x0FF (unsigned, units in dB)
3086 *
3087 * Find the weakest background noise level from among a/b/c. This Rx chain
3088 * will be the reference, with 0 gain adjustment. Attenuate other channels by
3089 * finding noise difference:
3090 *
3091 * (accum_noise[i] - accum_noise[reference]) / 30
3092 *
3093 * The "30" adjusts the dB in the 20 accumulated samples to units of 1.5 dB.
3094 * For use in diff_gain_[abc] fields of struct iwl_calibration_cmd, the
3095 * driver should limit the difference results to a range of 0-3 (0-4.5 dB),
3096 * and set bit 2 to indicate "reduce gain". The value for the reference
3097 * (weakest) chain should be "0".
3098 *
3099 * diff_gain_[abc] bit fields:
3100 * 2: (1) reduce gain, (0) increase gain
3101 * 1-0: amount of gain, units of 1.5 dB
3102 */
3103
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003104/* Phy calibration command for series */
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07003105enum {
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003106 IWL_PHY_CALIBRATE_DC_CMD = 8,
3107 IWL_PHY_CALIBRATE_LO_CMD = 9,
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003108 IWL_PHY_CALIBRATE_TX_IQ_CMD = 11,
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003109 IWL_PHY_CALIBRATE_CRYSTAL_FRQ_CMD = 15,
3110 IWL_PHY_CALIBRATE_BASE_BAND_CMD = 16,
3111 IWL_PHY_CALIBRATE_TX_IQ_PERD_CMD = 17,
Shanyu Zhaobf53f932010-09-21 16:54:01 -07003112 IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD = 18,
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07003113};
3114
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07003115/* This enum defines the bitmap of various calibrations to enable in both
3116 * init ucode and runtime ucode through CALIBRATION_CFG_CMD.
3117 */
3118enum iwl_ucode_calib_cfg {
Wey-Yi Guy45d50022011-07-07 12:24:46 -07003119 IWL_CALIB_CFG_RX_BB_IDX = BIT(0),
3120 IWL_CALIB_CFG_DC_IDX = BIT(1),
3121 IWL_CALIB_CFG_LO_IDX = BIT(2),
3122 IWL_CALIB_CFG_TX_IQ_IDX = BIT(3),
3123 IWL_CALIB_CFG_RX_IQ_IDX = BIT(4),
3124 IWL_CALIB_CFG_NOISE_IDX = BIT(5),
3125 IWL_CALIB_CFG_CRYSTAL_IDX = BIT(6),
3126 IWL_CALIB_CFG_TEMPERATURE_IDX = BIT(7),
3127 IWL_CALIB_CFG_PAPD_IDX = BIT(8),
3128 IWL_CALIB_CFG_SENSITIVITY_IDX = BIT(9),
3129 IWL_CALIB_CFG_TX_PWR_IDX = BIT(10),
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07003130};
3131
Wey-Yi Guyad3f7122011-07-08 14:29:47 -07003132#define IWL_CALIB_INIT_CFG_ALL cpu_to_le32(IWL_CALIB_CFG_RX_BB_IDX | \
3133 IWL_CALIB_CFG_DC_IDX | \
3134 IWL_CALIB_CFG_LO_IDX | \
3135 IWL_CALIB_CFG_TX_IQ_IDX | \
3136 IWL_CALIB_CFG_RX_IQ_IDX | \
Wey-Yi Guya944aa92011-09-06 09:31:16 -07003137 IWL_CALIB_CFG_CRYSTAL_IDX)
Wey-Yi Guyad3f7122011-07-08 14:29:47 -07003138
Wey-Yi Guyaf4dc882011-10-04 07:10:19 -07003139#define IWL_CALIB_RT_CFG_ALL cpu_to_le32(IWL_CALIB_CFG_RX_BB_IDX | \
3140 IWL_CALIB_CFG_DC_IDX | \
3141 IWL_CALIB_CFG_LO_IDX | \
3142 IWL_CALIB_CFG_TX_IQ_IDX | \
3143 IWL_CALIB_CFG_RX_IQ_IDX | \
3144 IWL_CALIB_CFG_TEMPERATURE_IDX | \
3145 IWL_CALIB_CFG_PAPD_IDX | \
3146 IWL_CALIB_CFG_TX_PWR_IDX | \
3147 IWL_CALIB_CFG_CRYSTAL_IDX)
3148
Wey-Yi Guyad3f7122011-07-08 14:29:47 -07003149#define IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK cpu_to_le32(BIT(0))
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07003150
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003151struct iwl_calib_cfg_elmnt_s {
3152 __le32 is_enable;
3153 __le32 start;
3154 __le32 send_res;
3155 __le32 apply_res;
3156 __le32 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003157} __packed;
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003158
3159struct iwl_calib_cfg_status_s {
3160 struct iwl_calib_cfg_elmnt_s once;
3161 struct iwl_calib_cfg_elmnt_s perd;
3162 __le32 flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003163} __packed;
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003164
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003165struct iwl_calib_cfg_cmd {
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003166 struct iwl_calib_cfg_status_s ucd_calib_cfg;
3167 struct iwl_calib_cfg_status_s drv_calib_cfg;
3168 __le32 reserved1;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003169} __packed;
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003170
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003171struct iwl_calib_hdr {
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003172 u8 op_code;
3173 u8 first_group;
3174 u8 groups_num;
3175 u8 data_valid;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003176} __packed;
Tomas Winkler7c616cb2008-05-29 16:35:05 +08003177
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003178struct iwl_calib_cmd {
3179 struct iwl_calib_hdr hdr;
Tomas Winklerbe5d56e2008-10-08 09:37:27 +08003180 u8 data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003181} __packed;
Tomas Winklerbe5d56e2008-10-08 09:37:27 +08003182
Tomas Winkler0d950d82008-11-25 13:36:01 -08003183struct iwl_calib_xtal_freq_cmd {
3184 struct iwl_calib_hdr hdr;
3185 u8 cap_pin1;
3186 u8 cap_pin2;
3187 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003188} __packed;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07003189
Wey-Yi Guy2e277992011-07-08 14:29:48 -07003190#define DEFAULT_RADIO_SENSOR_OFFSET cpu_to_le16(2700)
Shanyu Zhaobf53f932010-09-21 16:54:01 -07003191struct iwl_calib_temperature_offset_cmd {
3192 struct iwl_calib_hdr hdr;
Wey-Yi Guy2e277992011-07-08 14:29:48 -07003193 __le16 radio_sensor_offset;
3194 __le16 reserved;
Shanyu Zhaobf53f932010-09-21 16:54:01 -07003195} __packed;
3196
Wey-Yi Guyc6f30342011-09-15 11:46:50 -07003197struct iwl_calib_temperature_offset_v2_cmd {
3198 struct iwl_calib_hdr hdr;
3199 __le16 radio_sensor_offset_high;
3200 __le16 radio_sensor_offset_low;
3201 __le16 burntVoltageRef;
3202 __le16 reserved;
3203} __packed;
3204
Tomas Winkler0d950d82008-11-25 13:36:01 -08003205/* IWL_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD */
3206struct iwl_calib_chain_noise_reset_cmd {
3207 struct iwl_calib_hdr hdr;
3208 u8 data[0];
3209};
3210
3211/* IWL_PHY_CALIBRATE_CHAIN_NOISE_GAIN_CMD */
Tomas Winklerf69f42a2008-10-23 23:48:52 -07003212struct iwl_calib_chain_noise_gain_cmd {
Tomas Winkler0d950d82008-11-25 13:36:01 -08003213 struct iwl_calib_hdr hdr;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07003214 u8 delta_gain_1;
3215 u8 delta_gain_2;
Tomas Winkler0d950d82008-11-25 13:36:01 -08003216 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003217} __packed;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07003218
Zhu Yib481de92007-09-25 17:54:57 -07003219/******************************************************************************
3220 * (12)
3221 * Miscellaneous Commands:
3222 *
3223 *****************************************************************************/
3224
3225/*
3226 * LEDs Command & Response
3227 * REPLY_LEDS_CMD = 0x48 (command, has simple generic response)
3228 *
3229 * For each of 3 possible LEDs (Activity/Link/Tech, selected by "id" field),
3230 * this command turns it on or off, or sets up a periodic blinking cycle.
3231 */
Tomas Winklerec1a7462008-07-11 11:53:37 +08003232struct iwl_led_cmd {
Zhu Yib481de92007-09-25 17:54:57 -07003233 __le32 interval; /* "interval" in uSec */
3234 u8 id; /* 1: Activity, 2: Link, 3: Tech */
3235 u8 off; /* # intervals off while blinking;
3236 * "0", with >0 "on" value, turns LED on */
3237 u8 on; /* # intervals on while blinking;
3238 * "0", regardless of "off", turns LED off */
3239 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003240} __packed;
Zhu Yib481de92007-09-25 17:54:57 -07003241
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003242/*
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003243 * station priority table entries
3244 * also used as potential "events" value for both
3245 * COEX_MEDIUM_NOTIFICATION and COEX_EVENT_CMD
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003246 */
Wey-Yi Guy1933ac42009-10-30 14:36:18 -07003247
3248/*
3249 * COEX events entry flag masks
3250 * RP - Requested Priority
3251 * WP - Win Medium Priority: priority assigned when the contention has been won
3252 */
3253#define COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG (0x1)
3254#define COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG (0x2)
3255#define COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG (0x4)
3256
3257#define COEX_CU_UNASSOC_IDLE_RP 4
3258#define COEX_CU_UNASSOC_MANUAL_SCAN_RP 4
3259#define COEX_CU_UNASSOC_AUTO_SCAN_RP 4
3260#define COEX_CU_CALIBRATION_RP 4
3261#define COEX_CU_PERIODIC_CALIBRATION_RP 4
3262#define COEX_CU_CONNECTION_ESTAB_RP 4
3263#define COEX_CU_ASSOCIATED_IDLE_RP 4
3264#define COEX_CU_ASSOC_MANUAL_SCAN_RP 4
3265#define COEX_CU_ASSOC_AUTO_SCAN_RP 4
3266#define COEX_CU_ASSOC_ACTIVE_LEVEL_RP 4
3267#define COEX_CU_RF_ON_RP 6
3268#define COEX_CU_RF_OFF_RP 4
3269#define COEX_CU_STAND_ALONE_DEBUG_RP 6
3270#define COEX_CU_IPAN_ASSOC_LEVEL_RP 4
3271#define COEX_CU_RSRVD1_RP 4
3272#define COEX_CU_RSRVD2_RP 4
3273
3274#define COEX_CU_UNASSOC_IDLE_WP 3
3275#define COEX_CU_UNASSOC_MANUAL_SCAN_WP 3
3276#define COEX_CU_UNASSOC_AUTO_SCAN_WP 3
3277#define COEX_CU_CALIBRATION_WP 3
3278#define COEX_CU_PERIODIC_CALIBRATION_WP 3
3279#define COEX_CU_CONNECTION_ESTAB_WP 3
3280#define COEX_CU_ASSOCIATED_IDLE_WP 3
3281#define COEX_CU_ASSOC_MANUAL_SCAN_WP 3
3282#define COEX_CU_ASSOC_AUTO_SCAN_WP 3
3283#define COEX_CU_ASSOC_ACTIVE_LEVEL_WP 3
3284#define COEX_CU_RF_ON_WP 3
3285#define COEX_CU_RF_OFF_WP 3
3286#define COEX_CU_STAND_ALONE_DEBUG_WP 6
3287#define COEX_CU_IPAN_ASSOC_LEVEL_WP 3
3288#define COEX_CU_RSRVD1_WP 3
3289#define COEX_CU_RSRVD2_WP 3
3290
3291#define COEX_UNASSOC_IDLE_FLAGS 0
3292#define COEX_UNASSOC_MANUAL_SCAN_FLAGS \
3293 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3294 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3295#define COEX_UNASSOC_AUTO_SCAN_FLAGS \
3296 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3297 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3298#define COEX_CALIBRATION_FLAGS \
3299 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3300 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3301#define COEX_PERIODIC_CALIBRATION_FLAGS 0
3302/*
3303 * COEX_CONNECTION_ESTAB:
3304 * we need DELAY_MEDIUM_FREE_NTFY to let WiMAX disconnect from network.
3305 */
3306#define COEX_CONNECTION_ESTAB_FLAGS \
3307 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3308 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
3309 COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
3310#define COEX_ASSOCIATED_IDLE_FLAGS 0
3311#define COEX_ASSOC_MANUAL_SCAN_FLAGS \
3312 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3313 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3314#define COEX_ASSOC_AUTO_SCAN_FLAGS \
3315 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3316 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3317#define COEX_ASSOC_ACTIVE_LEVEL_FLAGS 0
3318#define COEX_RF_ON_FLAGS 0
3319#define COEX_RF_OFF_FLAGS 0
3320#define COEX_STAND_ALONE_DEBUG_FLAGS \
3321 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3322 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG)
3323#define COEX_IPAN_ASSOC_LEVEL_FLAGS \
3324 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3325 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
3326 COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
3327#define COEX_RSRVD1_FLAGS 0
3328#define COEX_RSRVD2_FLAGS 0
3329/*
3330 * COEX_CU_RF_ON is the event wrapping all radio ownership.
3331 * We need DELAY_MEDIUM_FREE_NTFY to let WiMAX disconnect from network.
3332 */
3333#define COEX_CU_RF_ON_FLAGS \
3334 (COEX_EVT_FLAG_MEDIUM_FREE_NTFY_FLG | \
3335 COEX_EVT_FLAG_MEDIUM_ACTV_NTFY_FLG | \
3336 COEX_EVT_FLAG_DELAY_MEDIUM_FREE_NTFY_FLG)
3337
3338
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003339enum {
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003340 /* un-association part */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003341 COEX_UNASSOC_IDLE = 0,
3342 COEX_UNASSOC_MANUAL_SCAN = 1,
3343 COEX_UNASSOC_AUTO_SCAN = 2,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003344 /* calibration */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003345 COEX_CALIBRATION = 3,
3346 COEX_PERIODIC_CALIBRATION = 4,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003347 /* connection */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003348 COEX_CONNECTION_ESTAB = 5,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003349 /* association part */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003350 COEX_ASSOCIATED_IDLE = 6,
3351 COEX_ASSOC_MANUAL_SCAN = 7,
3352 COEX_ASSOC_AUTO_SCAN = 8,
3353 COEX_ASSOC_ACTIVE_LEVEL = 9,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003354 /* RF ON/OFF */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003355 COEX_RF_ON = 10,
3356 COEX_RF_OFF = 11,
3357 COEX_STAND_ALONE_DEBUG = 12,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003358 /* IPAN */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003359 COEX_IPAN_ASSOC_LEVEL = 13,
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003360 /* reserved */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003361 COEX_RSRVD1 = 14,
3362 COEX_RSRVD2 = 15,
3363 COEX_NUM_OF_EVENTS = 16
3364};
3365
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003366/*
3367 * Coexistence WIFI/WIMAX Command
3368 * COEX_PRIORITY_TABLE_CMD = 0x5a
3369 *
3370 */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003371struct iwl_wimax_coex_event_entry {
3372 u8 request_prio;
3373 u8 win_medium_prio;
3374 u8 reserved;
3375 u8 flags;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003376} __packed;
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003377
3378/* COEX flag masks */
3379
Tomas Winklera96a27f2008-10-23 23:48:56 -07003380/* Station table is valid */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003381#define COEX_FLAGS_STA_TABLE_VALID_MSK (0x1)
Tomas Winklera96a27f2008-10-23 23:48:56 -07003382/* UnMask wake up src at unassociated sleep */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003383#define COEX_FLAGS_UNASSOC_WA_UNMASK_MSK (0x4)
Tomas Winklera96a27f2008-10-23 23:48:56 -07003384/* UnMask wake up src at associated sleep */
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003385#define COEX_FLAGS_ASSOC_WA_UNMASK_MSK (0x8)
3386/* Enable CoEx feature. */
3387#define COEX_FLAGS_COEX_ENABLE_MSK (0x80)
3388
3389struct iwl_wimax_coex_cmd {
3390 u8 flags;
3391 u8 reserved[3];
3392 struct iwl_wimax_coex_event_entry sta_prio[COEX_NUM_OF_EVENTS];
Eric Dumazetba2d3582010-06-02 18:10:09 +00003393} __packed;
Ron Rindjunsky9636e582008-05-15 13:54:14 +08003394
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003395/*
3396 * Coexistence MEDIUM NOTIFICATION
3397 * COEX_MEDIUM_NOTIFICATION = 0x5b
3398 *
3399 * notification from uCode to host to indicate medium changes
3400 *
3401 */
3402/*
3403 * status field
3404 * bit 0 - 2: medium status
3405 * bit 3: medium change indication
3406 * bit 4 - 31: reserved
3407 */
3408/* status option values, (0 - 2 bits) */
3409#define COEX_MEDIUM_BUSY (0x0) /* radio belongs to WiMAX */
3410#define COEX_MEDIUM_ACTIVE (0x1) /* radio belongs to WiFi */
3411#define COEX_MEDIUM_PRE_RELEASE (0x2) /* received radio release */
3412#define COEX_MEDIUM_MSK (0x7)
3413
3414/* send notification status (1 bit) */
3415#define COEX_MEDIUM_CHANGED (0x8)
3416#define COEX_MEDIUM_CHANGED_MSK (0x8)
3417#define COEX_MEDIUM_SHIFT (3)
3418
3419struct iwl_coex_medium_notification {
3420 __le32 status;
3421 __le32 events;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003422} __packed;
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003423
3424/*
3425 * Coexistence EVENT Command
3426 * COEX_EVENT_CMD = 0x5c
3427 *
3428 * send from host to uCode for coex event request.
3429 */
3430/* flags options */
3431#define COEX_EVENT_REQUEST_MSK (0x1)
3432
3433struct iwl_coex_event_cmd {
3434 u8 flags;
3435 u8 event;
3436 __le16 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003437} __packed;
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003438
3439struct iwl_coex_event_resp {
3440 __le32 status;
Eric Dumazetba2d3582010-06-02 18:10:09 +00003441} __packed;
Wey-Yi Guyfe1bcbf2009-10-30 14:36:16 -07003442
3443
Zhu Yib481de92007-09-25 17:54:57 -07003444/******************************************************************************
Johannes Berg0288d232010-08-23 07:56:54 -07003445 * Bluetooth Coexistence commands
3446 *
3447 *****************************************************************************/
3448
3449/*
3450 * BT Status notification
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003451 * REPLY_BT_COEX_PROFILE_NOTIF = 0xce
Johannes Berg0288d232010-08-23 07:56:54 -07003452 */
3453enum iwl_bt_coex_profile_traffic_load {
3454 IWL_BT_COEX_TRAFFIC_LOAD_NONE = 0,
3455 IWL_BT_COEX_TRAFFIC_LOAD_LOW = 1,
3456 IWL_BT_COEX_TRAFFIC_LOAD_HIGH = 2,
3457 IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS = 3,
3458/*
3459 * There are no more even though below is a u8, the
3460 * indication from the BT device only has two bits.
3461 */
3462};
3463
Wey-Yi Guy60132702011-02-18 17:23:54 -08003464#define BT_SESSION_ACTIVITY_1_UART_MSG 0x1
3465#define BT_SESSION_ACTIVITY_2_UART_MSG 0x2
3466
Wey-Yi Guyd7220f02011-02-18 17:23:52 -08003467/* BT UART message - Share Part (BT -> WiFi) */
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003468#define BT_UART_MSG_FRAME1MSGTYPE_POS (0)
3469#define BT_UART_MSG_FRAME1MSGTYPE_MSK \
3470 (0x7 << BT_UART_MSG_FRAME1MSGTYPE_POS)
3471#define BT_UART_MSG_FRAME1SSN_POS (3)
3472#define BT_UART_MSG_FRAME1SSN_MSK \
3473 (0x3 << BT_UART_MSG_FRAME1SSN_POS)
3474#define BT_UART_MSG_FRAME1UPDATEREQ_POS (5)
3475#define BT_UART_MSG_FRAME1UPDATEREQ_MSK \
3476 (0x1 << BT_UART_MSG_FRAME1UPDATEREQ_POS)
3477#define BT_UART_MSG_FRAME1RESERVED_POS (6)
3478#define BT_UART_MSG_FRAME1RESERVED_MSK \
3479 (0x3 << BT_UART_MSG_FRAME1RESERVED_POS)
3480
3481#define BT_UART_MSG_FRAME2OPENCONNECTIONS_POS (0)
3482#define BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK \
3483 (0x3 << BT_UART_MSG_FRAME2OPENCONNECTIONS_POS)
3484#define BT_UART_MSG_FRAME2TRAFFICLOAD_POS (2)
3485#define BT_UART_MSG_FRAME2TRAFFICLOAD_MSK \
3486 (0x3 << BT_UART_MSG_FRAME2TRAFFICLOAD_POS)
3487#define BT_UART_MSG_FRAME2CHLSEQN_POS (4)
3488#define BT_UART_MSG_FRAME2CHLSEQN_MSK \
3489 (0x1 << BT_UART_MSG_FRAME2CHLSEQN_POS)
3490#define BT_UART_MSG_FRAME2INBAND_POS (5)
3491#define BT_UART_MSG_FRAME2INBAND_MSK \
3492 (0x1 << BT_UART_MSG_FRAME2INBAND_POS)
3493#define BT_UART_MSG_FRAME2RESERVED_POS (6)
3494#define BT_UART_MSG_FRAME2RESERVED_MSK \
3495 (0x3 << BT_UART_MSG_FRAME2RESERVED_POS)
3496
3497#define BT_UART_MSG_FRAME3SCOESCO_POS (0)
3498#define BT_UART_MSG_FRAME3SCOESCO_MSK \
3499 (0x1 << BT_UART_MSG_FRAME3SCOESCO_POS)
3500#define BT_UART_MSG_FRAME3SNIFF_POS (1)
3501#define BT_UART_MSG_FRAME3SNIFF_MSK \
3502 (0x1 << BT_UART_MSG_FRAME3SNIFF_POS)
3503#define BT_UART_MSG_FRAME3A2DP_POS (2)
3504#define BT_UART_MSG_FRAME3A2DP_MSK \
3505 (0x1 << BT_UART_MSG_FRAME3A2DP_POS)
3506#define BT_UART_MSG_FRAME3ACL_POS (3)
3507#define BT_UART_MSG_FRAME3ACL_MSK \
3508 (0x1 << BT_UART_MSG_FRAME3ACL_POS)
3509#define BT_UART_MSG_FRAME3MASTER_POS (4)
3510#define BT_UART_MSG_FRAME3MASTER_MSK \
3511 (0x1 << BT_UART_MSG_FRAME3MASTER_POS)
3512#define BT_UART_MSG_FRAME3OBEX_POS (5)
3513#define BT_UART_MSG_FRAME3OBEX_MSK \
3514 (0x1 << BT_UART_MSG_FRAME3OBEX_POS)
3515#define BT_UART_MSG_FRAME3RESERVED_POS (6)
3516#define BT_UART_MSG_FRAME3RESERVED_MSK \
3517 (0x3 << BT_UART_MSG_FRAME3RESERVED_POS)
3518
3519#define BT_UART_MSG_FRAME4IDLEDURATION_POS (0)
3520#define BT_UART_MSG_FRAME4IDLEDURATION_MSK \
3521 (0x3F << BT_UART_MSG_FRAME4IDLEDURATION_POS)
3522#define BT_UART_MSG_FRAME4RESERVED_POS (6)
3523#define BT_UART_MSG_FRAME4RESERVED_MSK \
3524 (0x3 << BT_UART_MSG_FRAME4RESERVED_POS)
3525
3526#define BT_UART_MSG_FRAME5TXACTIVITY_POS (0)
3527#define BT_UART_MSG_FRAME5TXACTIVITY_MSK \
3528 (0x3 << BT_UART_MSG_FRAME5TXACTIVITY_POS)
3529#define BT_UART_MSG_FRAME5RXACTIVITY_POS (2)
3530#define BT_UART_MSG_FRAME5RXACTIVITY_MSK \
3531 (0x3 << BT_UART_MSG_FRAME5RXACTIVITY_POS)
3532#define BT_UART_MSG_FRAME5ESCORETRANSMIT_POS (4)
3533#define BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK \
3534 (0x3 << BT_UART_MSG_FRAME5ESCORETRANSMIT_POS)
3535#define BT_UART_MSG_FRAME5RESERVED_POS (6)
3536#define BT_UART_MSG_FRAME5RESERVED_MSK \
3537 (0x3 << BT_UART_MSG_FRAME5RESERVED_POS)
3538
3539#define BT_UART_MSG_FRAME6SNIFFINTERVAL_POS (0)
3540#define BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK \
3541 (0x1F << BT_UART_MSG_FRAME6SNIFFINTERVAL_POS)
3542#define BT_UART_MSG_FRAME6DISCOVERABLE_POS (5)
3543#define BT_UART_MSG_FRAME6DISCOVERABLE_MSK \
3544 (0x1 << BT_UART_MSG_FRAME6DISCOVERABLE_POS)
3545#define BT_UART_MSG_FRAME6RESERVED_POS (6)
3546#define BT_UART_MSG_FRAME6RESERVED_MSK \
3547 (0x3 << BT_UART_MSG_FRAME6RESERVED_POS)
3548
3549#define BT_UART_MSG_FRAME7SNIFFACTIVITY_POS (0)
3550#define BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK \
3551 (0x7 << BT_UART_MSG_FRAME7SNIFFACTIVITY_POS)
Wey-Yi Guy399f66f2011-02-22 08:24:22 -08003552#define BT_UART_MSG_FRAME7PAGE_POS (3)
3553#define BT_UART_MSG_FRAME7PAGE_MSK \
3554 (0x1 << BT_UART_MSG_FRAME7PAGE_POS)
3555#define BT_UART_MSG_FRAME7INQUIRY_POS (4)
3556#define BT_UART_MSG_FRAME7INQUIRY_MSK \
3557 (0x1 << BT_UART_MSG_FRAME7INQUIRY_POS)
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003558#define BT_UART_MSG_FRAME7CONNECTABLE_POS (5)
3559#define BT_UART_MSG_FRAME7CONNECTABLE_MSK \
3560 (0x1 << BT_UART_MSG_FRAME7CONNECTABLE_POS)
3561#define BT_UART_MSG_FRAME7RESERVED_POS (6)
3562#define BT_UART_MSG_FRAME7RESERVED_MSK \
3563 (0x3 << BT_UART_MSG_FRAME7RESERVED_POS)
3564
Wey-Yi Guyd7220f02011-02-18 17:23:52 -08003565/* BT Session Activity 2 UART message (BT -> WiFi) */
3566#define BT_UART_MSG_2_FRAME1RESERVED1_POS (5)
3567#define BT_UART_MSG_2_FRAME1RESERVED1_MSK \
3568 (0x1<<BT_UART_MSG_2_FRAME1RESERVED1_POS)
3569#define BT_UART_MSG_2_FRAME1RESERVED2_POS (6)
3570#define BT_UART_MSG_2_FRAME1RESERVED2_MSK \
3571 (0x3<<BT_UART_MSG_2_FRAME1RESERVED2_POS)
3572
3573#define BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_POS (0)
3574#define BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_MSK \
3575 (0x3F<<BT_UART_MSG_2_FRAME2AGGTRAFFICLOAD_POS)
3576#define BT_UART_MSG_2_FRAME2RESERVED_POS (6)
3577#define BT_UART_MSG_2_FRAME2RESERVED_MSK \
3578 (0x3<<BT_UART_MSG_2_FRAME2RESERVED_POS)
3579
3580#define BT_UART_MSG_2_FRAME3BRLASTTXPOWER_POS (0)
3581#define BT_UART_MSG_2_FRAME3BRLASTTXPOWER_MSK \
3582 (0xF<<BT_UART_MSG_2_FRAME3BRLASTTXPOWER_POS)
3583#define BT_UART_MSG_2_FRAME3INQPAGESRMODE_POS (4)
3584#define BT_UART_MSG_2_FRAME3INQPAGESRMODE_MSK \
3585 (0x1<<BT_UART_MSG_2_FRAME3INQPAGESRMODE_POS)
3586#define BT_UART_MSG_2_FRAME3LEMASTER_POS (5)
3587#define BT_UART_MSG_2_FRAME3LEMASTER_MSK \
3588 (0x1<<BT_UART_MSG_2_FRAME3LEMASTER_POS)
3589#define BT_UART_MSG_2_FRAME3RESERVED_POS (6)
3590#define BT_UART_MSG_2_FRAME3RESERVED_MSK \
3591 (0x3<<BT_UART_MSG_2_FRAME3RESERVED_POS)
3592
3593#define BT_UART_MSG_2_FRAME4LELASTTXPOWER_POS (0)
3594#define BT_UART_MSG_2_FRAME4LELASTTXPOWER_MSK \
3595 (0xF<<BT_UART_MSG_2_FRAME4LELASTTXPOWER_POS)
3596#define BT_UART_MSG_2_FRAME4NUMLECONN_POS (4)
3597#define BT_UART_MSG_2_FRAME4NUMLECONN_MSK \
3598 (0x3<<BT_UART_MSG_2_FRAME4NUMLECONN_POS)
3599#define BT_UART_MSG_2_FRAME4RESERVED_POS (6)
3600#define BT_UART_MSG_2_FRAME4RESERVED_MSK \
3601 (0x3<<BT_UART_MSG_2_FRAME4RESERVED_POS)
3602
3603#define BT_UART_MSG_2_FRAME5BTMINRSSI_POS (0)
3604#define BT_UART_MSG_2_FRAME5BTMINRSSI_MSK \
3605 (0xF<<BT_UART_MSG_2_FRAME5BTMINRSSI_POS)
3606#define BT_UART_MSG_2_FRAME5LESCANINITMODE_POS (4)
3607#define BT_UART_MSG_2_FRAME5LESCANINITMODE_MSK \
3608 (0x1<<BT_UART_MSG_2_FRAME5LESCANINITMODE_POS)
3609#define BT_UART_MSG_2_FRAME5LEADVERMODE_POS (5)
3610#define BT_UART_MSG_2_FRAME5LEADVERMODE_MSK \
3611 (0x1<<BT_UART_MSG_2_FRAME5LEADVERMODE_POS)
3612#define BT_UART_MSG_2_FRAME5RESERVED_POS (6)
3613#define BT_UART_MSG_2_FRAME5RESERVED_MSK \
3614 (0x3<<BT_UART_MSG_2_FRAME5RESERVED_POS)
3615
3616#define BT_UART_MSG_2_FRAME6LECONNINTERVAL_POS (0)
3617#define BT_UART_MSG_2_FRAME6LECONNINTERVAL_MSK \
3618 (0x1F<<BT_UART_MSG_2_FRAME6LECONNINTERVAL_POS)
3619#define BT_UART_MSG_2_FRAME6RFU_POS (5)
3620#define BT_UART_MSG_2_FRAME6RFU_MSK \
3621 (0x1<<BT_UART_MSG_2_FRAME6RFU_POS)
3622#define BT_UART_MSG_2_FRAME6RESERVED_POS (6)
3623#define BT_UART_MSG_2_FRAME6RESERVED_MSK \
3624 (0x3<<BT_UART_MSG_2_FRAME6RESERVED_POS)
3625
3626#define BT_UART_MSG_2_FRAME7LECONNSLAVELAT_POS (0)
3627#define BT_UART_MSG_2_FRAME7LECONNSLAVELAT_MSK \
3628 (0x7<<BT_UART_MSG_2_FRAME7LECONNSLAVELAT_POS)
3629#define BT_UART_MSG_2_FRAME7LEPROFILE1_POS (3)
3630#define BT_UART_MSG_2_FRAME7LEPROFILE1_MSK \
3631 (0x1<<BT_UART_MSG_2_FRAME7LEPROFILE1_POS)
3632#define BT_UART_MSG_2_FRAME7LEPROFILE2_POS (4)
3633#define BT_UART_MSG_2_FRAME7LEPROFILE2_MSK \
3634 (0x1<<BT_UART_MSG_2_FRAME7LEPROFILE2_POS)
3635#define BT_UART_MSG_2_FRAME7LEPROFILEOTHER_POS (5)
3636#define BT_UART_MSG_2_FRAME7LEPROFILEOTHER_MSK \
3637 (0x1<<BT_UART_MSG_2_FRAME7LEPROFILEOTHER_POS)
3638#define BT_UART_MSG_2_FRAME7RESERVED_POS (6)
3639#define BT_UART_MSG_2_FRAME7RESERVED_MSK \
3640 (0x3<<BT_UART_MSG_2_FRAME7RESERVED_POS)
3641
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003642
3643struct iwl_bt_uart_msg {
3644 u8 header;
3645 u8 frame1;
3646 u8 frame2;
3647 u8 frame3;
3648 u8 frame4;
3649 u8 frame5;
3650 u8 frame6;
3651 u8 frame7;
3652} __attribute__((packed));
3653
Johannes Berg0288d232010-08-23 07:56:54 -07003654struct iwl_bt_coex_profile_notif {
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003655 struct iwl_bt_uart_msg last_bt_uart_msg;
Johannes Berg0288d232010-08-23 07:56:54 -07003656 u8 bt_status; /* 0 - off, 1 - on */
3657 u8 bt_traffic_load; /* 0 .. 3? */
3658 u8 bt_ci_compliance; /* 0 - not complied, 1 - complied */
3659 u8 reserved;
3660} __attribute__((packed));
3661
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07003662#define IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS 0
3663#define IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_MSK 0x1
3664#define IWL_BT_COEX_PRIO_TBL_PRIO_POS 1
3665#define IWL_BT_COEX_PRIO_TBL_PRIO_MASK 0x0e
3666#define IWL_BT_COEX_PRIO_TBL_RESERVED_POS 4
3667#define IWL_BT_COEX_PRIO_TBL_RESERVED_MASK 0xf0
3668#define IWL_BT_COEX_PRIO_TBL_PRIO_SHIFT 1
Johannes Berg0288d232010-08-23 07:56:54 -07003669
3670/*
3671 * BT Coexistence Priority table
3672 * REPLY_BT_COEX_PRIO_TABLE = 0xcc
3673 */
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07003674enum bt_coex_prio_table_events {
3675 BT_COEX_PRIO_TBL_EVT_INIT_CALIB1 = 0,
3676 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2 = 1,
3677 BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW1 = 2,
3678 BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_LOW2 = 3, /* DC calib */
3679 BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH1 = 4,
3680 BT_COEX_PRIO_TBL_EVT_PERIODIC_CALIB_HIGH2 = 5,
3681 BT_COEX_PRIO_TBL_EVT_DTIM = 6,
3682 BT_COEX_PRIO_TBL_EVT_SCAN52 = 7,
3683 BT_COEX_PRIO_TBL_EVT_SCAN24 = 8,
3684 BT_COEX_PRIO_TBL_EVT_RESERVED0 = 9,
3685 BT_COEX_PRIO_TBL_EVT_RESERVED1 = 10,
3686 BT_COEX_PRIO_TBL_EVT_RESERVED2 = 11,
3687 BT_COEX_PRIO_TBL_EVT_RESERVED3 = 12,
3688 BT_COEX_PRIO_TBL_EVT_RESERVED4 = 13,
3689 BT_COEX_PRIO_TBL_EVT_RESERVED5 = 14,
3690 BT_COEX_PRIO_TBL_EVT_RESERVED6 = 15,
3691 /* BT_COEX_PRIO_TBL_EVT_MAX should always be last */
3692 BT_COEX_PRIO_TBL_EVT_MAX,
3693};
3694
3695enum bt_coex_prio_table_priorities {
3696 BT_COEX_PRIO_TBL_DISABLED = 0,
3697 BT_COEX_PRIO_TBL_PRIO_LOW = 1,
3698 BT_COEX_PRIO_TBL_PRIO_HIGH = 2,
3699 BT_COEX_PRIO_TBL_PRIO_BYPASS = 3,
3700 BT_COEX_PRIO_TBL_PRIO_COEX_OFF = 4,
3701 BT_COEX_PRIO_TBL_PRIO_COEX_ON = 5,
3702 BT_COEX_PRIO_TBL_PRIO_RSRVD1 = 6,
3703 BT_COEX_PRIO_TBL_PRIO_RSRVD2 = 7,
3704 BT_COEX_PRIO_TBL_MAX,
3705};
3706
Johannes Berg0288d232010-08-23 07:56:54 -07003707struct iwl_bt_coex_prio_table_cmd {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07003708 u8 prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX];
Johannes Berg0288d232010-08-23 07:56:54 -07003709} __attribute__((packed));
3710
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07003711#define IWL_BT_COEX_ENV_CLOSE 0
3712#define IWL_BT_COEX_ENV_OPEN 1
Johannes Berg0288d232010-08-23 07:56:54 -07003713/*
3714 * BT Protection Envelope
3715 * REPLY_BT_COEX_PROT_ENV = 0xcd
3716 */
3717struct iwl_bt_coex_prot_env_cmd {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07003718 u8 action; /* 0 = closed, 1 = open */
Johannes Berg0288d232010-08-23 07:56:54 -07003719 u8 type; /* 0 .. 15 */
3720 u8 reserved[2];
3721} __attribute__((packed));
3722
Johannes Bergc8ac61c2011-07-15 13:23:45 -07003723/*
Johannes Berg56012402011-10-14 12:54:43 -07003724 * REPLY_D3_CONFIG
3725 */
3726enum iwlagn_d3_wakeup_filters {
3727 IWLAGN_D3_WAKEUP_RFKILL = BIT(0),
3728 IWLAGN_D3_WAKEUP_SYSASSERT = BIT(1),
3729};
3730
3731struct iwlagn_d3_config_cmd {
3732 __le32 min_sleep_time;
3733 __le32 wakeup_flags;
3734} __packed;
3735
3736/*
Johannes Bergc8ac61c2011-07-15 13:23:45 -07003737 * REPLY_WOWLAN_PATTERNS
3738 */
3739#define IWLAGN_WOWLAN_MIN_PATTERN_LEN 16
3740#define IWLAGN_WOWLAN_MAX_PATTERN_LEN 128
3741
3742struct iwlagn_wowlan_pattern {
3743 u8 mask[IWLAGN_WOWLAN_MAX_PATTERN_LEN / 8];
3744 u8 pattern[IWLAGN_WOWLAN_MAX_PATTERN_LEN];
3745 u8 mask_size;
3746 u8 pattern_size;
3747 __le16 reserved;
3748} __packed;
3749
3750#define IWLAGN_WOWLAN_MAX_PATTERNS 20
3751
3752struct iwlagn_wowlan_patterns_cmd {
3753 __le32 n_patterns;
3754 struct iwlagn_wowlan_pattern patterns[];
3755} __packed;
3756
3757/*
3758 * REPLY_WOWLAN_WAKEUP_FILTER
3759 */
3760enum iwlagn_wowlan_wakeup_filters {
3761 IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET = BIT(0),
3762 IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH = BIT(1),
3763 IWLAGN_WOWLAN_WAKEUP_BEACON_MISS = BIT(2),
3764 IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE = BIT(3),
3765 IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL = BIT(4),
Johannes Berg56012402011-10-14 12:54:43 -07003766 IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ = BIT(5),
3767 IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE = BIT(6),
3768 IWLAGN_WOWLAN_WAKEUP_ALWAYS = BIT(7),
3769 IWLAGN_WOWLAN_WAKEUP_ENABLE_NET_DETECT = BIT(8),
Johannes Bergc8ac61c2011-07-15 13:23:45 -07003770};
3771
3772struct iwlagn_wowlan_wakeup_filter_cmd {
3773 __le32 enabled;
3774 __le16 non_qos_seq;
Johannes Berg56012402011-10-14 12:54:43 -07003775 __le16 reserved;
Johannes Bergc8ac61c2011-07-15 13:23:45 -07003776 __le16 qos_seq[8];
3777};
3778
3779/*
3780 * REPLY_WOWLAN_TSC_RSC_PARAMS
3781 */
3782#define IWLAGN_NUM_RSC 16
3783
3784struct tkip_sc {
3785 __le16 iv16;
3786 __le16 pad;
3787 __le32 iv32;
3788} __packed;
3789
3790struct iwlagn_tkip_rsc_tsc {
3791 struct tkip_sc unicast_rsc[IWLAGN_NUM_RSC];
3792 struct tkip_sc multicast_rsc[IWLAGN_NUM_RSC];
3793 struct tkip_sc tsc;
3794} __packed;
3795
3796struct aes_sc {
3797 __le64 pn;
3798} __packed;
3799
3800struct iwlagn_aes_rsc_tsc {
3801 struct aes_sc unicast_rsc[IWLAGN_NUM_RSC];
3802 struct aes_sc multicast_rsc[IWLAGN_NUM_RSC];
3803 struct aes_sc tsc;
3804} __packed;
3805
3806union iwlagn_all_tsc_rsc {
3807 struct iwlagn_tkip_rsc_tsc tkip;
3808 struct iwlagn_aes_rsc_tsc aes;
3809};
3810
3811struct iwlagn_wowlan_rsc_tsc_params_cmd {
3812 union iwlagn_all_tsc_rsc all_tsc_rsc;
3813} __packed;
3814
3815/*
3816 * REPLY_WOWLAN_TKIP_PARAMS
3817 */
3818#define IWLAGN_MIC_KEY_SIZE 8
3819#define IWLAGN_P1K_SIZE 5
3820struct iwlagn_mic_keys {
3821 u8 tx[IWLAGN_MIC_KEY_SIZE];
3822 u8 rx_unicast[IWLAGN_MIC_KEY_SIZE];
3823 u8 rx_mcast[IWLAGN_MIC_KEY_SIZE];
3824} __packed;
3825
3826struct iwlagn_p1k_cache {
3827 __le16 p1k[IWLAGN_P1K_SIZE];
3828} __packed;
3829
3830#define IWLAGN_NUM_RX_P1K_CACHE 2
3831
3832struct iwlagn_wowlan_tkip_params_cmd {
3833 struct iwlagn_mic_keys mic_keys;
3834 struct iwlagn_p1k_cache tx;
3835 struct iwlagn_p1k_cache rx_uni[IWLAGN_NUM_RX_P1K_CACHE];
3836 struct iwlagn_p1k_cache rx_multi[IWLAGN_NUM_RX_P1K_CACHE];
3837} __packed;
3838
3839/*
3840 * REPLY_WOWLAN_KEK_KCK_MATERIAL
3841 */
3842
3843#define IWLAGN_KCK_MAX_SIZE 32
3844#define IWLAGN_KEK_MAX_SIZE 32
3845
3846struct iwlagn_wowlan_kek_kck_material_cmd {
3847 u8 kck[IWLAGN_KCK_MAX_SIZE];
3848 u8 kek[IWLAGN_KEK_MAX_SIZE];
3849 __le16 kck_len;
3850 __le16 kek_len;
3851 __le64 replay_ctr;
3852} __packed;
3853
Samuel Ortiza3139c52008-12-19 10:37:09 +08003854int iwl_agn_check_rxon_cmd(struct iwl_priv *priv);
Winkler, Tomas8f5c87d2008-12-02 12:13:57 -08003855
Johannes Berg946ba302010-08-23 10:46:48 +02003856/*
3857 * REPLY_WIPAN_PARAMS = 0xb2 (Commands and Notification)
3858 */
3859
Johannes Berg94073912011-01-06 08:07:11 -08003860/*
3861 * Minimum slot time in TU
3862 */
3863#define IWL_MIN_SLOT_TIME 20
3864
Johannes Berg946ba302010-08-23 10:46:48 +02003865/**
3866 * struct iwl_wipan_slot
3867 * @width: Time in TU
3868 * @type:
3869 * 0 - BSS
3870 * 1 - PAN
3871 */
3872struct iwl_wipan_slot {
3873 __le16 width;
3874 u8 type;
3875 u8 reserved;
3876} __packed;
3877
3878#define IWL_WIPAN_PARAMS_FLG_LEAVE_CHANNEL_CTS BIT(1) /* reserved */
3879#define IWL_WIPAN_PARAMS_FLG_LEAVE_CHANNEL_QUIET BIT(2) /* reserved */
3880#define IWL_WIPAN_PARAMS_FLG_SLOTTED_MODE BIT(3) /* reserved */
3881#define IWL_WIPAN_PARAMS_FLG_FILTER_BEACON_NOTIF BIT(4)
3882#define IWL_WIPAN_PARAMS_FLG_FULL_SLOTTED_MODE BIT(5)
3883
3884/**
3885 * struct iwl_wipan_params_cmd
3886 * @flags:
3887 * bit0: reserved
3888 * bit1: CP leave channel with CTS
3889 * bit2: CP leave channel qith Quiet
3890 * bit3: slotted mode
3891 * 1 - work in slotted mode
3892 * 0 - work in non slotted mode
3893 * bit4: filter beacon notification
3894 * bit5: full tx slotted mode. if this flag is set,
3895 * uCode will perform leaving channel methods in context switch
3896 * also when working in same channel mode
3897 * @num_slots: 1 - 10
3898 */
3899struct iwl_wipan_params_cmd {
3900 __le16 flags;
3901 u8 reserved;
3902 u8 num_slots;
3903 struct iwl_wipan_slot slots[10];
3904} __packed;
3905
3906/*
3907 * REPLY_WIPAN_P2P_CHANNEL_SWITCH = 0xb9
3908 *
3909 * TODO: Figure out what this is used for,
3910 * it can only switch between 2.4 GHz
3911 * channels!!
3912 */
3913
3914struct iwl_wipan_p2p_channel_switch_cmd {
3915 __le16 channel;
3916 __le16 reserved;
3917};
3918
3919/*
3920 * REPLY_WIPAN_NOA_NOTIFICATION = 0xbc
3921 *
3922 * This is used by the device to notify us of the
3923 * NoA schedule it determined so we can forward it
3924 * to userspace for inclusion in probe responses.
3925 *
3926 * In beacons, the NoA schedule is simply appended
3927 * to the frame we give the device.
3928 */
3929
3930struct iwl_wipan_noa_descriptor {
3931 u8 count;
3932 __le32 duration;
3933 __le32 interval;
3934 __le32 starttime;
3935} __packed;
3936
3937struct iwl_wipan_noa_attribute {
3938 u8 id;
3939 __le16 length;
3940 u8 index;
3941 u8 ct_window;
3942 struct iwl_wipan_noa_descriptor descr0, descr1;
3943 u8 reserved;
3944} __packed;
3945
3946struct iwl_wipan_noa_notification {
3947 u32 noa_active;
3948 struct iwl_wipan_noa_attribute noa_attribute;
3949} __packed;
3950
Emmanuel Grumbach6a635782008-10-29 14:05:47 -07003951#endif /* __iwl_commands_h__ */