if_iwmreg.h revision 1.2 1 1.2 nonaka /* $NetBSD: if_iwmreg.h,v 1.2 2015/02/16 13:22:19 nonaka Exp $ */
2 1.1 pooka /* OpenBSD: if_iwmreg.h,v 1.2 2015/02/06 23:52:23 stsp Exp */
3 1.1 pooka
4 1.1 pooka /******************************************************************************
5 1.1 pooka *
6 1.1 pooka * This file is provided under a dual BSD/GPLv2 license. When using or
7 1.1 pooka * redistributing this file, you may do so under either license.
8 1.1 pooka *
9 1.1 pooka * GPL LICENSE SUMMARY
10 1.1 pooka *
11 1.1 pooka * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
12 1.1 pooka *
13 1.1 pooka * This program is free software; you can redistribute it and/or modify
14 1.1 pooka * it under the terms of version 2 of the GNU General Public License as
15 1.1 pooka * published by the Free Software Foundation.
16 1.1 pooka *
17 1.1 pooka * This program is distributed in the hope that it will be useful, but
18 1.1 pooka * WITHOUT ANY WARRANTY; without even the implied warranty of
19 1.1 pooka * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 1.1 pooka * General Public License for more details.
21 1.1 pooka *
22 1.1 pooka * You should have received a copy of the GNU General Public License
23 1.1 pooka * along with this program; if not, write to the Free Software
24 1.1 pooka * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
25 1.1 pooka * USA
26 1.1 pooka *
27 1.1 pooka * The full GNU General Public License is included in this distribution
28 1.1 pooka * in the file called COPYING.
29 1.1 pooka *
30 1.1 pooka * Contact Information:
31 1.1 pooka * Intel Linux Wireless <ilw (at) linux.intel.com>
32 1.1 pooka * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
33 1.1 pooka *
34 1.1 pooka * BSD LICENSE
35 1.1 pooka *
36 1.1 pooka * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
37 1.1 pooka * All rights reserved.
38 1.1 pooka *
39 1.1 pooka * Redistribution and use in source and binary forms, with or without
40 1.1 pooka * modification, are permitted provided that the following conditions
41 1.1 pooka * are met:
42 1.1 pooka *
43 1.1 pooka * * Redistributions of source code must retain the above copyright
44 1.1 pooka * notice, this list of conditions and the following disclaimer.
45 1.1 pooka * * Redistributions in binary form must reproduce the above copyright
46 1.1 pooka * notice, this list of conditions and the following disclaimer in
47 1.1 pooka * the documentation and/or other materials provided with the
48 1.1 pooka * distribution.
49 1.1 pooka * * Neither the name Intel Corporation nor the names of its
50 1.1 pooka * contributors may be used to endorse or promote products derived
51 1.1 pooka * from this software without specific prior written permission.
52 1.1 pooka *
53 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
54 1.1 pooka * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
55 1.1 pooka * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
56 1.1 pooka * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
57 1.1 pooka * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
58 1.1 pooka * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
59 1.1 pooka * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
60 1.1 pooka * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
61 1.1 pooka * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
62 1.1 pooka * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
63 1.1 pooka * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64 1.1 pooka *
65 1.1 pooka *****************************************************************************/
66 1.1 pooka
67 1.1 pooka /*
68 1.1 pooka * BEGIN iwl-csr.h
69 1.1 pooka */
70 1.1 pooka
71 1.1 pooka /*
72 1.1 pooka * CSR (control and status registers)
73 1.1 pooka *
74 1.1 pooka * CSR registers are mapped directly into PCI bus space, and are accessible
75 1.1 pooka * whenever platform supplies power to device, even when device is in
76 1.1 pooka * low power states due to driver-invoked device resets
77 1.1 pooka * (e.g. IWM_CSR_RESET_REG_FLAG_SW_RESET) or uCode-driven power-saving modes.
78 1.1 pooka *
79 1.1 pooka * Use iwl_write32() and iwl_read32() family to access these registers;
80 1.1 pooka * these provide simple PCI bus access, without waking up the MAC.
81 1.1 pooka * Do not use iwl_write_direct32() family for these registers;
82 1.1 pooka * no need to "grab nic access" via IWM_CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ.
83 1.1 pooka * The MAC (uCode processor, etc.) does not need to be powered up for accessing
84 1.1 pooka * the CSR registers.
85 1.1 pooka *
86 1.1 pooka * NOTE: Device does need to be awake in order to read this memory
87 1.1 pooka * via IWM_CSR_EEPROM and IWM_CSR_OTP registers
88 1.1 pooka */
89 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG (0x000) /* hardware interface config */
90 1.1 pooka #define IWM_CSR_INT_COALESCING (0x004) /* accum ints, 32-usec units */
91 1.1 pooka #define IWM_CSR_INT (0x008) /* host interrupt status/ack */
92 1.1 pooka #define IWM_CSR_INT_MASK (0x00c) /* host interrupt enable */
93 1.1 pooka #define IWM_CSR_FH_INT_STATUS (0x010) /* busmaster int status/ack*/
94 1.1 pooka #define IWM_CSR_GPIO_IN (0x018) /* read external chip pins */
95 1.1 pooka #define IWM_CSR_RESET (0x020) /* busmaster enable, NMI, etc*/
96 1.1 pooka #define IWM_CSR_GP_CNTRL (0x024)
97 1.1 pooka
98 1.1 pooka /* 2nd byte of IWM_CSR_INT_COALESCING, not accessible via iwl_write32()! */
99 1.1 pooka #define IWM_CSR_INT_PERIODIC_REG (0x005)
100 1.1 pooka
101 1.1 pooka /*
102 1.1 pooka * Hardware revision info
103 1.1 pooka * Bit fields:
104 1.1 pooka * 31-16: Reserved
105 1.1 pooka * 15-4: Type of device: see IWM_CSR_HW_REV_TYPE_xxx definitions
106 1.1 pooka * 3-2: Revision step: 0 = A, 1 = B, 2 = C, 3 = D
107 1.1 pooka * 1-0: "Dash" (-) value, as in A-1, etc.
108 1.1 pooka */
109 1.1 pooka #define IWM_CSR_HW_REV (0x028)
110 1.1 pooka
111 1.1 pooka /*
112 1.1 pooka * EEPROM and OTP (one-time-programmable) memory reads
113 1.1 pooka *
114 1.1 pooka * NOTE: Device must be awake, initialized via apm_ops.init(),
115 1.1 pooka * in order to read.
116 1.1 pooka */
117 1.1 pooka #define IWM_CSR_EEPROM_REG (0x02c)
118 1.1 pooka #define IWM_CSR_EEPROM_GP (0x030)
119 1.1 pooka #define IWM_CSR_OTP_GP_REG (0x034)
120 1.1 pooka
121 1.1 pooka #define IWM_CSR_GIO_REG (0x03C)
122 1.1 pooka #define IWM_CSR_GP_UCODE_REG (0x048)
123 1.1 pooka #define IWM_CSR_GP_DRIVER_REG (0x050)
124 1.1 pooka
125 1.1 pooka /*
126 1.1 pooka * UCODE-DRIVER GP (general purpose) mailbox registers.
127 1.1 pooka * SET/CLR registers set/clear bit(s) if "1" is written.
128 1.1 pooka */
129 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1 (0x054)
130 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_SET (0x058)
131 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_CLR (0x05c)
132 1.1 pooka #define IWM_CSR_UCODE_DRV_GP2 (0x060)
133 1.1 pooka
134 1.1 pooka #define IWM_CSR_LED_REG (0x094)
135 1.1 pooka #define IWM_CSR_DRAM_INT_TBL_REG (0x0A0)
136 1.1 pooka #define IWM_CSR_MAC_SHADOW_REG_CTRL (0x0A8) /* 6000 and up */
137 1.1 pooka
138 1.1 pooka
139 1.1 pooka /* GIO Chicken Bits (PCI Express bus link power management) */
140 1.1 pooka #define IWM_CSR_GIO_CHICKEN_BITS (0x100)
141 1.1 pooka
142 1.1 pooka /* Analog phase-lock-loop configuration */
143 1.1 pooka #define IWM_CSR_ANA_PLL_CFG (0x20c)
144 1.1 pooka
145 1.1 pooka /*
146 1.1 pooka * CSR Hardware Revision Workaround Register. Indicates hardware rev;
147 1.1 pooka * "step" determines CCK backoff for txpower calculation. Used for 4965 only.
148 1.1 pooka * See also IWM_CSR_HW_REV register.
149 1.1 pooka * Bit fields:
150 1.1 pooka * 3-2: 0 = A, 1 = B, 2 = C, 3 = D step
151 1.1 pooka * 1-0: "Dash" (-) value, as in C-1, etc.
152 1.1 pooka */
153 1.1 pooka #define IWM_CSR_HW_REV_WA_REG (0x22C)
154 1.1 pooka
155 1.1 pooka #define IWM_CSR_DBG_HPET_MEM_REG (0x240)
156 1.1 pooka #define IWM_CSR_DBG_LINK_PWR_MGMT_REG (0x250)
157 1.1 pooka
158 1.1 pooka /* Bits for IWM_CSR_HW_IF_CONFIG_REG */
159 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_MAC_DASH (0x00000003)
160 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_MAC_STEP (0x0000000C)
161 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_BOARD_VER (0x000000C0)
162 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_MAC_SI (0x00000100)
163 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI (0x00000200)
164 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_PHY_TYPE (0x00000C00)
165 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_PHY_DASH (0x00003000)
166 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_MSK_PHY_STEP (0x0000C000)
167 1.1 pooka
168 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_MAC_DASH (0)
169 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_MAC_STEP (2)
170 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_BOARD_VER (6)
171 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_PHY_TYPE (10)
172 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_PHY_DASH (12)
173 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_POS_PHY_STEP (14)
174 1.1 pooka
175 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A (0x00080000)
176 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM (0x00200000)
177 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_NIC_READY (0x00400000) /* PCI_OWN_SEM */
178 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE (0x02000000) /* ME_OWN */
179 1.1 pooka #define IWM_CSR_HW_IF_CONFIG_REG_PREPARE (0x08000000) /* WAKE_ME */
180 1.1 pooka
181 1.1 pooka #define IWM_CSR_INT_PERIODIC_DIS (0x00) /* disable periodic int*/
182 1.1 pooka #define IWM_CSR_INT_PERIODIC_ENA (0xFF) /* 255*32 usec ~ 8 msec*/
183 1.1 pooka
184 1.1 pooka /* interrupt flags in INTA, set by uCode or hardware (e.g. dma),
185 1.1 pooka * acknowledged (reset) by host writing "1" to flagged bits. */
186 1.1 pooka #define IWM_CSR_INT_BIT_FH_RX (1 << 31) /* Rx DMA, cmd responses, FH_INT[17:16] */
187 1.1 pooka #define IWM_CSR_INT_BIT_HW_ERR (1 << 29) /* DMA hardware error FH_INT[31] */
188 1.1 pooka #define IWM_CSR_INT_BIT_RX_PERIODIC (1 << 28) /* Rx periodic */
189 1.1 pooka #define IWM_CSR_INT_BIT_FH_TX (1 << 27) /* Tx DMA FH_INT[1:0] */
190 1.1 pooka #define IWM_CSR_INT_BIT_SCD (1 << 26) /* TXQ pointer advanced */
191 1.1 pooka #define IWM_CSR_INT_BIT_SW_ERR (1 << 25) /* uCode error */
192 1.1 pooka #define IWM_CSR_INT_BIT_RF_KILL (1 << 7) /* HW RFKILL switch GP_CNTRL[27] toggled */
193 1.1 pooka #define IWM_CSR_INT_BIT_CT_KILL (1 << 6) /* Critical temp (chip too hot) rfkill */
194 1.1 pooka #define IWM_CSR_INT_BIT_SW_RX (1 << 3) /* Rx, command responses */
195 1.1 pooka #define IWM_CSR_INT_BIT_WAKEUP (1 << 1) /* NIC controller waking up (pwr mgmt) */
196 1.1 pooka #define IWM_CSR_INT_BIT_ALIVE (1 << 0) /* uCode interrupts once it initializes */
197 1.1 pooka
198 1.1 pooka #define IWM_CSR_INI_SET_MASK (IWM_CSR_INT_BIT_FH_RX | \
199 1.1 pooka IWM_CSR_INT_BIT_HW_ERR | \
200 1.1 pooka IWM_CSR_INT_BIT_FH_TX | \
201 1.1 pooka IWM_CSR_INT_BIT_SW_ERR | \
202 1.1 pooka IWM_CSR_INT_BIT_RF_KILL | \
203 1.1 pooka IWM_CSR_INT_BIT_SW_RX | \
204 1.1 pooka IWM_CSR_INT_BIT_WAKEUP | \
205 1.1 pooka IWM_CSR_INT_BIT_ALIVE | \
206 1.1 pooka IWM_CSR_INT_BIT_RX_PERIODIC)
207 1.1 pooka
208 1.1 pooka /* interrupt flags in FH (flow handler) (PCI busmaster DMA) */
209 1.1 pooka #define IWM_CSR_FH_INT_BIT_ERR (1 << 31) /* Error */
210 1.1 pooka #define IWM_CSR_FH_INT_BIT_HI_PRIOR (1 << 30) /* High priority Rx, bypass coalescing */
211 1.1 pooka #define IWM_CSR_FH_INT_BIT_RX_CHNL1 (1 << 17) /* Rx channel 1 */
212 1.1 pooka #define IWM_CSR_FH_INT_BIT_RX_CHNL0 (1 << 16) /* Rx channel 0 */
213 1.1 pooka #define IWM_CSR_FH_INT_BIT_TX_CHNL1 (1 << 1) /* Tx channel 1 */
214 1.1 pooka #define IWM_CSR_FH_INT_BIT_TX_CHNL0 (1 << 0) /* Tx channel 0 */
215 1.1 pooka
216 1.1 pooka #define IWM_CSR_FH_INT_RX_MASK (IWM_CSR_FH_INT_BIT_HI_PRIOR | \
217 1.1 pooka IWM_CSR_FH_INT_BIT_RX_CHNL1 | \
218 1.1 pooka IWM_CSR_FH_INT_BIT_RX_CHNL0)
219 1.1 pooka
220 1.1 pooka #define IWM_CSR_FH_INT_TX_MASK (IWM_CSR_FH_INT_BIT_TX_CHNL1 | \
221 1.1 pooka IWM_CSR_FH_INT_BIT_TX_CHNL0)
222 1.1 pooka
223 1.1 pooka /* GPIO */
224 1.1 pooka #define IWM_CSR_GPIO_IN_BIT_AUX_POWER (0x00000200)
225 1.1 pooka #define IWM_CSR_GPIO_IN_VAL_VAUX_PWR_SRC (0x00000000)
226 1.1 pooka #define IWM_CSR_GPIO_IN_VAL_VMAIN_PWR_SRC (0x00000200)
227 1.1 pooka
228 1.1 pooka /* RESET */
229 1.1 pooka #define IWM_CSR_RESET_REG_FLAG_NEVO_RESET (0x00000001)
230 1.1 pooka #define IWM_CSR_RESET_REG_FLAG_FORCE_NMI (0x00000002)
231 1.1 pooka #define IWM_CSR_RESET_REG_FLAG_SW_RESET (0x00000080)
232 1.1 pooka #define IWM_CSR_RESET_REG_FLAG_MASTER_DISABLED (0x00000100)
233 1.1 pooka #define IWM_CSR_RESET_REG_FLAG_STOP_MASTER (0x00000200)
234 1.1 pooka #define IWM_CSR_RESET_LINK_PWR_MGMT_DISABLED (0x80000000)
235 1.1 pooka
236 1.1 pooka /*
237 1.1 pooka * GP (general purpose) CONTROL REGISTER
238 1.1 pooka * Bit fields:
239 1.1 pooka * 27: HW_RF_KILL_SW
240 1.1 pooka * Indicates state of (platform's) hardware RF-Kill switch
241 1.1 pooka * 26-24: POWER_SAVE_TYPE
242 1.1 pooka * Indicates current power-saving mode:
243 1.1 pooka * 000 -- No power saving
244 1.1 pooka * 001 -- MAC power-down
245 1.1 pooka * 010 -- PHY (radio) power-down
246 1.1 pooka * 011 -- Error
247 1.1 pooka * 9-6: SYS_CONFIG
248 1.1 pooka * Indicates current system configuration, reflecting pins on chip
249 1.1 pooka * as forced high/low by device circuit board.
250 1.1 pooka * 4: GOING_TO_SLEEP
251 1.1 pooka * Indicates MAC is entering a power-saving sleep power-down.
252 1.1 pooka * Not a good time to access device-internal resources.
253 1.1 pooka * 3: MAC_ACCESS_REQ
254 1.1 pooka * Host sets this to request and maintain MAC wakeup, to allow host
255 1.1 pooka * access to device-internal resources. Host must wait for
256 1.1 pooka * MAC_CLOCK_READY (and !GOING_TO_SLEEP) before accessing non-CSR
257 1.1 pooka * device registers.
258 1.1 pooka * 2: INIT_DONE
259 1.1 pooka * Host sets this to put device into fully operational D0 power mode.
260 1.1 pooka * Host resets this after SW_RESET to put device into low power mode.
261 1.1 pooka * 0: MAC_CLOCK_READY
262 1.1 pooka * Indicates MAC (ucode processor, etc.) is powered up and can run.
263 1.1 pooka * Internal resources are accessible.
264 1.1 pooka * NOTE: This does not indicate that the processor is actually running.
265 1.1 pooka * NOTE: This does not indicate that device has completed
266 1.1 pooka * init or post-power-down restore of internal SRAM memory.
267 1.1 pooka * Use IWM_CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP as indication that
268 1.1 pooka * SRAM is restored and uCode is in normal operation mode.
269 1.1 pooka * Later devices (5xxx/6xxx/1xxx) use non-volatile SRAM, and
270 1.1 pooka * do not need to save/restore it.
271 1.1 pooka * NOTE: After device reset, this bit remains "0" until host sets
272 1.1 pooka * INIT_DONE
273 1.1 pooka */
274 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY (0x00000001)
275 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_INIT_DONE (0x00000004)
276 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ (0x00000008)
277 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP (0x00000010)
278 1.1 pooka
279 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN (0x00000001)
280 1.1 pooka
281 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE (0x07000000)
282 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE (0x04000000)
283 1.1 pooka #define IWM_CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW (0x08000000)
284 1.1 pooka
285 1.1 pooka
286 1.1 pooka /* HW REV */
287 1.1 pooka #define IWM_CSR_HW_REV_DASH(_val) (((_val) & 0x0000003) >> 0)
288 1.1 pooka #define IWM_CSR_HW_REV_STEP(_val) (((_val) & 0x000000C) >> 2)
289 1.1 pooka
290 1.1 pooka #define IWM_CSR_HW_REV_TYPE_MSK (0x000FFF0)
291 1.1 pooka #define IWM_CSR_HW_REV_TYPE_5300 (0x0000020)
292 1.1 pooka #define IWM_CSR_HW_REV_TYPE_5350 (0x0000030)
293 1.1 pooka #define IWM_CSR_HW_REV_TYPE_5100 (0x0000050)
294 1.1 pooka #define IWM_CSR_HW_REV_TYPE_5150 (0x0000040)
295 1.1 pooka #define IWM_CSR_HW_REV_TYPE_1000 (0x0000060)
296 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6x00 (0x0000070)
297 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6x50 (0x0000080)
298 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6150 (0x0000084)
299 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6x05 (0x00000B0)
300 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6x30 IWM_CSR_HW_REV_TYPE_6x05
301 1.1 pooka #define IWM_CSR_HW_REV_TYPE_6x35 IWM_CSR_HW_REV_TYPE_6x05
302 1.1 pooka #define IWM_CSR_HW_REV_TYPE_2x30 (0x00000C0)
303 1.1 pooka #define IWM_CSR_HW_REV_TYPE_2x00 (0x0000100)
304 1.1 pooka #define IWM_CSR_HW_REV_TYPE_105 (0x0000110)
305 1.1 pooka #define IWM_CSR_HW_REV_TYPE_135 (0x0000120)
306 1.1 pooka #define IWM_CSR_HW_REV_TYPE_NONE (0x00001F0)
307 1.1 pooka
308 1.1 pooka /* EEPROM REG */
309 1.1 pooka #define IWM_CSR_EEPROM_REG_READ_VALID_MSK (0x00000001)
310 1.1 pooka #define IWM_CSR_EEPROM_REG_BIT_CMD (0x00000002)
311 1.1 pooka #define IWM_CSR_EEPROM_REG_MSK_ADDR (0x0000FFFC)
312 1.1 pooka #define IWM_CSR_EEPROM_REG_MSK_DATA (0xFFFF0000)
313 1.1 pooka
314 1.1 pooka /* EEPROM GP */
315 1.1 pooka #define IWM_CSR_EEPROM_GP_VALID_MSK (0x00000007) /* signature */
316 1.1 pooka #define IWM_CSR_EEPROM_GP_IF_OWNER_MSK (0x00000180)
317 1.1 pooka #define IWM_CSR_EEPROM_GP_BAD_SIGNATURE_BOTH_EEP_AND_OTP (0x00000000)
318 1.1 pooka #define IWM_CSR_EEPROM_GP_BAD_SIG_EEP_GOOD_SIG_OTP (0x00000001)
319 1.1 pooka #define IWM_CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K (0x00000002)
320 1.1 pooka #define IWM_CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K (0x00000004)
321 1.1 pooka
322 1.1 pooka /* One-time-programmable memory general purpose reg */
323 1.1 pooka #define IWM_CSR_OTP_GP_REG_DEVICE_SELECT (0x00010000) /* 0 - EEPROM, 1 - OTP */
324 1.1 pooka #define IWM_CSR_OTP_GP_REG_OTP_ACCESS_MODE (0x00020000) /* 0 - absolute, 1 - relative */
325 1.1 pooka #define IWM_CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK (0x00100000) /* bit 20 */
326 1.1 pooka #define IWM_CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK (0x00200000) /* bit 21 */
327 1.1 pooka
328 1.1 pooka /* GP REG */
329 1.1 pooka #define IWM_CSR_GP_REG_POWER_SAVE_STATUS_MSK (0x03000000) /* bit 24/25 */
330 1.1 pooka #define IWM_CSR_GP_REG_NO_POWER_SAVE (0x00000000)
331 1.1 pooka #define IWM_CSR_GP_REG_MAC_POWER_SAVE (0x01000000)
332 1.1 pooka #define IWM_CSR_GP_REG_PHY_POWER_SAVE (0x02000000)
333 1.1 pooka #define IWM_CSR_GP_REG_POWER_SAVE_ERROR (0x03000000)
334 1.1 pooka
335 1.1 pooka
336 1.1 pooka /* CSR GIO */
337 1.1 pooka #define IWM_CSR_GIO_REG_VAL_L0S_ENABLED (0x00000002)
338 1.1 pooka
339 1.1 pooka /*
340 1.1 pooka * UCODE-DRIVER GP (general purpose) mailbox register 1
341 1.1 pooka * Host driver and uCode write and/or read this register to communicate with
342 1.1 pooka * each other.
343 1.1 pooka * Bit fields:
344 1.1 pooka * 4: UCODE_DISABLE
345 1.1 pooka * Host sets this to request permanent halt of uCode, same as
346 1.1 pooka * sending CARD_STATE command with "halt" bit set.
347 1.1 pooka * 3: CT_KILL_EXIT
348 1.1 pooka * Host sets this to request exit from CT_KILL state, i.e. host thinks
349 1.1 pooka * device temperature is low enough to continue normal operation.
350 1.1 pooka * 2: CMD_BLOCKED
351 1.1 pooka * Host sets this during RF KILL power-down sequence (HW, SW, CT KILL)
352 1.1 pooka * to release uCode to clear all Tx and command queues, enter
353 1.1 pooka * unassociated mode, and power down.
354 1.1 pooka * NOTE: Some devices also use HBUS_TARG_MBX_C register for this bit.
355 1.1 pooka * 1: SW_BIT_RFKILL
356 1.1 pooka * Host sets this when issuing CARD_STATE command to request
357 1.1 pooka * device sleep.
358 1.1 pooka * 0: MAC_SLEEP
359 1.1 pooka * uCode sets this when preparing a power-saving power-down.
360 1.1 pooka * uCode resets this when power-up is complete and SRAM is sane.
361 1.1 pooka * NOTE: device saves internal SRAM data to host when powering down,
362 1.1 pooka * and must restore this data after powering back up.
363 1.1 pooka * MAC_SLEEP is the best indication that restore is complete.
364 1.1 pooka * Later devices (5xxx/6xxx/1xxx) use non-volatile SRAM, and
365 1.1 pooka * do not need to save/restore it.
366 1.1 pooka */
367 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP (0x00000001)
368 1.1 pooka #define IWM_CSR_UCODE_SW_BIT_RFKILL (0x00000002)
369 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED (0x00000004)
370 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT (0x00000008)
371 1.1 pooka #define IWM_CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE (0x00000020)
372 1.1 pooka
373 1.1 pooka /* GP Driver */
374 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_RADIO_SKU_MSK (0x00000003)
375 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_RADIO_SKU_3x3_HYB (0x00000000)
376 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_HYB (0x00000001)
377 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA (0x00000002)
378 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6 (0x00000004)
379 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_6050_1x2 (0x00000008)
380 1.1 pooka
381 1.1 pooka #define IWM_CSR_GP_DRIVER_REG_BIT_RADIO_IQ_INVER (0x00000080)
382 1.1 pooka
383 1.1 pooka /* GIO Chicken Bits (PCI Express bus link power management) */
384 1.1 pooka #define IWM_CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX (0x00800000)
385 1.1 pooka #define IWM_CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER (0x20000000)
386 1.1 pooka
387 1.1 pooka /* LED */
388 1.1 pooka #define IWM_CSR_LED_BSM_CTRL_MSK (0xFFFFFFDF)
389 1.1 pooka #define IWM_CSR_LED_REG_TURN_ON (0x60)
390 1.1 pooka #define IWM_CSR_LED_REG_TURN_OFF (0x20)
391 1.1 pooka
392 1.1 pooka /* ANA_PLL */
393 1.1 pooka #define IWM_CSR50_ANA_PLL_CFG_VAL (0x00880300)
394 1.1 pooka
395 1.1 pooka /* HPET MEM debug */
396 1.1 pooka #define IWM_CSR_DBG_HPET_MEM_REG_VAL (0xFFFF0000)
397 1.1 pooka
398 1.1 pooka /* DRAM INT TABLE */
399 1.1 pooka #define IWM_CSR_DRAM_INT_TBL_ENABLE (1 << 31)
400 1.1 pooka #define IWM_CSR_DRAM_INIT_TBL_WRAP_CHECK (1 << 27)
401 1.1 pooka
402 1.1 pooka /* SECURE boot registers */
403 1.1 pooka #define IWM_CSR_SECURE_BOOT_CONFIG_ADDR (0x100)
404 1.1 pooka enum iwm_secure_boot_config_reg {
405 1.1 pooka IWM_CSR_SECURE_BOOT_CONFIG_INSPECTOR_BURNED_IN_OTP = 0x00000001,
406 1.1 pooka IWM_CSR_SECURE_BOOT_CONFIG_INSPECTOR_NOT_REQ = 0x00000002,
407 1.1 pooka };
408 1.1 pooka
409 1.1 pooka #define IWM_CSR_SECURE_BOOT_CPU1_STATUS_ADDR (0x100)
410 1.1 pooka #define IWM_CSR_SECURE_BOOT_CPU2_STATUS_ADDR (0x100)
411 1.1 pooka enum iwm_secure_boot_status_reg {
412 1.1 pooka IWM_CSR_SECURE_BOOT_CPU_STATUS_VERF_STATUS = 0x00000003,
413 1.1 pooka IWM_CSR_SECURE_BOOT_CPU_STATUS_VERF_COMPLETED = 0x00000002,
414 1.1 pooka IWM_CSR_SECURE_BOOT_CPU_STATUS_VERF_SUCCESS = 0x00000004,
415 1.1 pooka IWM_CSR_SECURE_BOOT_CPU_STATUS_VERF_FAIL = 0x00000008,
416 1.1 pooka IWM_CSR_SECURE_BOOT_CPU_STATUS_SIGN_VERF_FAIL = 0x00000010,
417 1.1 pooka };
418 1.1 pooka
419 1.1 pooka #define IWM_CSR_UCODE_LOAD_STATUS_ADDR (0x100)
420 1.1 pooka enum iwm_secure_load_status_reg {
421 1.1 pooka IWM_CSR_CPU_STATUS_LOADING_STARTED = 0x00000001,
422 1.1 pooka IWM_CSR_CPU_STATUS_LOADING_COMPLETED = 0x00000002,
423 1.1 pooka IWM_CSR_CPU_STATUS_NUM_OF_LAST_COMPLETED = 0x000000F8,
424 1.1 pooka IWM_CSR_CPU_STATUS_NUM_OF_LAST_LOADED_BLOCK = 0x0000FF00,
425 1.1 pooka };
426 1.1 pooka
427 1.1 pooka #define IWM_CSR_SECURE_INSPECTOR_CODE_ADDR (0x100)
428 1.1 pooka #define IWM_CSR_SECURE_INSPECTOR_DATA_ADDR (0x100)
429 1.1 pooka
430 1.1 pooka #define IWM_CSR_SECURE_TIME_OUT (100)
431 1.1 pooka
432 1.1 pooka #define IWM_FH_TCSR_0_REG0 (0x1D00)
433 1.1 pooka
434 1.1 pooka /*
435 1.1 pooka * HBUS (Host-side Bus)
436 1.1 pooka *
437 1.1 pooka * HBUS registers are mapped directly into PCI bus space, but are used
438 1.1 pooka * to indirectly access device's internal memory or registers that
439 1.1 pooka * may be powered-down.
440 1.1 pooka *
441 1.1 pooka * Use iwl_write_direct32()/iwl_read_direct32() family for these registers;
442 1.1 pooka * host must "grab nic access" via CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
443 1.1 pooka * to make sure the MAC (uCode processor, etc.) is powered up for accessing
444 1.1 pooka * internal resources.
445 1.1 pooka *
446 1.1 pooka * Do not use iwl_write32()/iwl_read32() family to access these registers;
447 1.1 pooka * these provide only simple PCI bus access, without waking up the MAC.
448 1.1 pooka */
449 1.1 pooka #define IWM_HBUS_BASE (0x400)
450 1.1 pooka
451 1.1 pooka /*
452 1.1 pooka * Registers for accessing device's internal SRAM memory (e.g. SCD SRAM
453 1.1 pooka * structures, error log, event log, verifying uCode load).
454 1.1 pooka * First write to address register, then read from or write to data register
455 1.1 pooka * to complete the job. Once the address register is set up, accesses to
456 1.1 pooka * data registers auto-increment the address by one dword.
457 1.1 pooka * Bit usage for address registers (read or write):
458 1.1 pooka * 0-31: memory address within device
459 1.1 pooka */
460 1.1 pooka #define IWM_HBUS_TARG_MEM_RADDR (IWM_HBUS_BASE+0x00c)
461 1.1 pooka #define IWM_HBUS_TARG_MEM_WADDR (IWM_HBUS_BASE+0x010)
462 1.1 pooka #define IWM_HBUS_TARG_MEM_WDAT (IWM_HBUS_BASE+0x018)
463 1.1 pooka #define IWM_HBUS_TARG_MEM_RDAT (IWM_HBUS_BASE+0x01c)
464 1.1 pooka
465 1.1 pooka /* Mailbox C, used as workaround alternative to CSR_UCODE_DRV_GP1 mailbox */
466 1.1 pooka #define IWM_HBUS_TARG_MBX_C (IWM_HBUS_BASE+0x030)
467 1.1 pooka #define IWM_HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED (0x00000004)
468 1.1 pooka
469 1.1 pooka /*
470 1.1 pooka * Registers for accessing device's internal peripheral registers
471 1.1 pooka * (e.g. SCD, BSM, etc.). First write to address register,
472 1.1 pooka * then read from or write to data register to complete the job.
473 1.1 pooka * Bit usage for address registers (read or write):
474 1.1 pooka * 0-15: register address (offset) within device
475 1.1 pooka * 24-25: (# bytes - 1) to read or write (e.g. 3 for dword)
476 1.1 pooka */
477 1.1 pooka #define IWM_HBUS_TARG_PRPH_WADDR (IWM_HBUS_BASE+0x044)
478 1.1 pooka #define IWM_HBUS_TARG_PRPH_RADDR (IWM_HBUS_BASE+0x048)
479 1.1 pooka #define IWM_HBUS_TARG_PRPH_WDAT (IWM_HBUS_BASE+0x04c)
480 1.1 pooka #define IWM_HBUS_TARG_PRPH_RDAT (IWM_HBUS_BASE+0x050)
481 1.1 pooka
482 1.1 pooka /* Used to enable DBGM */
483 1.1 pooka #define IWM_HBUS_TARG_TEST_REG (IWM_HBUS_BASE+0x05c)
484 1.1 pooka
485 1.1 pooka /*
486 1.1 pooka * Per-Tx-queue write pointer (index, really!)
487 1.1 pooka * Indicates index to next TFD that driver will fill (1 past latest filled).
488 1.1 pooka * Bit usage:
489 1.1 pooka * 0-7: queue write index
490 1.1 pooka * 11-8: queue selector
491 1.1 pooka */
492 1.1 pooka #define IWM_HBUS_TARG_WRPTR (IWM_HBUS_BASE+0x060)
493 1.1 pooka
494 1.1 pooka /**********************************************************
495 1.1 pooka * CSR values
496 1.1 pooka **********************************************************/
497 1.1 pooka /*
498 1.1 pooka * host interrupt timeout value
499 1.1 pooka * used with setting interrupt coalescing timer
500 1.1 pooka * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
501 1.1 pooka *
502 1.1 pooka * default interrupt coalescing timer is 64 x 32 = 2048 usecs
503 1.1 pooka */
504 1.1 pooka #define IWM_HOST_INT_TIMEOUT_MAX (0xFF)
505 1.1 pooka #define IWM_HOST_INT_TIMEOUT_DEF (0x40)
506 1.1 pooka #define IWM_HOST_INT_TIMEOUT_MIN (0x0)
507 1.1 pooka #define IWM_HOST_INT_OPER_MODE (1 << 31)
508 1.1 pooka
509 1.1 pooka /*****************************************************************************
510 1.1 pooka * 7000/3000 series SHR DTS addresses *
511 1.1 pooka *****************************************************************************/
512 1.1 pooka
513 1.1 pooka /* Diode Results Register Structure: */
514 1.1 pooka enum iwm_dtd_diode_reg {
515 1.1 pooka IWM_DTS_DIODE_REG_DIG_VAL = 0x000000FF, /* bits [7:0] */
516 1.1 pooka IWM_DTS_DIODE_REG_VREF_LOW = 0x0000FF00, /* bits [15:8] */
517 1.1 pooka IWM_DTS_DIODE_REG_VREF_HIGH = 0x00FF0000, /* bits [23:16] */
518 1.1 pooka IWM_DTS_DIODE_REG_VREF_ID = 0x03000000, /* bits [25:24] */
519 1.1 pooka IWM_DTS_DIODE_REG_PASS_ONCE = 0x80000000, /* bits [31:31] */
520 1.1 pooka IWM_DTS_DIODE_REG_FLAGS_MSK = 0xFF000000, /* bits [31:24] */
521 1.1 pooka /* Those are the masks INSIDE the flags bit-field: */
522 1.1 pooka IWM_DTS_DIODE_REG_FLAGS_VREFS_ID_POS = 0,
523 1.1 pooka IWM_DTS_DIODE_REG_FLAGS_VREFS_ID = 0x00000003, /* bits [1:0] */
524 1.1 pooka IWM_DTS_DIODE_REG_FLAGS_PASS_ONCE_POS = 7,
525 1.1 pooka IWM_DTS_DIODE_REG_FLAGS_PASS_ONCE = 0x00000080, /* bits [7:7] */
526 1.1 pooka };
527 1.1 pooka
528 1.1 pooka /*
529 1.1 pooka * END iwl-csr.h
530 1.1 pooka */
531 1.1 pooka
532 1.1 pooka /*
533 1.1 pooka * BEGIN iwl-fw.h
534 1.1 pooka */
535 1.1 pooka
536 1.1 pooka /**
537 1.1 pooka * enum iwl_ucode_tlv_flag - ucode API flags
538 1.1 pooka * @IWM_UCODE_TLV_FLAGS_PAN: This is PAN capable microcode; this previously
539 1.1 pooka * was a separate TLV but moved here to save space.
540 1.1 pooka * @IWM_UCODE_TLV_FLAGS_NEWSCAN: new uCode scan behaviour on hidden SSID,
541 1.1 pooka * treats good CRC threshold as a boolean
542 1.1 pooka * @IWM_UCODE_TLV_FLAGS_MFP: This uCode image supports MFP (802.11w).
543 1.1 pooka * @IWM_UCODE_TLV_FLAGS_P2P: This uCode image supports P2P.
544 1.1 pooka * @IWM_UCODE_TLV_FLAGS_DW_BC_TABLE: The SCD byte count table is in DWORDS
545 1.1 pooka * @IWM_UCODE_TLV_FLAGS_UAPSD: This uCode image supports uAPSD
546 1.1 pooka * @IWM_UCODE_TLV_FLAGS_SHORT_BL: 16 entries of black list instead of 64 in scan
547 1.1 pooka * offload profile config command.
548 1.1 pooka * @IWM_UCODE_TLV_FLAGS_RX_ENERGY_API: supports rx signal strength api
549 1.1 pooka * @IWM_UCODE_TLV_FLAGS_TIME_EVENT_API_V2: using the new time event API.
550 1.1 pooka * @IWM_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS: D3 image supports up to six
551 1.1 pooka * (rather than two) IPv6 addresses
552 1.1 pooka * @IWM_UCODE_TLV_FLAGS_BF_UPDATED: new beacon filtering API
553 1.1 pooka * @IWM_UCODE_TLV_FLAGS_NO_BASIC_SSID: not sending a probe with the SSID element
554 1.1 pooka * from the probe request template.
555 1.1 pooka * @IWM_UCODE_TLV_FLAGS_D3_CONTINUITY_API: modified D3 API to allow keeping
556 1.1 pooka * connection when going back to D0
557 1.1 pooka * @IWM_UCODE_TLV_FLAGS_NEW_NSOFFL_SMALL: new NS offload (small version)
558 1.1 pooka * @IWM_UCODE_TLV_FLAGS_NEW_NSOFFL_LARGE: new NS offload (large version)
559 1.1 pooka * @IWM_UCODE_TLV_FLAGS_SCHED_SCAN: this uCode image supports scheduled scan.
560 1.1 pooka * @IWM_UCODE_TLV_FLAGS_STA_KEY_CMD: new ADD_STA and ADD_STA_KEY command API
561 1.1 pooka * @IWM_UCODE_TLV_FLAGS_DEVICE_PS_CMD: support device wide power command
562 1.1 pooka * containing CAM (Continuous Active Mode) indication.
563 1.1 pooka * @IWM_UCODE_TLV_FLAGS_P2P_PS: P2P client power save is supported (only on a
564 1.1 pooka * single bound interface).
565 1.1 pooka * @IWM_UCODE_TLV_FLAGS_P2P_PS_UAPSD: P2P client supports uAPSD power save
566 1.1 pooka */
567 1.1 pooka enum iwm_ucode_tlv_flag {
568 1.1 pooka IWM_UCODE_TLV_FLAGS_PAN = (1 << 0),
569 1.1 pooka IWM_UCODE_TLV_FLAGS_NEWSCAN = (1 << 1),
570 1.1 pooka IWM_UCODE_TLV_FLAGS_MFP = (1 << 2),
571 1.1 pooka IWM_UCODE_TLV_FLAGS_P2P = (1 << 3),
572 1.1 pooka IWM_UCODE_TLV_FLAGS_DW_BC_TABLE = (1 << 4),
573 1.1 pooka IWM_UCODE_TLV_FLAGS_NEWBT_COEX = (1 << 5),
574 1.1 pooka IWM_UCODE_TLV_FLAGS_PM_CMD_SUPPORT = (1 << 6),
575 1.1 pooka IWM_UCODE_TLV_FLAGS_SHORT_BL = (1 << 7),
576 1.1 pooka IWM_UCODE_TLV_FLAGS_RX_ENERGY_API = (1 << 8),
577 1.1 pooka IWM_UCODE_TLV_FLAGS_TIME_EVENT_API_V2 = (1 << 9),
578 1.1 pooka IWM_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS = (1 << 10),
579 1.1 pooka IWM_UCODE_TLV_FLAGS_BF_UPDATED = (1 << 11),
580 1.1 pooka IWM_UCODE_TLV_FLAGS_NO_BASIC_SSID = (1 << 12),
581 1.1 pooka IWM_UCODE_TLV_FLAGS_D3_CONTINUITY_API = (1 << 14),
582 1.1 pooka IWM_UCODE_TLV_FLAGS_NEW_NSOFFL_SMALL = (1 << 15),
583 1.1 pooka IWM_UCODE_TLV_FLAGS_NEW_NSOFFL_LARGE = (1 << 16),
584 1.1 pooka IWM_UCODE_TLV_FLAGS_SCHED_SCAN = (1 << 17),
585 1.1 pooka IWM_UCODE_TLV_FLAGS_STA_KEY_CMD = (1 << 19),
586 1.1 pooka IWM_UCODE_TLV_FLAGS_DEVICE_PS_CMD = (1 << 20),
587 1.1 pooka IWM_UCODE_TLV_FLAGS_P2P_PS = (1 << 21),
588 1.1 pooka IWM_UCODE_TLV_FLAGS_UAPSD_SUPPORT = (1 << 24),
589 1.1 pooka IWM_UCODE_TLV_FLAGS_P2P_PS_UAPSD = (1 << 26),
590 1.1 pooka };
591 1.1 pooka
592 1.1 pooka /* The default calibrate table size if not specified by firmware file */
593 1.1 pooka #define IWM_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE 18
594 1.1 pooka #define IWM_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE 19
595 1.1 pooka #define IWM_MAX_PHY_CALIBRATE_TBL_SIZE 253
596 1.1 pooka
597 1.1 pooka /* The default max probe length if not specified by the firmware file */
598 1.1 pooka #define IWM_DEFAULT_MAX_PROBE_LENGTH 200
599 1.1 pooka
600 1.1 pooka /*
601 1.1 pooka * enumeration of ucode section.
602 1.1 pooka * This enumeration is used directly for older firmware (before 16.0).
603 1.1 pooka * For new firmware, there can be up to 4 sections (see below) but the
604 1.1 pooka * first one packaged into the firmware file is the DATA section and
605 1.1 pooka * some debugging code accesses that.
606 1.1 pooka */
607 1.1 pooka enum iwm_ucode_sec {
608 1.1 pooka IWM_UCODE_SECTION_DATA,
609 1.1 pooka IWM_UCODE_SECTION_INST,
610 1.1 pooka };
611 1.1 pooka /*
612 1.1 pooka * For 16.0 uCode and above, there is no differentiation between sections,
613 1.1 pooka * just an offset to the HW address.
614 1.1 pooka */
615 1.1 pooka #define IWM_UCODE_SECTION_MAX 6
616 1.1 pooka #define IWM_UCODE_FIRST_SECTION_OF_SECOND_CPU (IWM_UCODE_SECTION_MAX/2)
617 1.1 pooka
618 1.1 pooka /* uCode version contains 4 values: Major/Minor/API/Serial */
619 1.1 pooka #define IWM_UCODE_MAJOR(ver) (((ver) & 0xFF000000) >> 24)
620 1.1 pooka #define IWM_UCODE_MINOR(ver) (((ver) & 0x00FF0000) >> 16)
621 1.1 pooka #define IWM_UCODE_API(ver) (((ver) & 0x0000FF00) >> 8)
622 1.1 pooka #define IWM_UCODE_SERIAL(ver) ((ver) & 0x000000FF)
623 1.1 pooka
624 1.1 pooka /*
625 1.1 pooka * Calibration control struct.
626 1.1 pooka * Sent as part of the phy configuration command.
627 1.1 pooka * @flow_trigger: bitmap for which calibrations to perform according to
628 1.1 pooka * flow triggers.
629 1.1 pooka * @event_trigger: bitmap for which calibrations to perform according to
630 1.1 pooka * event triggers.
631 1.1 pooka */
632 1.1 pooka struct iwm_tlv_calib_ctrl {
633 1.1 pooka uint32_t flow_trigger;
634 1.1 pooka uint32_t event_trigger;
635 1.1 pooka } __packed;
636 1.1 pooka
637 1.1 pooka enum iwm_fw_phy_cfg {
638 1.1 pooka IWM_FW_PHY_CFG_RADIO_TYPE_POS = 0,
639 1.1 pooka IWM_FW_PHY_CFG_RADIO_TYPE = 0x3 << IWM_FW_PHY_CFG_RADIO_TYPE_POS,
640 1.1 pooka IWM_FW_PHY_CFG_RADIO_STEP_POS = 2,
641 1.1 pooka IWM_FW_PHY_CFG_RADIO_STEP = 0x3 << IWM_FW_PHY_CFG_RADIO_STEP_POS,
642 1.1 pooka IWM_FW_PHY_CFG_RADIO_DASH_POS = 4,
643 1.1 pooka IWM_FW_PHY_CFG_RADIO_DASH = 0x3 << IWM_FW_PHY_CFG_RADIO_DASH_POS,
644 1.1 pooka IWM_FW_PHY_CFG_TX_CHAIN_POS = 16,
645 1.1 pooka IWM_FW_PHY_CFG_TX_CHAIN = 0xf << IWM_FW_PHY_CFG_TX_CHAIN_POS,
646 1.1 pooka IWM_FW_PHY_CFG_RX_CHAIN_POS = 20,
647 1.1 pooka IWM_FW_PHY_CFG_RX_CHAIN = 0xf << IWM_FW_PHY_CFG_RX_CHAIN_POS,
648 1.1 pooka };
649 1.1 pooka
650 1.1 pooka #define IWM_UCODE_MAX_CS 1
651 1.1 pooka
652 1.1 pooka /**
653 1.1 pooka * struct iwm_fw_cipher_scheme - a cipher scheme supported by FW.
654 1.1 pooka * @cipher: a cipher suite selector
655 1.1 pooka * @flags: cipher scheme flags (currently reserved for a future use)
656 1.1 pooka * @hdr_len: a size of MPDU security header
657 1.1 pooka * @pn_len: a size of PN
658 1.1 pooka * @pn_off: an offset of pn from the beginning of the security header
659 1.1 pooka * @key_idx_off: an offset of key index byte in the security header
660 1.1 pooka * @key_idx_mask: a bit mask of key_idx bits
661 1.1 pooka * @key_idx_shift: bit shift needed to get key_idx
662 1.1 pooka * @mic_len: mic length in bytes
663 1.1 pooka * @hw_cipher: a HW cipher index used in host commands
664 1.1 pooka */
665 1.1 pooka struct iwm_fw_cipher_scheme {
666 1.1 pooka uint32_t cipher;
667 1.1 pooka uint8_t flags;
668 1.1 pooka uint8_t hdr_len;
669 1.1 pooka uint8_t pn_len;
670 1.1 pooka uint8_t pn_off;
671 1.1 pooka uint8_t key_idx_off;
672 1.1 pooka uint8_t key_idx_mask;
673 1.1 pooka uint8_t key_idx_shift;
674 1.1 pooka uint8_t mic_len;
675 1.1 pooka uint8_t hw_cipher;
676 1.1 pooka } __packed;
677 1.1 pooka
678 1.1 pooka /**
679 1.1 pooka * struct iwm_fw_cscheme_list - a cipher scheme list
680 1.1 pooka * @size: a number of entries
681 1.1 pooka * @cs: cipher scheme entries
682 1.1 pooka */
683 1.1 pooka struct iwm_fw_cscheme_list {
684 1.1 pooka uint8_t size;
685 1.1 pooka struct iwm_fw_cipher_scheme cs[];
686 1.1 pooka } __packed;
687 1.1 pooka
688 1.1 pooka /*
689 1.1 pooka * END iwl-fw.h
690 1.1 pooka */
691 1.1 pooka
692 1.1 pooka /*
693 1.1 pooka * BEGIN iwl-fw-file.h
694 1.1 pooka */
695 1.1 pooka
696 1.1 pooka /* v1/v2 uCode file layout */
697 1.1 pooka struct iwm_ucode_header {
698 1.1 pooka uint32_t ver; /* major/minor/API/serial */
699 1.1 pooka union {
700 1.1 pooka struct {
701 1.1 pooka uint32_t inst_size; /* bytes of runtime code */
702 1.1 pooka uint32_t data_size; /* bytes of runtime data */
703 1.1 pooka uint32_t init_size; /* bytes of init code */
704 1.1 pooka uint32_t init_data_size; /* bytes of init data */
705 1.1 pooka uint32_t boot_size; /* bytes of bootstrap code */
706 1.1 pooka uint8_t data[0]; /* in same order as sizes */
707 1.1 pooka } v1;
708 1.1 pooka struct {
709 1.1 pooka uint32_t build; /* build number */
710 1.1 pooka uint32_t inst_size; /* bytes of runtime code */
711 1.1 pooka uint32_t data_size; /* bytes of runtime data */
712 1.1 pooka uint32_t init_size; /* bytes of init code */
713 1.1 pooka uint32_t init_data_size; /* bytes of init data */
714 1.1 pooka uint32_t boot_size; /* bytes of bootstrap code */
715 1.1 pooka uint8_t data[0]; /* in same order as sizes */
716 1.1 pooka } v2;
717 1.1 pooka } u;
718 1.1 pooka };
719 1.1 pooka
720 1.1 pooka /*
721 1.1 pooka * new TLV uCode file layout
722 1.1 pooka *
723 1.1 pooka * The new TLV file format contains TLVs, that each specify
724 1.1 pooka * some piece of data.
725 1.1 pooka */
726 1.1 pooka
727 1.1 pooka enum iwm_ucode_tlv_type {
728 1.1 pooka IWM_UCODE_TLV_INVALID = 0, /* unused */
729 1.1 pooka IWM_UCODE_TLV_INST = 1,
730 1.1 pooka IWM_UCODE_TLV_DATA = 2,
731 1.1 pooka IWM_UCODE_TLV_INIT = 3,
732 1.1 pooka IWM_UCODE_TLV_INIT_DATA = 4,
733 1.1 pooka IWM_UCODE_TLV_BOOT = 5,
734 1.1 pooka IWM_UCODE_TLV_PROBE_MAX_LEN = 6, /* a uint32_t value */
735 1.1 pooka IWM_UCODE_TLV_PAN = 7,
736 1.1 pooka IWM_UCODE_TLV_RUNT_EVTLOG_PTR = 8,
737 1.1 pooka IWM_UCODE_TLV_RUNT_EVTLOG_SIZE = 9,
738 1.1 pooka IWM_UCODE_TLV_RUNT_ERRLOG_PTR = 10,
739 1.1 pooka IWM_UCODE_TLV_INIT_EVTLOG_PTR = 11,
740 1.1 pooka IWM_UCODE_TLV_INIT_EVTLOG_SIZE = 12,
741 1.1 pooka IWM_UCODE_TLV_INIT_ERRLOG_PTR = 13,
742 1.1 pooka IWM_UCODE_TLV_ENHANCE_SENS_TBL = 14,
743 1.1 pooka IWM_UCODE_TLV_PHY_CALIBRATION_SIZE = 15,
744 1.1 pooka IWM_UCODE_TLV_WOWLAN_INST = 16,
745 1.1 pooka IWM_UCODE_TLV_WOWLAN_DATA = 17,
746 1.1 pooka IWM_UCODE_TLV_FLAGS = 18,
747 1.1 pooka IWM_UCODE_TLV_SEC_RT = 19,
748 1.1 pooka IWM_UCODE_TLV_SEC_INIT = 20,
749 1.1 pooka IWM_UCODE_TLV_SEC_WOWLAN = 21,
750 1.1 pooka IWM_UCODE_TLV_DEF_CALIB = 22,
751 1.1 pooka IWM_UCODE_TLV_PHY_SKU = 23,
752 1.1 pooka IWM_UCODE_TLV_SECURE_SEC_RT = 24,
753 1.1 pooka IWM_UCODE_TLV_SECURE_SEC_INIT = 25,
754 1.1 pooka IWM_UCODE_TLV_SECURE_SEC_WOWLAN = 26,
755 1.1 pooka IWM_UCODE_TLV_NUM_OF_CPU = 27,
756 1.1 pooka IWM_UCODE_TLV_CSCHEME = 28,
757 1.1 pooka
758 1.1 pooka /*
759 1.1 pooka * Following two are not in our base tag, but allow
760 1.1 pooka * handling ucode version 9.
761 1.1 pooka */
762 1.1 pooka IWM_UCODE_TLV_API_CHANGES_SET = 29,
763 1.1 pooka IWM_UCODE_TLV_ENABLED_CAPABILITIES = 30
764 1.1 pooka };
765 1.1 pooka
766 1.1 pooka struct iwm_ucode_tlv {
767 1.1 pooka uint32_t type; /* see above */
768 1.1 pooka uint32_t length; /* not including type/length fields */
769 1.1 pooka uint8_t data[0];
770 1.1 pooka };
771 1.1 pooka
772 1.1 pooka #define IWM_TLV_UCODE_MAGIC 0x0a4c5749
773 1.1 pooka
774 1.1 pooka struct iwm_tlv_ucode_header {
775 1.1 pooka /*
776 1.1 pooka * The TLV style ucode header is distinguished from
777 1.1 pooka * the v1/v2 style header by first four bytes being
778 1.1 pooka * zero, as such is an invalid combination of
779 1.1 pooka * major/minor/API/serial versions.
780 1.1 pooka */
781 1.1 pooka uint32_t zero;
782 1.1 pooka uint32_t magic;
783 1.1 pooka uint8_t human_readable[64];
784 1.1 pooka uint32_t ver; /* major/minor/API/serial */
785 1.1 pooka uint32_t build;
786 1.1 pooka uint64_t ignore;
787 1.1 pooka /*
788 1.1 pooka * The data contained herein has a TLV layout,
789 1.1 pooka * see above for the TLV header and types.
790 1.1 pooka * Note that each TLV is padded to a length
791 1.1 pooka * that is a multiple of 4 for alignment.
792 1.1 pooka */
793 1.1 pooka uint8_t data[0];
794 1.1 pooka };
795 1.1 pooka
796 1.1 pooka /*
797 1.1 pooka * END iwl-fw-file.h
798 1.1 pooka */
799 1.1 pooka
800 1.1 pooka /*
801 1.1 pooka * BEGIN iwl-prph.h
802 1.1 pooka */
803 1.1 pooka
804 1.1 pooka /*
805 1.1 pooka * Registers in this file are internal, not PCI bus memory mapped.
806 1.1 pooka * Driver accesses these via IWM_HBUS_TARG_PRPH_* registers.
807 1.1 pooka */
808 1.1 pooka #define IWM_PRPH_BASE (0x00000)
809 1.1 pooka #define IWM_PRPH_END (0xFFFFF)
810 1.1 pooka
811 1.1 pooka /* APMG (power management) constants */
812 1.1 pooka #define IWM_APMG_BASE (IWM_PRPH_BASE + 0x3000)
813 1.1 pooka #define IWM_APMG_CLK_CTRL_REG (IWM_APMG_BASE + 0x0000)
814 1.1 pooka #define IWM_APMG_CLK_EN_REG (IWM_APMG_BASE + 0x0004)
815 1.1 pooka #define IWM_APMG_CLK_DIS_REG (IWM_APMG_BASE + 0x0008)
816 1.1 pooka #define IWM_APMG_PS_CTRL_REG (IWM_APMG_BASE + 0x000c)
817 1.1 pooka #define IWM_APMG_PCIDEV_STT_REG (IWM_APMG_BASE + 0x0010)
818 1.1 pooka #define IWM_APMG_RFKILL_REG (IWM_APMG_BASE + 0x0014)
819 1.1 pooka #define IWM_APMG_RTC_INT_STT_REG (IWM_APMG_BASE + 0x001c)
820 1.1 pooka #define IWM_APMG_RTC_INT_MSK_REG (IWM_APMG_BASE + 0x0020)
821 1.1 pooka #define IWM_APMG_DIGITAL_SVR_REG (IWM_APMG_BASE + 0x0058)
822 1.1 pooka #define IWM_APMG_ANALOG_SVR_REG (IWM_APMG_BASE + 0x006C)
823 1.1 pooka
824 1.1 pooka #define IWM_APMS_CLK_VAL_MRB_FUNC_MODE (0x00000001)
825 1.1 pooka #define IWM_APMG_CLK_VAL_DMA_CLK_RQT (0x00000200)
826 1.1 pooka #define IWM_APMG_CLK_VAL_BSM_CLK_RQT (0x00000800)
827 1.1 pooka
828 1.1 pooka #define IWM_APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS (0x00400000)
829 1.1 pooka #define IWM_APMG_PS_CTRL_VAL_RESET_REQ (0x04000000)
830 1.1 pooka #define IWM_APMG_PS_CTRL_MSK_PWR_SRC (0x03000000)
831 1.1 pooka #define IWM_APMG_PS_CTRL_VAL_PWR_SRC_VMAIN (0x00000000)
832 1.1 pooka #define IWM_APMG_PS_CTRL_VAL_PWR_SRC_VAUX (0x02000000)
833 1.1 pooka #define IWM_APMG_SVR_VOLTAGE_CONFIG_BIT_MSK (0x000001E0) /* bit 8:5 */
834 1.1 pooka #define IWM_APMG_SVR_DIGITAL_VOLTAGE_1_32 (0x00000060)
835 1.1 pooka
836 1.1 pooka #define IWM_APMG_PCIDEV_STT_VAL_L1_ACT_DIS (0x00000800)
837 1.1 pooka
838 1.1 pooka #define IWM_APMG_RTC_INT_STT_RFKILL (0x10000000)
839 1.1 pooka
840 1.1 pooka /* Device system time */
841 1.1 pooka #define IWM_DEVICE_SYSTEM_TIME_REG 0xA0206C
842 1.1 pooka
843 1.1 pooka /* Device NMI register */
844 1.1 pooka #define IWM_DEVICE_SET_NMI_REG 0x00a01c30
845 1.1 pooka
846 1.1 pooka /*****************************************************************************
847 1.1 pooka * 7000/3000 series SHR DTS addresses *
848 1.1 pooka *****************************************************************************/
849 1.1 pooka
850 1.1 pooka #define IWM_SHR_MISC_WFM_DTS_EN (0x00a10024)
851 1.1 pooka #define IWM_DTSC_CFG_MODE (0x00a10604)
852 1.1 pooka #define IWM_DTSC_VREF_AVG (0x00a10648)
853 1.1 pooka #define IWM_DTSC_VREF5_AVG (0x00a1064c)
854 1.1 pooka #define IWM_DTSC_CFG_MODE_PERIODIC (0x2)
855 1.1 pooka #define IWM_DTSC_PTAT_AVG (0x00a10650)
856 1.1 pooka
857 1.1 pooka
858 1.1 pooka /**
859 1.1 pooka * Tx Scheduler
860 1.1 pooka *
861 1.1 pooka * The Tx Scheduler selects the next frame to be transmitted, choosing TFDs
862 1.1 pooka * (Transmit Frame Descriptors) from up to 16 circular Tx queues resident in
863 1.1 pooka * host DRAM. It steers each frame's Tx command (which contains the frame
864 1.1 pooka * data) into one of up to 7 prioritized Tx DMA FIFO channels within the
865 1.1 pooka * device. A queue maps to only one (selectable by driver) Tx DMA channel,
866 1.1 pooka * but one DMA channel may take input from several queues.
867 1.1 pooka *
868 1.1 pooka * Tx DMA FIFOs have dedicated purposes.
869 1.1 pooka *
870 1.1 pooka * For 5000 series and up, they are used differently
871 1.1 pooka * (cf. iwl5000_default_queue_to_tx_fifo in iwl-5000.c):
872 1.1 pooka *
873 1.1 pooka * 0 -- EDCA BK (background) frames, lowest priority
874 1.1 pooka * 1 -- EDCA BE (best effort) frames, normal priority
875 1.1 pooka * 2 -- EDCA VI (video) frames, higher priority
876 1.1 pooka * 3 -- EDCA VO (voice) and management frames, highest priority
877 1.1 pooka * 4 -- unused
878 1.1 pooka * 5 -- unused
879 1.1 pooka * 6 -- unused
880 1.1 pooka * 7 -- Commands
881 1.1 pooka *
882 1.1 pooka * Driver should normally map queues 0-6 to Tx DMA/FIFO channels 0-6.
883 1.1 pooka * In addition, driver can map the remaining queues to Tx DMA/FIFO
884 1.1 pooka * channels 0-3 to support 11n aggregation via EDCA DMA channels.
885 1.1 pooka *
886 1.1 pooka * The driver sets up each queue to work in one of two modes:
887 1.1 pooka *
888 1.1 pooka * 1) Scheduler-Ack, in which the scheduler automatically supports a
889 1.1 pooka * block-ack (BA) window of up to 64 TFDs. In this mode, each queue
890 1.1 pooka * contains TFDs for a unique combination of Recipient Address (RA)
891 1.1 pooka * and Traffic Identifier (TID), that is, traffic of a given
892 1.1 pooka * Quality-Of-Service (QOS) priority, destined for a single station.
893 1.1 pooka *
894 1.1 pooka * In scheduler-ack mode, the scheduler keeps track of the Tx status of
895 1.1 pooka * each frame within the BA window, including whether it's been transmitted,
896 1.1 pooka * and whether it's been acknowledged by the receiving station. The device
897 1.1 pooka * automatically processes block-acks received from the receiving STA,
898 1.1 pooka * and reschedules un-acked frames to be retransmitted (successful
899 1.1 pooka * Tx completion may end up being out-of-order).
900 1.1 pooka *
901 1.1 pooka * The driver must maintain the queue's Byte Count table in host DRAM
902 1.1 pooka * for this mode.
903 1.1 pooka * This mode does not support fragmentation.
904 1.1 pooka *
905 1.1 pooka * 2) FIFO (a.k.a. non-Scheduler-ACK), in which each TFD is processed in order.
906 1.1 pooka * The device may automatically retry Tx, but will retry only one frame
907 1.1 pooka * at a time, until receiving ACK from receiving station, or reaching
908 1.1 pooka * retry limit and giving up.
909 1.1 pooka *
910 1.1 pooka * The command queue (#4/#9) must use this mode!
911 1.1 pooka * This mode does not require use of the Byte Count table in host DRAM.
912 1.1 pooka *
913 1.1 pooka * Driver controls scheduler operation via 3 means:
914 1.1 pooka * 1) Scheduler registers
915 1.1 pooka * 2) Shared scheduler data base in internal SRAM
916 1.1 pooka * 3) Shared data in host DRAM
917 1.1 pooka *
918 1.1 pooka * Initialization:
919 1.1 pooka *
920 1.1 pooka * When loading, driver should allocate memory for:
921 1.1 pooka * 1) 16 TFD circular buffers, each with space for (typically) 256 TFDs.
922 1.1 pooka * 2) 16 Byte Count circular buffers in 16 KBytes contiguous memory
923 1.1 pooka * (1024 bytes for each queue).
924 1.1 pooka *
925 1.1 pooka * After receiving "Alive" response from uCode, driver must initialize
926 1.1 pooka * the scheduler (especially for queue #4/#9, the command queue, otherwise
927 1.1 pooka * the driver can't issue commands!):
928 1.1 pooka */
929 1.1 pooka #define IWM_SCD_MEM_LOWER_BOUND (0x0000)
930 1.1 pooka
931 1.1 pooka /**
932 1.1 pooka * Max Tx window size is the max number of contiguous TFDs that the scheduler
933 1.1 pooka * can keep track of at one time when creating block-ack chains of frames.
934 1.1 pooka * Note that "64" matches the number of ack bits in a block-ack packet.
935 1.1 pooka */
936 1.1 pooka #define IWM_SCD_WIN_SIZE 64
937 1.1 pooka #define IWM_SCD_FRAME_LIMIT 64
938 1.1 pooka
939 1.1 pooka #define IWM_SCD_TXFIFO_POS_TID (0)
940 1.1 pooka #define IWM_SCD_TXFIFO_POS_RA (4)
941 1.1 pooka #define IWM_SCD_QUEUE_RA_TID_MAP_RATID_MSK (0x01FF)
942 1.1 pooka
943 1.1 pooka /* agn SCD */
944 1.1 pooka #define IWM_SCD_QUEUE_STTS_REG_POS_TXF (0)
945 1.1 pooka #define IWM_SCD_QUEUE_STTS_REG_POS_ACTIVE (3)
946 1.1 pooka #define IWM_SCD_QUEUE_STTS_REG_POS_WSL (4)
947 1.1 pooka #define IWM_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN (19)
948 1.1 pooka #define IWM_SCD_QUEUE_STTS_REG_MSK (0x017F0000)
949 1.1 pooka
950 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG1_CREDIT_POS (8)
951 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG1_CREDIT_MSK (0x00FFFF00)
952 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG1_SUPER_CREDIT_POS (24)
953 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG1_SUPER_CREDIT_MSK (0xFF000000)
954 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS (0)
955 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK (0x0000007F)
956 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS (16)
957 1.1 pooka #define IWM_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK (0x007F0000)
958 1.1 pooka
959 1.1 pooka /* Context Data */
960 1.1 pooka #define IWM_SCD_CONTEXT_MEM_LOWER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x600)
961 1.1 pooka #define IWM_SCD_CONTEXT_MEM_UPPER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x6A0)
962 1.1 pooka
963 1.1 pooka /* Tx status */
964 1.1 pooka #define IWM_SCD_TX_STTS_MEM_LOWER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x6A0)
965 1.1 pooka #define IWM_SCD_TX_STTS_MEM_UPPER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x7E0)
966 1.1 pooka
967 1.1 pooka /* Translation Data */
968 1.1 pooka #define IWM_SCD_TRANS_TBL_MEM_LOWER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x7E0)
969 1.1 pooka #define IWM_SCD_TRANS_TBL_MEM_UPPER_BOUND (IWM_SCD_MEM_LOWER_BOUND + 0x808)
970 1.1 pooka
971 1.1 pooka #define IWM_SCD_CONTEXT_QUEUE_OFFSET(x)\
972 1.1 pooka (IWM_SCD_CONTEXT_MEM_LOWER_BOUND + ((x) * 8))
973 1.1 pooka
974 1.1 pooka #define IWM_SCD_TX_STTS_QUEUE_OFFSET(x)\
975 1.1 pooka (IWM_SCD_TX_STTS_MEM_LOWER_BOUND + ((x) * 16))
976 1.1 pooka
977 1.1 pooka #define IWM_SCD_TRANS_TBL_OFFSET_QUEUE(x) \
978 1.1 pooka ((IWM_SCD_TRANS_TBL_MEM_LOWER_BOUND + ((x) * 2)) & 0xfffc)
979 1.1 pooka
980 1.1 pooka #define IWM_SCD_BASE (IWM_PRPH_BASE + 0xa02c00)
981 1.1 pooka
982 1.1 pooka #define IWM_SCD_SRAM_BASE_ADDR (IWM_SCD_BASE + 0x0)
983 1.1 pooka #define IWM_SCD_DRAM_BASE_ADDR (IWM_SCD_BASE + 0x8)
984 1.1 pooka #define IWM_SCD_AIT (IWM_SCD_BASE + 0x0c)
985 1.1 pooka #define IWM_SCD_TXFACT (IWM_SCD_BASE + 0x10)
986 1.1 pooka #define IWM_SCD_ACTIVE (IWM_SCD_BASE + 0x14)
987 1.1 pooka #define IWM_SCD_QUEUECHAIN_SEL (IWM_SCD_BASE + 0xe8)
988 1.1 pooka #define IWM_SCD_CHAINEXT_EN (IWM_SCD_BASE + 0x244)
989 1.1 pooka #define IWM_SCD_AGGR_SEL (IWM_SCD_BASE + 0x248)
990 1.1 pooka #define IWM_SCD_INTERRUPT_MASK (IWM_SCD_BASE + 0x108)
991 1.1 pooka
992 1.1 pooka static inline unsigned int IWM_SCD_QUEUE_WRPTR(unsigned int chnl)
993 1.1 pooka {
994 1.1 pooka if (chnl < 20)
995 1.1 pooka return IWM_SCD_BASE + 0x18 + chnl * 4;
996 1.1 pooka return IWM_SCD_BASE + 0x284 + (chnl - 20) * 4;
997 1.1 pooka }
998 1.1 pooka
999 1.1 pooka static inline unsigned int IWM_SCD_QUEUE_RDPTR(unsigned int chnl)
1000 1.1 pooka {
1001 1.1 pooka if (chnl < 20)
1002 1.1 pooka return IWM_SCD_BASE + 0x68 + chnl * 4;
1003 1.1 pooka return IWM_SCD_BASE + 0x2B4 + (chnl - 20) * 4;
1004 1.1 pooka }
1005 1.1 pooka
1006 1.1 pooka static inline unsigned int IWM_SCD_QUEUE_STATUS_BITS(unsigned int chnl)
1007 1.1 pooka {
1008 1.1 pooka if (chnl < 20)
1009 1.1 pooka return IWM_SCD_BASE + 0x10c + chnl * 4;
1010 1.1 pooka return IWM_SCD_BASE + 0x384 + (chnl - 20) * 4;
1011 1.1 pooka }
1012 1.1 pooka
1013 1.1 pooka /*********************** END TX SCHEDULER *************************************/
1014 1.1 pooka
1015 1.1 pooka /* Oscillator clock */
1016 1.1 pooka #define IWM_OSC_CLK (0xa04068)
1017 1.1 pooka #define IWM_OSC_CLK_FORCE_CONTROL (0x8)
1018 1.1 pooka
1019 1.1 pooka /*
1020 1.1 pooka * END iwl-prph.h
1021 1.1 pooka */
1022 1.1 pooka
1023 1.1 pooka /*
1024 1.1 pooka * BEGIN iwl-fh.h
1025 1.1 pooka */
1026 1.1 pooka
1027 1.1 pooka /****************************/
1028 1.1 pooka /* Flow Handler Definitions */
1029 1.1 pooka /****************************/
1030 1.1 pooka
1031 1.1 pooka /**
1032 1.1 pooka * This I/O area is directly read/writable by driver (e.g. Linux uses writel())
1033 1.1 pooka * Addresses are offsets from device's PCI hardware base address.
1034 1.1 pooka */
1035 1.1 pooka #define IWM_FH_MEM_LOWER_BOUND (0x1000)
1036 1.1 pooka #define IWM_FH_MEM_UPPER_BOUND (0x2000)
1037 1.1 pooka
1038 1.1 pooka /**
1039 1.1 pooka * Keep-Warm (KW) buffer base address.
1040 1.1 pooka *
1041 1.1 pooka * Driver must allocate a 4KByte buffer that is for keeping the
1042 1.1 pooka * host DRAM powered on (via dummy accesses to DRAM) to maintain low-latency
1043 1.1 pooka * DRAM access when doing Txing or Rxing. The dummy accesses prevent host
1044 1.1 pooka * from going into a power-savings mode that would cause higher DRAM latency,
1045 1.1 pooka * and possible data over/under-runs, before all Tx/Rx is complete.
1046 1.1 pooka *
1047 1.1 pooka * Driver loads IWM_FH_KW_MEM_ADDR_REG with the physical address (bits 35:4)
1048 1.1 pooka * of the buffer, which must be 4K aligned. Once this is set up, the device
1049 1.1 pooka * automatically invokes keep-warm accesses when normal accesses might not
1050 1.1 pooka * be sufficient to maintain fast DRAM response.
1051 1.1 pooka *
1052 1.1 pooka * Bit fields:
1053 1.1 pooka * 31-0: Keep-warm buffer physical base address [35:4], must be 4K aligned
1054 1.1 pooka */
1055 1.1 pooka #define IWM_FH_KW_MEM_ADDR_REG (IWM_FH_MEM_LOWER_BOUND + 0x97C)
1056 1.1 pooka
1057 1.1 pooka
1058 1.1 pooka /**
1059 1.1 pooka * TFD Circular Buffers Base (CBBC) addresses
1060 1.1 pooka *
1061 1.1 pooka * Device has 16 base pointer registers, one for each of 16 host-DRAM-resident
1062 1.1 pooka * circular buffers (CBs/queues) containing Transmit Frame Descriptors (TFDs)
1063 1.1 pooka * (see struct iwm_tfd_frame). These 16 pointer registers are offset by 0x04
1064 1.1 pooka * bytes from one another. Each TFD circular buffer in DRAM must be 256-byte
1065 1.1 pooka * aligned (address bits 0-7 must be 0).
1066 1.1 pooka * Later devices have 20 (5000 series) or 30 (higher) queues, but the registers
1067 1.1 pooka * for them are in different places.
1068 1.1 pooka *
1069 1.1 pooka * Bit fields in each pointer register:
1070 1.1 pooka * 27-0: TFD CB physical base address [35:8], must be 256-byte aligned
1071 1.1 pooka */
1072 1.1 pooka #define IWM_FH_MEM_CBBC_0_15_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0x9D0)
1073 1.1 pooka #define IWM_FH_MEM_CBBC_0_15_UPPER_BOUN (IWM_FH_MEM_LOWER_BOUND + 0xA10)
1074 1.1 pooka #define IWM_FH_MEM_CBBC_16_19_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xBF0)
1075 1.1 pooka #define IWM_FH_MEM_CBBC_16_19_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xC00)
1076 1.1 pooka #define IWM_FH_MEM_CBBC_20_31_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xB20)
1077 1.1 pooka #define IWM_FH_MEM_CBBC_20_31_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xB80)
1078 1.1 pooka
1079 1.1 pooka /* Find TFD CB base pointer for given queue */
1080 1.1 pooka static inline unsigned int IWM_FH_MEM_CBBC_QUEUE(unsigned int chnl)
1081 1.1 pooka {
1082 1.1 pooka if (chnl < 16)
1083 1.1 pooka return IWM_FH_MEM_CBBC_0_15_LOWER_BOUND + 4 * chnl;
1084 1.1 pooka if (chnl < 20)
1085 1.1 pooka return IWM_FH_MEM_CBBC_16_19_LOWER_BOUND + 4 * (chnl - 16);
1086 1.1 pooka return IWM_FH_MEM_CBBC_20_31_LOWER_BOUND + 4 * (chnl - 20);
1087 1.1 pooka }
1088 1.1 pooka
1089 1.1 pooka
1090 1.1 pooka /**
1091 1.1 pooka * Rx SRAM Control and Status Registers (RSCSR)
1092 1.1 pooka *
1093 1.1 pooka * These registers provide handshake between driver and device for the Rx queue
1094 1.1 pooka * (this queue handles *all* command responses, notifications, Rx data, etc.
1095 1.1 pooka * sent from uCode to host driver). Unlike Tx, there is only one Rx
1096 1.1 pooka * queue, and only one Rx DMA/FIFO channel. Also unlike Tx, which can
1097 1.1 pooka * concatenate up to 20 DRAM buffers to form a Tx frame, each Receive Buffer
1098 1.1 pooka * Descriptor (RBD) points to only one Rx Buffer (RB); there is a 1:1
1099 1.1 pooka * mapping between RBDs and RBs.
1100 1.1 pooka *
1101 1.1 pooka * Driver must allocate host DRAM memory for the following, and set the
1102 1.1 pooka * physical address of each into device registers:
1103 1.1 pooka *
1104 1.1 pooka * 1) Receive Buffer Descriptor (RBD) circular buffer (CB), typically with 256
1105 1.1 pooka * entries (although any power of 2, up to 4096, is selectable by driver).
1106 1.1 pooka * Each entry (1 dword) points to a receive buffer (RB) of consistent size
1107 1.1 pooka * (typically 4K, although 8K or 16K are also selectable by driver).
1108 1.1 pooka * Driver sets up RB size and number of RBDs in the CB via Rx config
1109 1.1 pooka * register IWM_FH_MEM_RCSR_CHNL0_CONFIG_REG.
1110 1.1 pooka *
1111 1.1 pooka * Bit fields within one RBD:
1112 1.1 pooka * 27-0: Receive Buffer physical address bits [35:8], 256-byte aligned
1113 1.1 pooka *
1114 1.1 pooka * Driver sets physical address [35:8] of base of RBD circular buffer
1115 1.1 pooka * into IWM_FH_RSCSR_CHNL0_RBDCB_BASE_REG [27:0].
1116 1.1 pooka *
1117 1.1 pooka * 2) Rx status buffer, 8 bytes, in which uCode indicates which Rx Buffers
1118 1.1 pooka * (RBs) have been filled, via a "write pointer", actually the index of
1119 1.1 pooka * the RB's corresponding RBD within the circular buffer. Driver sets
1120 1.1 pooka * physical address [35:4] into IWM_FH_RSCSR_CHNL0_STTS_WPTR_REG [31:0].
1121 1.1 pooka *
1122 1.1 pooka * Bit fields in lower dword of Rx status buffer (upper dword not used
1123 1.1 pooka * by driver:
1124 1.1 pooka * 31-12: Not used by driver
1125 1.1 pooka * 11- 0: Index of last filled Rx buffer descriptor
1126 1.1 pooka * (device writes, driver reads this value)
1127 1.1 pooka *
1128 1.1 pooka * As the driver prepares Receive Buffers (RBs) for device to fill, driver must
1129 1.1 pooka * enter pointers to these RBs into contiguous RBD circular buffer entries,
1130 1.1 pooka * and update the device's "write" index register,
1131 1.1 pooka * IWM_FH_RSCSR_CHNL0_RBDCB_WPTR_REG.
1132 1.1 pooka *
1133 1.1 pooka * This "write" index corresponds to the *next* RBD that the driver will make
1134 1.1 pooka * available, i.e. one RBD past the tail of the ready-to-fill RBDs within
1135 1.1 pooka * the circular buffer. This value should initially be 0 (before preparing any
1136 1.1 pooka * RBs), should be 8 after preparing the first 8 RBs (for example), and must
1137 1.1 pooka * wrap back to 0 at the end of the circular buffer (but don't wrap before
1138 1.1 pooka * "read" index has advanced past 1! See below).
1139 1.1 pooka * NOTE: DEVICE EXPECTS THE WRITE INDEX TO BE INCREMENTED IN MULTIPLES OF 8.
1140 1.1 pooka *
1141 1.1 pooka * As the device fills RBs (referenced from contiguous RBDs within the circular
1142 1.1 pooka * buffer), it updates the Rx status buffer in host DRAM, 2) described above,
1143 1.1 pooka * to tell the driver the index of the latest filled RBD. The driver must
1144 1.1 pooka * read this "read" index from DRAM after receiving an Rx interrupt from device
1145 1.1 pooka *
1146 1.1 pooka * The driver must also internally keep track of a third index, which is the
1147 1.1 pooka * next RBD to process. When receiving an Rx interrupt, driver should process
1148 1.1 pooka * all filled but unprocessed RBs up to, but not including, the RB
1149 1.1 pooka * corresponding to the "read" index. For example, if "read" index becomes "1",
1150 1.1 pooka * driver may process the RB pointed to by RBD 0. Depending on volume of
1151 1.1 pooka * traffic, there may be many RBs to process.
1152 1.1 pooka *
1153 1.1 pooka * If read index == write index, device thinks there is no room to put new data.
1154 1.1 pooka * Due to this, the maximum number of filled RBs is 255, instead of 256. To
1155 1.1 pooka * be safe, make sure that there is a gap of at least 2 RBDs between "write"
1156 1.1 pooka * and "read" indexes; that is, make sure that there are no more than 254
1157 1.1 pooka * buffers waiting to be filled.
1158 1.1 pooka */
1159 1.1 pooka #define IWM_FH_MEM_RSCSR_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xBC0)
1160 1.1 pooka #define IWM_FH_MEM_RSCSR_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xC00)
1161 1.1 pooka #define IWM_FH_MEM_RSCSR_CHNL0 (IWM_FH_MEM_RSCSR_LOWER_BOUND)
1162 1.1 pooka
1163 1.1 pooka /**
1164 1.1 pooka * Physical base address of 8-byte Rx Status buffer.
1165 1.1 pooka * Bit fields:
1166 1.1 pooka * 31-0: Rx status buffer physical base address [35:4], must 16-byte aligned.
1167 1.1 pooka */
1168 1.1 pooka #define IWM_FH_RSCSR_CHNL0_STTS_WPTR_REG (IWM_FH_MEM_RSCSR_CHNL0)
1169 1.1 pooka
1170 1.1 pooka /**
1171 1.1 pooka * Physical base address of Rx Buffer Descriptor Circular Buffer.
1172 1.1 pooka * Bit fields:
1173 1.1 pooka * 27-0: RBD CD physical base address [35:8], must be 256-byte aligned.
1174 1.1 pooka */
1175 1.1 pooka #define IWM_FH_RSCSR_CHNL0_RBDCB_BASE_REG (IWM_FH_MEM_RSCSR_CHNL0 + 0x004)
1176 1.1 pooka
1177 1.1 pooka /**
1178 1.1 pooka * Rx write pointer (index, really!).
1179 1.1 pooka * Bit fields:
1180 1.1 pooka * 11-0: Index of driver's most recent prepared-to-be-filled RBD, + 1.
1181 1.1 pooka * NOTE: For 256-entry circular buffer, use only bits [7:0].
1182 1.1 pooka */
1183 1.1 pooka #define IWM_FH_RSCSR_CHNL0_RBDCB_WPTR_REG (IWM_FH_MEM_RSCSR_CHNL0 + 0x008)
1184 1.1 pooka #define IWM_FH_RSCSR_CHNL0_WPTR (IWM_FH_RSCSR_CHNL0_RBDCB_WPTR_REG)
1185 1.1 pooka
1186 1.1 pooka #define IWM_FW_RSCSR_CHNL0_RXDCB_RDPTR_REG (IWM_FH_MEM_RSCSR_CHNL0 + 0x00c)
1187 1.1 pooka #define IWM_FH_RSCSR_CHNL0_RDPTR IWM_FW_RSCSR_CHNL0_RXDCB_RDPTR_REG
1188 1.1 pooka
1189 1.1 pooka /**
1190 1.1 pooka * Rx Config/Status Registers (RCSR)
1191 1.1 pooka * Rx Config Reg for channel 0 (only channel used)
1192 1.1 pooka *
1193 1.1 pooka * Driver must initialize IWM_FH_MEM_RCSR_CHNL0_CONFIG_REG as follows for
1194 1.1 pooka * normal operation (see bit fields).
1195 1.1 pooka *
1196 1.1 pooka * Clearing IWM_FH_MEM_RCSR_CHNL0_CONFIG_REG to 0 turns off Rx DMA.
1197 1.1 pooka * Driver should poll IWM_FH_MEM_RSSR_RX_STATUS_REG for
1198 1.1 pooka * IWM_FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (bit 24) before continuing.
1199 1.1 pooka *
1200 1.1 pooka * Bit fields:
1201 1.1 pooka * 31-30: Rx DMA channel enable: '00' off/pause, '01' pause at end of frame,
1202 1.1 pooka * '10' operate normally
1203 1.1 pooka * 29-24: reserved
1204 1.1 pooka * 23-20: # RBDs in circular buffer = 2^value; use "8" for 256 RBDs (normal),
1205 1.1 pooka * min "5" for 32 RBDs, max "12" for 4096 RBDs.
1206 1.1 pooka * 19-18: reserved
1207 1.1 pooka * 17-16: size of each receive buffer; '00' 4K (normal), '01' 8K,
1208 1.1 pooka * '10' 12K, '11' 16K.
1209 1.1 pooka * 15-14: reserved
1210 1.1 pooka * 13-12: IRQ destination; '00' none, '01' host driver (normal operation)
1211 1.1 pooka * 11- 4: timeout for closing Rx buffer and interrupting host (units 32 usec)
1212 1.1 pooka * typical value 0x10 (about 1/2 msec)
1213 1.1 pooka * 3- 0: reserved
1214 1.1 pooka */
1215 1.1 pooka #define IWM_FH_MEM_RCSR_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xC00)
1216 1.1 pooka #define IWM_FH_MEM_RCSR_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xCC0)
1217 1.1 pooka #define IWM_FH_MEM_RCSR_CHNL0 (IWM_FH_MEM_RCSR_LOWER_BOUND)
1218 1.1 pooka
1219 1.1 pooka #define IWM_FH_MEM_RCSR_CHNL0_CONFIG_REG (IWM_FH_MEM_RCSR_CHNL0)
1220 1.1 pooka #define IWM_FH_MEM_RCSR_CHNL0_RBDCB_WPTR (IWM_FH_MEM_RCSR_CHNL0 + 0x8)
1221 1.1 pooka #define IWM_FH_MEM_RCSR_CHNL0_FLUSH_RB_REQ (IWM_FH_MEM_RCSR_CHNL0 + 0x10)
1222 1.1 pooka
1223 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_RB_TIMEOUT_MSK (0x00000FF0) /* bits 4-11 */
1224 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_MSK (0x00001000) /* bits 12 */
1225 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK (0x00008000) /* bit 15 */
1226 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_RB_SIZE_MSK (0x00030000) /* bits 16-17 */
1227 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_RBDBC_SIZE_MSK (0x00F00000) /* bits 20-23 */
1228 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_DMA_CHNL_EN_MSK (0xC0000000) /* bits 30-31*/
1229 1.1 pooka
1230 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS (20)
1231 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS (4)
1232 1.1 pooka #define IWM_RX_RB_TIMEOUT (0x11)
1233 1.1 pooka
1234 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_CHNL_EN_PAUSE_VAL (0x00000000)
1235 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_CHNL_EN_PAUSE_EOF_VAL (0x40000000)
1236 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL (0x80000000)
1237 1.1 pooka
1238 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K (0x00000000)
1239 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K (0x00010000)
1240 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_12K (0x00020000)
1241 1.1 pooka #define IWM_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_16K (0x00030000)
1242 1.1 pooka
1243 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY (0x00000004)
1244 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000)
1245 1.1 pooka #define IWM_FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000)
1246 1.1 pooka
1247 1.1 pooka /**
1248 1.1 pooka * Rx Shared Status Registers (RSSR)
1249 1.1 pooka *
1250 1.1 pooka * After stopping Rx DMA channel (writing 0 to
1251 1.1 pooka * IWM_FH_MEM_RCSR_CHNL0_CONFIG_REG), driver must poll
1252 1.1 pooka * IWM_FH_MEM_RSSR_RX_STATUS_REG until Rx channel is idle.
1253 1.1 pooka *
1254 1.1 pooka * Bit fields:
1255 1.1 pooka * 24: 1 = Channel 0 is idle
1256 1.1 pooka *
1257 1.1 pooka * IWM_FH_MEM_RSSR_SHARED_CTRL_REG and IWM_FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV
1258 1.1 pooka * contain default values that should not be altered by the driver.
1259 1.1 pooka */
1260 1.1 pooka #define IWM_FH_MEM_RSSR_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xC40)
1261 1.1 pooka #define IWM_FH_MEM_RSSR_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xD00)
1262 1.1 pooka
1263 1.1 pooka #define IWM_FH_MEM_RSSR_SHARED_CTRL_REG (IWM_FH_MEM_RSSR_LOWER_BOUND)
1264 1.1 pooka #define IWM_FH_MEM_RSSR_RX_STATUS_REG (IWM_FH_MEM_RSSR_LOWER_BOUND + 0x004)
1265 1.1 pooka #define IWM_FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV\
1266 1.1 pooka (IWM_FH_MEM_RSSR_LOWER_BOUND + 0x008)
1267 1.1 pooka
1268 1.1 pooka #define IWM_FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (0x01000000)
1269 1.1 pooka
1270 1.1 pooka #define IWM_FH_MEM_TFDIB_REG1_ADDR_BITSHIFT 28
1271 1.1 pooka
1272 1.1 pooka /* TFDB Area - TFDs buffer table */
1273 1.1 pooka #define IWM_FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK (0xFFFFFFFF)
1274 1.1 pooka #define IWM_FH_TFDIB_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0x900)
1275 1.1 pooka #define IWM_FH_TFDIB_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0x958)
1276 1.1 pooka #define IWM_FH_TFDIB_CTRL0_REG(_chnl) (IWM_FH_TFDIB_LOWER_BOUND + 0x8 * (_chnl))
1277 1.1 pooka #define IWM_FH_TFDIB_CTRL1_REG(_chnl) (IWM_FH_TFDIB_LOWER_BOUND + 0x8 * (_chnl) + 0x4)
1278 1.1 pooka
1279 1.1 pooka /**
1280 1.1 pooka * Transmit DMA Channel Control/Status Registers (TCSR)
1281 1.1 pooka *
1282 1.1 pooka * Device has one configuration register for each of 8 Tx DMA/FIFO channels
1283 1.1 pooka * supported in hardware (don't confuse these with the 16 Tx queues in DRAM,
1284 1.1 pooka * which feed the DMA/FIFO channels); config regs are separated by 0x20 bytes.
1285 1.1 pooka *
1286 1.1 pooka * To use a Tx DMA channel, driver must initialize its
1287 1.1 pooka * IWM_FH_TCSR_CHNL_TX_CONFIG_REG(chnl) with:
1288 1.1 pooka *
1289 1.1 pooka * IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
1290 1.1 pooka * IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL
1291 1.1 pooka *
1292 1.1 pooka * All other bits should be 0.
1293 1.1 pooka *
1294 1.1 pooka * Bit fields:
1295 1.1 pooka * 31-30: Tx DMA channel enable: '00' off/pause, '01' pause at end of frame,
1296 1.1 pooka * '10' operate normally
1297 1.1 pooka * 29- 4: Reserved, set to "0"
1298 1.1 pooka * 3: Enable internal DMA requests (1, normal operation), disable (0)
1299 1.1 pooka * 2- 0: Reserved, set to "0"
1300 1.1 pooka */
1301 1.1 pooka #define IWM_FH_TCSR_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xD00)
1302 1.1 pooka #define IWM_FH_TCSR_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xE60)
1303 1.1 pooka
1304 1.1 pooka /* Find Control/Status reg for given Tx DMA/FIFO channel */
1305 1.1 pooka #define IWM_FH_TCSR_CHNL_NUM (8)
1306 1.1 pooka
1307 1.1 pooka /* TCSR: tx_config register values */
1308 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_CONFIG_REG(_chnl) \
1309 1.1 pooka (IWM_FH_TCSR_LOWER_BOUND + 0x20 * (_chnl))
1310 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_CREDIT_REG(_chnl) \
1311 1.1 pooka (IWM_FH_TCSR_LOWER_BOUND + 0x20 * (_chnl) + 0x4)
1312 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG(_chnl) \
1313 1.1 pooka (IWM_FH_TCSR_LOWER_BOUND + 0x20 * (_chnl) + 0x8)
1314 1.1 pooka
1315 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF (0x00000000)
1316 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_DRV (0x00000001)
1317 1.1 pooka
1318 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE (0x00000000)
1319 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE (0x00000008)
1320 1.1 pooka
1321 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_NOINT (0x00000000)
1322 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD (0x00100000)
1323 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD (0x00200000)
1324 1.1 pooka
1325 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT (0x00000000)
1326 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_ENDTFD (0x00400000)
1327 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_IFTFD (0x00800000)
1328 1.1 pooka
1329 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE (0x00000000)
1330 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE_EOF (0x40000000)
1331 1.1 pooka #define IWM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE (0x80000000)
1332 1.1 pooka
1333 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_EMPTY (0x00000000)
1334 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_WAIT (0x00002000)
1335 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID (0x00000003)
1336 1.1 pooka
1337 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM (20)
1338 1.1 pooka #define IWM_FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX (12)
1339 1.1 pooka
1340 1.1 pooka /**
1341 1.1 pooka * Tx Shared Status Registers (TSSR)
1342 1.1 pooka *
1343 1.1 pooka * After stopping Tx DMA channel (writing 0 to
1344 1.1 pooka * IWM_FH_TCSR_CHNL_TX_CONFIG_REG(chnl)), driver must poll
1345 1.1 pooka * IWM_FH_TSSR_TX_STATUS_REG until selected Tx channel is idle
1346 1.1 pooka * (channel's buffers empty | no pending requests).
1347 1.1 pooka *
1348 1.1 pooka * Bit fields:
1349 1.1 pooka * 31-24: 1 = Channel buffers empty (channel 7:0)
1350 1.1 pooka * 23-16: 1 = No pending requests (channel 7:0)
1351 1.1 pooka */
1352 1.1 pooka #define IWM_FH_TSSR_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xEA0)
1353 1.1 pooka #define IWM_FH_TSSR_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0xEC0)
1354 1.1 pooka
1355 1.1 pooka #define IWM_FH_TSSR_TX_STATUS_REG (IWM_FH_TSSR_LOWER_BOUND + 0x010)
1356 1.1 pooka
1357 1.1 pooka /**
1358 1.1 pooka * Bit fields for TSSR(Tx Shared Status & Control) error status register:
1359 1.1 pooka * 31: Indicates an address error when accessed to internal memory
1360 1.1 pooka * uCode/driver must write "1" in order to clear this flag
1361 1.1 pooka * 30: Indicates that Host did not send the expected number of dwords to FH
1362 1.1 pooka * uCode/driver must write "1" in order to clear this flag
1363 1.1 pooka * 16-9:Each status bit is for one channel. Indicates that an (Error) ActDMA
1364 1.1 pooka * command was received from the scheduler while the TRB was already full
1365 1.1 pooka * with previous command
1366 1.1 pooka * uCode/driver must write "1" in order to clear this flag
1367 1.1 pooka * 7-0: Each status bit indicates a channel's TxCredit error. When an error
1368 1.1 pooka * bit is set, it indicates that the FH has received a full indication
1369 1.1 pooka * from the RTC TxFIFO and the current value of the TxCredit counter was
1370 1.1 pooka * not equal to zero. This mean that the credit mechanism was not
1371 1.1 pooka * synchronized to the TxFIFO status
1372 1.1 pooka * uCode/driver must write "1" in order to clear this flag
1373 1.1 pooka */
1374 1.1 pooka #define IWM_FH_TSSR_TX_ERROR_REG (IWM_FH_TSSR_LOWER_BOUND + 0x018)
1375 1.1 pooka #define IWM_FH_TSSR_TX_MSG_CONFIG_REG (IWM_FH_TSSR_LOWER_BOUND + 0x008)
1376 1.1 pooka
1377 1.1 pooka #define IWM_FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(_chnl) ((1 << (_chnl)) << 16)
1378 1.1 pooka
1379 1.1 pooka /* Tx service channels */
1380 1.1 pooka #define IWM_FH_SRVC_CHNL (9)
1381 1.1 pooka #define IWM_FH_SRVC_LOWER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0x9C8)
1382 1.1 pooka #define IWM_FH_SRVC_UPPER_BOUND (IWM_FH_MEM_LOWER_BOUND + 0x9D0)
1383 1.1 pooka #define IWM_FH_SRVC_CHNL_SRAM_ADDR_REG(_chnl) \
1384 1.1 pooka (IWM_FH_SRVC_LOWER_BOUND + ((_chnl) - 9) * 0x4)
1385 1.1 pooka
1386 1.1 pooka #define IWM_FH_TX_CHICKEN_BITS_REG (IWM_FH_MEM_LOWER_BOUND + 0xE98)
1387 1.1 pooka #define IWM_FH_TX_TRB_REG(_chan) (IWM_FH_MEM_LOWER_BOUND + 0x958 + \
1388 1.1 pooka (_chan) * 4)
1389 1.1 pooka
1390 1.1 pooka /* Instruct FH to increment the retry count of a packet when
1391 1.1 pooka * it is brought from the memory to TX-FIFO
1392 1.1 pooka */
1393 1.1 pooka #define IWM_FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN (0x00000002)
1394 1.1 pooka
1395 1.1 pooka #define IWM_RX_QUEUE_SIZE 256
1396 1.1 pooka #define IWM_RX_QUEUE_MASK 255
1397 1.1 pooka #define IWM_RX_QUEUE_SIZE_LOG 8
1398 1.1 pooka
1399 1.1 pooka /*
1400 1.1 pooka * RX related structures and functions
1401 1.1 pooka */
1402 1.1 pooka #define IWM_RX_FREE_BUFFERS 64
1403 1.1 pooka #define IWM_RX_LOW_WATERMARK 8
1404 1.1 pooka
1405 1.1 pooka /**
1406 1.1 pooka * struct iwm_rb_status - reseve buffer status
1407 1.1 pooka * host memory mapped FH registers
1408 1.1 pooka * @closed_rb_num [0:11] - Indicates the index of the RB which was closed
1409 1.1 pooka * @closed_fr_num [0:11] - Indicates the index of the RX Frame which was closed
1410 1.1 pooka * @finished_rb_num [0:11] - Indicates the index of the current RB
1411 1.1 pooka * in which the last frame was written to
1412 1.1 pooka * @finished_fr_num [0:11] - Indicates the index of the RX Frame
1413 1.1 pooka * which was transferred
1414 1.1 pooka */
1415 1.1 pooka struct iwm_rb_status {
1416 1.1 pooka uint16_t closed_rb_num;
1417 1.1 pooka uint16_t closed_fr_num;
1418 1.1 pooka uint16_t finished_rb_num;
1419 1.1 pooka uint16_t finished_fr_nam;
1420 1.1 pooka uint32_t unused;
1421 1.1 pooka } __packed;
1422 1.1 pooka
1423 1.1 pooka
1424 1.1 pooka #define IWM_TFD_QUEUE_SIZE_MAX (256)
1425 1.1 pooka #define IWM_TFD_QUEUE_SIZE_BC_DUP (64)
1426 1.1 pooka #define IWM_TFD_QUEUE_BC_SIZE (IWM_TFD_QUEUE_SIZE_MAX + \
1427 1.1 pooka IWM_TFD_QUEUE_SIZE_BC_DUP)
1428 1.1 pooka #define IWM_TX_DMA_MASK DMA_BIT_MASK(36)
1429 1.1 pooka #define IWM_NUM_OF_TBS 20
1430 1.1 pooka
1431 1.1 pooka static inline uint8_t iwm_get_dma_hi_addr(bus_addr_t addr)
1432 1.1 pooka {
1433 1.1 pooka return (sizeof(addr) > sizeof(uint32_t) ? (addr >> 16) >> 16 : 0) & 0xF;
1434 1.1 pooka }
1435 1.1 pooka /**
1436 1.1 pooka * struct iwm_tfd_tb transmit buffer descriptor within transmit frame descriptor
1437 1.1 pooka *
1438 1.1 pooka * This structure contains dma address and length of transmission address
1439 1.1 pooka *
1440 1.1 pooka * @lo: low [31:0] portion of the dma address of TX buffer
1441 1.1 pooka * every even is unaligned on 16 bit boundary
1442 1.1 pooka * @hi_n_len 0-3 [35:32] portion of dma
1443 1.1 pooka * 4-15 length of the tx buffer
1444 1.1 pooka */
1445 1.1 pooka struct iwm_tfd_tb {
1446 1.1 pooka uint32_t lo;
1447 1.1 pooka uint16_t hi_n_len;
1448 1.1 pooka } __packed;
1449 1.1 pooka
1450 1.1 pooka /**
1451 1.1 pooka * struct iwm_tfd
1452 1.1 pooka *
1453 1.1 pooka * Transmit Frame Descriptor (TFD)
1454 1.1 pooka *
1455 1.1 pooka * @ __reserved1[3] reserved
1456 1.1 pooka * @ num_tbs 0-4 number of active tbs
1457 1.1 pooka * 5 reserved
1458 1.1 pooka * 6-7 padding (not used)
1459 1.1 pooka * @ tbs[20] transmit frame buffer descriptors
1460 1.1 pooka * @ __pad padding
1461 1.1 pooka *
1462 1.1 pooka * Each Tx queue uses a circular buffer of 256 TFDs stored in host DRAM.
1463 1.1 pooka * Both driver and device share these circular buffers, each of which must be
1464 1.1 pooka * contiguous 256 TFDs x 128 bytes-per-TFD = 32 KBytes
1465 1.1 pooka *
1466 1.1 pooka * Driver must indicate the physical address of the base of each
1467 1.1 pooka * circular buffer via the IWM_FH_MEM_CBBC_QUEUE registers.
1468 1.1 pooka *
1469 1.1 pooka * Each TFD contains pointer/size information for up to 20 data buffers
1470 1.1 pooka * in host DRAM. These buffers collectively contain the (one) frame described
1471 1.1 pooka * by the TFD. Each buffer must be a single contiguous block of memory within
1472 1.1 pooka * itself, but buffers may be scattered in host DRAM. Each buffer has max size
1473 1.1 pooka * of (4K - 4). The concatenates all of a TFD's buffers into a single
1474 1.1 pooka * Tx frame, up to 8 KBytes in size.
1475 1.1 pooka *
1476 1.1 pooka * A maximum of 255 (not 256!) TFDs may be on a queue waiting for Tx.
1477 1.1 pooka */
1478 1.1 pooka struct iwm_tfd {
1479 1.1 pooka uint8_t __reserved1[3];
1480 1.1 pooka uint8_t num_tbs;
1481 1.1 pooka struct iwm_tfd_tb tbs[IWM_NUM_OF_TBS];
1482 1.1 pooka uint32_t __pad;
1483 1.1 pooka } __packed;
1484 1.1 pooka
1485 1.1 pooka /* Keep Warm Size */
1486 1.1 pooka #define IWM_KW_SIZE 0x1000 /* 4k */
1487 1.1 pooka
1488 1.1 pooka /* Fixed (non-configurable) rx data from phy */
1489 1.1 pooka
1490 1.1 pooka /**
1491 1.1 pooka * struct iwm_agn_schedq_bc_tbl scheduler byte count table
1492 1.1 pooka * base physical address provided by IWM_SCD_DRAM_BASE_ADDR
1493 1.1 pooka * @tfd_offset 0-12 - tx command byte count
1494 1.1 pooka * 12-16 - station index
1495 1.1 pooka */
1496 1.1 pooka struct iwm_agn_scd_bc_tbl {
1497 1.1 pooka uint16_t tfd_offset[IWM_TFD_QUEUE_BC_SIZE];
1498 1.1 pooka } __packed;
1499 1.1 pooka
1500 1.1 pooka /*
1501 1.1 pooka * END iwl-fh.h
1502 1.1 pooka */
1503 1.1 pooka
1504 1.1 pooka /*
1505 1.1 pooka * BEGIN mvm/fw-api.h
1506 1.1 pooka */
1507 1.1 pooka
1508 1.1 pooka /* maximal number of Tx queues in any platform */
1509 1.1 pooka #define IWM_MVM_MAX_QUEUES 20
1510 1.1 pooka
1511 1.1 pooka /* Tx queue numbers */
1512 1.1 pooka enum {
1513 1.1 pooka IWM_MVM_OFFCHANNEL_QUEUE = 8,
1514 1.1 pooka IWM_MVM_CMD_QUEUE = 9,
1515 1.1 pooka };
1516 1.1 pooka
1517 1.1 pooka #define IWM_MVM_CMD_FIFO 7
1518 1.1 pooka
1519 1.1 pooka #define IWM_MVM_STATION_COUNT 16
1520 1.1 pooka
1521 1.1 pooka /* commands */
1522 1.1 pooka enum {
1523 1.1 pooka IWM_MVM_ALIVE = 0x1,
1524 1.1 pooka IWM_REPLY_ERROR = 0x2,
1525 1.1 pooka
1526 1.1 pooka IWM_INIT_COMPLETE_NOTIF = 0x4,
1527 1.1 pooka
1528 1.1 pooka /* PHY context commands */
1529 1.1 pooka IWM_PHY_CONTEXT_CMD = 0x8,
1530 1.1 pooka IWM_DBG_CFG = 0x9,
1531 1.1 pooka
1532 1.1 pooka /* station table */
1533 1.1 pooka IWM_ADD_STA_KEY = 0x17,
1534 1.1 pooka IWM_ADD_STA = 0x18,
1535 1.1 pooka IWM_REMOVE_STA = 0x19,
1536 1.1 pooka
1537 1.1 pooka /* TX */
1538 1.1 pooka IWM_TX_CMD = 0x1c,
1539 1.1 pooka IWM_TXPATH_FLUSH = 0x1e,
1540 1.1 pooka IWM_MGMT_MCAST_KEY = 0x1f,
1541 1.1 pooka
1542 1.1 pooka /* global key */
1543 1.1 pooka IWM_WEP_KEY = 0x20,
1544 1.1 pooka
1545 1.1 pooka /* MAC and Binding commands */
1546 1.1 pooka IWM_MAC_CONTEXT_CMD = 0x28,
1547 1.1 pooka IWM_TIME_EVENT_CMD = 0x29, /* both CMD and response */
1548 1.1 pooka IWM_TIME_EVENT_NOTIFICATION = 0x2a,
1549 1.1 pooka IWM_BINDING_CONTEXT_CMD = 0x2b,
1550 1.1 pooka IWM_TIME_QUOTA_CMD = 0x2c,
1551 1.1 pooka IWM_NON_QOS_TX_COUNTER_CMD = 0x2d,
1552 1.1 pooka
1553 1.1 pooka IWM_LQ_CMD = 0x4e,
1554 1.1 pooka
1555 1.1 pooka /* Calibration */
1556 1.1 pooka IWM_TEMPERATURE_NOTIFICATION = 0x62,
1557 1.1 pooka IWM_CALIBRATION_CFG_CMD = 0x65,
1558 1.1 pooka IWM_CALIBRATION_RES_NOTIFICATION = 0x66,
1559 1.1 pooka IWM_CALIBRATION_COMPLETE_NOTIFICATION = 0x67,
1560 1.1 pooka IWM_RADIO_VERSION_NOTIFICATION = 0x68,
1561 1.1 pooka
1562 1.1 pooka /* Scan offload */
1563 1.1 pooka IWM_SCAN_OFFLOAD_REQUEST_CMD = 0x51,
1564 1.1 pooka IWM_SCAN_OFFLOAD_ABORT_CMD = 0x52,
1565 1.1 pooka IWM_SCAN_OFFLOAD_COMPLETE = 0x6D,
1566 1.1 pooka IWM_SCAN_OFFLOAD_UPDATE_PROFILES_CMD = 0x6E,
1567 1.1 pooka IWM_SCAN_OFFLOAD_CONFIG_CMD = 0x6f,
1568 1.1 pooka IWM_MATCH_FOUND_NOTIFICATION = 0xd9,
1569 1.1 pooka
1570 1.1 pooka /* Phy */
1571 1.1 pooka IWM_PHY_CONFIGURATION_CMD = 0x6a,
1572 1.1 pooka IWM_CALIB_RES_NOTIF_PHY_DB = 0x6b,
1573 1.1 pooka /* IWM_PHY_DB_CMD = 0x6c, */
1574 1.1 pooka
1575 1.1 pooka /* Power - legacy power table command */
1576 1.1 pooka IWM_POWER_TABLE_CMD = 0x77,
1577 1.1 pooka IWM_PSM_UAPSD_AP_MISBEHAVING_NOTIFICATION = 0x78,
1578 1.1 pooka
1579 1.1 pooka /* Thermal Throttling*/
1580 1.1 pooka IWM_REPLY_THERMAL_MNG_BACKOFF = 0x7e,
1581 1.1 pooka
1582 1.1 pooka /* Scanning */
1583 1.1 pooka IWM_SCAN_REQUEST_CMD = 0x80,
1584 1.1 pooka IWM_SCAN_ABORT_CMD = 0x81,
1585 1.1 pooka IWM_SCAN_START_NOTIFICATION = 0x82,
1586 1.1 pooka IWM_SCAN_RESULTS_NOTIFICATION = 0x83,
1587 1.1 pooka IWM_SCAN_COMPLETE_NOTIFICATION = 0x84,
1588 1.1 pooka
1589 1.1 pooka /* NVM */
1590 1.1 pooka IWM_NVM_ACCESS_CMD = 0x88,
1591 1.1 pooka
1592 1.1 pooka IWM_SET_CALIB_DEFAULT_CMD = 0x8e,
1593 1.1 pooka
1594 1.1 pooka IWM_BEACON_NOTIFICATION = 0x90,
1595 1.1 pooka IWM_BEACON_TEMPLATE_CMD = 0x91,
1596 1.1 pooka IWM_TX_ANT_CONFIGURATION_CMD = 0x98,
1597 1.1 pooka IWM_BT_CONFIG = 0x9b,
1598 1.1 pooka IWM_STATISTICS_NOTIFICATION = 0x9d,
1599 1.1 pooka IWM_REDUCE_TX_POWER_CMD = 0x9f,
1600 1.1 pooka
1601 1.1 pooka /* RF-KILL commands and notifications */
1602 1.1 pooka IWM_CARD_STATE_CMD = 0xa0,
1603 1.1 pooka IWM_CARD_STATE_NOTIFICATION = 0xa1,
1604 1.1 pooka
1605 1.1 pooka IWM_MISSED_BEACONS_NOTIFICATION = 0xa2,
1606 1.1 pooka
1607 1.1 pooka /* Power - new power table command */
1608 1.1 pooka IWM_MAC_PM_POWER_TABLE = 0xa9,
1609 1.1 pooka
1610 1.1 pooka IWM_REPLY_RX_PHY_CMD = 0xc0,
1611 1.1 pooka IWM_REPLY_RX_MPDU_CMD = 0xc1,
1612 1.1 pooka IWM_BA_NOTIF = 0xc5,
1613 1.1 pooka
1614 1.1 pooka /* BT Coex */
1615 1.1 pooka IWM_BT_COEX_PRIO_TABLE = 0xcc,
1616 1.1 pooka IWM_BT_COEX_PROT_ENV = 0xcd,
1617 1.1 pooka IWM_BT_PROFILE_NOTIFICATION = 0xce,
1618 1.1 pooka IWM_BT_COEX_CI = 0x5d,
1619 1.1 pooka
1620 1.1 pooka IWM_REPLY_SF_CFG_CMD = 0xd1,
1621 1.1 pooka IWM_REPLY_BEACON_FILTERING_CMD = 0xd2,
1622 1.1 pooka
1623 1.1 pooka IWM_REPLY_DEBUG_CMD = 0xf0,
1624 1.1 pooka IWM_DEBUG_LOG_MSG = 0xf7,
1625 1.1 pooka
1626 1.1 pooka IWM_MCAST_FILTER_CMD = 0xd0,
1627 1.1 pooka
1628 1.1 pooka /* D3 commands/notifications */
1629 1.1 pooka IWM_D3_CONFIG_CMD = 0xd3,
1630 1.1 pooka IWM_PROT_OFFLOAD_CONFIG_CMD = 0xd4,
1631 1.1 pooka IWM_OFFLOADS_QUERY_CMD = 0xd5,
1632 1.1 pooka IWM_REMOTE_WAKE_CONFIG_CMD = 0xd6,
1633 1.1 pooka
1634 1.1 pooka /* for WoWLAN in particular */
1635 1.1 pooka IWM_WOWLAN_PATTERNS = 0xe0,
1636 1.1 pooka IWM_WOWLAN_CONFIGURATION = 0xe1,
1637 1.1 pooka IWM_WOWLAN_TSC_RSC_PARAM = 0xe2,
1638 1.1 pooka IWM_WOWLAN_TKIP_PARAM = 0xe3,
1639 1.1 pooka IWM_WOWLAN_KEK_KCK_MATERIAL = 0xe4,
1640 1.1 pooka IWM_WOWLAN_GET_STATUSES = 0xe5,
1641 1.1 pooka IWM_WOWLAN_TX_POWER_PER_DB = 0xe6,
1642 1.1 pooka
1643 1.1 pooka /* and for NetDetect */
1644 1.1 pooka IWM_NET_DETECT_CONFIG_CMD = 0x54,
1645 1.1 pooka IWM_NET_DETECT_PROFILES_QUERY_CMD = 0x56,
1646 1.1 pooka IWM_NET_DETECT_PROFILES_CMD = 0x57,
1647 1.1 pooka IWM_NET_DETECT_HOTSPOTS_CMD = 0x58,
1648 1.1 pooka IWM_NET_DETECT_HOTSPOTS_QUERY_CMD = 0x59,
1649 1.1 pooka
1650 1.1 pooka IWM_REPLY_MAX = 0xff,
1651 1.1 pooka };
1652 1.1 pooka
1653 1.1 pooka /**
1654 1.1 pooka * struct iwm_cmd_response - generic response struct for most commands
1655 1.1 pooka * @status: status of the command asked, changes for each one
1656 1.1 pooka */
1657 1.1 pooka struct iwm_cmd_response {
1658 1.1 pooka uint32_t status;
1659 1.1 pooka };
1660 1.1 pooka
1661 1.1 pooka /*
1662 1.1 pooka * struct iwm_tx_ant_cfg_cmd
1663 1.1 pooka * @valid: valid antenna configuration
1664 1.1 pooka */
1665 1.1 pooka struct iwm_tx_ant_cfg_cmd {
1666 1.1 pooka uint32_t valid;
1667 1.1 pooka } __packed;
1668 1.1 pooka
1669 1.1 pooka /**
1670 1.1 pooka * struct iwm_reduce_tx_power_cmd - TX power reduction command
1671 1.1 pooka * IWM_REDUCE_TX_POWER_CMD = 0x9f
1672 1.1 pooka * @flags: (reserved for future implementation)
1673 1.1 pooka * @mac_context_id: id of the mac ctx for which we are reducing TX power.
1674 1.1 pooka * @pwr_restriction: TX power restriction in dBms.
1675 1.1 pooka */
1676 1.1 pooka struct iwm_reduce_tx_power_cmd {
1677 1.1 pooka uint8_t flags;
1678 1.1 pooka uint8_t mac_context_id;
1679 1.1 pooka uint16_t pwr_restriction;
1680 1.1 pooka } __packed; /* IWM_TX_REDUCED_POWER_API_S_VER_1 */
1681 1.1 pooka
1682 1.1 pooka /*
1683 1.1 pooka * Calibration control struct.
1684 1.1 pooka * Sent as part of the phy configuration command.
1685 1.1 pooka * @flow_trigger: bitmap for which calibrations to perform according to
1686 1.1 pooka * flow triggers.
1687 1.1 pooka * @event_trigger: bitmap for which calibrations to perform according to
1688 1.1 pooka * event triggers.
1689 1.1 pooka */
1690 1.1 pooka struct iwm_calib_ctrl {
1691 1.1 pooka uint32_t flow_trigger;
1692 1.1 pooka uint32_t event_trigger;
1693 1.1 pooka } __packed;
1694 1.1 pooka
1695 1.1 pooka /* This enum defines the bitmap of various calibrations to enable in both
1696 1.1 pooka * init ucode and runtime ucode through IWM_CALIBRATION_CFG_CMD.
1697 1.1 pooka */
1698 1.1 pooka enum iwm_calib_cfg {
1699 1.1 pooka IWM_CALIB_CFG_XTAL_IDX = (1 << 0),
1700 1.1 pooka IWM_CALIB_CFG_TEMPERATURE_IDX = (1 << 1),
1701 1.1 pooka IWM_CALIB_CFG_VOLTAGE_READ_IDX = (1 << 2),
1702 1.1 pooka IWM_CALIB_CFG_PAPD_IDX = (1 << 3),
1703 1.1 pooka IWM_CALIB_CFG_TX_PWR_IDX = (1 << 4),
1704 1.1 pooka IWM_CALIB_CFG_DC_IDX = (1 << 5),
1705 1.1 pooka IWM_CALIB_CFG_BB_FILTER_IDX = (1 << 6),
1706 1.1 pooka IWM_CALIB_CFG_LO_LEAKAGE_IDX = (1 << 7),
1707 1.1 pooka IWM_CALIB_CFG_TX_IQ_IDX = (1 << 8),
1708 1.1 pooka IWM_CALIB_CFG_TX_IQ_SKEW_IDX = (1 << 9),
1709 1.1 pooka IWM_CALIB_CFG_RX_IQ_IDX = (1 << 10),
1710 1.1 pooka IWM_CALIB_CFG_RX_IQ_SKEW_IDX = (1 << 11),
1711 1.1 pooka IWM_CALIB_CFG_SENSITIVITY_IDX = (1 << 12),
1712 1.1 pooka IWM_CALIB_CFG_CHAIN_NOISE_IDX = (1 << 13),
1713 1.1 pooka IWM_CALIB_CFG_DISCONNECTED_ANT_IDX = (1 << 14),
1714 1.1 pooka IWM_CALIB_CFG_ANT_COUPLING_IDX = (1 << 15),
1715 1.1 pooka IWM_CALIB_CFG_DAC_IDX = (1 << 16),
1716 1.1 pooka IWM_CALIB_CFG_ABS_IDX = (1 << 17),
1717 1.1 pooka IWM_CALIB_CFG_AGC_IDX = (1 << 18),
1718 1.1 pooka };
1719 1.1 pooka
1720 1.1 pooka /*
1721 1.1 pooka * Phy configuration command.
1722 1.1 pooka */
1723 1.1 pooka struct iwm_phy_cfg_cmd {
1724 1.1 pooka uint32_t phy_cfg;
1725 1.1 pooka struct iwm_calib_ctrl calib_control;
1726 1.1 pooka } __packed;
1727 1.1 pooka
1728 1.1 pooka #define IWM_PHY_CFG_RADIO_TYPE ((1 << 0) | (1 << 1))
1729 1.1 pooka #define IWM_PHY_CFG_RADIO_STEP ((1 << 2) | (1 << 3))
1730 1.1 pooka #define IWM_PHY_CFG_RADIO_DASH ((1 << 4) | (1 << 5))
1731 1.1 pooka #define IWM_PHY_CFG_PRODUCT_NUMBER ((1 << 6) | (1 << 7))
1732 1.1 pooka #define IWM_PHY_CFG_TX_CHAIN_A (1 << 8)
1733 1.1 pooka #define IWM_PHY_CFG_TX_CHAIN_B (1 << 9)
1734 1.1 pooka #define IWM_PHY_CFG_TX_CHAIN_C (1 << 10)
1735 1.1 pooka #define IWM_PHY_CFG_RX_CHAIN_A (1 << 12)
1736 1.1 pooka #define IWM_PHY_CFG_RX_CHAIN_B (1 << 13)
1737 1.1 pooka #define IWM_PHY_CFG_RX_CHAIN_C (1 << 14)
1738 1.1 pooka
1739 1.1 pooka
1740 1.1 pooka /* Target of the IWM_NVM_ACCESS_CMD */
1741 1.1 pooka enum {
1742 1.1 pooka IWM_NVM_ACCESS_TARGET_CACHE = 0,
1743 1.1 pooka IWM_NVM_ACCESS_TARGET_OTP = 1,
1744 1.1 pooka IWM_NVM_ACCESS_TARGET_EEPROM = 2,
1745 1.1 pooka };
1746 1.1 pooka
1747 1.1 pooka /* Section types for IWM_NVM_ACCESS_CMD */
1748 1.1 pooka enum {
1749 1.1 pooka IWM_NVM_SECTION_TYPE_HW = 0,
1750 1.1 pooka IWM_NVM_SECTION_TYPE_SW,
1751 1.1 pooka IWM_NVM_SECTION_TYPE_PAPD,
1752 1.1 pooka IWM_NVM_SECTION_TYPE_BT,
1753 1.1 pooka IWM_NVM_SECTION_TYPE_CALIBRATION,
1754 1.1 pooka IWM_NVM_SECTION_TYPE_PRODUCTION,
1755 1.1 pooka IWM_NVM_SECTION_TYPE_POST_FCS_CALIB,
1756 1.1 pooka IWM_NVM_NUM_OF_SECTIONS,
1757 1.1 pooka };
1758 1.1 pooka
1759 1.1 pooka /**
1760 1.1 pooka * struct iwm_nvm_access_cmd_ver2 - Request the device to send an NVM section
1761 1.1 pooka * @op_code: 0 - read, 1 - write
1762 1.1 pooka * @target: IWM_NVM_ACCESS_TARGET_*
1763 1.1 pooka * @type: IWM_NVM_SECTION_TYPE_*
1764 1.1 pooka * @offset: offset in bytes into the section
1765 1.1 pooka * @length: in bytes, to read/write
1766 1.1 pooka * @data: if write operation, the data to write. On read its empty
1767 1.1 pooka */
1768 1.1 pooka struct iwm_nvm_access_cmd {
1769 1.1 pooka uint8_t op_code;
1770 1.1 pooka uint8_t target;
1771 1.1 pooka uint16_t type;
1772 1.1 pooka uint16_t offset;
1773 1.1 pooka uint16_t length;
1774 1.1 pooka uint8_t data[];
1775 1.1 pooka } __packed; /* IWM_NVM_ACCESS_CMD_API_S_VER_2 */
1776 1.1 pooka
1777 1.1 pooka /**
1778 1.1 pooka * struct iwm_nvm_access_resp_ver2 - response to IWM_NVM_ACCESS_CMD
1779 1.1 pooka * @offset: offset in bytes into the section
1780 1.1 pooka * @length: in bytes, either how much was written or read
1781 1.1 pooka * @type: IWM_NVM_SECTION_TYPE_*
1782 1.1 pooka * @status: 0 for success, fail otherwise
1783 1.1 pooka * @data: if read operation, the data returned. Empty on write.
1784 1.1 pooka */
1785 1.1 pooka struct iwm_nvm_access_resp {
1786 1.1 pooka uint16_t offset;
1787 1.1 pooka uint16_t length;
1788 1.1 pooka uint16_t type;
1789 1.1 pooka uint16_t status;
1790 1.1 pooka uint8_t data[];
1791 1.1 pooka } __packed; /* IWM_NVM_ACCESS_CMD_RESP_API_S_VER_2 */
1792 1.1 pooka
1793 1.1 pooka /* IWM_MVM_ALIVE 0x1 */
1794 1.1 pooka
1795 1.1 pooka /* alive response is_valid values */
1796 1.1 pooka #define IWM_ALIVE_RESP_UCODE_OK (1 << 0)
1797 1.1 pooka #define IWM_ALIVE_RESP_RFKILL (1 << 1)
1798 1.1 pooka
1799 1.1 pooka /* alive response ver_type values */
1800 1.1 pooka enum {
1801 1.1 pooka IWM_FW_TYPE_HW = 0,
1802 1.1 pooka IWM_FW_TYPE_PROT = 1,
1803 1.1 pooka IWM_FW_TYPE_AP = 2,
1804 1.1 pooka IWM_FW_TYPE_WOWLAN = 3,
1805 1.1 pooka IWM_FW_TYPE_TIMING = 4,
1806 1.1 pooka IWM_FW_TYPE_WIPAN = 5
1807 1.1 pooka };
1808 1.1 pooka
1809 1.1 pooka /* alive response ver_subtype values */
1810 1.1 pooka enum {
1811 1.1 pooka IWM_FW_SUBTYPE_FULL_FEATURE = 0,
1812 1.1 pooka IWM_FW_SUBTYPE_BOOTSRAP = 1, /* Not valid */
1813 1.1 pooka IWM_FW_SUBTYPE_REDUCED = 2,
1814 1.1 pooka IWM_FW_SUBTYPE_ALIVE_ONLY = 3,
1815 1.1 pooka IWM_FW_SUBTYPE_WOWLAN = 4,
1816 1.1 pooka IWM_FW_SUBTYPE_AP_SUBTYPE = 5,
1817 1.1 pooka IWM_FW_SUBTYPE_WIPAN = 6,
1818 1.1 pooka IWM_FW_SUBTYPE_INITIALIZE = 9
1819 1.1 pooka };
1820 1.1 pooka
1821 1.1 pooka #define IWM_ALIVE_STATUS_ERR 0xDEAD
1822 1.1 pooka #define IWM_ALIVE_STATUS_OK 0xCAFE
1823 1.1 pooka
1824 1.1 pooka #define IWM_ALIVE_FLG_RFKILL (1 << 0)
1825 1.1 pooka
1826 1.1 pooka struct iwm_mvm_alive_resp {
1827 1.1 pooka uint16_t status;
1828 1.1 pooka uint16_t flags;
1829 1.1 pooka uint8_t ucode_minor;
1830 1.1 pooka uint8_t ucode_major;
1831 1.1 pooka uint16_t id;
1832 1.1 pooka uint8_t api_minor;
1833 1.1 pooka uint8_t api_major;
1834 1.1 pooka uint8_t ver_subtype;
1835 1.1 pooka uint8_t ver_type;
1836 1.1 pooka uint8_t mac;
1837 1.1 pooka uint8_t opt;
1838 1.1 pooka uint16_t reserved2;
1839 1.1 pooka uint32_t timestamp;
1840 1.1 pooka uint32_t error_event_table_ptr; /* SRAM address for error log */
1841 1.1 pooka uint32_t log_event_table_ptr; /* SRAM address for event log */
1842 1.1 pooka uint32_t cpu_register_ptr;
1843 1.1 pooka uint32_t dbgm_config_ptr;
1844 1.1 pooka uint32_t alive_counter_ptr;
1845 1.1 pooka uint32_t scd_base_ptr; /* SRAM address for SCD */
1846 1.1 pooka } __packed; /* IWM_ALIVE_RES_API_S_VER_1 */
1847 1.1 pooka
1848 1.1 pooka /* Error response/notification */
1849 1.1 pooka enum {
1850 1.1 pooka IWM_FW_ERR_UNKNOWN_CMD = 0x0,
1851 1.1 pooka IWM_FW_ERR_INVALID_CMD_PARAM = 0x1,
1852 1.1 pooka IWM_FW_ERR_SERVICE = 0x2,
1853 1.1 pooka IWM_FW_ERR_ARC_MEMORY = 0x3,
1854 1.1 pooka IWM_FW_ERR_ARC_CODE = 0x4,
1855 1.1 pooka IWM_FW_ERR_WATCH_DOG = 0x5,
1856 1.1 pooka IWM_FW_ERR_WEP_GRP_KEY_INDX = 0x10,
1857 1.1 pooka IWM_FW_ERR_WEP_KEY_SIZE = 0x11,
1858 1.1 pooka IWM_FW_ERR_OBSOLETE_FUNC = 0x12,
1859 1.1 pooka IWM_FW_ERR_UNEXPECTED = 0xFE,
1860 1.1 pooka IWM_FW_ERR_FATAL = 0xFF
1861 1.1 pooka };
1862 1.1 pooka
1863 1.1 pooka /**
1864 1.1 pooka * struct iwm_error_resp - FW error indication
1865 1.1 pooka * ( IWM_REPLY_ERROR = 0x2 )
1866 1.1 pooka * @error_type: one of IWM_FW_ERR_*
1867 1.1 pooka * @cmd_id: the command ID for which the error occured
1868 1.1 pooka * @bad_cmd_seq_num: sequence number of the erroneous command
1869 1.1 pooka * @error_service: which service created the error, applicable only if
1870 1.1 pooka * error_type = 2, otherwise 0
1871 1.1 pooka * @timestamp: TSF in usecs.
1872 1.1 pooka */
1873 1.1 pooka struct iwm_error_resp {
1874 1.1 pooka uint32_t error_type;
1875 1.1 pooka uint8_t cmd_id;
1876 1.1 pooka uint8_t reserved1;
1877 1.1 pooka uint16_t bad_cmd_seq_num;
1878 1.1 pooka uint32_t error_service;
1879 1.1 pooka uint64_t timestamp;
1880 1.1 pooka } __packed;
1881 1.1 pooka
1882 1.1 pooka
1883 1.1 pooka /* Common PHY, MAC and Bindings definitions */
1884 1.1 pooka
1885 1.1 pooka #define IWM_MAX_MACS_IN_BINDING (3)
1886 1.1 pooka #define IWM_MAX_BINDINGS (4)
1887 1.1 pooka #define IWM_AUX_BINDING_INDEX (3)
1888 1.1 pooka #define IWM_MAX_PHYS (4)
1889 1.1 pooka
1890 1.1 pooka /* Used to extract ID and color from the context dword */
1891 1.1 pooka #define IWM_FW_CTXT_ID_POS (0)
1892 1.1 pooka #define IWM_FW_CTXT_ID_MSK (0xff << IWM_FW_CTXT_ID_POS)
1893 1.1 pooka #define IWM_FW_CTXT_COLOR_POS (8)
1894 1.1 pooka #define IWM_FW_CTXT_COLOR_MSK (0xff << IWM_FW_CTXT_COLOR_POS)
1895 1.1 pooka #define IWM_FW_CTXT_INVALID (0xffffffff)
1896 1.1 pooka
1897 1.1 pooka #define IWM_FW_CMD_ID_AND_COLOR(_id, _color) ((_id << IWM_FW_CTXT_ID_POS) |\
1898 1.1 pooka (_color << IWM_FW_CTXT_COLOR_POS))
1899 1.1 pooka
1900 1.1 pooka /* Possible actions on PHYs, MACs and Bindings */
1901 1.1 pooka enum {
1902 1.1 pooka IWM_FW_CTXT_ACTION_STUB = 0,
1903 1.1 pooka IWM_FW_CTXT_ACTION_ADD,
1904 1.1 pooka IWM_FW_CTXT_ACTION_MODIFY,
1905 1.1 pooka IWM_FW_CTXT_ACTION_REMOVE,
1906 1.1 pooka IWM_FW_CTXT_ACTION_NUM
1907 1.1 pooka }; /* COMMON_CONTEXT_ACTION_API_E_VER_1 */
1908 1.1 pooka
1909 1.1 pooka /* Time Events */
1910 1.1 pooka
1911 1.1 pooka /* Time Event types, according to MAC type */
1912 1.1 pooka enum iwm_time_event_type {
1913 1.1 pooka /* BSS Station Events */
1914 1.1 pooka IWM_TE_BSS_STA_AGGRESSIVE_ASSOC,
1915 1.1 pooka IWM_TE_BSS_STA_ASSOC,
1916 1.1 pooka IWM_TE_BSS_EAP_DHCP_PROT,
1917 1.1 pooka IWM_TE_BSS_QUIET_PERIOD,
1918 1.1 pooka
1919 1.1 pooka /* P2P Device Events */
1920 1.1 pooka IWM_TE_P2P_DEVICE_DISCOVERABLE,
1921 1.1 pooka IWM_TE_P2P_DEVICE_LISTEN,
1922 1.1 pooka IWM_TE_P2P_DEVICE_ACTION_SCAN,
1923 1.1 pooka IWM_TE_P2P_DEVICE_FULL_SCAN,
1924 1.1 pooka
1925 1.1 pooka /* P2P Client Events */
1926 1.1 pooka IWM_TE_P2P_CLIENT_AGGRESSIVE_ASSOC,
1927 1.1 pooka IWM_TE_P2P_CLIENT_ASSOC,
1928 1.1 pooka IWM_TE_P2P_CLIENT_QUIET_PERIOD,
1929 1.1 pooka
1930 1.1 pooka /* P2P GO Events */
1931 1.1 pooka IWM_TE_P2P_GO_ASSOC_PROT,
1932 1.1 pooka IWM_TE_P2P_GO_REPETITIVE_NOA,
1933 1.1 pooka IWM_TE_P2P_GO_CT_WINDOW,
1934 1.1 pooka
1935 1.1 pooka /* WiDi Sync Events */
1936 1.1 pooka IWM_TE_WIDI_TX_SYNC,
1937 1.1 pooka
1938 1.1 pooka IWM_TE_MAX
1939 1.1 pooka }; /* IWM_MAC_EVENT_TYPE_API_E_VER_1 */
1940 1.1 pooka
1941 1.1 pooka
1942 1.1 pooka
1943 1.1 pooka /* Time event - defines for command API v1 */
1944 1.1 pooka
1945 1.1 pooka /*
1946 1.1 pooka * @IWM_TE_V1_FRAG_NONE: fragmentation of the time event is NOT allowed.
1947 1.1 pooka * @IWM_TE_V1_FRAG_SINGLE: fragmentation of the time event is allowed, but only
1948 1.1 pooka * the first fragment is scheduled.
1949 1.1 pooka * @IWM_TE_V1_FRAG_DUAL: fragmentation of the time event is allowed, but only
1950 1.1 pooka * the first 2 fragments are scheduled.
1951 1.1 pooka * @IWM_TE_V1_FRAG_ENDLESS: fragmentation of the time event is allowed, and any
1952 1.1 pooka * number of fragments are valid.
1953 1.1 pooka *
1954 1.1 pooka * Other than the constant defined above, specifying a fragmentation value 'x'
1955 1.1 pooka * means that the event can be fragmented but only the first 'x' will be
1956 1.1 pooka * scheduled.
1957 1.1 pooka */
1958 1.1 pooka enum {
1959 1.1 pooka IWM_TE_V1_FRAG_NONE = 0,
1960 1.1 pooka IWM_TE_V1_FRAG_SINGLE = 1,
1961 1.1 pooka IWM_TE_V1_FRAG_DUAL = 2,
1962 1.1 pooka IWM_TE_V1_FRAG_ENDLESS = 0xffffffff
1963 1.1 pooka };
1964 1.1 pooka
1965 1.1 pooka /* If a Time Event can be fragmented, this is the max number of fragments */
1966 1.1 pooka #define IWM_TE_V1_FRAG_MAX_MSK 0x0fffffff
1967 1.1 pooka /* Repeat the time event endlessly (until removed) */
1968 1.1 pooka #define IWM_TE_V1_REPEAT_ENDLESS 0xffffffff
1969 1.1 pooka /* If a Time Event has bounded repetitions, this is the maximal value */
1970 1.1 pooka #define IWM_TE_V1_REPEAT_MAX_MSK_V1 0x0fffffff
1971 1.1 pooka
1972 1.1 pooka /* Time Event dependencies: none, on another TE, or in a specific time */
1973 1.1 pooka enum {
1974 1.1 pooka IWM_TE_V1_INDEPENDENT = 0,
1975 1.1 pooka IWM_TE_V1_DEP_OTHER = (1 << 0),
1976 1.1 pooka IWM_TE_V1_DEP_TSF = (1 << 1),
1977 1.1 pooka IWM_TE_V1_EVENT_SOCIOPATHIC = (1 << 2),
1978 1.1 pooka }; /* IWM_MAC_EVENT_DEPENDENCY_POLICY_API_E_VER_2 */
1979 1.1 pooka
1980 1.1 pooka /*
1981 1.1 pooka * @IWM_TE_V1_NOTIF_NONE: no notifications
1982 1.1 pooka * @IWM_TE_V1_NOTIF_HOST_EVENT_START: request/receive notification on event start
1983 1.1 pooka * @IWM_TE_V1_NOTIF_HOST_EVENT_END:request/receive notification on event end
1984 1.1 pooka * @IWM_TE_V1_NOTIF_INTERNAL_EVENT_START: internal FW use
1985 1.1 pooka * @IWM_TE_V1_NOTIF_INTERNAL_EVENT_END: internal FW use.
1986 1.1 pooka * @IWM_TE_V1_NOTIF_HOST_FRAG_START: request/receive notification on frag start
1987 1.1 pooka * @IWM_TE_V1_NOTIF_HOST_FRAG_END:request/receive notification on frag end
1988 1.1 pooka * @IWM_TE_V1_NOTIF_INTERNAL_FRAG_START: internal FW use.
1989 1.1 pooka * @IWM_TE_V1_NOTIF_INTERNAL_FRAG_END: internal FW use.
1990 1.1 pooka *
1991 1.1 pooka * Supported Time event notifications configuration.
1992 1.1 pooka * A notification (both event and fragment) includes a status indicating weather
1993 1.1 pooka * the FW was able to schedule the event or not. For fragment start/end
1994 1.1 pooka * notification the status is always success. There is no start/end fragment
1995 1.1 pooka * notification for monolithic events.
1996 1.1 pooka */
1997 1.1 pooka enum {
1998 1.1 pooka IWM_TE_V1_NOTIF_NONE = 0,
1999 1.1 pooka IWM_TE_V1_NOTIF_HOST_EVENT_START = (1 << 0),
2000 1.1 pooka IWM_TE_V1_NOTIF_HOST_EVENT_END = (1 << 1),
2001 1.1 pooka IWM_TE_V1_NOTIF_INTERNAL_EVENT_START = (1 << 2),
2002 1.1 pooka IWM_TE_V1_NOTIF_INTERNAL_EVENT_END = (1 << 3),
2003 1.1 pooka IWM_TE_V1_NOTIF_HOST_FRAG_START = (1 << 4),
2004 1.1 pooka IWM_TE_V1_NOTIF_HOST_FRAG_END = (1 << 5),
2005 1.1 pooka IWM_TE_V1_NOTIF_INTERNAL_FRAG_START = (1 << 6),
2006 1.1 pooka IWM_TE_V1_NOTIF_INTERNAL_FRAG_END = (1 << 7),
2007 1.1 pooka }; /* IWM_MAC_EVENT_ACTION_API_E_VER_2 */
2008 1.1 pooka
2009 1.1 pooka
2010 1.1 pooka /**
2011 1.1 pooka * struct iwm_time_event_cmd_api_v1 - configuring Time Events
2012 1.1 pooka * with struct IWM_MAC_TIME_EVENT_DATA_API_S_VER_1 (see also
2013 1.1 pooka * with version 2. determined by IWM_UCODE_TLV_FLAGS)
2014 1.1 pooka * ( IWM_TIME_EVENT_CMD = 0x29 )
2015 1.1 pooka * @id_and_color: ID and color of the relevant MAC
2016 1.1 pooka * @action: action to perform, one of IWM_FW_CTXT_ACTION_*
2017 1.1 pooka * @id: this field has two meanings, depending on the action:
2018 1.1 pooka * If the action is ADD, then it means the type of event to add.
2019 1.1 pooka * For all other actions it is the unique event ID assigned when the
2020 1.1 pooka * event was added by the FW.
2021 1.1 pooka * @apply_time: When to start the Time Event (in GP2)
2022 1.1 pooka * @max_delay: maximum delay to event's start (apply time), in TU
2023 1.1 pooka * @depends_on: the unique ID of the event we depend on (if any)
2024 1.1 pooka * @interval: interval between repetitions, in TU
2025 1.1 pooka * @interval_reciprocal: 2^32 / interval
2026 1.1 pooka * @duration: duration of event in TU
2027 1.1 pooka * @repeat: how many repetitions to do, can be IWM_TE_REPEAT_ENDLESS
2028 1.1 pooka * @dep_policy: one of IWM_TE_V1_INDEPENDENT, IWM_TE_V1_DEP_OTHER, IWM_TE_V1_DEP_TSF
2029 1.1 pooka * and IWM_TE_V1_EVENT_SOCIOPATHIC
2030 1.1 pooka * @is_present: 0 or 1, are we present or absent during the Time Event
2031 1.1 pooka * @max_frags: maximal number of fragments the Time Event can be divided to
2032 1.1 pooka * @notify: notifications using IWM_TE_V1_NOTIF_* (whom to notify when)
2033 1.1 pooka */
2034 1.1 pooka struct iwm_time_event_cmd_v1 {
2035 1.1 pooka /* COMMON_INDEX_HDR_API_S_VER_1 */
2036 1.1 pooka uint32_t id_and_color;
2037 1.1 pooka uint32_t action;
2038 1.1 pooka uint32_t id;
2039 1.1 pooka /* IWM_MAC_TIME_EVENT_DATA_API_S_VER_1 */
2040 1.1 pooka uint32_t apply_time;
2041 1.1 pooka uint32_t max_delay;
2042 1.1 pooka uint32_t dep_policy;
2043 1.1 pooka uint32_t depends_on;
2044 1.1 pooka uint32_t is_present;
2045 1.1 pooka uint32_t max_frags;
2046 1.1 pooka uint32_t interval;
2047 1.1 pooka uint32_t interval_reciprocal;
2048 1.1 pooka uint32_t duration;
2049 1.1 pooka uint32_t repeat;
2050 1.1 pooka uint32_t notify;
2051 1.1 pooka } __packed; /* IWM_MAC_TIME_EVENT_CMD_API_S_VER_1 */
2052 1.1 pooka
2053 1.1 pooka
2054 1.1 pooka /* Time event - defines for command API v2 */
2055 1.1 pooka
2056 1.1 pooka /*
2057 1.1 pooka * @IWM_TE_V2_FRAG_NONE: fragmentation of the time event is NOT allowed.
2058 1.1 pooka * @IWM_TE_V2_FRAG_SINGLE: fragmentation of the time event is allowed, but only
2059 1.1 pooka * the first fragment is scheduled.
2060 1.1 pooka * @IWM_TE_V2_FRAG_DUAL: fragmentation of the time event is allowed, but only
2061 1.1 pooka * the first 2 fragments are scheduled.
2062 1.1 pooka * @IWM_TE_V2_FRAG_ENDLESS: fragmentation of the time event is allowed, and any
2063 1.1 pooka * number of fragments are valid.
2064 1.1 pooka *
2065 1.1 pooka * Other than the constant defined above, specifying a fragmentation value 'x'
2066 1.1 pooka * means that the event can be fragmented but only the first 'x' will be
2067 1.1 pooka * scheduled.
2068 1.1 pooka */
2069 1.1 pooka enum {
2070 1.1 pooka IWM_TE_V2_FRAG_NONE = 0,
2071 1.1 pooka IWM_TE_V2_FRAG_SINGLE = 1,
2072 1.1 pooka IWM_TE_V2_FRAG_DUAL = 2,
2073 1.1 pooka IWM_TE_V2_FRAG_MAX = 0xfe,
2074 1.1 pooka IWM_TE_V2_FRAG_ENDLESS = 0xff
2075 1.1 pooka };
2076 1.1 pooka
2077 1.1 pooka /* Repeat the time event endlessly (until removed) */
2078 1.1 pooka #define IWM_TE_V2_REPEAT_ENDLESS 0xff
2079 1.1 pooka /* If a Time Event has bounded repetitions, this is the maximal value */
2080 1.1 pooka #define IWM_TE_V2_REPEAT_MAX 0xfe
2081 1.1 pooka
2082 1.1 pooka #define IWM_TE_V2_PLACEMENT_POS 12
2083 1.1 pooka #define IWM_TE_V2_ABSENCE_POS 15
2084 1.1 pooka
2085 1.1 pooka /* Time event policy values (for time event cmd api v2)
2086 1.1 pooka * A notification (both event and fragment) includes a status indicating weather
2087 1.1 pooka * the FW was able to schedule the event or not. For fragment start/end
2088 1.1 pooka * notification the status is always success. There is no start/end fragment
2089 1.1 pooka * notification for monolithic events.
2090 1.1 pooka *
2091 1.1 pooka * @IWM_TE_V2_DEFAULT_POLICY: independent, social, present, unoticable
2092 1.1 pooka * @IWM_TE_V2_NOTIF_HOST_EVENT_START: request/receive notification on event start
2093 1.1 pooka * @IWM_TE_V2_NOTIF_HOST_EVENT_END:request/receive notification on event end
2094 1.1 pooka * @IWM_TE_V2_NOTIF_INTERNAL_EVENT_START: internal FW use
2095 1.1 pooka * @IWM_TE_V2_NOTIF_INTERNAL_EVENT_END: internal FW use.
2096 1.1 pooka * @IWM_TE_V2_NOTIF_HOST_FRAG_START: request/receive notification on frag start
2097 1.1 pooka * @IWM_TE_V2_NOTIF_HOST_FRAG_END:request/receive notification on frag end
2098 1.1 pooka * @IWM_TE_V2_NOTIF_INTERNAL_FRAG_START: internal FW use.
2099 1.1 pooka * @IWM_TE_V2_NOTIF_INTERNAL_FRAG_END: internal FW use.
2100 1.1 pooka * @IWM_TE_V2_DEP_OTHER: depends on another time event
2101 1.1 pooka * @IWM_TE_V2_DEP_TSF: depends on a specific time
2102 1.1 pooka * @IWM_TE_V2_EVENT_SOCIOPATHIC: can't co-exist with other events of tha same MAC
2103 1.1 pooka * @IWM_TE_V2_ABSENCE: are we present or absent during the Time Event.
2104 1.1 pooka */
2105 1.1 pooka enum {
2106 1.1 pooka IWM_TE_V2_DEFAULT_POLICY = 0x0,
2107 1.1 pooka
2108 1.1 pooka /* notifications (event start/stop, fragment start/stop) */
2109 1.1 pooka IWM_TE_V2_NOTIF_HOST_EVENT_START = (1 << 0),
2110 1.1 pooka IWM_TE_V2_NOTIF_HOST_EVENT_END = (1 << 1),
2111 1.1 pooka IWM_TE_V2_NOTIF_INTERNAL_EVENT_START = (1 << 2),
2112 1.1 pooka IWM_TE_V2_NOTIF_INTERNAL_EVENT_END = (1 << 3),
2113 1.1 pooka
2114 1.1 pooka IWM_TE_V2_NOTIF_HOST_FRAG_START = (1 << 4),
2115 1.1 pooka IWM_TE_V2_NOTIF_HOST_FRAG_END = (1 << 5),
2116 1.1 pooka IWM_TE_V2_NOTIF_INTERNAL_FRAG_START = (1 << 6),
2117 1.1 pooka IWM_TE_V2_NOTIF_INTERNAL_FRAG_END = (1 << 7),
2118 1.1 pooka
2119 1.1 pooka IWM_TE_V2_NOTIF_MSK = 0xff,
2120 1.1 pooka
2121 1.1 pooka /* placement characteristics */
2122 1.1 pooka IWM_TE_V2_DEP_OTHER = (1 << IWM_TE_V2_PLACEMENT_POS),
2123 1.1 pooka IWM_TE_V2_DEP_TSF = (1 << (IWM_TE_V2_PLACEMENT_POS + 1)),
2124 1.1 pooka IWM_TE_V2_EVENT_SOCIOPATHIC = (1 << (IWM_TE_V2_PLACEMENT_POS + 2)),
2125 1.1 pooka
2126 1.1 pooka /* are we present or absent during the Time Event. */
2127 1.1 pooka IWM_TE_V2_ABSENCE = (1 << IWM_TE_V2_ABSENCE_POS),
2128 1.1 pooka };
2129 1.1 pooka
2130 1.1 pooka /**
2131 1.1 pooka * struct iwm_time_event_cmd_api_v2 - configuring Time Events
2132 1.1 pooka * with struct IWM_MAC_TIME_EVENT_DATA_API_S_VER_2 (see also
2133 1.1 pooka * with version 1. determined by IWM_UCODE_TLV_FLAGS)
2134 1.1 pooka * ( IWM_TIME_EVENT_CMD = 0x29 )
2135 1.1 pooka * @id_and_color: ID and color of the relevant MAC
2136 1.1 pooka * @action: action to perform, one of IWM_FW_CTXT_ACTION_*
2137 1.1 pooka * @id: this field has two meanings, depending on the action:
2138 1.1 pooka * If the action is ADD, then it means the type of event to add.
2139 1.1 pooka * For all other actions it is the unique event ID assigned when the
2140 1.1 pooka * event was added by the FW.
2141 1.1 pooka * @apply_time: When to start the Time Event (in GP2)
2142 1.1 pooka * @max_delay: maximum delay to event's start (apply time), in TU
2143 1.1 pooka * @depends_on: the unique ID of the event we depend on (if any)
2144 1.1 pooka * @interval: interval between repetitions, in TU
2145 1.1 pooka * @duration: duration of event in TU
2146 1.1 pooka * @repeat: how many repetitions to do, can be IWM_TE_REPEAT_ENDLESS
2147 1.1 pooka * @max_frags: maximal number of fragments the Time Event can be divided to
2148 1.1 pooka * @policy: defines whether uCode shall notify the host or other uCode modules
2149 1.1 pooka * on event and/or fragment start and/or end
2150 1.1 pooka * using one of IWM_TE_INDEPENDENT, IWM_TE_DEP_OTHER, IWM_TE_DEP_TSF
2151 1.1 pooka * IWM_TE_EVENT_SOCIOPATHIC
2152 1.1 pooka * using IWM_TE_ABSENCE and using IWM_TE_NOTIF_*
2153 1.1 pooka */
2154 1.1 pooka struct iwm_time_event_cmd_v2 {
2155 1.1 pooka /* COMMON_INDEX_HDR_API_S_VER_1 */
2156 1.1 pooka uint32_t id_and_color;
2157 1.1 pooka uint32_t action;
2158 1.1 pooka uint32_t id;
2159 1.1 pooka /* IWM_MAC_TIME_EVENT_DATA_API_S_VER_2 */
2160 1.1 pooka uint32_t apply_time;
2161 1.1 pooka uint32_t max_delay;
2162 1.1 pooka uint32_t depends_on;
2163 1.1 pooka uint32_t interval;
2164 1.1 pooka uint32_t duration;
2165 1.1 pooka uint8_t repeat;
2166 1.1 pooka uint8_t max_frags;
2167 1.1 pooka uint16_t policy;
2168 1.1 pooka } __packed; /* IWM_MAC_TIME_EVENT_CMD_API_S_VER_2 */
2169 1.1 pooka
2170 1.1 pooka /**
2171 1.1 pooka * struct iwm_time_event_resp - response structure to iwm_time_event_cmd
2172 1.1 pooka * @status: bit 0 indicates success, all others specify errors
2173 1.1 pooka * @id: the Time Event type
2174 1.1 pooka * @unique_id: the unique ID assigned (in ADD) or given (others) to the TE
2175 1.1 pooka * @id_and_color: ID and color of the relevant MAC
2176 1.1 pooka */
2177 1.1 pooka struct iwm_time_event_resp {
2178 1.1 pooka uint32_t status;
2179 1.1 pooka uint32_t id;
2180 1.1 pooka uint32_t unique_id;
2181 1.1 pooka uint32_t id_and_color;
2182 1.1 pooka } __packed; /* IWM_MAC_TIME_EVENT_RSP_API_S_VER_1 */
2183 1.1 pooka
2184 1.1 pooka /**
2185 1.1 pooka * struct iwm_time_event_notif - notifications of time event start/stop
2186 1.1 pooka * ( IWM_TIME_EVENT_NOTIFICATION = 0x2a )
2187 1.1 pooka * @timestamp: action timestamp in GP2
2188 1.1 pooka * @session_id: session's unique id
2189 1.1 pooka * @unique_id: unique id of the Time Event itself
2190 1.1 pooka * @id_and_color: ID and color of the relevant MAC
2191 1.1 pooka * @action: one of IWM_TE_NOTIF_START or IWM_TE_NOTIF_END
2192 1.1 pooka * @status: true if scheduled, false otherwise (not executed)
2193 1.1 pooka */
2194 1.1 pooka struct iwm_time_event_notif {
2195 1.1 pooka uint32_t timestamp;
2196 1.1 pooka uint32_t session_id;
2197 1.1 pooka uint32_t unique_id;
2198 1.1 pooka uint32_t id_and_color;
2199 1.1 pooka uint32_t action;
2200 1.1 pooka uint32_t status;
2201 1.1 pooka } __packed; /* IWM_MAC_TIME_EVENT_NTFY_API_S_VER_1 */
2202 1.1 pooka
2203 1.1 pooka
2204 1.1 pooka /* Bindings and Time Quota */
2205 1.1 pooka
2206 1.1 pooka /**
2207 1.1 pooka * struct iwm_binding_cmd - configuring bindings
2208 1.1 pooka * ( IWM_BINDING_CONTEXT_CMD = 0x2b )
2209 1.1 pooka * @id_and_color: ID and color of the relevant Binding
2210 1.1 pooka * @action: action to perform, one of IWM_FW_CTXT_ACTION_*
2211 1.1 pooka * @macs: array of MAC id and colors which belong to the binding
2212 1.1 pooka * @phy: PHY id and color which belongs to the binding
2213 1.1 pooka */
2214 1.1 pooka struct iwm_binding_cmd {
2215 1.1 pooka /* COMMON_INDEX_HDR_API_S_VER_1 */
2216 1.1 pooka uint32_t id_and_color;
2217 1.1 pooka uint32_t action;
2218 1.1 pooka /* IWM_BINDING_DATA_API_S_VER_1 */
2219 1.1 pooka uint32_t macs[IWM_MAX_MACS_IN_BINDING];
2220 1.1 pooka uint32_t phy;
2221 1.1 pooka } __packed; /* IWM_BINDING_CMD_API_S_VER_1 */
2222 1.1 pooka
2223 1.1 pooka /* The maximal number of fragments in the FW's schedule session */
2224 1.1 pooka #define IWM_MVM_MAX_QUOTA 128
2225 1.1 pooka
2226 1.1 pooka /**
2227 1.1 pooka * struct iwm_time_quota_data - configuration of time quota per binding
2228 1.1 pooka * @id_and_color: ID and color of the relevant Binding
2229 1.1 pooka * @quota: absolute time quota in TU. The scheduler will try to divide the
2230 1.1 pooka * remainig quota (after Time Events) according to this quota.
2231 1.1 pooka * @max_duration: max uninterrupted context duration in TU
2232 1.1 pooka */
2233 1.1 pooka struct iwm_time_quota_data {
2234 1.1 pooka uint32_t id_and_color;
2235 1.1 pooka uint32_t quota;
2236 1.1 pooka uint32_t max_duration;
2237 1.1 pooka } __packed; /* IWM_TIME_QUOTA_DATA_API_S_VER_1 */
2238 1.1 pooka
2239 1.1 pooka /**
2240 1.1 pooka * struct iwm_time_quota_cmd - configuration of time quota between bindings
2241 1.1 pooka * ( IWM_TIME_QUOTA_CMD = 0x2c )
2242 1.1 pooka * @quotas: allocations per binding
2243 1.1 pooka */
2244 1.1 pooka struct iwm_time_quota_cmd {
2245 1.1 pooka struct iwm_time_quota_data quotas[IWM_MAX_BINDINGS];
2246 1.1 pooka } __packed; /* IWM_TIME_QUOTA_ALLOCATION_CMD_API_S_VER_1 */
2247 1.1 pooka
2248 1.1 pooka
2249 1.1 pooka /* PHY context */
2250 1.1 pooka
2251 1.1 pooka /* Supported bands */
2252 1.1 pooka #define IWM_PHY_BAND_5 (0)
2253 1.1 pooka #define IWM_PHY_BAND_24 (1)
2254 1.1 pooka
2255 1.1 pooka /* Supported channel width, vary if there is VHT support */
2256 1.1 pooka #define IWM_PHY_VHT_CHANNEL_MODE20 (0x0)
2257 1.1 pooka #define IWM_PHY_VHT_CHANNEL_MODE40 (0x1)
2258 1.1 pooka #define IWM_PHY_VHT_CHANNEL_MODE80 (0x2)
2259 1.1 pooka #define IWM_PHY_VHT_CHANNEL_MODE160 (0x3)
2260 1.1 pooka
2261 1.1 pooka /*
2262 1.1 pooka * Control channel position:
2263 1.1 pooka * For legacy set bit means upper channel, otherwise lower.
2264 1.1 pooka * For VHT - bit-2 marks if the control is lower/upper relative to center-freq
2265 1.1 pooka * bits-1:0 mark the distance from the center freq. for 20Mhz, offset is 0.
2266 1.1 pooka * center_freq
2267 1.1 pooka * |
2268 1.1 pooka * 40Mhz |_______|_______|
2269 1.1 pooka * 80Mhz |_______|_______|_______|_______|
2270 1.1 pooka * 160Mhz |_______|_______|_______|_______|_______|_______|_______|_______|
2271 1.1 pooka * code 011 010 001 000 | 100 101 110 111
2272 1.1 pooka */
2273 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_1_BELOW (0x0)
2274 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_2_BELOW (0x1)
2275 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_3_BELOW (0x2)
2276 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_4_BELOW (0x3)
2277 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_1_ABOVE (0x4)
2278 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_2_ABOVE (0x5)
2279 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_3_ABOVE (0x6)
2280 1.1 pooka #define IWM_PHY_VHT_CTRL_POS_4_ABOVE (0x7)
2281 1.1 pooka
2282 1.1 pooka /*
2283 1.1 pooka * @band: IWM_PHY_BAND_*
2284 1.1 pooka * @channel: channel number
2285 1.1 pooka * @width: PHY_[VHT|LEGACY]_CHANNEL_*
2286 1.1 pooka * @ctrl channel: PHY_[VHT|LEGACY]_CTRL_*
2287 1.1 pooka */
2288 1.1 pooka struct iwm_fw_channel_info {
2289 1.1 pooka uint8_t band;
2290 1.1 pooka uint8_t channel;
2291 1.1 pooka uint8_t width;
2292 1.1 pooka uint8_t ctrl_pos;
2293 1.1 pooka } __packed;
2294 1.1 pooka
2295 1.1 pooka #define IWM_PHY_RX_CHAIN_DRIVER_FORCE_POS (0)
2296 1.1 pooka #define IWM_PHY_RX_CHAIN_DRIVER_FORCE_MSK \
2297 1.1 pooka (0x1 << IWM_PHY_RX_CHAIN_DRIVER_FORCE_POS)
2298 1.1 pooka #define IWM_PHY_RX_CHAIN_VALID_POS (1)
2299 1.1 pooka #define IWM_PHY_RX_CHAIN_VALID_MSK \
2300 1.1 pooka (0x7 << IWM_PHY_RX_CHAIN_VALID_POS)
2301 1.1 pooka #define IWM_PHY_RX_CHAIN_FORCE_SEL_POS (4)
2302 1.1 pooka #define IWM_PHY_RX_CHAIN_FORCE_SEL_MSK \
2303 1.1 pooka (0x7 << IWM_PHY_RX_CHAIN_FORCE_SEL_POS)
2304 1.1 pooka #define IWM_PHY_RX_CHAIN_FORCE_MIMO_SEL_POS (7)
2305 1.1 pooka #define IWM_PHY_RX_CHAIN_FORCE_MIMO_SEL_MSK \
2306 1.1 pooka (0x7 << IWM_PHY_RX_CHAIN_FORCE_MIMO_SEL_POS)
2307 1.1 pooka #define IWM_PHY_RX_CHAIN_CNT_POS (10)
2308 1.1 pooka #define IWM_PHY_RX_CHAIN_CNT_MSK \
2309 1.1 pooka (0x3 << IWM_PHY_RX_CHAIN_CNT_POS)
2310 1.1 pooka #define IWM_PHY_RX_CHAIN_MIMO_CNT_POS (12)
2311 1.1 pooka #define IWM_PHY_RX_CHAIN_MIMO_CNT_MSK \
2312 1.1 pooka (0x3 << IWM_PHY_RX_CHAIN_MIMO_CNT_POS)
2313 1.1 pooka #define IWM_PHY_RX_CHAIN_MIMO_FORCE_POS (14)
2314 1.1 pooka #define IWM_PHY_RX_CHAIN_MIMO_FORCE_MSK \
2315 1.1 pooka (0x1 << IWM_PHY_RX_CHAIN_MIMO_FORCE_POS)
2316 1.1 pooka
2317 1.1 pooka /* TODO: fix the value, make it depend on firmware at runtime? */
2318 1.1 pooka #define IWM_NUM_PHY_CTX 3
2319 1.1 pooka
2320 1.1 pooka /* TODO: complete missing documentation */
2321 1.1 pooka /**
2322 1.1 pooka * struct iwm_phy_context_cmd - config of the PHY context
2323 1.1 pooka * ( IWM_PHY_CONTEXT_CMD = 0x8 )
2324 1.1 pooka * @id_and_color: ID and color of the relevant Binding
2325 1.1 pooka * @action: action to perform, one of IWM_FW_CTXT_ACTION_*
2326 1.1 pooka * @apply_time: 0 means immediate apply and context switch.
2327 1.1 pooka * other value means apply new params after X usecs
2328 1.1 pooka * @tx_param_color: ???
2329 1.1 pooka * @channel_info:
2330 1.1 pooka * @txchain_info: ???
2331 1.1 pooka * @rxchain_info: ???
2332 1.1 pooka * @acquisition_data: ???
2333 1.1 pooka * @dsp_cfg_flags: set to 0
2334 1.1 pooka */
2335 1.1 pooka struct iwm_phy_context_cmd {
2336 1.1 pooka /* COMMON_INDEX_HDR_API_S_VER_1 */
2337 1.1 pooka uint32_t id_and_color;
2338 1.1 pooka uint32_t action;
2339 1.1 pooka /* IWM_PHY_CONTEXT_DATA_API_S_VER_1 */
2340 1.1 pooka uint32_t apply_time;
2341 1.1 pooka uint32_t tx_param_color;
2342 1.1 pooka struct iwm_fw_channel_info ci;
2343 1.1 pooka uint32_t txchain_info;
2344 1.1 pooka uint32_t rxchain_info;
2345 1.1 pooka uint32_t acquisition_data;
2346 1.1 pooka uint32_t dsp_cfg_flags;
2347 1.1 pooka } __packed; /* IWM_PHY_CONTEXT_CMD_API_VER_1 */
2348 1.1 pooka
2349 1.1 pooka #define IWM_RX_INFO_PHY_CNT 8
2350 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_ABC_IDX 1
2351 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_A_MSK 0x000000ff
2352 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_B_MSK 0x0000ff00
2353 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_C_MSK 0x00ff0000
2354 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_A_POS 0
2355 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_B_POS 8
2356 1.1 pooka #define IWM_RX_INFO_ENERGY_ANT_C_POS 16
2357 1.1 pooka
2358 1.1 pooka #define IWM_RX_INFO_AGC_IDX 1
2359 1.1 pooka #define IWM_RX_INFO_RSSI_AB_IDX 2
2360 1.1 pooka #define IWM_OFDM_AGC_A_MSK 0x0000007f
2361 1.1 pooka #define IWM_OFDM_AGC_A_POS 0
2362 1.1 pooka #define IWM_OFDM_AGC_B_MSK 0x00003f80
2363 1.1 pooka #define IWM_OFDM_AGC_B_POS 7
2364 1.1 pooka #define IWM_OFDM_AGC_CODE_MSK 0x3fe00000
2365 1.1 pooka #define IWM_OFDM_AGC_CODE_POS 20
2366 1.1 pooka #define IWM_OFDM_RSSI_INBAND_A_MSK 0x00ff
2367 1.1 pooka #define IWM_OFDM_RSSI_A_POS 0
2368 1.1 pooka #define IWM_OFDM_RSSI_ALLBAND_A_MSK 0xff00
2369 1.1 pooka #define IWM_OFDM_RSSI_ALLBAND_A_POS 8
2370 1.1 pooka #define IWM_OFDM_RSSI_INBAND_B_MSK 0xff0000
2371 1.1 pooka #define IWM_OFDM_RSSI_B_POS 16
2372 1.1 pooka #define IWM_OFDM_RSSI_ALLBAND_B_MSK 0xff000000
2373 1.1 pooka #define IWM_OFDM_RSSI_ALLBAND_B_POS 24
2374 1.1 pooka
2375 1.1 pooka /**
2376 1.1 pooka * struct iwm_rx_phy_info - phy info
2377 1.1 pooka * (IWM_REPLY_RX_PHY_CMD = 0xc0)
2378 1.1 pooka * @non_cfg_phy_cnt: non configurable DSP phy data byte count
2379 1.1 pooka * @cfg_phy_cnt: configurable DSP phy data byte count
2380 1.1 pooka * @stat_id: configurable DSP phy data set ID
2381 1.1 pooka * @reserved1:
2382 1.1 pooka * @system_timestamp: GP2 at on air rise
2383 1.1 pooka * @timestamp: TSF at on air rise
2384 1.1 pooka * @beacon_time_stamp: beacon at on-air rise
2385 1.1 pooka * @phy_flags: general phy flags: band, modulation, ...
2386 1.1 pooka * @channel: channel number
2387 1.1 pooka * @non_cfg_phy_buf: for various implementations of non_cfg_phy
2388 1.1 pooka * @rate_n_flags: IWM_RATE_MCS_*
2389 1.1 pooka * @byte_count: frame's byte-count
2390 1.1 pooka * @frame_time: frame's time on the air, based on byte count and frame rate
2391 1.1 pooka * calculation
2392 1.1 pooka * @mac_active_msk: what MACs were active when the frame was received
2393 1.1 pooka *
2394 1.1 pooka * Before each Rx, the device sends this data. It contains PHY information
2395 1.1 pooka * about the reception of the packet.
2396 1.1 pooka */
2397 1.1 pooka struct iwm_rx_phy_info {
2398 1.1 pooka uint8_t non_cfg_phy_cnt;
2399 1.1 pooka uint8_t cfg_phy_cnt;
2400 1.1 pooka uint8_t stat_id;
2401 1.1 pooka uint8_t reserved1;
2402 1.1 pooka uint32_t system_timestamp;
2403 1.1 pooka uint64_t timestamp;
2404 1.1 pooka uint32_t beacon_time_stamp;
2405 1.1 pooka uint16_t phy_flags;
2406 1.1 pooka #define IWM_PHY_INFO_FLAG_SHPREAMBLE (1 << 2)
2407 1.1 pooka uint16_t channel;
2408 1.1 pooka uint32_t non_cfg_phy[IWM_RX_INFO_PHY_CNT];
2409 1.1 pooka uint8_t rate;
2410 1.1 pooka uint8_t rflags;
2411 1.1 pooka uint16_t xrflags;
2412 1.1 pooka uint32_t byte_count;
2413 1.1 pooka uint16_t mac_active_msk;
2414 1.1 pooka uint16_t frame_time;
2415 1.1 pooka } __packed;
2416 1.1 pooka
2417 1.1 pooka struct iwm_rx_mpdu_res_start {
2418 1.1 pooka uint16_t byte_count;
2419 1.1 pooka uint16_t reserved;
2420 1.1 pooka } __packed;
2421 1.1 pooka
2422 1.1 pooka /**
2423 1.1 pooka * enum iwm_rx_phy_flags - to parse %iwm_rx_phy_info phy_flags
2424 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_BAND_24: true if the packet was received on 2.4 band
2425 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_MOD_CCK:
2426 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_SHORT_PREAMBLE: true if packet's preamble was short
2427 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_NARROW_BAND:
2428 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_ANTENNA: antenna on which the packet was received
2429 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_AGG: set if the packet was part of an A-MPDU
2430 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_OFDM_HT: The frame was an HT frame
2431 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_OFDM_GF: The frame used GF preamble
2432 1.1 pooka * @IWM_RX_RES_PHY_FLAGS_OFDM_VHT: The frame was a VHT frame
2433 1.1 pooka */
2434 1.1 pooka enum iwm_rx_phy_flags {
2435 1.1 pooka IWM_RX_RES_PHY_FLAGS_BAND_24 = (1 << 0),
2436 1.1 pooka IWM_RX_RES_PHY_FLAGS_MOD_CCK = (1 << 1),
2437 1.1 pooka IWM_RX_RES_PHY_FLAGS_SHORT_PREAMBLE = (1 << 2),
2438 1.1 pooka IWM_RX_RES_PHY_FLAGS_NARROW_BAND = (1 << 3),
2439 1.1 pooka IWM_RX_RES_PHY_FLAGS_ANTENNA = (0x7 << 4),
2440 1.1 pooka IWM_RX_RES_PHY_FLAGS_ANTENNA_POS = 4,
2441 1.1 pooka IWM_RX_RES_PHY_FLAGS_AGG = (1 << 7),
2442 1.1 pooka IWM_RX_RES_PHY_FLAGS_OFDM_HT = (1 << 8),
2443 1.1 pooka IWM_RX_RES_PHY_FLAGS_OFDM_GF = (1 << 9),
2444 1.1 pooka IWM_RX_RES_PHY_FLAGS_OFDM_VHT = (1 << 10),
2445 1.1 pooka };
2446 1.1 pooka
2447 1.1 pooka /**
2448 1.1 pooka * enum iwm_mvm_rx_status - written by fw for each Rx packet
2449 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_CRC_OK: CRC is fine
2450 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_OVERRUN_OK: there was no RXE overflow
2451 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SRC_STA_FOUND:
2452 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_KEY_VALID:
2453 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_KEY_PARAM_OK:
2454 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_ICV_OK: ICV is fine, if not, the packet is destroyed
2455 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_MIC_OK: used for CCM alg only. TKIP MIC is checked
2456 1.1 pooka * in the driver.
2457 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_TTAK_OK: TTAK is fine
2458 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_MNG_FRAME_REPLAY_ERR: valid for alg = CCM_CMAC or
2459 1.1 pooka * alg = CCM only. Checks replay attack for 11w frames. Relevant only if
2460 1.1 pooka * %IWM_RX_MPDU_RES_STATUS_ROBUST_MNG_FRAME is set.
2461 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_NO_ENC: this frame is not encrypted
2462 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_WEP_ENC: this frame is encrypted using WEP
2463 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_CCM_ENC: this frame is encrypted using CCM
2464 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_TKIP_ENC: this frame is encrypted using TKIP
2465 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_CCM_CMAC_ENC: this frame is encrypted using CCM_CMAC
2466 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_ENC_ERR: this frame couldn't be decrypted
2467 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_SEC_ENC_MSK: bitmask of the encryption algorithm
2468 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_DEC_DONE: this frame has been successfully decrypted
2469 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_PROTECT_FRAME_BIT_CMP:
2470 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_EXT_IV_BIT_CMP:
2471 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_KEY_ID_CMP_BIT:
2472 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_ROBUST_MNG_FRAME: this frame is an 11w management frame
2473 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_HASH_INDEX_MSK:
2474 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_STA_ID_MSK:
2475 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_RRF_KILL:
2476 1.1 pooka * @IWM_RX_MPDU_RES_STATUS_FILTERING_MSK:
2477 1.1 pooka * @IWM_RX_MPDU_RES_STATUS2_FILTERING_MSK:
2478 1.1 pooka */
2479 1.1 pooka enum iwm_mvm_rx_status {
2480 1.1 pooka IWM_RX_MPDU_RES_STATUS_CRC_OK = (1 << 0),
2481 1.1 pooka IWM_RX_MPDU_RES_STATUS_OVERRUN_OK = (1 << 1),
2482 1.1 pooka IWM_RX_MPDU_RES_STATUS_SRC_STA_FOUND = (1 << 2),
2483 1.1 pooka IWM_RX_MPDU_RES_STATUS_KEY_VALID = (1 << 3),
2484 1.1 pooka IWM_RX_MPDU_RES_STATUS_KEY_PARAM_OK = (1 << 4),
2485 1.1 pooka IWM_RX_MPDU_RES_STATUS_ICV_OK = (1 << 5),
2486 1.1 pooka IWM_RX_MPDU_RES_STATUS_MIC_OK = (1 << 6),
2487 1.1 pooka IWM_RX_MPDU_RES_STATUS_TTAK_OK = (1 << 7),
2488 1.1 pooka IWM_RX_MPDU_RES_STATUS_MNG_FRAME_REPLAY_ERR = (1 << 7),
2489 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_NO_ENC = (0 << 8),
2490 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_WEP_ENC = (1 << 8),
2491 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_CCM_ENC = (2 << 8),
2492 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_TKIP_ENC = (3 << 8),
2493 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_EXT_ENC = (4 << 8),
2494 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_CCM_CMAC_ENC = (6 << 8),
2495 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_ENC_ERR = (7 << 8),
2496 1.1 pooka IWM_RX_MPDU_RES_STATUS_SEC_ENC_MSK = (7 << 8),
2497 1.1 pooka IWM_RX_MPDU_RES_STATUS_DEC_DONE = (1 << 11),
2498 1.1 pooka IWM_RX_MPDU_RES_STATUS_PROTECT_FRAME_BIT_CMP = (1 << 12),
2499 1.1 pooka IWM_RX_MPDU_RES_STATUS_EXT_IV_BIT_CMP = (1 << 13),
2500 1.1 pooka IWM_RX_MPDU_RES_STATUS_KEY_ID_CMP_BIT = (1 << 14),
2501 1.1 pooka IWM_RX_MPDU_RES_STATUS_ROBUST_MNG_FRAME = (1 << 15),
2502 1.1 pooka IWM_RX_MPDU_RES_STATUS_HASH_INDEX_MSK = (0x3F0000),
2503 1.1 pooka IWM_RX_MPDU_RES_STATUS_STA_ID_MSK = (0x1f000000),
2504 1.1 pooka IWM_RX_MPDU_RES_STATUS_RRF_KILL = (1 << 29),
2505 1.1 pooka IWM_RX_MPDU_RES_STATUS_FILTERING_MSK = (0xc00000),
2506 1.1 pooka IWM_RX_MPDU_RES_STATUS2_FILTERING_MSK = (0xc0000000),
2507 1.1 pooka };
2508 1.1 pooka
2509 1.1 pooka /**
2510 1.1 pooka * struct iwm_radio_version_notif - information on the radio version
2511 1.1 pooka * ( IWM_RADIO_VERSION_NOTIFICATION = 0x68 )
2512 1.1 pooka * @radio_flavor:
2513 1.1 pooka * @radio_step:
2514 1.1 pooka * @radio_dash:
2515 1.1 pooka */
2516 1.1 pooka struct iwm_radio_version_notif {
2517 1.1 pooka uint32_t radio_flavor;
2518 1.1 pooka uint32_t radio_step;
2519 1.1 pooka uint32_t radio_dash;
2520 1.1 pooka } __packed; /* IWM_RADIO_VERSION_NOTOFICATION_S_VER_1 */
2521 1.1 pooka
2522 1.1 pooka enum iwm_card_state_flags {
2523 1.1 pooka IWM_CARD_ENABLED = 0x00,
2524 1.1 pooka IWM_HW_CARD_DISABLED = 0x01,
2525 1.1 pooka IWM_SW_CARD_DISABLED = 0x02,
2526 1.1 pooka IWM_CT_KILL_CARD_DISABLED = 0x04,
2527 1.1 pooka IWM_HALT_CARD_DISABLED = 0x08,
2528 1.1 pooka IWM_CARD_DISABLED_MSK = 0x0f,
2529 1.1 pooka IWM_CARD_IS_RX_ON = 0x10,
2530 1.1 pooka };
2531 1.1 pooka
2532 1.1 pooka /**
2533 1.1 pooka * struct iwm_radio_version_notif - information on the radio version
2534 1.1 pooka * (IWM_CARD_STATE_NOTIFICATION = 0xa1 )
2535 1.1 pooka * @flags: %iwm_card_state_flags
2536 1.1 pooka */
2537 1.1 pooka struct iwm_card_state_notif {
2538 1.1 pooka uint32_t flags;
2539 1.1 pooka } __packed; /* CARD_STATE_NTFY_API_S_VER_1 */
2540 1.1 pooka
2541 1.1 pooka /**
2542 1.1 pooka * struct iwm_missed_beacons_notif - information on missed beacons
2543 1.1 pooka * ( IWM_MISSED_BEACONS_NOTIFICATION = 0xa2 )
2544 1.1 pooka * @mac_id: interface ID
2545 1.1 pooka * @consec_missed_beacons_since_last_rx: number of consecutive missed
2546 1.1 pooka * beacons since last RX.
2547 1.1 pooka * @consec_missed_beacons: number of consecutive missed beacons
2548 1.1 pooka * @num_expected_beacons:
2549 1.1 pooka * @num_recvd_beacons:
2550 1.1 pooka */
2551 1.1 pooka struct iwm_missed_beacons_notif {
2552 1.1 pooka uint32_t mac_id;
2553 1.1 pooka uint32_t consec_missed_beacons_since_last_rx;
2554 1.1 pooka uint32_t consec_missed_beacons;
2555 1.1 pooka uint32_t num_expected_beacons;
2556 1.1 pooka uint32_t num_recvd_beacons;
2557 1.1 pooka } __packed; /* IWM_MISSED_BEACON_NTFY_API_S_VER_3 */
2558 1.1 pooka
2559 1.1 pooka /**
2560 1.1 pooka * struct iwm_set_calib_default_cmd - set default value for calibration.
2561 1.1 pooka * ( IWM_SET_CALIB_DEFAULT_CMD = 0x8e )
2562 1.1 pooka * @calib_index: the calibration to set value for
2563 1.1 pooka * @length: of data
2564 1.1 pooka * @data: the value to set for the calibration result
2565 1.1 pooka */
2566 1.1 pooka struct iwm_set_calib_default_cmd {
2567 1.1 pooka uint16_t calib_index;
2568 1.1 pooka uint16_t length;
2569 1.1 pooka uint8_t data[0];
2570 1.1 pooka } __packed; /* IWM_PHY_CALIB_OVERRIDE_VALUES_S */
2571 1.1 pooka
2572 1.1 pooka #define IWM_MAX_PORT_ID_NUM 2
2573 1.1 pooka #define IWM_MAX_MCAST_FILTERING_ADDRESSES 256
2574 1.1 pooka
2575 1.1 pooka /**
2576 1.1 pooka * struct iwm_mcast_filter_cmd - configure multicast filter.
2577 1.1 pooka * @filter_own: Set 1 to filter out multicast packets sent by station itself
2578 1.1 pooka * @port_id: Multicast MAC addresses array specifier. This is a strange way
2579 1.1 pooka * to identify network interface adopted in host-device IF.
2580 1.1 pooka * It is used by FW as index in array of addresses. This array has
2581 1.1 pooka * IWM_MAX_PORT_ID_NUM members.
2582 1.1 pooka * @count: Number of MAC addresses in the array
2583 1.1 pooka * @pass_all: Set 1 to pass all multicast packets.
2584 1.1 pooka * @bssid: current association BSSID.
2585 1.1 pooka * @addr_list: Place holder for array of MAC addresses.
2586 1.1 pooka * IMPORTANT: add padding if necessary to ensure DWORD alignment.
2587 1.1 pooka */
2588 1.1 pooka struct iwm_mcast_filter_cmd {
2589 1.1 pooka uint8_t filter_own;
2590 1.1 pooka uint8_t port_id;
2591 1.1 pooka uint8_t count;
2592 1.1 pooka uint8_t pass_all;
2593 1.1 pooka uint8_t bssid[6];
2594 1.1 pooka uint8_t reserved[2];
2595 1.1 pooka uint8_t addr_list[0];
2596 1.1 pooka } __packed; /* IWM_MCAST_FILTERING_CMD_API_S_VER_1 */
2597 1.1 pooka
2598 1.1 pooka struct iwm_mvm_statistics_dbg {
2599 1.1 pooka uint32_t burst_check;
2600 1.1 pooka uint32_t burst_count;
2601 1.1 pooka uint32_t wait_for_silence_timeout_cnt;
2602 1.1 pooka uint32_t reserved[3];
2603 1.1 pooka } __packed; /* IWM_STATISTICS_DEBUG_API_S_VER_2 */
2604 1.1 pooka
2605 1.1 pooka struct iwm_mvm_statistics_div {
2606 1.1 pooka uint32_t tx_on_a;
2607 1.1 pooka uint32_t tx_on_b;
2608 1.1 pooka uint32_t exec_time;
2609 1.1 pooka uint32_t probe_time;
2610 1.1 pooka uint32_t rssi_ant;
2611 1.1 pooka uint32_t reserved2;
2612 1.1 pooka } __packed; /* IWM_STATISTICS_SLOW_DIV_API_S_VER_2 */
2613 1.1 pooka
2614 1.1 pooka struct iwm_mvm_statistics_general_common {
2615 1.1 pooka uint32_t temperature; /* radio temperature */
2616 1.1 pooka uint32_t temperature_m; /* radio voltage */
2617 1.1 pooka struct iwm_mvm_statistics_dbg dbg;
2618 1.1 pooka uint32_t sleep_time;
2619 1.1 pooka uint32_t slots_out;
2620 1.1 pooka uint32_t slots_idle;
2621 1.1 pooka uint32_t ttl_timestamp;
2622 1.1 pooka struct iwm_mvm_statistics_div div;
2623 1.1 pooka uint32_t rx_enable_counter;
2624 1.1 pooka /*
2625 1.1 pooka * num_of_sos_states:
2626 1.1 pooka * count the number of times we have to re-tune
2627 1.1 pooka * in order to get out of bad PHY status
2628 1.1 pooka */
2629 1.1 pooka uint32_t num_of_sos_states;
2630 1.1 pooka } __packed; /* IWM_STATISTICS_GENERAL_API_S_VER_5 */
2631 1.1 pooka
2632 1.1 pooka struct iwm_mvm_statistics_rx_non_phy {
2633 1.1 pooka uint32_t bogus_cts; /* CTS received when not expecting CTS */
2634 1.1 pooka uint32_t bogus_ack; /* ACK received when not expecting ACK */
2635 1.1 pooka uint32_t non_bssid_frames; /* number of frames with BSSID that
2636 1.1 pooka * doesn't belong to the STA BSSID */
2637 1.1 pooka uint32_t filtered_frames; /* count frames that were dumped in the
2638 1.1 pooka * filtering process */
2639 1.1 pooka uint32_t non_channel_beacons; /* beacons with our bss id but not on
2640 1.1 pooka * our serving channel */
2641 1.1 pooka uint32_t channel_beacons; /* beacons with our bss id and in our
2642 1.1 pooka * serving channel */
2643 1.1 pooka uint32_t num_missed_bcon; /* number of missed beacons */
2644 1.1 pooka uint32_t adc_rx_saturation_time; /* count in 0.8us units the time the
2645 1.1 pooka * ADC was in saturation */
2646 1.1 pooka uint32_t ina_detection_search_time;/* total time (in 0.8us) searched
2647 1.1 pooka * for INA */
2648 1.1 pooka uint32_t beacon_silence_rssi[3];/* RSSI silence after beacon frame */
2649 1.1 pooka uint32_t interference_data_flag; /* flag for interference data
2650 1.1 pooka * availability. 1 when data is
2651 1.1 pooka * available. */
2652 1.1 pooka uint32_t channel_load; /* counts RX Enable time in uSec */
2653 1.1 pooka uint32_t dsp_false_alarms; /* DSP false alarm (both OFDM
2654 1.1 pooka * and CCK) counter */
2655 1.1 pooka uint32_t beacon_rssi_a;
2656 1.1 pooka uint32_t beacon_rssi_b;
2657 1.1 pooka uint32_t beacon_rssi_c;
2658 1.1 pooka uint32_t beacon_energy_a;
2659 1.1 pooka uint32_t beacon_energy_b;
2660 1.1 pooka uint32_t beacon_energy_c;
2661 1.1 pooka uint32_t num_bt_kills;
2662 1.1 pooka uint32_t mac_id;
2663 1.1 pooka uint32_t directed_data_mpdu;
2664 1.1 pooka } __packed; /* IWM_STATISTICS_RX_NON_PHY_API_S_VER_3 */
2665 1.1 pooka
2666 1.1 pooka struct iwm_mvm_statistics_rx_phy {
2667 1.1 pooka uint32_t ina_cnt;
2668 1.1 pooka uint32_t fina_cnt;
2669 1.1 pooka uint32_t plcp_err;
2670 1.1 pooka uint32_t crc32_err;
2671 1.1 pooka uint32_t overrun_err;
2672 1.1 pooka uint32_t early_overrun_err;
2673 1.1 pooka uint32_t crc32_good;
2674 1.1 pooka uint32_t false_alarm_cnt;
2675 1.1 pooka uint32_t fina_sync_err_cnt;
2676 1.1 pooka uint32_t sfd_timeout;
2677 1.1 pooka uint32_t fina_timeout;
2678 1.1 pooka uint32_t unresponded_rts;
2679 1.1 pooka uint32_t rxe_frame_limit_overrun;
2680 1.1 pooka uint32_t sent_ack_cnt;
2681 1.1 pooka uint32_t sent_cts_cnt;
2682 1.1 pooka uint32_t sent_ba_rsp_cnt;
2683 1.1 pooka uint32_t dsp_self_kill;
2684 1.1 pooka uint32_t mh_format_err;
2685 1.1 pooka uint32_t re_acq_main_rssi_sum;
2686 1.1 pooka uint32_t reserved;
2687 1.1 pooka } __packed; /* IWM_STATISTICS_RX_PHY_API_S_VER_2 */
2688 1.1 pooka
2689 1.1 pooka struct iwm_mvm_statistics_rx_ht_phy {
2690 1.1 pooka uint32_t plcp_err;
2691 1.1 pooka uint32_t overrun_err;
2692 1.1 pooka uint32_t early_overrun_err;
2693 1.1 pooka uint32_t crc32_good;
2694 1.1 pooka uint32_t crc32_err;
2695 1.1 pooka uint32_t mh_format_err;
2696 1.1 pooka uint32_t agg_crc32_good;
2697 1.1 pooka uint32_t agg_mpdu_cnt;
2698 1.1 pooka uint32_t agg_cnt;
2699 1.1 pooka uint32_t unsupport_mcs;
2700 1.1 pooka } __packed; /* IWM_STATISTICS_HT_RX_PHY_API_S_VER_1 */
2701 1.1 pooka
2702 1.1 pooka #define IWM_MAX_CHAINS 3
2703 1.1 pooka
2704 1.1 pooka struct iwm_mvm_statistics_tx_non_phy_agg {
2705 1.1 pooka uint32_t ba_timeout;
2706 1.1 pooka uint32_t ba_reschedule_frames;
2707 1.1 pooka uint32_t scd_query_agg_frame_cnt;
2708 1.1 pooka uint32_t scd_query_no_agg;
2709 1.1 pooka uint32_t scd_query_agg;
2710 1.1 pooka uint32_t scd_query_mismatch;
2711 1.1 pooka uint32_t frame_not_ready;
2712 1.1 pooka uint32_t underrun;
2713 1.1 pooka uint32_t bt_prio_kill;
2714 1.1 pooka uint32_t rx_ba_rsp_cnt;
2715 1.1 pooka int8_t txpower[IWM_MAX_CHAINS];
2716 1.1 pooka int8_t reserved;
2717 1.1 pooka uint32_t reserved2;
2718 1.1 pooka } __packed; /* IWM_STATISTICS_TX_NON_PHY_AGG_API_S_VER_1 */
2719 1.1 pooka
2720 1.1 pooka struct iwm_mvm_statistics_tx_channel_width {
2721 1.1 pooka uint32_t ext_cca_narrow_ch20[1];
2722 1.1 pooka uint32_t ext_cca_narrow_ch40[2];
2723 1.1 pooka uint32_t ext_cca_narrow_ch80[3];
2724 1.1 pooka uint32_t ext_cca_narrow_ch160[4];
2725 1.1 pooka uint32_t last_tx_ch_width_indx;
2726 1.1 pooka uint32_t rx_detected_per_ch_width[4];
2727 1.1 pooka uint32_t success_per_ch_width[4];
2728 1.1 pooka uint32_t fail_per_ch_width[4];
2729 1.1 pooka }; /* IWM_STATISTICS_TX_CHANNEL_WIDTH_API_S_VER_1 */
2730 1.1 pooka
2731 1.1 pooka struct iwm_mvm_statistics_tx {
2732 1.1 pooka uint32_t preamble_cnt;
2733 1.1 pooka uint32_t rx_detected_cnt;
2734 1.1 pooka uint32_t bt_prio_defer_cnt;
2735 1.1 pooka uint32_t bt_prio_kill_cnt;
2736 1.1 pooka uint32_t few_bytes_cnt;
2737 1.1 pooka uint32_t cts_timeout;
2738 1.1 pooka uint32_t ack_timeout;
2739 1.1 pooka uint32_t expected_ack_cnt;
2740 1.1 pooka uint32_t actual_ack_cnt;
2741 1.1 pooka uint32_t dump_msdu_cnt;
2742 1.1 pooka uint32_t burst_abort_next_frame_mismatch_cnt;
2743 1.1 pooka uint32_t burst_abort_missing_next_frame_cnt;
2744 1.1 pooka uint32_t cts_timeout_collision;
2745 1.1 pooka uint32_t ack_or_ba_timeout_collision;
2746 1.1 pooka struct iwm_mvm_statistics_tx_non_phy_agg agg;
2747 1.1 pooka struct iwm_mvm_statistics_tx_channel_width channel_width;
2748 1.1 pooka } __packed; /* IWM_STATISTICS_TX_API_S_VER_4 */
2749 1.1 pooka
2750 1.1 pooka
2751 1.1 pooka struct iwm_mvm_statistics_bt_activity {
2752 1.1 pooka uint32_t hi_priority_tx_req_cnt;
2753 1.1 pooka uint32_t hi_priority_tx_denied_cnt;
2754 1.1 pooka uint32_t lo_priority_tx_req_cnt;
2755 1.1 pooka uint32_t lo_priority_tx_denied_cnt;
2756 1.1 pooka uint32_t hi_priority_rx_req_cnt;
2757 1.1 pooka uint32_t hi_priority_rx_denied_cnt;
2758 1.1 pooka uint32_t lo_priority_rx_req_cnt;
2759 1.1 pooka uint32_t lo_priority_rx_denied_cnt;
2760 1.1 pooka } __packed; /* IWM_STATISTICS_BT_ACTIVITY_API_S_VER_1 */
2761 1.1 pooka
2762 1.1 pooka struct iwm_mvm_statistics_general {
2763 1.1 pooka struct iwm_mvm_statistics_general_common common;
2764 1.1 pooka uint32_t beacon_filtered;
2765 1.1 pooka uint32_t missed_beacons;
2766 1.1 pooka int8_t beacon_filter_average_energy;
2767 1.1 pooka int8_t beacon_filter_reason;
2768 1.1 pooka int8_t beacon_filter_current_energy;
2769 1.1 pooka int8_t beacon_filter_reserved;
2770 1.1 pooka uint32_t beacon_filter_delta_time;
2771 1.1 pooka struct iwm_mvm_statistics_bt_activity bt_activity;
2772 1.1 pooka } __packed; /* IWM_STATISTICS_GENERAL_API_S_VER_5 */
2773 1.1 pooka
2774 1.1 pooka struct iwm_mvm_statistics_rx {
2775 1.1 pooka struct iwm_mvm_statistics_rx_phy ofdm;
2776 1.1 pooka struct iwm_mvm_statistics_rx_phy cck;
2777 1.1 pooka struct iwm_mvm_statistics_rx_non_phy general;
2778 1.1 pooka struct iwm_mvm_statistics_rx_ht_phy ofdm_ht;
2779 1.1 pooka } __packed; /* IWM_STATISTICS_RX_API_S_VER_3 */
2780 1.1 pooka
2781 1.1 pooka /*
2782 1.1 pooka * IWM_STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
2783 1.1 pooka *
2784 1.1 pooka * By default, uCode issues this notification after receiving a beacon
2785 1.1 pooka * while associated. To disable this behavior, set DISABLE_NOTIF flag in the
2786 1.1 pooka * IWM_REPLY_STATISTICS_CMD 0x9c, above.
2787 1.1 pooka *
2788 1.1 pooka * Statistics counters continue to increment beacon after beacon, but are
2789 1.1 pooka * cleared when changing channels or when driver issues IWM_REPLY_STATISTICS_CMD
2790 1.1 pooka * 0x9c with CLEAR_STATS bit set (see above).
2791 1.1 pooka *
2792 1.1 pooka * uCode also issues this notification during scans. uCode clears statistics
2793 1.1 pooka * appropriately so that each notification contains statistics for only the
2794 1.1 pooka * one channel that has just been scanned.
2795 1.1 pooka */
2796 1.1 pooka
2797 1.1 pooka struct iwm_notif_statistics { /* IWM_STATISTICS_NTFY_API_S_VER_8 */
2798 1.1 pooka uint32_t flag;
2799 1.1 pooka struct iwm_mvm_statistics_rx rx;
2800 1.1 pooka struct iwm_mvm_statistics_tx tx;
2801 1.1 pooka struct iwm_mvm_statistics_general general;
2802 1.1 pooka } __packed;
2803 1.1 pooka
2804 1.1 pooka /***********************************
2805 1.1 pooka * Smart Fifo API
2806 1.1 pooka ***********************************/
2807 1.1 pooka /* Smart Fifo state */
2808 1.1 pooka enum iwm_sf_state {
2809 1.1 pooka IWM_SF_LONG_DELAY_ON = 0, /* should never be called by driver */
2810 1.1 pooka IWM_SF_FULL_ON,
2811 1.1 pooka IWM_SF_UNINIT,
2812 1.1 pooka IWM_SF_INIT_OFF,
2813 1.1 pooka IWM_SF_HW_NUM_STATES
2814 1.1 pooka };
2815 1.1 pooka
2816 1.1 pooka /* Smart Fifo possible scenario */
2817 1.1 pooka enum iwm_sf_scenario {
2818 1.1 pooka IWM_SF_SCENARIO_SINGLE_UNICAST,
2819 1.1 pooka IWM_SF_SCENARIO_AGG_UNICAST,
2820 1.1 pooka IWM_SF_SCENARIO_MULTICAST,
2821 1.1 pooka IWM_SF_SCENARIO_BA_RESP,
2822 1.1 pooka IWM_SF_SCENARIO_TX_RESP,
2823 1.1 pooka IWM_SF_NUM_SCENARIO
2824 1.1 pooka };
2825 1.1 pooka
2826 1.1 pooka #define IWM_SF_TRANSIENT_STATES_NUMBER 2 /* IWM_SF_LONG_DELAY_ON and IWM_SF_FULL_ON */
2827 1.1 pooka #define IWM_SF_NUM_TIMEOUT_TYPES 2 /* Aging timer and Idle timer */
2828 1.1 pooka
2829 1.1 pooka /* smart FIFO default values */
2830 1.1 pooka #define IWM_SF_W_MARK_SISO 4096
2831 1.1 pooka #define IWM_SF_W_MARK_MIMO2 8192
2832 1.1 pooka #define IWM_SF_W_MARK_MIMO3 6144
2833 1.1 pooka #define IWM_SF_W_MARK_LEGACY 4096
2834 1.1 pooka #define IWM_SF_W_MARK_SCAN 4096
2835 1.1 pooka
2836 1.1 pooka /* SF Scenarios timers for FULL_ON state (aligned to 32 uSec) */
2837 1.1 pooka #define IWM_SF_SINGLE_UNICAST_IDLE_TIMER 320 /* 300 uSec */
2838 1.1 pooka #define IWM_SF_SINGLE_UNICAST_AGING_TIMER 2016 /* 2 mSec */
2839 1.1 pooka #define IWM_SF_AGG_UNICAST_IDLE_TIMER 320 /* 300 uSec */
2840 1.1 pooka #define IWM_SF_AGG_UNICAST_AGING_TIMER 2016 /* 2 mSec */
2841 1.1 pooka #define IWM_SF_MCAST_IDLE_TIMER 2016 /* 2 mSec */
2842 1.1 pooka #define IWM_SF_MCAST_AGING_TIMER 10016 /* 10 mSec */
2843 1.1 pooka #define IWM_SF_BA_IDLE_TIMER 320 /* 300 uSec */
2844 1.1 pooka #define IWM_SF_BA_AGING_TIMER 2016 /* 2 mSec */
2845 1.1 pooka #define IWM_SF_TX_RE_IDLE_TIMER 320 /* 300 uSec */
2846 1.1 pooka #define IWM_SF_TX_RE_AGING_TIMER 2016 /* 2 mSec */
2847 1.1 pooka
2848 1.1 pooka #define IWM_SF_LONG_DELAY_AGING_TIMER 1000000 /* 1 Sec */
2849 1.1 pooka
2850 1.1 pooka /**
2851 1.1 pooka * Smart Fifo configuration command.
2852 1.1 pooka * @state: smart fifo state, types listed in iwm_sf_sate.
2853 1.1 pooka * @watermark: Minimum allowed availabe free space in RXF for transient state.
2854 1.1 pooka * @long_delay_timeouts: aging and idle timer values for each scenario
2855 1.1 pooka * in long delay state.
2856 1.1 pooka * @full_on_timeouts: timer values for each scenario in full on state.
2857 1.1 pooka */
2858 1.1 pooka struct iwm_sf_cfg_cmd {
2859 1.1 pooka enum iwm_sf_state state;
2860 1.1 pooka uint32_t watermark[IWM_SF_TRANSIENT_STATES_NUMBER];
2861 1.1 pooka uint32_t long_delay_timeouts[IWM_SF_NUM_SCENARIO][IWM_SF_NUM_TIMEOUT_TYPES];
2862 1.1 pooka uint32_t full_on_timeouts[IWM_SF_NUM_SCENARIO][IWM_SF_NUM_TIMEOUT_TYPES];
2863 1.1 pooka } __packed; /* IWM_SF_CFG_API_S_VER_2 */
2864 1.1 pooka
2865 1.1 pooka /*
2866 1.1 pooka * END mvm/fw-api.h
2867 1.1 pooka */
2868 1.1 pooka
2869 1.1 pooka /*
2870 1.1 pooka * BEGIN mvm/fw-api-mac.h
2871 1.1 pooka */
2872 1.1 pooka
2873 1.1 pooka /*
2874 1.1 pooka * The first MAC indices (starting from 0)
2875 1.1 pooka * are available to the driver, AUX follows
2876 1.1 pooka */
2877 1.1 pooka #define IWM_MAC_INDEX_AUX 4
2878 1.1 pooka #define IWM_MAC_INDEX_MIN_DRIVER 0
2879 1.1 pooka #define IWM_NUM_MAC_INDEX_DRIVER IWM_MAC_INDEX_AUX
2880 1.1 pooka
2881 1.1 pooka enum iwm_ac {
2882 1.1 pooka IWM_AC_BK,
2883 1.1 pooka IWM_AC_BE,
2884 1.1 pooka IWM_AC_VI,
2885 1.1 pooka IWM_AC_VO,
2886 1.1 pooka IWM_AC_NUM,
2887 1.1 pooka };
2888 1.1 pooka
2889 1.1 pooka /**
2890 1.1 pooka * enum iwm_mac_protection_flags - MAC context flags
2891 1.1 pooka * @IWM_MAC_PROT_FLG_TGG_PROTECT: 11g protection when transmitting OFDM frames,
2892 1.1 pooka * this will require CCK RTS/CTS2self.
2893 1.1 pooka * RTS/CTS will protect full burst time.
2894 1.1 pooka * @IWM_MAC_PROT_FLG_HT_PROT: enable HT protection
2895 1.1 pooka * @IWM_MAC_PROT_FLG_FAT_PROT: protect 40 MHz transmissions
2896 1.1 pooka * @IWM_MAC_PROT_FLG_SELF_CTS_EN: allow CTS2self
2897 1.1 pooka */
2898 1.1 pooka enum iwm_mac_protection_flags {
2899 1.1 pooka IWM_MAC_PROT_FLG_TGG_PROTECT = (1 << 3),
2900 1.1 pooka IWM_MAC_PROT_FLG_HT_PROT = (1 << 23),
2901 1.1 pooka IWM_MAC_PROT_FLG_FAT_PROT = (1 << 24),
2902 1.1 pooka IWM_MAC_PROT_FLG_SELF_CTS_EN = (1 << 30),
2903 1.1 pooka };
2904 1.1 pooka
2905 1.1 pooka #define IWM_MAC_FLG_SHORT_SLOT (1 << 4)
2906 1.1 pooka #define IWM_MAC_FLG_SHORT_PREAMBLE (1 << 5)
2907 1.1 pooka
2908 1.1 pooka /**
2909 1.1 pooka * enum iwm_mac_types - Supported MAC types
2910 1.1 pooka * @IWM_FW_MAC_TYPE_FIRST: lowest supported MAC type
2911 1.1 pooka * @IWM_FW_MAC_TYPE_AUX: Auxiliary MAC (internal)
2912 1.1 pooka * @IWM_FW_MAC_TYPE_LISTENER: monitor MAC type (?)
2913 1.1 pooka * @IWM_FW_MAC_TYPE_PIBSS: Pseudo-IBSS
2914 1.1 pooka * @IWM_FW_MAC_TYPE_IBSS: IBSS
2915 1.1 pooka * @IWM_FW_MAC_TYPE_BSS_STA: BSS (managed) station
2916 1.1 pooka * @IWM_FW_MAC_TYPE_P2P_DEVICE: P2P Device
2917 1.1 pooka * @IWM_FW_MAC_TYPE_P2P_STA: P2P client
2918 1.1 pooka * @IWM_FW_MAC_TYPE_GO: P2P GO
2919 1.1 pooka * @IWM_FW_MAC_TYPE_TEST: ?
2920 1.1 pooka * @IWM_FW_MAC_TYPE_MAX: highest support MAC type
2921 1.1 pooka */
2922 1.1 pooka enum iwm_mac_types {
2923 1.1 pooka IWM_FW_MAC_TYPE_FIRST = 1,
2924 1.1 pooka IWM_FW_MAC_TYPE_AUX = IWM_FW_MAC_TYPE_FIRST,
2925 1.1 pooka IWM_FW_MAC_TYPE_LISTENER,
2926 1.1 pooka IWM_FW_MAC_TYPE_PIBSS,
2927 1.1 pooka IWM_FW_MAC_TYPE_IBSS,
2928 1.1 pooka IWM_FW_MAC_TYPE_BSS_STA,
2929 1.1 pooka IWM_FW_MAC_TYPE_P2P_DEVICE,
2930 1.1 pooka IWM_FW_MAC_TYPE_P2P_STA,
2931 1.1 pooka IWM_FW_MAC_TYPE_GO,
2932 1.1 pooka IWM_FW_MAC_TYPE_TEST,
2933 1.1 pooka IWM_FW_MAC_TYPE_MAX = IWM_FW_MAC_TYPE_TEST
2934 1.1 pooka }; /* IWM_MAC_CONTEXT_TYPE_API_E_VER_1 */
2935 1.1 pooka
2936 1.1 pooka /**
2937 1.1 pooka * enum iwm_tsf_id - TSF hw timer ID
2938 1.1 pooka * @IWM_TSF_ID_A: use TSF A
2939 1.1 pooka * @IWM_TSF_ID_B: use TSF B
2940 1.1 pooka * @IWM_TSF_ID_C: use TSF C
2941 1.1 pooka * @IWM_TSF_ID_D: use TSF D
2942 1.1 pooka * @IWM_NUM_TSF_IDS: number of TSF timers available
2943 1.1 pooka */
2944 1.1 pooka enum iwm_tsf_id {
2945 1.1 pooka IWM_TSF_ID_A = 0,
2946 1.1 pooka IWM_TSF_ID_B = 1,
2947 1.1 pooka IWM_TSF_ID_C = 2,
2948 1.1 pooka IWM_TSF_ID_D = 3,
2949 1.1 pooka IWM_NUM_TSF_IDS = 4,
2950 1.1 pooka }; /* IWM_TSF_ID_API_E_VER_1 */
2951 1.1 pooka
2952 1.1 pooka /**
2953 1.1 pooka * struct iwm_mac_data_ap - configuration data for AP MAC context
2954 1.1 pooka * @beacon_time: beacon transmit time in system time
2955 1.1 pooka * @beacon_tsf: beacon transmit time in TSF
2956 1.1 pooka * @bi: beacon interval in TU
2957 1.1 pooka * @bi_reciprocal: 2^32 / bi
2958 1.1 pooka * @dtim_interval: dtim transmit time in TU
2959 1.1 pooka * @dtim_reciprocal: 2^32 / dtim_interval
2960 1.1 pooka * @mcast_qid: queue ID for multicast traffic
2961 1.1 pooka * @beacon_template: beacon template ID
2962 1.1 pooka */
2963 1.1 pooka struct iwm_mac_data_ap {
2964 1.1 pooka uint32_t beacon_time;
2965 1.1 pooka uint64_t beacon_tsf;
2966 1.1 pooka uint32_t bi;
2967 1.1 pooka uint32_t bi_reciprocal;
2968 1.1 pooka uint32_t dtim_interval;
2969 1.1 pooka uint32_t dtim_reciprocal;
2970 1.1 pooka uint32_t mcast_qid;
2971 1.1 pooka uint32_t beacon_template;
2972 1.1 pooka } __packed; /* AP_MAC_DATA_API_S_VER_1 */
2973 1.1 pooka
2974 1.1 pooka /**
2975 1.1 pooka * struct iwm_mac_data_ibss - configuration data for IBSS MAC context
2976 1.1 pooka * @beacon_time: beacon transmit time in system time
2977 1.1 pooka * @beacon_tsf: beacon transmit time in TSF
2978 1.1 pooka * @bi: beacon interval in TU
2979 1.1 pooka * @bi_reciprocal: 2^32 / bi
2980 1.1 pooka * @beacon_template: beacon template ID
2981 1.1 pooka */
2982 1.1 pooka struct iwm_mac_data_ibss {
2983 1.1 pooka uint32_t beacon_time;
2984 1.1 pooka uint64_t beacon_tsf;
2985 1.1 pooka uint32_t bi;
2986 1.1 pooka uint32_t bi_reciprocal;
2987 1.1 pooka uint32_t beacon_template;
2988 1.1 pooka } __packed; /* IBSS_MAC_DATA_API_S_VER_1 */
2989 1.1 pooka
2990 1.1 pooka /**
2991 1.1 pooka * struct iwm_mac_data_sta - configuration data for station MAC context
2992 1.1 pooka * @is_assoc: 1 for associated state, 0 otherwise
2993 1.1 pooka * @dtim_time: DTIM arrival time in system time
2994 1.1 pooka * @dtim_tsf: DTIM arrival time in TSF
2995 1.1 pooka * @bi: beacon interval in TU, applicable only when associated
2996 1.1 pooka * @bi_reciprocal: 2^32 / bi , applicable only when associated
2997 1.1 pooka * @dtim_interval: DTIM interval in TU, applicable only when associated
2998 1.1 pooka * @dtim_reciprocal: 2^32 / dtim_interval , applicable only when associated
2999 1.1 pooka * @listen_interval: in beacon intervals, applicable only when associated
3000 1.1 pooka * @assoc_id: unique ID assigned by the AP during association
3001 1.1 pooka */
3002 1.1 pooka struct iwm_mac_data_sta {
3003 1.1 pooka uint32_t is_assoc;
3004 1.1 pooka uint32_t dtim_time;
3005 1.1 pooka uint64_t dtim_tsf;
3006 1.1 pooka uint32_t bi;
3007 1.1 pooka uint32_t bi_reciprocal;
3008 1.1 pooka uint32_t dtim_interval;
3009 1.1 pooka uint32_t dtim_reciprocal;
3010 1.1 pooka uint32_t listen_interval;
3011 1.1 pooka uint32_t assoc_id;
3012 1.1 pooka uint32_t assoc_beacon_arrive_time;
3013 1.1 pooka } __packed; /* IWM_STA_MAC_DATA_API_S_VER_1 */
3014 1.1 pooka
3015 1.1 pooka /**
3016 1.1 pooka * struct iwm_mac_data_go - configuration data for P2P GO MAC context
3017 1.1 pooka * @ap: iwm_mac_data_ap struct with most config data
3018 1.1 pooka * @ctwin: client traffic window in TU (period after TBTT when GO is present).
3019 1.1 pooka * 0 indicates that there is no CT window.
3020 1.1 pooka * @opp_ps_enabled: indicate that opportunistic PS allowed
3021 1.1 pooka */
3022 1.1 pooka struct iwm_mac_data_go {
3023 1.1 pooka struct iwm_mac_data_ap ap;
3024 1.1 pooka uint32_t ctwin;
3025 1.1 pooka uint32_t opp_ps_enabled;
3026 1.1 pooka } __packed; /* GO_MAC_DATA_API_S_VER_1 */
3027 1.1 pooka
3028 1.1 pooka /**
3029 1.1 pooka * struct iwm_mac_data_p2p_sta - configuration data for P2P client MAC context
3030 1.1 pooka * @sta: iwm_mac_data_sta struct with most config data
3031 1.1 pooka * @ctwin: client traffic window in TU (period after TBTT when GO is present).
3032 1.1 pooka * 0 indicates that there is no CT window.
3033 1.1 pooka */
3034 1.1 pooka struct iwm_mac_data_p2p_sta {
3035 1.1 pooka struct iwm_mac_data_sta sta;
3036 1.1 pooka uint32_t ctwin;
3037 1.1 pooka } __packed; /* P2P_STA_MAC_DATA_API_S_VER_1 */
3038 1.1 pooka
3039 1.1 pooka /**
3040 1.1 pooka * struct iwm_mac_data_pibss - Pseudo IBSS config data
3041 1.1 pooka * @stats_interval: interval in TU between statistics notifications to host.
3042 1.1 pooka */
3043 1.1 pooka struct iwm_mac_data_pibss {
3044 1.1 pooka uint32_t stats_interval;
3045 1.1 pooka } __packed; /* PIBSS_MAC_DATA_API_S_VER_1 */
3046 1.1 pooka
3047 1.1 pooka /*
3048 1.1 pooka * struct iwm_mac_data_p2p_dev - configuration data for the P2P Device MAC
3049 1.1 pooka * context.
3050 1.1 pooka * @is_disc_extended: if set to true, P2P Device discoverability is enabled on
3051 1.1 pooka * other channels as well. This should be to true only in case that the
3052 1.1 pooka * device is discoverable and there is an active GO. Note that setting this
3053 1.1 pooka * field when not needed, will increase the number of interrupts and have
3054 1.1 pooka * effect on the platform power, as this setting opens the Rx filters on
3055 1.1 pooka * all macs.
3056 1.1 pooka */
3057 1.1 pooka struct iwm_mac_data_p2p_dev {
3058 1.1 pooka uint32_t is_disc_extended;
3059 1.1 pooka } __packed; /* _P2P_DEV_MAC_DATA_API_S_VER_1 */
3060 1.1 pooka
3061 1.1 pooka /**
3062 1.1 pooka * enum iwm_mac_filter_flags - MAC context filter flags
3063 1.1 pooka * @IWM_MAC_FILTER_IN_PROMISC: accept all data frames
3064 1.1 pooka * @IWM_MAC_FILTER_IN_CONTROL_AND_MGMT: pass all mangement and
3065 1.1 pooka * control frames to the host
3066 1.1 pooka * @IWM_MAC_FILTER_ACCEPT_GRP: accept multicast frames
3067 1.1 pooka * @IWM_MAC_FILTER_DIS_DECRYPT: don't decrypt unicast frames
3068 1.1 pooka * @IWM_MAC_FILTER_DIS_GRP_DECRYPT: don't decrypt multicast frames
3069 1.1 pooka * @IWM_MAC_FILTER_IN_BEACON: transfer foreign BSS's beacons to host
3070 1.1 pooka * (in station mode when associated)
3071 1.1 pooka * @IWM_MAC_FILTER_OUT_BCAST: filter out all broadcast frames
3072 1.1 pooka * @IWM_MAC_FILTER_IN_CRC32: extract FCS and append it to frames
3073 1.1 pooka * @IWM_MAC_FILTER_IN_PROBE_REQUEST: pass probe requests to host
3074 1.1 pooka */
3075 1.1 pooka enum iwm_mac_filter_flags {
3076 1.1 pooka IWM_MAC_FILTER_IN_PROMISC = (1 << 0),
3077 1.1 pooka IWM_MAC_FILTER_IN_CONTROL_AND_MGMT = (1 << 1),
3078 1.1 pooka IWM_MAC_FILTER_ACCEPT_GRP = (1 << 2),
3079 1.1 pooka IWM_MAC_FILTER_DIS_DECRYPT = (1 << 3),
3080 1.1 pooka IWM_MAC_FILTER_DIS_GRP_DECRYPT = (1 << 4),
3081 1.1 pooka IWM_MAC_FILTER_IN_BEACON = (1 << 6),
3082 1.1 pooka IWM_MAC_FILTER_OUT_BCAST = (1 << 8),
3083 1.1 pooka IWM_MAC_FILTER_IN_CRC32 = (1 << 11),
3084 1.1 pooka IWM_MAC_FILTER_IN_PROBE_REQUEST = (1 << 12),
3085 1.1 pooka };
3086 1.1 pooka
3087 1.1 pooka /**
3088 1.1 pooka * enum iwm_mac_qos_flags - QoS flags
3089 1.1 pooka * @IWM_MAC_QOS_FLG_UPDATE_EDCA: ?
3090 1.1 pooka * @IWM_MAC_QOS_FLG_TGN: HT is enabled
3091 1.1 pooka * @IWM_MAC_QOS_FLG_TXOP_TYPE: ?
3092 1.1 pooka *
3093 1.1 pooka */
3094 1.1 pooka enum iwm_mac_qos_flags {
3095 1.1 pooka IWM_MAC_QOS_FLG_UPDATE_EDCA = (1 << 0),
3096 1.1 pooka IWM_MAC_QOS_FLG_TGN = (1 << 1),
3097 1.1 pooka IWM_MAC_QOS_FLG_TXOP_TYPE = (1 << 4),
3098 1.1 pooka };
3099 1.1 pooka
3100 1.1 pooka /**
3101 1.1 pooka * struct iwm_ac_qos - QOS timing params for IWM_MAC_CONTEXT_CMD
3102 1.1 pooka * @cw_min: Contention window, start value in numbers of slots.
3103 1.1 pooka * Should be a power-of-2, minus 1. Device's default is 0x0f.
3104 1.1 pooka * @cw_max: Contention window, max value in numbers of slots.
3105 1.1 pooka * Should be a power-of-2, minus 1. Device's default is 0x3f.
3106 1.1 pooka * @aifsn: Number of slots in Arbitration Interframe Space (before
3107 1.1 pooka * performing random backoff timing prior to Tx). Device default 1.
3108 1.1 pooka * @fifos_mask: FIFOs used by this MAC for this AC
3109 1.1 pooka * @edca_txop: Length of Tx opportunity, in uSecs. Device default is 0.
3110 1.1 pooka *
3111 1.1 pooka * One instance of this config struct for each of 4 EDCA access categories
3112 1.1 pooka * in struct iwm_qosparam_cmd.
3113 1.1 pooka *
3114 1.1 pooka * Device will automatically increase contention window by (2*CW) + 1 for each
3115 1.1 pooka * transmission retry. Device uses cw_max as a bit mask, ANDed with new CW
3116 1.1 pooka * value, to cap the CW value.
3117 1.1 pooka */
3118 1.1 pooka struct iwm_ac_qos {
3119 1.1 pooka uint16_t cw_min;
3120 1.1 pooka uint16_t cw_max;
3121 1.1 pooka uint8_t aifsn;
3122 1.1 pooka uint8_t fifos_mask;
3123 1.1 pooka uint16_t edca_txop;
3124 1.1 pooka } __packed; /* IWM_AC_QOS_API_S_VER_2 */
3125 1.1 pooka
3126 1.1 pooka /**
3127 1.1 pooka * struct iwm_mac_ctx_cmd - command structure to configure MAC contexts
3128 1.1 pooka * ( IWM_MAC_CONTEXT_CMD = 0x28 )
3129 1.1 pooka * @id_and_color: ID and color of the MAC
3130 1.1 pooka * @action: action to perform, one of IWM_FW_CTXT_ACTION_*
3131 1.1 pooka * @mac_type: one of IWM_FW_MAC_TYPE_*
3132 1.1 pooka * @tsd_id: TSF HW timer, one of IWM_TSF_ID_*
3133 1.1 pooka * @node_addr: MAC address
3134 1.1 pooka * @bssid_addr: BSSID
3135 1.1 pooka * @cck_rates: basic rates available for CCK
3136 1.1 pooka * @ofdm_rates: basic rates available for OFDM
3137 1.1 pooka * @protection_flags: combination of IWM_MAC_PROT_FLG_FLAG_*
3138 1.1 pooka * @cck_short_preamble: 0x20 for enabling short preamble, 0 otherwise
3139 1.1 pooka * @short_slot: 0x10 for enabling short slots, 0 otherwise
3140 1.1 pooka * @filter_flags: combination of IWM_MAC_FILTER_*
3141 1.1 pooka * @qos_flags: from IWM_MAC_QOS_FLG_*
3142 1.1 pooka * @ac: one iwm_mac_qos configuration for each AC
3143 1.1 pooka * @mac_specific: one of struct iwm_mac_data_*, according to mac_type
3144 1.1 pooka */
3145 1.1 pooka struct iwm_mac_ctx_cmd {
3146 1.1 pooka /* COMMON_INDEX_HDR_API_S_VER_1 */
3147 1.1 pooka uint32_t id_and_color;
3148 1.1 pooka uint32_t action;
3149 1.1 pooka /* IWM_MAC_CONTEXT_COMMON_DATA_API_S_VER_1 */
3150 1.1 pooka uint32_t mac_type;
3151 1.1 pooka uint32_t tsf_id;
3152 1.1 pooka uint8_t node_addr[6];
3153 1.1 pooka uint16_t reserved_for_node_addr;
3154 1.1 pooka uint8_t bssid_addr[6];
3155 1.1 pooka uint16_t reserved_for_bssid_addr;
3156 1.1 pooka uint32_t cck_rates;
3157 1.1 pooka uint32_t ofdm_rates;
3158 1.1 pooka uint32_t protection_flags;
3159 1.1 pooka uint32_t cck_short_preamble;
3160 1.1 pooka uint32_t short_slot;
3161 1.1 pooka uint32_t filter_flags;
3162 1.1 pooka /* IWM_MAC_QOS_PARAM_API_S_VER_1 */
3163 1.1 pooka uint32_t qos_flags;
3164 1.1 pooka struct iwm_ac_qos ac[IWM_AC_NUM+1];
3165 1.1 pooka /* IWM_MAC_CONTEXT_COMMON_DATA_API_S */
3166 1.1 pooka union {
3167 1.1 pooka struct iwm_mac_data_ap ap;
3168 1.1 pooka struct iwm_mac_data_go go;
3169 1.1 pooka struct iwm_mac_data_sta sta;
3170 1.1 pooka struct iwm_mac_data_p2p_sta p2p_sta;
3171 1.1 pooka struct iwm_mac_data_p2p_dev p2p_dev;
3172 1.1 pooka struct iwm_mac_data_pibss pibss;
3173 1.1 pooka struct iwm_mac_data_ibss ibss;
3174 1.1 pooka };
3175 1.1 pooka } __packed; /* IWM_MAC_CONTEXT_CMD_API_S_VER_1 */
3176 1.1 pooka
3177 1.1 pooka static inline uint32_t iwm_mvm_reciprocal(uint32_t v)
3178 1.1 pooka {
3179 1.1 pooka if (!v)
3180 1.1 pooka return 0;
3181 1.1 pooka return 0xFFFFFFFF / v;
3182 1.1 pooka }
3183 1.1 pooka
3184 1.1 pooka #define IWM_NONQOS_SEQ_GET 0x1
3185 1.1 pooka #define IWM_NONQOS_SEQ_SET 0x2
3186 1.1 pooka struct iwm_nonqos_seq_query_cmd {
3187 1.1 pooka uint32_t get_set_flag;
3188 1.1 pooka uint32_t mac_id_n_color;
3189 1.1 pooka uint16_t value;
3190 1.1 pooka uint16_t reserved;
3191 1.1 pooka } __packed; /* IWM_NON_QOS_TX_COUNTER_GET_SET_API_S_VER_1 */
3192 1.1 pooka
3193 1.1 pooka /*
3194 1.1 pooka * END mvm/fw-api-mac.h
3195 1.1 pooka */
3196 1.1 pooka
3197 1.1 pooka /*
3198 1.1 pooka * BEGIN mvm/fw-api-power.h
3199 1.1 pooka */
3200 1.1 pooka
3201 1.1 pooka /* Power Management Commands, Responses, Notifications */
3202 1.1 pooka
3203 1.1 pooka /* Radio LP RX Energy Threshold measured in dBm */
3204 1.1 pooka #define IWM_POWER_LPRX_RSSI_THRESHOLD 75
3205 1.1 pooka #define IWM_POWER_LPRX_RSSI_THRESHOLD_MAX 94
3206 1.1 pooka #define IWM_POWER_LPRX_RSSI_THRESHOLD_MIN 30
3207 1.1 pooka
3208 1.1 pooka /**
3209 1.1 pooka * enum iwm_scan_flags - masks for power table command flags
3210 1.1 pooka * @IWM_POWER_FLAGS_POWER_SAVE_ENA_MSK: '1' Allow to save power by turning off
3211 1.1 pooka * receiver and transmitter. '0' - does not allow.
3212 1.1 pooka * @IWM_POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK: '0' Driver disables power management,
3213 1.1 pooka * '1' Driver enables PM (use rest of parameters)
3214 1.1 pooka * @IWM_POWER_FLAGS_SKIP_OVER_DTIM_MSK: '0' PM have to walk up every DTIM,
3215 1.1 pooka * '1' PM could sleep over DTIM till listen Interval.
3216 1.1 pooka * @IWM_POWER_FLAGS_SNOOZE_ENA_MSK: Enable snoozing only if uAPSD is enabled and all
3217 1.1 pooka * access categories are both delivery and trigger enabled.
3218 1.1 pooka * @IWM_POWER_FLAGS_BT_SCO_ENA: Enable BT SCO coex only if uAPSD and
3219 1.1 pooka * PBW Snoozing enabled
3220 1.1 pooka * @IWM_POWER_FLAGS_ADVANCE_PM_ENA_MSK: Advanced PM (uAPSD) enable mask
3221 1.1 pooka * @IWM_POWER_FLAGS_LPRX_ENA_MSK: Low Power RX enable.
3222 1.1 pooka * @IWM_POWER_FLAGS_AP_UAPSD_MISBEHAVING_ENA_MSK: AP/GO's uAPSD misbehaving
3223 1.1 pooka * detection enablement
3224 1.1 pooka */
3225 1.1 pooka enum iwm_power_flags {
3226 1.1 pooka IWM_POWER_FLAGS_POWER_SAVE_ENA_MSK = (1 << 0),
3227 1.1 pooka IWM_POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK = (1 << 1),
3228 1.1 pooka IWM_POWER_FLAGS_SKIP_OVER_DTIM_MSK = (1 << 2),
3229 1.1 pooka IWM_POWER_FLAGS_SNOOZE_ENA_MSK = (1 << 5),
3230 1.1 pooka IWM_POWER_FLAGS_BT_SCO_ENA = (1 << 8),
3231 1.1 pooka IWM_POWER_FLAGS_ADVANCE_PM_ENA_MSK = (1 << 9),
3232 1.1 pooka IWM_POWER_FLAGS_LPRX_ENA_MSK = (1 << 11),
3233 1.1 pooka IWM_POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK = (1 << 12),
3234 1.1 pooka };
3235 1.1 pooka
3236 1.1 pooka #define IWM_POWER_VEC_SIZE 5
3237 1.1 pooka
3238 1.1 pooka /**
3239 1.1 pooka * struct iwm_powertable_cmd - legacy power command. Beside old API support this
3240 1.1 pooka * is used also with a new power API for device wide power settings.
3241 1.1 pooka * IWM_POWER_TABLE_CMD = 0x77 (command, has simple generic response)
3242 1.1 pooka *
3243 1.1 pooka * @flags: Power table command flags from IWM_POWER_FLAGS_*
3244 1.1 pooka * @keep_alive_seconds: Keep alive period in seconds. Default - 25 sec.
3245 1.1 pooka * Minimum allowed:- 3 * DTIM. Keep alive period must be
3246 1.1 pooka * set regardless of power scheme or current power state.
3247 1.1 pooka * FW use this value also when PM is disabled.
3248 1.1 pooka * @rx_data_timeout: Minimum time (usec) from last Rx packet for AM to
3249 1.1 pooka * PSM transition - legacy PM
3250 1.1 pooka * @tx_data_timeout: Minimum time (usec) from last Tx packet for AM to
3251 1.1 pooka * PSM transition - legacy PM
3252 1.1 pooka * @sleep_interval: not in use
3253 1.1 pooka * @skip_dtim_periods: Number of DTIM periods to skip if Skip over DTIM flag
3254 1.1 pooka * is set. For example, if it is required to skip over
3255 1.1 pooka * one DTIM, this value need to be set to 2 (DTIM periods).
3256 1.1 pooka * @lprx_rssi_threshold: Signal strength up to which LP RX can be enabled.
3257 1.1 pooka * Default: 80dbm
3258 1.1 pooka */
3259 1.1 pooka struct iwm_powertable_cmd {
3260 1.1 pooka /* PM_POWER_TABLE_CMD_API_S_VER_6 */
3261 1.1 pooka uint16_t flags;
3262 1.1 pooka uint8_t keep_alive_seconds;
3263 1.1 pooka uint8_t debug_flags;
3264 1.1 pooka uint32_t rx_data_timeout;
3265 1.1 pooka uint32_t tx_data_timeout;
3266 1.1 pooka uint32_t sleep_interval[IWM_POWER_VEC_SIZE];
3267 1.1 pooka uint32_t skip_dtim_periods;
3268 1.1 pooka uint32_t lprx_rssi_threshold;
3269 1.1 pooka } __packed;
3270 1.1 pooka
3271 1.1 pooka /**
3272 1.1 pooka * enum iwm_device_power_flags - masks for device power command flags
3273 1.1 pooka * @DEVIC_POWER_FLAGS_POWER_SAVE_ENA_MSK: '1' Allow to save power by turning off
3274 1.1 pooka * receiver and transmitter. '0' - does not allow. This flag should be
3275 1.1 pooka * always set to '1' unless one need to disable actual power down for debug
3276 1.1 pooka * purposes.
3277 1.1 pooka * @IWM_DEVICE_POWER_FLAGS_CAM_MSK: '1' CAM (Continuous Active Mode) is set, meaning
3278 1.1 pooka * that power management is disabled. '0' Power management is enabled, one
3279 1.1 pooka * of power schemes is applied.
3280 1.1 pooka */
3281 1.1 pooka enum iwm_device_power_flags {
3282 1.1 pooka IWM_DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK = (1 << 0),
3283 1.1 pooka IWM_DEVICE_POWER_FLAGS_CAM_MSK = (1 << 13),
3284 1.1 pooka };
3285 1.1 pooka
3286 1.1 pooka /**
3287 1.1 pooka * struct iwm_device_power_cmd - device wide power command.
3288 1.1 pooka * IWM_DEVICE_POWER_CMD = 0x77 (command, has simple generic response)
3289 1.1 pooka *
3290 1.1 pooka * @flags: Power table command flags from IWM_DEVICE_POWER_FLAGS_*
3291 1.1 pooka */
3292 1.1 pooka struct iwm_device_power_cmd {
3293 1.1 pooka /* PM_POWER_TABLE_CMD_API_S_VER_6 */
3294 1.1 pooka uint16_t flags;
3295 1.1 pooka uint16_t reserved;
3296 1.1 pooka } __packed;
3297 1.1 pooka
3298 1.1 pooka /**
3299 1.1 pooka * struct iwm_mac_power_cmd - New power command containing uAPSD support
3300 1.1 pooka * IWM_MAC_PM_POWER_TABLE = 0xA9 (command, has simple generic response)
3301 1.1 pooka * @id_and_color: MAC contex identifier
3302 1.1 pooka * @flags: Power table command flags from POWER_FLAGS_*
3303 1.1 pooka * @keep_alive_seconds: Keep alive period in seconds. Default - 25 sec.
3304 1.1 pooka * Minimum allowed:- 3 * DTIM. Keep alive period must be
3305 1.1 pooka * set regardless of power scheme or current power state.
3306 1.1 pooka * FW use this value also when PM is disabled.
3307 1.1 pooka * @rx_data_timeout: Minimum time (usec) from last Rx packet for AM to
3308 1.1 pooka * PSM transition - legacy PM
3309 1.1 pooka * @tx_data_timeout: Minimum time (usec) from last Tx packet for AM to
3310 1.1 pooka * PSM transition - legacy PM
3311 1.1 pooka * @sleep_interval: not in use
3312 1.1 pooka * @skip_dtim_periods: Number of DTIM periods to skip if Skip over DTIM flag
3313 1.1 pooka * is set. For example, if it is required to skip over
3314 1.1 pooka * one DTIM, this value need to be set to 2 (DTIM periods).
3315 1.1 pooka * @rx_data_timeout_uapsd: Minimum time (usec) from last Rx packet for AM to
3316 1.1 pooka * PSM transition - uAPSD
3317 1.1 pooka * @tx_data_timeout_uapsd: Minimum time (usec) from last Tx packet for AM to
3318 1.1 pooka * PSM transition - uAPSD
3319 1.1 pooka * @lprx_rssi_threshold: Signal strength up to which LP RX can be enabled.
3320 1.1 pooka * Default: 80dbm
3321 1.1 pooka * @num_skip_dtim: Number of DTIMs to skip if Skip over DTIM flag is set
3322 1.1 pooka * @snooze_interval: Maximum time between attempts to retrieve buffered data
3323 1.1 pooka * from the AP [msec]
3324 1.1 pooka * @snooze_window: A window of time in which PBW snoozing insures that all
3325 1.1 pooka * packets received. It is also the minimum time from last
3326 1.1 pooka * received unicast RX packet, before client stops snoozing
3327 1.1 pooka * for data. [msec]
3328 1.1 pooka * @snooze_step: TBD
3329 1.1 pooka * @qndp_tid: TID client shall use for uAPSD QNDP triggers
3330 1.1 pooka * @uapsd_ac_flags: Set trigger-enabled and delivery-enabled indication for
3331 1.1 pooka * each corresponding AC.
3332 1.1 pooka * Use IEEE80211_WMM_IE_STA_QOSINFO_AC* for correct values.
3333 1.1 pooka * @uapsd_max_sp: Use IEEE80211_WMM_IE_STA_QOSINFO_SP_* for correct
3334 1.1 pooka * values.
3335 1.1 pooka * @heavy_tx_thld_packets: TX threshold measured in number of packets
3336 1.1 pooka * @heavy_rx_thld_packets: RX threshold measured in number of packets
3337 1.1 pooka * @heavy_tx_thld_percentage: TX threshold measured in load's percentage
3338 1.1 pooka * @heavy_rx_thld_percentage: RX threshold measured in load's percentage
3339 1.1 pooka * @limited_ps_threshold:
3340 1.1 pooka */
3341 1.1 pooka struct iwm_mac_power_cmd {
3342 1.1 pooka /* CONTEXT_DESC_API_T_VER_1 */
3343 1.1 pooka uint32_t id_and_color;
3344 1.1 pooka
3345 1.1 pooka /* CLIENT_PM_POWER_TABLE_S_VER_1 */
3346 1.1 pooka uint16_t flags;
3347 1.1 pooka uint16_t keep_alive_seconds;
3348 1.1 pooka uint32_t rx_data_timeout;
3349 1.1 pooka uint32_t tx_data_timeout;
3350 1.1 pooka uint32_t rx_data_timeout_uapsd;
3351 1.1 pooka uint32_t tx_data_timeout_uapsd;
3352 1.1 pooka uint8_t lprx_rssi_threshold;
3353 1.1 pooka uint8_t skip_dtim_periods;
3354 1.1 pooka uint16_t snooze_interval;
3355 1.1 pooka uint16_t snooze_window;
3356 1.1 pooka uint8_t snooze_step;
3357 1.1 pooka uint8_t qndp_tid;
3358 1.1 pooka uint8_t uapsd_ac_flags;
3359 1.1 pooka uint8_t uapsd_max_sp;
3360 1.1 pooka uint8_t heavy_tx_thld_packets;
3361 1.1 pooka uint8_t heavy_rx_thld_packets;
3362 1.1 pooka uint8_t heavy_tx_thld_percentage;
3363 1.1 pooka uint8_t heavy_rx_thld_percentage;
3364 1.1 pooka uint8_t limited_ps_threshold;
3365 1.1 pooka uint8_t reserved;
3366 1.1 pooka } __packed;
3367 1.1 pooka
3368 1.1 pooka /*
3369 1.1 pooka * struct iwm_uapsd_misbehaving_ap_notif - FW sends this notification when
3370 1.1 pooka * associated AP is identified as improperly implementing uAPSD protocol.
3371 1.1 pooka * IWM_PSM_UAPSD_AP_MISBEHAVING_NOTIFICATION = 0x78
3372 1.1 pooka * @sta_id: index of station in uCode's station table - associated AP ID in
3373 1.1 pooka * this context.
3374 1.1 pooka */
3375 1.1 pooka struct iwm_uapsd_misbehaving_ap_notif {
3376 1.1 pooka uint32_t sta_id;
3377 1.1 pooka uint8_t mac_id;
3378 1.1 pooka uint8_t reserved[3];
3379 1.1 pooka } __packed;
3380 1.1 pooka
3381 1.1 pooka /**
3382 1.1 pooka * struct iwm_beacon_filter_cmd
3383 1.1 pooka * IWM_REPLY_BEACON_FILTERING_CMD = 0xd2 (command)
3384 1.1 pooka * @id_and_color: MAC contex identifier
3385 1.1 pooka * @bf_energy_delta: Used for RSSI filtering, if in 'normal' state. Send beacon
3386 1.1 pooka * to driver if delta in Energy values calculated for this and last
3387 1.1 pooka * passed beacon is greater than this threshold. Zero value means that
3388 1.1 pooka * the Energy change is ignored for beacon filtering, and beacon will
3389 1.1 pooka * not be forced to be sent to driver regardless of this delta. Typical
3390 1.1 pooka * energy delta 5dB.
3391 1.1 pooka * @bf_roaming_energy_delta: Used for RSSI filtering, if in 'roaming' state.
3392 1.1 pooka * Send beacon to driver if delta in Energy values calculated for this
3393 1.1 pooka * and last passed beacon is greater than this threshold. Zero value
3394 1.1 pooka * means that the Energy change is ignored for beacon filtering while in
3395 1.1 pooka * Roaming state, typical energy delta 1dB.
3396 1.1 pooka * @bf_roaming_state: Used for RSSI filtering. If absolute Energy values
3397 1.1 pooka * calculated for current beacon is less than the threshold, use
3398 1.1 pooka * Roaming Energy Delta Threshold, otherwise use normal Energy Delta
3399 1.1 pooka * Threshold. Typical energy threshold is -72dBm.
3400 1.1 pooka * @bf_temp_threshold: This threshold determines the type of temperature
3401 1.1 pooka * filtering (Slow or Fast) that is selected (Units are in Celsuis):
3402 1.1 pooka * If the current temperature is above this threshold - Fast filter
3403 1.1 pooka * will be used, If the current temperature is below this threshold -
3404 1.1 pooka * Slow filter will be used.
3405 1.1 pooka * @bf_temp_fast_filter: Send Beacon to driver if delta in temperature values
3406 1.1 pooka * calculated for this and the last passed beacon is greater than this
3407 1.1 pooka * threshold. Zero value means that the temperature change is ignored for
3408 1.1 pooka * beacon filtering; beacons will not be forced to be sent to driver
3409 1.1 pooka * regardless of whether its temerature has been changed.
3410 1.1 pooka * @bf_temp_slow_filter: Send Beacon to driver if delta in temperature values
3411 1.1 pooka * calculated for this and the last passed beacon is greater than this
3412 1.1 pooka * threshold. Zero value means that the temperature change is ignored for
3413 1.1 pooka * beacon filtering; beacons will not be forced to be sent to driver
3414 1.1 pooka * regardless of whether its temerature has been changed.
3415 1.1 pooka * @bf_enable_beacon_filter: 1, beacon filtering is enabled; 0, disabled.
3416 1.1 pooka * @bf_filter_escape_timer: Send beacons to to driver if no beacons were passed
3417 1.1 pooka * for a specific period of time. Units: Beacons.
3418 1.1 pooka * @ba_escape_timer: Fully receive and parse beacon if no beacons were passed
3419 1.1 pooka * for a longer period of time then this escape-timeout. Units: Beacons.
3420 1.1 pooka * @ba_enable_beacon_abort: 1, beacon abort is enabled; 0, disabled.
3421 1.1 pooka */
3422 1.1 pooka struct iwm_beacon_filter_cmd {
3423 1.1 pooka uint32_t bf_energy_delta;
3424 1.1 pooka uint32_t bf_roaming_energy_delta;
3425 1.1 pooka uint32_t bf_roaming_state;
3426 1.1 pooka uint32_t bf_temp_threshold;
3427 1.1 pooka uint32_t bf_temp_fast_filter;
3428 1.1 pooka uint32_t bf_temp_slow_filter;
3429 1.1 pooka uint32_t bf_enable_beacon_filter;
3430 1.1 pooka uint32_t bf_debug_flag;
3431 1.1 pooka uint32_t bf_escape_timer;
3432 1.1 pooka uint32_t ba_escape_timer;
3433 1.1 pooka uint32_t ba_enable_beacon_abort;
3434 1.1 pooka } __packed;
3435 1.1 pooka
3436 1.1 pooka /* Beacon filtering and beacon abort */
3437 1.1 pooka #define IWM_BF_ENERGY_DELTA_DEFAULT 5
3438 1.1 pooka #define IWM_BF_ENERGY_DELTA_MAX 255
3439 1.1 pooka #define IWM_BF_ENERGY_DELTA_MIN 0
3440 1.1 pooka
3441 1.1 pooka #define IWM_BF_ROAMING_ENERGY_DELTA_DEFAULT 1
3442 1.1 pooka #define IWM_BF_ROAMING_ENERGY_DELTA_MAX 255
3443 1.1 pooka #define IWM_BF_ROAMING_ENERGY_DELTA_MIN 0
3444 1.1 pooka
3445 1.1 pooka #define IWM_BF_ROAMING_STATE_DEFAULT 72
3446 1.1 pooka #define IWM_BF_ROAMING_STATE_MAX 255
3447 1.1 pooka #define IWM_BF_ROAMING_STATE_MIN 0
3448 1.1 pooka
3449 1.1 pooka #define IWM_BF_TEMP_THRESHOLD_DEFAULT 112
3450 1.1 pooka #define IWM_BF_TEMP_THRESHOLD_MAX 255
3451 1.1 pooka #define IWM_BF_TEMP_THRESHOLD_MIN 0
3452 1.1 pooka
3453 1.1 pooka #define IWM_BF_TEMP_FAST_FILTER_DEFAULT 1
3454 1.1 pooka #define IWM_BF_TEMP_FAST_FILTER_MAX 255
3455 1.1 pooka #define IWM_BF_TEMP_FAST_FILTER_MIN 0
3456 1.1 pooka
3457 1.1 pooka #define IWM_BF_TEMP_SLOW_FILTER_DEFAULT 5
3458 1.1 pooka #define IWM_BF_TEMP_SLOW_FILTER_MAX 255
3459 1.1 pooka #define IWM_BF_TEMP_SLOW_FILTER_MIN 0
3460 1.1 pooka
3461 1.1 pooka #define IWM_BF_ENABLE_BEACON_FILTER_DEFAULT 1
3462 1.1 pooka
3463 1.1 pooka #define IWM_BF_DEBUG_FLAG_DEFAULT 0
3464 1.1 pooka
3465 1.1 pooka #define IWM_BF_ESCAPE_TIMER_DEFAULT 50
3466 1.1 pooka #define IWM_BF_ESCAPE_TIMER_MAX 1024
3467 1.1 pooka #define IWM_BF_ESCAPE_TIMER_MIN 0
3468 1.1 pooka
3469 1.1 pooka #define IWM_BA_ESCAPE_TIMER_DEFAULT 6
3470 1.1 pooka #define IWM_BA_ESCAPE_TIMER_D3 9
3471 1.1 pooka #define IWM_BA_ESCAPE_TIMER_MAX 1024
3472 1.1 pooka #define IWM_BA_ESCAPE_TIMER_MIN 0
3473 1.1 pooka
3474 1.1 pooka #define IWM_BA_ENABLE_BEACON_ABORT_DEFAULT 1
3475 1.1 pooka
3476 1.1 pooka #define IWM_BF_CMD_CONFIG_DEFAULTS \
3477 1.1 pooka .bf_energy_delta = htole32(IWM_BF_ENERGY_DELTA_DEFAULT), \
3478 1.1 pooka .bf_roaming_energy_delta = \
3479 1.1 pooka htole32(IWM_BF_ROAMING_ENERGY_DELTA_DEFAULT), \
3480 1.1 pooka .bf_roaming_state = htole32(IWM_BF_ROAMING_STATE_DEFAULT), \
3481 1.1 pooka .bf_temp_threshold = htole32(IWM_BF_TEMP_THRESHOLD_DEFAULT), \
3482 1.1 pooka .bf_temp_fast_filter = htole32(IWM_BF_TEMP_FAST_FILTER_DEFAULT), \
3483 1.1 pooka .bf_temp_slow_filter = htole32(IWM_BF_TEMP_SLOW_FILTER_DEFAULT), \
3484 1.1 pooka .bf_debug_flag = htole32(IWM_BF_DEBUG_FLAG_DEFAULT), \
3485 1.1 pooka .bf_escape_timer = htole32(IWM_BF_ESCAPE_TIMER_DEFAULT), \
3486 1.1 pooka .ba_escape_timer = htole32(IWM_BA_ESCAPE_TIMER_DEFAULT)
3487 1.1 pooka
3488 1.1 pooka /*
3489 1.1 pooka * END mvm/fw-api-power.h
3490 1.1 pooka */
3491 1.1 pooka
3492 1.1 pooka /*
3493 1.1 pooka * BEGIN mvm/fw-api-rs.h
3494 1.1 pooka */
3495 1.1 pooka
3496 1.1 pooka /*
3497 1.1 pooka * These serve as indexes into
3498 1.1 pooka * struct iwm_rate_info fw_rate_idx_to_plcp[IWM_RATE_COUNT];
3499 1.1 pooka * TODO: avoid overlap between legacy and HT rates
3500 1.1 pooka */
3501 1.1 pooka enum {
3502 1.1 pooka IWM_RATE_1M_INDEX = 0,
3503 1.1 pooka IWM_FIRST_CCK_RATE = IWM_RATE_1M_INDEX,
3504 1.1 pooka IWM_RATE_2M_INDEX,
3505 1.1 pooka IWM_RATE_5M_INDEX,
3506 1.1 pooka IWM_RATE_11M_INDEX,
3507 1.1 pooka IWM_LAST_CCK_RATE = IWM_RATE_11M_INDEX,
3508 1.1 pooka IWM_RATE_6M_INDEX,
3509 1.1 pooka IWM_FIRST_OFDM_RATE = IWM_RATE_6M_INDEX,
3510 1.1 pooka IWM_RATE_MCS_0_INDEX = IWM_RATE_6M_INDEX,
3511 1.1 pooka IWM_FIRST_HT_RATE = IWM_RATE_MCS_0_INDEX,
3512 1.1 pooka IWM_FIRST_VHT_RATE = IWM_RATE_MCS_0_INDEX,
3513 1.1 pooka IWM_RATE_9M_INDEX,
3514 1.1 pooka IWM_RATE_12M_INDEX,
3515 1.1 pooka IWM_RATE_MCS_1_INDEX = IWM_RATE_12M_INDEX,
3516 1.1 pooka IWM_RATE_18M_INDEX,
3517 1.1 pooka IWM_RATE_MCS_2_INDEX = IWM_RATE_18M_INDEX,
3518 1.1 pooka IWM_RATE_24M_INDEX,
3519 1.1 pooka IWM_RATE_MCS_3_INDEX = IWM_RATE_24M_INDEX,
3520 1.1 pooka IWM_RATE_36M_INDEX,
3521 1.1 pooka IWM_RATE_MCS_4_INDEX = IWM_RATE_36M_INDEX,
3522 1.1 pooka IWM_RATE_48M_INDEX,
3523 1.1 pooka IWM_RATE_MCS_5_INDEX = IWM_RATE_48M_INDEX,
3524 1.1 pooka IWM_RATE_54M_INDEX,
3525 1.1 pooka IWM_RATE_MCS_6_INDEX = IWM_RATE_54M_INDEX,
3526 1.1 pooka IWM_LAST_NON_HT_RATE = IWM_RATE_54M_INDEX,
3527 1.1 pooka IWM_RATE_60M_INDEX,
3528 1.1 pooka IWM_RATE_MCS_7_INDEX = IWM_RATE_60M_INDEX,
3529 1.1 pooka IWM_LAST_HT_RATE = IWM_RATE_MCS_7_INDEX,
3530 1.1 pooka IWM_RATE_MCS_8_INDEX,
3531 1.1 pooka IWM_RATE_MCS_9_INDEX,
3532 1.1 pooka IWM_LAST_VHT_RATE = IWM_RATE_MCS_9_INDEX,
3533 1.1 pooka IWM_RATE_COUNT_LEGACY = IWM_LAST_NON_HT_RATE + 1,
3534 1.1 pooka IWM_RATE_COUNT = IWM_LAST_VHT_RATE + 1,
3535 1.1 pooka };
3536 1.1 pooka
3537 1.1 pooka #define IWM_RATE_BIT_MSK(r) (1 << (IWM_RATE_##r##M_INDEX))
3538 1.1 pooka
3539 1.1 pooka /* fw API values for legacy bit rates, both OFDM and CCK */
3540 1.1 pooka enum {
3541 1.1 pooka IWM_RATE_6M_PLCP = 13,
3542 1.1 pooka IWM_RATE_9M_PLCP = 15,
3543 1.1 pooka IWM_RATE_12M_PLCP = 5,
3544 1.1 pooka IWM_RATE_18M_PLCP = 7,
3545 1.1 pooka IWM_RATE_24M_PLCP = 9,
3546 1.1 pooka IWM_RATE_36M_PLCP = 11,
3547 1.1 pooka IWM_RATE_48M_PLCP = 1,
3548 1.1 pooka IWM_RATE_54M_PLCP = 3,
3549 1.1 pooka IWM_RATE_1M_PLCP = 10,
3550 1.1 pooka IWM_RATE_2M_PLCP = 20,
3551 1.1 pooka IWM_RATE_5M_PLCP = 55,
3552 1.1 pooka IWM_RATE_11M_PLCP = 110,
3553 1.1 pooka IWM_RATE_INVM_PLCP = -1,
3554 1.1 pooka };
3555 1.1 pooka
3556 1.1 pooka /*
3557 1.1 pooka * rate_n_flags bit fields
3558 1.1 pooka *
3559 1.1 pooka * The 32-bit value has different layouts in the low 8 bites depending on the
3560 1.1 pooka * format. There are three formats, HT, VHT and legacy (11abg, with subformats
3561 1.1 pooka * for CCK and OFDM).
3562 1.1 pooka *
3563 1.1 pooka * High-throughput (HT) rate format
3564 1.1 pooka * bit 8 is 1, bit 26 is 0, bit 9 is 0 (OFDM)
3565 1.1 pooka * Very High-throughput (VHT) rate format
3566 1.1 pooka * bit 8 is 0, bit 26 is 1, bit 9 is 0 (OFDM)
3567 1.1 pooka * Legacy OFDM rate format for bits 7:0
3568 1.1 pooka * bit 8 is 0, bit 26 is 0, bit 9 is 0 (OFDM)
3569 1.1 pooka * Legacy CCK rate format for bits 7:0:
3570 1.1 pooka * bit 8 is 0, bit 26 is 0, bit 9 is 1 (CCK)
3571 1.1 pooka */
3572 1.1 pooka
3573 1.1 pooka /* Bit 8: (1) HT format, (0) legacy or VHT format */
3574 1.1 pooka #define IWM_RATE_MCS_HT_POS 8
3575 1.1 pooka #define IWM_RATE_MCS_HT_MSK (1 << IWM_RATE_MCS_HT_POS)
3576 1.1 pooka
3577 1.1 pooka /* Bit 9: (1) CCK, (0) OFDM. HT (bit 8) must be "0" for this bit to be valid */
3578 1.1 pooka #define IWM_RATE_MCS_CCK_POS 9
3579 1.1 pooka #define IWM_RATE_MCS_CCK_MSK (1 << IWM_RATE_MCS_CCK_POS)
3580 1.1 pooka
3581 1.1 pooka /* Bit 26: (1) VHT format, (0) legacy format in bits 8:0 */
3582 1.1 pooka #define IWM_RATE_MCS_VHT_POS 26
3583 1.1 pooka #define IWM_RATE_MCS_VHT_MSK (1 << IWM_RATE_MCS_VHT_POS)
3584 1.1 pooka
3585 1.1 pooka
3586 1.1 pooka /*
3587 1.1 pooka * High-throughput (HT) rate format for bits 7:0
3588 1.1 pooka *
3589 1.1 pooka * 2-0: MCS rate base
3590 1.1 pooka * 0) 6 Mbps
3591 1.1 pooka * 1) 12 Mbps
3592 1.1 pooka * 2) 18 Mbps
3593 1.1 pooka * 3) 24 Mbps
3594 1.1 pooka * 4) 36 Mbps
3595 1.1 pooka * 5) 48 Mbps
3596 1.1 pooka * 6) 54 Mbps
3597 1.1 pooka * 7) 60 Mbps
3598 1.1 pooka * 4-3: 0) Single stream (SISO)
3599 1.1 pooka * 1) Dual stream (MIMO)
3600 1.1 pooka * 2) Triple stream (MIMO)
3601 1.1 pooka * 5: Value of 0x20 in bits 7:0 indicates 6 Mbps HT40 duplicate data
3602 1.1 pooka * (bits 7-6 are zero)
3603 1.1 pooka *
3604 1.1 pooka * Together the low 5 bits work out to the MCS index because we don't
3605 1.1 pooka * support MCSes above 15/23, and 0-7 have one stream, 8-15 have two
3606 1.1 pooka * streams and 16-23 have three streams. We could also support MCS 32
3607 1.1 pooka * which is the duplicate 20 MHz MCS (bit 5 set, all others zero.)
3608 1.1 pooka */
3609 1.1 pooka #define IWM_RATE_HT_MCS_RATE_CODE_MSK 0x7
3610 1.1 pooka #define IWM_RATE_HT_MCS_NSS_POS 3
3611 1.1 pooka #define IWM_RATE_HT_MCS_NSS_MSK (3 << IWM_RATE_HT_MCS_NSS_POS)
3612 1.1 pooka
3613 1.1 pooka /* Bit 10: (1) Use Green Field preamble */
3614 1.1 pooka #define IWM_RATE_HT_MCS_GF_POS 10
3615 1.1 pooka #define IWM_RATE_HT_MCS_GF_MSK (1 << IWM_RATE_HT_MCS_GF_POS)
3616 1.1 pooka
3617 1.1 pooka #define IWM_RATE_HT_MCS_INDEX_MSK 0x3f
3618 1.1 pooka
3619 1.1 pooka /*
3620 1.1 pooka * Very High-throughput (VHT) rate format for bits 7:0
3621 1.1 pooka *
3622 1.1 pooka * 3-0: VHT MCS (0-9)
3623 1.1 pooka * 5-4: number of streams - 1:
3624 1.1 pooka * 0) Single stream (SISO)
3625 1.1 pooka * 1) Dual stream (MIMO)
3626 1.1 pooka * 2) Triple stream (MIMO)
3627 1.1 pooka */
3628 1.1 pooka
3629 1.1 pooka /* Bit 4-5: (0) SISO, (1) MIMO2 (2) MIMO3 */
3630 1.1 pooka #define IWM_RATE_VHT_MCS_RATE_CODE_MSK 0xf
3631 1.1 pooka #define IWM_RATE_VHT_MCS_NSS_POS 4
3632 1.1 pooka #define IWM_RATE_VHT_MCS_NSS_MSK (3 << IWM_RATE_VHT_MCS_NSS_POS)
3633 1.1 pooka
3634 1.1 pooka /*
3635 1.1 pooka * Legacy OFDM rate format for bits 7:0
3636 1.1 pooka *
3637 1.1 pooka * 3-0: 0xD) 6 Mbps
3638 1.1 pooka * 0xF) 9 Mbps
3639 1.1 pooka * 0x5) 12 Mbps
3640 1.1 pooka * 0x7) 18 Mbps
3641 1.1 pooka * 0x9) 24 Mbps
3642 1.1 pooka * 0xB) 36 Mbps
3643 1.1 pooka * 0x1) 48 Mbps
3644 1.1 pooka * 0x3) 54 Mbps
3645 1.1 pooka * (bits 7-4 are 0)
3646 1.1 pooka *
3647 1.1 pooka * Legacy CCK rate format for bits 7:0:
3648 1.1 pooka * bit 8 is 0, bit 26 is 0, bit 9 is 1 (CCK):
3649 1.1 pooka *
3650 1.1 pooka * 6-0: 10) 1 Mbps
3651 1.1 pooka * 20) 2 Mbps
3652 1.1 pooka * 55) 5.5 Mbps
3653 1.1 pooka * 110) 11 Mbps
3654 1.1 pooka * (bit 7 is 0)
3655 1.1 pooka */
3656 1.1 pooka #define IWM_RATE_LEGACY_RATE_MSK 0xff
3657 1.1 pooka
3658 1.1 pooka
3659 1.1 pooka /*
3660 1.1 pooka * Bit 11-12: (0) 20MHz, (1) 40MHz, (2) 80MHz, (3) 160MHz
3661 1.1 pooka * 0 and 1 are valid for HT and VHT, 2 and 3 only for VHT
3662 1.1 pooka */
3663 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_POS 11
3664 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_MSK (3 << IWM_RATE_MCS_CHAN_WIDTH_POS)
3665 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_20 (0 << IWM_RATE_MCS_CHAN_WIDTH_POS)
3666 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_40 (1 << IWM_RATE_MCS_CHAN_WIDTH_POS)
3667 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_80 (2 << IWM_RATE_MCS_CHAN_WIDTH_POS)
3668 1.1 pooka #define IWM_RATE_MCS_CHAN_WIDTH_160 (3 << IWM_RATE_MCS_CHAN_WIDTH_POS)
3669 1.1 pooka
3670 1.1 pooka /* Bit 13: (1) Short guard interval (0.4 usec), (0) normal GI (0.8 usec) */
3671 1.1 pooka #define IWM_RATE_MCS_SGI_POS 13
3672 1.1 pooka #define IWM_RATE_MCS_SGI_MSK (1 << IWM_RATE_MCS_SGI_POS)
3673 1.1 pooka
3674 1.1 pooka /* Bit 14-16: Antenna selection (1) Ant A, (2) Ant B, (4) Ant C */
3675 1.1 pooka #define IWM_RATE_MCS_ANT_POS 14
3676 1.1 pooka #define IWM_RATE_MCS_ANT_A_MSK (1 << IWM_RATE_MCS_ANT_POS)
3677 1.1 pooka #define IWM_RATE_MCS_ANT_B_MSK (2 << IWM_RATE_MCS_ANT_POS)
3678 1.1 pooka #define IWM_RATE_MCS_ANT_C_MSK (4 << IWM_RATE_MCS_ANT_POS)
3679 1.1 pooka #define IWM_RATE_MCS_ANT_AB_MSK (IWM_RATE_MCS_ANT_A_MSK | \
3680 1.1 pooka IWM_RATE_MCS_ANT_B_MSK)
3681 1.1 pooka #define IWM_RATE_MCS_ANT_ABC_MSK (IWM_RATE_MCS_ANT_AB_MSK | \
3682 1.1 pooka IWM_RATE_MCS_ANT_C_MSK)
3683 1.1 pooka #define IWM_RATE_MCS_ANT_MSK IWM_RATE_MCS_ANT_ABC_MSK
3684 1.1 pooka #define IWM_RATE_MCS_ANT_NUM 3
3685 1.1 pooka
3686 1.1 pooka /* Bit 17-18: (0) SS, (1) SS*2 */
3687 1.1 pooka #define IWM_RATE_MCS_STBC_POS 17
3688 1.1 pooka #define IWM_RATE_MCS_STBC_MSK (1 << IWM_RATE_MCS_STBC_POS)
3689 1.1 pooka
3690 1.1 pooka /* Bit 19: (0) Beamforming is off, (1) Beamforming is on */
3691 1.1 pooka #define IWM_RATE_MCS_BF_POS 19
3692 1.1 pooka #define IWM_RATE_MCS_BF_MSK (1 << IWM_RATE_MCS_BF_POS)
3693 1.1 pooka
3694 1.1 pooka /* Bit 20: (0) ZLF is off, (1) ZLF is on */
3695 1.1 pooka #define IWM_RATE_MCS_ZLF_POS 20
3696 1.1 pooka #define IWM_RATE_MCS_ZLF_MSK (1 << IWM_RATE_MCS_ZLF_POS)
3697 1.1 pooka
3698 1.1 pooka /* Bit 24-25: (0) 20MHz (no dup), (1) 2x20MHz, (2) 4x20MHz, 3 8x20MHz */
3699 1.1 pooka #define IWM_RATE_MCS_DUP_POS 24
3700 1.1 pooka #define IWM_RATE_MCS_DUP_MSK (3 << IWM_RATE_MCS_DUP_POS)
3701 1.1 pooka
3702 1.1 pooka /* Bit 27: (1) LDPC enabled, (0) LDPC disabled */
3703 1.1 pooka #define IWM_RATE_MCS_LDPC_POS 27
3704 1.1 pooka #define IWM_RATE_MCS_LDPC_MSK (1 << IWM_RATE_MCS_LDPC_POS)
3705 1.1 pooka
3706 1.1 pooka
3707 1.1 pooka /* Link Quality definitions */
3708 1.1 pooka
3709 1.1 pooka /* # entries in rate scale table to support Tx retries */
3710 1.1 pooka #define IWM_LQ_MAX_RETRY_NUM 16
3711 1.1 pooka
3712 1.1 pooka /* Link quality command flags bit fields */
3713 1.1 pooka
3714 1.1 pooka /* Bit 0: (0) Don't use RTS (1) Use RTS */
3715 1.1 pooka #define IWM_LQ_FLAG_USE_RTS_POS 0
3716 1.1 pooka #define IWM_LQ_FLAG_USE_RTS_MSK (1 << IWM_LQ_FLAG_USE_RTS_POS)
3717 1.1 pooka
3718 1.1 pooka /* Bit 1-3: LQ command color. Used to match responses to LQ commands */
3719 1.1 pooka #define IWM_LQ_FLAG_COLOR_POS 1
3720 1.1 pooka #define IWM_LQ_FLAG_COLOR_MSK (7 << IWM_LQ_FLAG_COLOR_POS)
3721 1.1 pooka
3722 1.1 pooka /* Bit 4-5: Tx RTS BW Signalling
3723 1.1 pooka * (0) No RTS BW signalling
3724 1.1 pooka * (1) Static BW signalling
3725 1.1 pooka * (2) Dynamic BW signalling
3726 1.1 pooka */
3727 1.1 pooka #define IWM_LQ_FLAG_RTS_BW_SIG_POS 4
3728 1.1 pooka #define IWM_LQ_FLAG_RTS_BW_SIG_NONE (0 << IWM_LQ_FLAG_RTS_BW_SIG_POS)
3729 1.1 pooka #define IWM_LQ_FLAG_RTS_BW_SIG_STATIC (1 << IWM_LQ_FLAG_RTS_BW_SIG_POS)
3730 1.1 pooka #define IWM_LQ_FLAG_RTS_BW_SIG_DYNAMIC (2 << IWM_LQ_FLAG_RTS_BW_SIG_POS)
3731 1.1 pooka
3732 1.1 pooka /* Bit 6: (0) No dynamic BW selection (1) Allow dynamic BW selection
3733 1.1 pooka * Dyanmic BW selection allows Tx with narrower BW then requested in rates
3734 1.1 pooka */
3735 1.1 pooka #define IWM_LQ_FLAG_DYNAMIC_BW_POS 6
3736 1.1 pooka #define IWM_LQ_FLAG_DYNAMIC_BW_MSK (1 << IWM_LQ_FLAG_DYNAMIC_BW_POS)
3737 1.1 pooka
3738 1.1 pooka /**
3739 1.1 pooka * struct iwm_lq_cmd - link quality command
3740 1.1 pooka * @sta_id: station to update
3741 1.1 pooka * @control: not used
3742 1.1 pooka * @flags: combination of IWM_LQ_FLAG_*
3743 1.1 pooka * @mimo_delim: the first SISO index in rs_table, which separates MIMO
3744 1.1 pooka * and SISO rates
3745 1.1 pooka * @single_stream_ant_msk: best antenna for SISO (can be dual in CDD).
3746 1.1 pooka * Should be ANT_[ABC]
3747 1.1 pooka * @dual_stream_ant_msk: best antennas for MIMO, combination of ANT_[ABC]
3748 1.1 pooka * @initial_rate_index: first index from rs_table per AC category
3749 1.1 pooka * @agg_time_limit: aggregation max time threshold in usec/100, meaning
3750 1.1 pooka * value of 100 is one usec. Range is 100 to 8000
3751 1.1 pooka * @agg_disable_start_th: try-count threshold for starting aggregation.
3752 1.1 pooka * If a frame has higher try-count, it should not be selected for
3753 1.1 pooka * starting an aggregation sequence.
3754 1.1 pooka * @agg_frame_cnt_limit: max frame count in an aggregation.
3755 1.1 pooka * 0: no limit
3756 1.1 pooka * 1: no aggregation (one frame per aggregation)
3757 1.1 pooka * 2 - 0x3f: maximal number of frames (up to 3f == 63)
3758 1.1 pooka * @rs_table: array of rates for each TX try, each is rate_n_flags,
3759 1.1 pooka * meaning it is a combination of IWM_RATE_MCS_* and IWM_RATE_*_PLCP
3760 1.1 pooka * @bf_params: beam forming params, currently not used
3761 1.1 pooka */
3762 1.1 pooka struct iwm_lq_cmd {
3763 1.1 pooka uint8_t sta_id;
3764 1.1 pooka uint8_t reserved1;
3765 1.1 pooka uint16_t control;
3766 1.1 pooka /* LINK_QUAL_GENERAL_PARAMS_API_S_VER_1 */
3767 1.1 pooka uint8_t flags;
3768 1.1 pooka uint8_t mimo_delim;
3769 1.1 pooka uint8_t single_stream_ant_msk;
3770 1.1 pooka uint8_t dual_stream_ant_msk;
3771 1.1 pooka uint8_t initial_rate_index[IWM_AC_NUM];
3772 1.1 pooka /* LINK_QUAL_AGG_PARAMS_API_S_VER_1 */
3773 1.1 pooka uint16_t agg_time_limit;
3774 1.1 pooka uint8_t agg_disable_start_th;
3775 1.1 pooka uint8_t agg_frame_cnt_limit;
3776 1.1 pooka uint32_t reserved2;
3777 1.1 pooka uint32_t rs_table[IWM_LQ_MAX_RETRY_NUM];
3778 1.1 pooka uint32_t bf_params;
3779 1.1 pooka }; /* LINK_QUALITY_CMD_API_S_VER_1 */
3780 1.1 pooka
3781 1.1 pooka /*
3782 1.1 pooka * END mvm/fw-api-rs.h
3783 1.1 pooka */
3784 1.1 pooka
3785 1.1 pooka /*
3786 1.1 pooka * BEGIN mvm/fw-api-tx.h
3787 1.1 pooka */
3788 1.1 pooka
3789 1.1 pooka /**
3790 1.1 pooka * enum iwm_tx_flags - bitmasks for tx_flags in TX command
3791 1.1 pooka * @IWM_TX_CMD_FLG_PROT_REQUIRE: use RTS or CTS-to-self to protect the frame
3792 1.1 pooka * @IWM_TX_CMD_FLG_ACK: expect ACK from receiving station
3793 1.1 pooka * @IWM_TX_CMD_FLG_STA_RATE: use RS table with initial index from the TX command.
3794 1.1 pooka * Otherwise, use rate_n_flags from the TX command
3795 1.1 pooka * @IWM_TX_CMD_FLG_BA: this frame is a block ack
3796 1.1 pooka * @IWM_TX_CMD_FLG_BAR: this frame is a BA request, immediate BAR is expected
3797 1.1 pooka * Must set IWM_TX_CMD_FLG_ACK with this flag.
3798 1.1 pooka * @IWM_TX_CMD_FLG_TXOP_PROT: protect frame with full TXOP protection
3799 1.1 pooka * @IWM_TX_CMD_FLG_VHT_NDPA: mark frame is NDPA for VHT beamformer sequence
3800 1.1 pooka * @IWM_TX_CMD_FLG_HT_NDPA: mark frame is NDPA for HT beamformer sequence
3801 1.1 pooka * @IWM_TX_CMD_FLG_CSI_FDBK2HOST: mark to send feedback to host (only if good CRC)
3802 1.1 pooka * @IWM_TX_CMD_FLG_BT_DIS: disable BT priority for this frame
3803 1.1 pooka * @IWM_TX_CMD_FLG_SEQ_CTL: set if FW should override the sequence control.
3804 1.1 pooka * Should be set for mgmt, non-QOS data, mcast, bcast and in scan command
3805 1.1 pooka * @IWM_TX_CMD_FLG_MORE_FRAG: this frame is non-last MPDU
3806 1.1 pooka * @IWM_TX_CMD_FLG_NEXT_FRAME: this frame includes information of the next frame
3807 1.1 pooka * @IWM_TX_CMD_FLG_TSF: FW should calculate and insert TSF in the frame
3808 1.1 pooka * Should be set for beacons and probe responses
3809 1.1 pooka * @IWM_TX_CMD_FLG_CALIB: activate PA TX power calibrations
3810 1.1 pooka * @IWM_TX_CMD_FLG_KEEP_SEQ_CTL: if seq_ctl is set, don't increase inner seq count
3811 1.1 pooka * @IWM_TX_CMD_FLG_AGG_START: allow this frame to start aggregation
3812 1.1 pooka * @IWM_TX_CMD_FLG_MH_PAD: driver inserted 2 byte padding after MAC header.
3813 1.1 pooka * Should be set for 26/30 length MAC headers
3814 1.1 pooka * @IWM_TX_CMD_FLG_RESP_TO_DRV: zero this if the response should go only to FW
3815 1.1 pooka * @IWM_TX_CMD_FLG_CCMP_AGG: this frame uses CCMP for aggregation acceleration
3816 1.1 pooka * @IWM_TX_CMD_FLG_TKIP_MIC_DONE: FW already performed TKIP MIC calculation
3817 1.1 pooka * @IWM_TX_CMD_FLG_DUR: disable duration overwriting used in PS-Poll Assoc-id
3818 1.1 pooka * @IWM_TX_CMD_FLG_FW_DROP: FW should mark frame to be dropped
3819 1.1 pooka * @IWM_TX_CMD_FLG_EXEC_PAPD: execute PAPD
3820 1.1 pooka * @IWM_TX_CMD_FLG_PAPD_TYPE: 0 for reference power, 1 for nominal power
3821 1.1 pooka * @IWM_TX_CMD_FLG_HCCA_CHUNK: mark start of TSPEC chunk
3822 1.1 pooka */
3823 1.1 pooka enum iwm_tx_flags {
3824 1.1 pooka IWM_TX_CMD_FLG_PROT_REQUIRE = (1 << 0),
3825 1.1 pooka IWM_TX_CMD_FLG_ACK = (1 << 3),
3826 1.1 pooka IWM_TX_CMD_FLG_STA_RATE = (1 << 4),
3827 1.1 pooka IWM_TX_CMD_FLG_BA = (1 << 5),
3828 1.1 pooka IWM_TX_CMD_FLG_BAR = (1 << 6),
3829 1.1 pooka IWM_TX_CMD_FLG_TXOP_PROT = (1 << 7),
3830 1.1 pooka IWM_TX_CMD_FLG_VHT_NDPA = (1 << 8),
3831 1.1 pooka IWM_TX_CMD_FLG_HT_NDPA = (1 << 9),
3832 1.1 pooka IWM_TX_CMD_FLG_CSI_FDBK2HOST = (1 << 10),
3833 1.1 pooka IWM_TX_CMD_FLG_BT_DIS = (1 << 12),
3834 1.1 pooka IWM_TX_CMD_FLG_SEQ_CTL = (1 << 13),
3835 1.1 pooka IWM_TX_CMD_FLG_MORE_FRAG = (1 << 14),
3836 1.1 pooka IWM_TX_CMD_FLG_NEXT_FRAME = (1 << 15),
3837 1.1 pooka IWM_TX_CMD_FLG_TSF = (1 << 16),
3838 1.1 pooka IWM_TX_CMD_FLG_CALIB = (1 << 17),
3839 1.1 pooka IWM_TX_CMD_FLG_KEEP_SEQ_CTL = (1 << 18),
3840 1.1 pooka IWM_TX_CMD_FLG_AGG_START = (1 << 19),
3841 1.1 pooka IWM_TX_CMD_FLG_MH_PAD = (1 << 20),
3842 1.1 pooka IWM_TX_CMD_FLG_RESP_TO_DRV = (1 << 21),
3843 1.1 pooka IWM_TX_CMD_FLG_CCMP_AGG = (1 << 22),
3844 1.1 pooka IWM_TX_CMD_FLG_TKIP_MIC_DONE = (1 << 23),
3845 1.1 pooka IWM_TX_CMD_FLG_DUR = (1 << 25),
3846 1.1 pooka IWM_TX_CMD_FLG_FW_DROP = (1 << 26),
3847 1.1 pooka IWM_TX_CMD_FLG_EXEC_PAPD = (1 << 27),
3848 1.1 pooka IWM_TX_CMD_FLG_PAPD_TYPE = (1 << 28),
3849 1.1 pooka IWM_TX_CMD_FLG_HCCA_CHUNK = (1 << 31)
3850 1.1 pooka }; /* IWM_TX_FLAGS_BITS_API_S_VER_1 */
3851 1.1 pooka
3852 1.1 pooka /*
3853 1.1 pooka * TX command security control
3854 1.1 pooka */
3855 1.1 pooka #define IWM_TX_CMD_SEC_WEP 0x01
3856 1.1 pooka #define IWM_TX_CMD_SEC_CCM 0x02
3857 1.1 pooka #define IWM_TX_CMD_SEC_TKIP 0x03
3858 1.1 pooka #define IWM_TX_CMD_SEC_EXT 0x04
3859 1.1 pooka #define IWM_TX_CMD_SEC_MSK 0x07
3860 1.1 pooka #define IWM_TX_CMD_SEC_WEP_KEY_IDX_POS 6
3861 1.1 pooka #define IWM_TX_CMD_SEC_WEP_KEY_IDX_MSK 0xc0
3862 1.1 pooka #define IWM_TX_CMD_SEC_KEY128 0x08
3863 1.1 pooka
3864 1.1 pooka /* TODO: how does these values are OK with only 16 bit variable??? */
3865 1.1 pooka /*
3866 1.1 pooka * TX command next frame info
3867 1.1 pooka *
3868 1.1 pooka * bits 0:2 - security control (IWM_TX_CMD_SEC_*)
3869 1.1 pooka * bit 3 - immediate ACK required
3870 1.1 pooka * bit 4 - rate is taken from STA table
3871 1.1 pooka * bit 5 - frame belongs to BA stream
3872 1.1 pooka * bit 6 - immediate BA response expected
3873 1.1 pooka * bit 7 - unused
3874 1.1 pooka * bits 8:15 - Station ID
3875 1.1 pooka * bits 16:31 - rate
3876 1.1 pooka */
3877 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_ACK_MSK (0x8)
3878 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_STA_RATE_MSK (0x10)
3879 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_BA_MSK (0x20)
3880 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_IMM_BA_RSP_MSK (0x40)
3881 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_FLAGS_MSK (0xf8)
3882 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_STA_ID_MSK (0xff00)
3883 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_STA_ID_POS (8)
3884 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_RATE_MSK (0xffff0000)
3885 1.1 pooka #define IWM_TX_CMD_NEXT_FRAME_RATE_POS (16)
3886 1.1 pooka
3887 1.1 pooka /*
3888 1.1 pooka * TX command Frame life time in us - to be written in pm_frame_timeout
3889 1.1 pooka */
3890 1.1 pooka #define IWM_TX_CMD_LIFE_TIME_INFINITE 0xFFFFFFFF
3891 1.1 pooka #define IWM_TX_CMD_LIFE_TIME_DEFAULT 2000000 /* 2000 ms*/
3892 1.1 pooka #define IWM_TX_CMD_LIFE_TIME_PROBE_RESP 40000 /* 40 ms */
3893 1.1 pooka #define IWM_TX_CMD_LIFE_TIME_EXPIRED_FRAME 0
3894 1.1 pooka
3895 1.1 pooka /*
3896 1.1 pooka * TID for non QoS frames - to be written in tid_tspec
3897 1.1 pooka */
3898 1.1 pooka #define IWM_TID_NON_QOS IWM_MAX_TID_COUNT
3899 1.1 pooka
3900 1.1 pooka /*
3901 1.1 pooka * Limits on the retransmissions - to be written in {data,rts}_retry_limit
3902 1.1 pooka */
3903 1.1 pooka #define IWM_DEFAULT_TX_RETRY 15
3904 1.1 pooka #define IWM_MGMT_DFAULT_RETRY_LIMIT 3
3905 1.1 pooka #define IWM_RTS_DFAULT_RETRY_LIMIT 60
3906 1.1 pooka #define IWM_BAR_DFAULT_RETRY_LIMIT 60
3907 1.1 pooka #define IWM_LOW_RETRY_LIMIT 7
3908 1.1 pooka
3909 1.1 pooka /* TODO: complete documentation for try_cnt and btkill_cnt */
3910 1.1 pooka /**
3911 1.1 pooka * struct iwm_tx_cmd - TX command struct to FW
3912 1.1 pooka * ( IWM_TX_CMD = 0x1c )
3913 1.1 pooka * @len: in bytes of the payload, see below for details
3914 1.1 pooka * @next_frame_len: same as len, but for next frame (0 if not applicable)
3915 1.1 pooka * Used for fragmentation and bursting, but not in 11n aggregation.
3916 1.1 pooka * @tx_flags: combination of IWM_TX_CMD_FLG_*
3917 1.1 pooka * @rate_n_flags: rate for *all* Tx attempts, if IWM_TX_CMD_FLG_STA_RATE_MSK is
3918 1.1 pooka * cleared. Combination of IWM_RATE_MCS_*
3919 1.1 pooka * @sta_id: index of destination station in FW station table
3920 1.1 pooka * @sec_ctl: security control, IWM_TX_CMD_SEC_*
3921 1.1 pooka * @initial_rate_index: index into the the rate table for initial TX attempt.
3922 1.1 pooka * Applied if IWM_TX_CMD_FLG_STA_RATE_MSK is set, normally 0 for data frames.
3923 1.1 pooka * @key: security key
3924 1.1 pooka * @next_frame_flags: IWM_TX_CMD_SEC_* and IWM_TX_CMD_NEXT_FRAME_*
3925 1.1 pooka * @life_time: frame life time (usecs??)
3926 1.1 pooka * @dram_lsb_ptr: Physical address of scratch area in the command (try_cnt +
3927 1.1 pooka * btkill_cnd + reserved), first 32 bits. "0" disables usage.
3928 1.1 pooka * @dram_msb_ptr: upper bits of the scratch physical address
3929 1.1 pooka * @rts_retry_limit: max attempts for RTS
3930 1.1 pooka * @data_retry_limit: max attempts to send the data packet
3931 1.1 pooka * @tid_spec: TID/tspec
3932 1.1 pooka * @pm_frame_timeout: PM TX frame timeout
3933 1.1 pooka * @driver_txop: duration od EDCA TXOP, in 32-usec units. Set this if not
3934 1.1 pooka * specified by HCCA protocol
3935 1.1 pooka *
3936 1.1 pooka * The byte count (both len and next_frame_len) includes MAC header
3937 1.1 pooka * (24/26/30/32 bytes)
3938 1.1 pooka * + 2 bytes pad if 26/30 header size
3939 1.1 pooka * + 8 byte IV for CCM or TKIP (not used for WEP)
3940 1.1 pooka * + Data payload
3941 1.1 pooka * + 8-byte MIC (not used for CCM/WEP)
3942 1.1 pooka * It does not include post-MAC padding, i.e.,
3943 1.1 pooka * MIC (CCM) 8 bytes, ICV (WEP/TKIP/CKIP) 4 bytes, CRC 4 bytes.
3944 1.1 pooka * Range of len: 14-2342 bytes.
3945 1.1 pooka *
3946 1.1 pooka * After the struct fields the MAC header is placed, plus any padding,
3947 1.1 pooka * and then the actial payload.
3948 1.1 pooka */
3949 1.1 pooka struct iwm_tx_cmd {
3950 1.1 pooka uint16_t len;
3951 1.1 pooka uint16_t next_frame_len;
3952 1.1 pooka uint32_t tx_flags;
3953 1.1 pooka struct {
3954 1.1 pooka uint8_t try_cnt;
3955 1.1 pooka uint8_t btkill_cnt;
3956 1.1 pooka uint16_t reserved;
3957 1.1 pooka } scratch; /* DRAM_SCRATCH_API_U_VER_1 */
3958 1.1 pooka uint32_t rate_n_flags;
3959 1.1 pooka uint8_t sta_id;
3960 1.1 pooka uint8_t sec_ctl;
3961 1.1 pooka uint8_t initial_rate_index;
3962 1.1 pooka uint8_t reserved2;
3963 1.1 pooka uint8_t key[16];
3964 1.1 pooka uint16_t next_frame_flags;
3965 1.1 pooka uint16_t reserved3;
3966 1.1 pooka uint32_t life_time;
3967 1.1 pooka uint32_t dram_lsb_ptr;
3968 1.1 pooka uint8_t dram_msb_ptr;
3969 1.1 pooka uint8_t rts_retry_limit;
3970 1.1 pooka uint8_t data_retry_limit;
3971 1.1 pooka uint8_t tid_tspec;
3972 1.1 pooka uint16_t pm_frame_timeout;
3973 1.1 pooka uint16_t driver_txop;
3974 1.1 pooka uint8_t payload[0];
3975 1.1 pooka struct ieee80211_frame hdr[0];
3976 1.1 pooka } __packed; /* IWM_TX_CMD_API_S_VER_3 */
3977 1.1 pooka
3978 1.1 pooka /*
3979 1.1 pooka * TX response related data
3980 1.1 pooka */
3981 1.1 pooka
3982 1.1 pooka /*
3983 1.1 pooka * enum iwm_tx_status - status that is returned by the fw after attempts to Tx
3984 1.1 pooka * @IWM_TX_STATUS_SUCCESS:
3985 1.1 pooka * @IWM_TX_STATUS_DIRECT_DONE:
3986 1.1 pooka * @IWM_TX_STATUS_POSTPONE_DELAY:
3987 1.1 pooka * @IWM_TX_STATUS_POSTPONE_FEW_BYTES:
3988 1.1 pooka * @IWM_TX_STATUS_POSTPONE_BT_PRIO:
3989 1.1 pooka * @IWM_TX_STATUS_POSTPONE_QUIET_PERIOD:
3990 1.1 pooka * @IWM_TX_STATUS_POSTPONE_CALC_TTAK:
3991 1.1 pooka * @IWM_TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY:
3992 1.1 pooka * @IWM_TX_STATUS_FAIL_SHORT_LIMIT:
3993 1.1 pooka * @IWM_TX_STATUS_FAIL_LONG_LIMIT:
3994 1.1 pooka * @IWM_TX_STATUS_FAIL_UNDERRUN:
3995 1.1 pooka * @IWM_TX_STATUS_FAIL_DRAIN_FLOW:
3996 1.1 pooka * @IWM_TX_STATUS_FAIL_RFKILL_FLUSH:
3997 1.1 pooka * @IWM_TX_STATUS_FAIL_LIFE_EXPIRE:
3998 1.1 pooka * @IWM_TX_STATUS_FAIL_DEST_PS:
3999 1.1 pooka * @IWM_TX_STATUS_FAIL_HOST_ABORTED:
4000 1.1 pooka * @IWM_TX_STATUS_FAIL_BT_RETRY:
4001 1.1 pooka * @IWM_TX_STATUS_FAIL_STA_INVALID:
4002 1.1 pooka * @IWM_TX_TATUS_FAIL_FRAG_DROPPED:
4003 1.1 pooka * @IWM_TX_STATUS_FAIL_TID_DISABLE:
4004 1.1 pooka * @IWM_TX_STATUS_FAIL_FIFO_FLUSHED:
4005 1.1 pooka * @IWM_TX_STATUS_FAIL_SMALL_CF_POLL:
4006 1.1 pooka * @IWM_TX_STATUS_FAIL_FW_DROP:
4007 1.1 pooka * @IWM_TX_STATUS_FAIL_STA_COLOR_MISMATCH: mismatch between color of Tx cmd and
4008 1.1 pooka * STA table
4009 1.1 pooka * @IWM_TX_FRAME_STATUS_INTERNAL_ABORT:
4010 1.1 pooka * @IWM_TX_MODE_MSK:
4011 1.1 pooka * @IWM_TX_MODE_NO_BURST:
4012 1.1 pooka * @IWM_TX_MODE_IN_BURST_SEQ:
4013 1.1 pooka * @IWM_TX_MODE_FIRST_IN_BURST:
4014 1.1 pooka * @IWM_TX_QUEUE_NUM_MSK:
4015 1.1 pooka *
4016 1.1 pooka * Valid only if frame_count =1
4017 1.1 pooka * TODO: complete documentation
4018 1.1 pooka */
4019 1.1 pooka enum iwm_tx_status {
4020 1.1 pooka IWM_TX_STATUS_MSK = 0x000000ff,
4021 1.1 pooka IWM_TX_STATUS_SUCCESS = 0x01,
4022 1.1 pooka IWM_TX_STATUS_DIRECT_DONE = 0x02,
4023 1.1 pooka /* postpone TX */
4024 1.1 pooka IWM_TX_STATUS_POSTPONE_DELAY = 0x40,
4025 1.1 pooka IWM_TX_STATUS_POSTPONE_FEW_BYTES = 0x41,
4026 1.1 pooka IWM_TX_STATUS_POSTPONE_BT_PRIO = 0x42,
4027 1.1 pooka IWM_TX_STATUS_POSTPONE_QUIET_PERIOD = 0x43,
4028 1.1 pooka IWM_TX_STATUS_POSTPONE_CALC_TTAK = 0x44,
4029 1.1 pooka /* abort TX */
4030 1.1 pooka IWM_TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY = 0x81,
4031 1.1 pooka IWM_TX_STATUS_FAIL_SHORT_LIMIT = 0x82,
4032 1.1 pooka IWM_TX_STATUS_FAIL_LONG_LIMIT = 0x83,
4033 1.1 pooka IWM_TX_STATUS_FAIL_UNDERRUN = 0x84,
4034 1.1 pooka IWM_TX_STATUS_FAIL_DRAIN_FLOW = 0x85,
4035 1.1 pooka IWM_TX_STATUS_FAIL_RFKILL_FLUSH = 0x86,
4036 1.1 pooka IWM_TX_STATUS_FAIL_LIFE_EXPIRE = 0x87,
4037 1.1 pooka IWM_TX_STATUS_FAIL_DEST_PS = 0x88,
4038 1.1 pooka IWM_TX_STATUS_FAIL_HOST_ABORTED = 0x89,
4039 1.1 pooka IWM_TX_STATUS_FAIL_BT_RETRY = 0x8a,
4040 1.1 pooka IWM_TX_STATUS_FAIL_STA_INVALID = 0x8b,
4041 1.1 pooka IWM_TX_STATUS_FAIL_FRAG_DROPPED = 0x8c,
4042 1.1 pooka IWM_TX_STATUS_FAIL_TID_DISABLE = 0x8d,
4043 1.1 pooka IWM_TX_STATUS_FAIL_FIFO_FLUSHED = 0x8e,
4044 1.1 pooka IWM_TX_STATUS_FAIL_SMALL_CF_POLL = 0x8f,
4045 1.1 pooka IWM_TX_STATUS_FAIL_FW_DROP = 0x90,
4046 1.1 pooka IWM_TX_STATUS_FAIL_STA_COLOR_MISMATCH = 0x91,
4047 1.1 pooka IWM_TX_STATUS_INTERNAL_ABORT = 0x92,
4048 1.1 pooka IWM_TX_MODE_MSK = 0x00000f00,
4049 1.1 pooka IWM_TX_MODE_NO_BURST = 0x00000000,
4050 1.1 pooka IWM_TX_MODE_IN_BURST_SEQ = 0x00000100,
4051 1.1 pooka IWM_TX_MODE_FIRST_IN_BURST = 0x00000200,
4052 1.1 pooka IWM_TX_QUEUE_NUM_MSK = 0x0001f000,
4053 1.1 pooka IWM_TX_NARROW_BW_MSK = 0x00060000,
4054 1.1 pooka IWM_TX_NARROW_BW_1DIV2 = 0x00020000,
4055 1.1 pooka IWM_TX_NARROW_BW_1DIV4 = 0x00040000,
4056 1.1 pooka IWM_TX_NARROW_BW_1DIV8 = 0x00060000,
4057 1.1 pooka };
4058 1.1 pooka
4059 1.1 pooka /*
4060 1.1 pooka * enum iwm_tx_agg_status - TX aggregation status
4061 1.1 pooka * @IWM_AGG_TX_STATE_STATUS_MSK:
4062 1.1 pooka * @IWM_AGG_TX_STATE_TRANSMITTED:
4063 1.1 pooka * @IWM_AGG_TX_STATE_UNDERRUN:
4064 1.1 pooka * @IWM_AGG_TX_STATE_BT_PRIO:
4065 1.1 pooka * @IWM_AGG_TX_STATE_FEW_BYTES:
4066 1.1 pooka * @IWM_AGG_TX_STATE_ABORT:
4067 1.1 pooka * @IWM_AGG_TX_STATE_LAST_SENT_TTL:
4068 1.1 pooka * @IWM_AGG_TX_STATE_LAST_SENT_TRY_CNT:
4069 1.1 pooka * @IWM_AGG_TX_STATE_LAST_SENT_BT_KILL:
4070 1.1 pooka * @IWM_AGG_TX_STATE_SCD_QUERY:
4071 1.1 pooka * @IWM_AGG_TX_STATE_TEST_BAD_CRC32:
4072 1.1 pooka * @IWM_AGG_TX_STATE_RESPONSE:
4073 1.1 pooka * @IWM_AGG_TX_STATE_DUMP_TX:
4074 1.1 pooka * @IWM_AGG_TX_STATE_DELAY_TX:
4075 1.1 pooka * @IWM_AGG_TX_STATE_TRY_CNT_MSK: Retry count for 1st frame in aggregation (retries
4076 1.1 pooka * occur if tx failed for this frame when it was a member of a previous
4077 1.1 pooka * aggregation block). If rate scaling is used, retry count indicates the
4078 1.1 pooka * rate table entry used for all frames in the new agg.
4079 1.1 pooka *@ IWM_AGG_TX_STATE_SEQ_NUM_MSK: Command ID and sequence number of Tx command for
4080 1.1 pooka * this frame
4081 1.1 pooka *
4082 1.1 pooka * TODO: complete documentation
4083 1.1 pooka */
4084 1.1 pooka enum iwm_tx_agg_status {
4085 1.1 pooka IWM_AGG_TX_STATE_STATUS_MSK = 0x00fff,
4086 1.1 pooka IWM_AGG_TX_STATE_TRANSMITTED = 0x000,
4087 1.1 pooka IWM_AGG_TX_STATE_UNDERRUN = 0x001,
4088 1.1 pooka IWM_AGG_TX_STATE_BT_PRIO = 0x002,
4089 1.1 pooka IWM_AGG_TX_STATE_FEW_BYTES = 0x004,
4090 1.1 pooka IWM_AGG_TX_STATE_ABORT = 0x008,
4091 1.1 pooka IWM_AGG_TX_STATE_LAST_SENT_TTL = 0x010,
4092 1.1 pooka IWM_AGG_TX_STATE_LAST_SENT_TRY_CNT = 0x020,
4093 1.1 pooka IWM_AGG_TX_STATE_LAST_SENT_BT_KILL = 0x040,
4094 1.1 pooka IWM_AGG_TX_STATE_SCD_QUERY = 0x080,
4095 1.1 pooka IWM_AGG_TX_STATE_TEST_BAD_CRC32 = 0x0100,
4096 1.1 pooka IWM_AGG_TX_STATE_RESPONSE = 0x1ff,
4097 1.1 pooka IWM_AGG_TX_STATE_DUMP_TX = 0x200,
4098 1.1 pooka IWM_AGG_TX_STATE_DELAY_TX = 0x400,
4099 1.1 pooka IWM_AGG_TX_STATE_TRY_CNT_POS = 12,
4100 1.1 pooka IWM_AGG_TX_STATE_TRY_CNT_MSK = 0xf << IWM_AGG_TX_STATE_TRY_CNT_POS,
4101 1.1 pooka };
4102 1.1 pooka
4103 1.1 pooka #define IWM_AGG_TX_STATE_LAST_SENT_MSK (IWM_AGG_TX_STATE_LAST_SENT_TTL| \
4104 1.1 pooka IWM_AGG_TX_STATE_LAST_SENT_TRY_CNT| \
4105 1.1 pooka IWM_AGG_TX_STATE_LAST_SENT_BT_KILL)
4106 1.1 pooka
4107 1.1 pooka /*
4108 1.1 pooka * The mask below describes a status where we are absolutely sure that the MPDU
4109 1.1 pooka * wasn't sent. For BA/Underrun we cannot be that sure. All we know that we've
4110 1.1 pooka * written the bytes to the TXE, but we know nothing about what the DSP did.
4111 1.1 pooka */
4112 1.1 pooka #define IWM_AGG_TX_STAT_FRAME_NOT_SENT (IWM_AGG_TX_STATE_FEW_BYTES | \
4113 1.1 pooka IWM_AGG_TX_STATE_ABORT | \
4114 1.1 pooka IWM_AGG_TX_STATE_SCD_QUERY)
4115 1.1 pooka
4116 1.1 pooka /*
4117 1.1 pooka * IWM_REPLY_TX = 0x1c (response)
4118 1.1 pooka *
4119 1.1 pooka * This response may be in one of two slightly different formats, indicated
4120 1.1 pooka * by the frame_count field:
4121 1.1 pooka *
4122 1.1 pooka * 1) No aggregation (frame_count == 1). This reports Tx results for a single
4123 1.1 pooka * frame. Multiple attempts, at various bit rates, may have been made for
4124 1.1 pooka * this frame.
4125 1.1 pooka *
4126 1.1 pooka * 2) Aggregation (frame_count > 1). This reports Tx results for two or more
4127 1.1 pooka * frames that used block-acknowledge. All frames were transmitted at
4128 1.1 pooka * same rate. Rate scaling may have been used if first frame in this new
4129 1.1 pooka * agg block failed in previous agg block(s).
4130 1.1 pooka *
4131 1.1 pooka * Note that, for aggregation, ACK (block-ack) status is not delivered
4132 1.1 pooka * here; block-ack has not been received by the time the device records
4133 1.1 pooka * this status.
4134 1.1 pooka * This status relates to reasons the tx might have been blocked or aborted
4135 1.1 pooka * within the device, rather than whether it was received successfully by
4136 1.1 pooka * the destination station.
4137 1.1 pooka */
4138 1.1 pooka
4139 1.1 pooka /**
4140 1.1 pooka * struct iwm_agg_tx_status - per packet TX aggregation status
4141 1.1 pooka * @status: enum iwm_tx_agg_status
4142 1.1 pooka * @sequence: Sequence # for this frame's Tx cmd (not SSN!)
4143 1.1 pooka */
4144 1.1 pooka struct iwm_agg_tx_status {
4145 1.1 pooka uint16_t status;
4146 1.1 pooka uint16_t sequence;
4147 1.1 pooka } __packed;
4148 1.1 pooka
4149 1.1 pooka /*
4150 1.1 pooka * definitions for initial rate index field
4151 1.1 pooka * bits [3:0] initial rate index
4152 1.1 pooka * bits [6:4] rate table color, used for the initial rate
4153 1.1 pooka * bit-7 invalid rate indication
4154 1.1 pooka */
4155 1.1 pooka #define IWM_TX_RES_INIT_RATE_INDEX_MSK 0x0f
4156 1.1 pooka #define IWM_TX_RES_RATE_TABLE_COLOR_MSK 0x70
4157 1.1 pooka #define IWM_TX_RES_INV_RATE_INDEX_MSK 0x80
4158 1.1 pooka
4159 1.1 pooka #define IWM_MVM_TX_RES_GET_TID(_ra_tid) ((_ra_tid) & 0x0f)
4160 1.1 pooka #define IWM_MVM_TX_RES_GET_RA(_ra_tid) ((_ra_tid) >> 4)
4161 1.1 pooka
4162 1.1 pooka /**
4163 1.1 pooka * struct iwm_mvm_tx_resp - notifies that fw is TXing a packet
4164 1.1 pooka * ( IWM_REPLY_TX = 0x1c )
4165 1.1 pooka * @frame_count: 1 no aggregation, >1 aggregation
4166 1.1 pooka * @bt_kill_count: num of times blocked by bluetooth (unused for agg)
4167 1.1 pooka * @failure_rts: num of failures due to unsuccessful RTS
4168 1.1 pooka * @failure_frame: num failures due to no ACK (unused for agg)
4169 1.1 pooka * @initial_rate: for non-agg: rate of the successful Tx. For agg: rate of the
4170 1.1 pooka * Tx of all the batch. IWM_RATE_MCS_*
4171 1.1 pooka * @wireless_media_time: for non-agg: RTS + CTS + frame tx attempts time + ACK.
4172 1.1 pooka * for agg: RTS + CTS + aggregation tx time + block-ack time.
4173 1.1 pooka * in usec.
4174 1.1 pooka * @pa_status: tx power info
4175 1.1 pooka * @pa_integ_res_a: tx power info
4176 1.1 pooka * @pa_integ_res_b: tx power info
4177 1.1 pooka * @pa_integ_res_c: tx power info
4178 1.1 pooka * @measurement_req_id: tx power info
4179 1.1 pooka * @tfd_info: TFD information set by the FH
4180 1.1 pooka * @seq_ctl: sequence control from the Tx cmd
4181 1.1 pooka * @byte_cnt: byte count from the Tx cmd
4182 1.1 pooka * @tlc_info: TLC rate info
4183 1.1 pooka * @ra_tid: bits [3:0] = ra, bits [7:4] = tid
4184 1.1 pooka * @frame_ctrl: frame control
4185 1.1 pooka * @status: for non-agg: frame status IWM_TX_STATUS_*
4186 1.1 pooka * for agg: status of 1st frame, IWM_AGG_TX_STATE_*; other frame status fields
4187 1.1 pooka * follow this one, up to frame_count.
4188 1.1 pooka *
4189 1.1 pooka * After the array of statuses comes the SSN of the SCD. Look at
4190 1.1 pooka * %iwm_mvm_get_scd_ssn for more details.
4191 1.1 pooka */
4192 1.1 pooka struct iwm_mvm_tx_resp {
4193 1.1 pooka uint8_t frame_count;
4194 1.1 pooka uint8_t bt_kill_count;
4195 1.1 pooka uint8_t failure_rts;
4196 1.1 pooka uint8_t failure_frame;
4197 1.1 pooka uint32_t initial_rate;
4198 1.1 pooka uint16_t wireless_media_time;
4199 1.1 pooka
4200 1.1 pooka uint8_t pa_status;
4201 1.1 pooka uint8_t pa_integ_res_a[3];
4202 1.1 pooka uint8_t pa_integ_res_b[3];
4203 1.1 pooka uint8_t pa_integ_res_c[3];
4204 1.1 pooka uint16_t measurement_req_id;
4205 1.1 pooka uint16_t reserved;
4206 1.1 pooka
4207 1.1 pooka uint32_t tfd_info;
4208 1.1 pooka uint16_t seq_ctl;
4209 1.1 pooka uint16_t byte_cnt;
4210 1.1 pooka uint8_t tlc_info;
4211 1.1 pooka uint8_t ra_tid;
4212 1.1 pooka uint16_t frame_ctrl;
4213 1.1 pooka
4214 1.1 pooka struct iwm_agg_tx_status status;
4215 1.1 pooka } __packed; /* IWM_TX_RSP_API_S_VER_3 */
4216 1.1 pooka
4217 1.1 pooka /**
4218 1.1 pooka * struct iwm_mvm_ba_notif - notifies about reception of BA
4219 1.1 pooka * ( IWM_BA_NOTIF = 0xc5 )
4220 1.1 pooka * @sta_addr_lo32: lower 32 bits of the MAC address
4221 1.1 pooka * @sta_addr_hi16: upper 16 bits of the MAC address
4222 1.1 pooka * @sta_id: Index of recipient (BA-sending) station in fw's station table
4223 1.1 pooka * @tid: tid of the session
4224 1.1 pooka * @seq_ctl:
4225 1.1 pooka * @bitmap: the bitmap of the BA notification as seen in the air
4226 1.1 pooka * @scd_flow: the tx queue this BA relates to
4227 1.1 pooka * @scd_ssn: the index of the last contiguously sent packet
4228 1.1 pooka * @txed: number of Txed frames in this batch
4229 1.1 pooka * @txed_2_done: number of Acked frames in this batch
4230 1.1 pooka */
4231 1.1 pooka struct iwm_mvm_ba_notif {
4232 1.1 pooka uint32_t sta_addr_lo32;
4233 1.1 pooka uint16_t sta_addr_hi16;
4234 1.1 pooka uint16_t reserved;
4235 1.1 pooka
4236 1.1 pooka uint8_t sta_id;
4237 1.1 pooka uint8_t tid;
4238 1.1 pooka uint16_t seq_ctl;
4239 1.1 pooka uint64_t bitmap;
4240 1.1 pooka uint16_t scd_flow;
4241 1.1 pooka uint16_t scd_ssn;
4242 1.1 pooka uint8_t txed;
4243 1.1 pooka uint8_t txed_2_done;
4244 1.1 pooka uint16_t reserved1;
4245 1.1 pooka } __packed;
4246 1.1 pooka
4247 1.1 pooka /*
4248 1.1 pooka * struct iwm_mac_beacon_cmd - beacon template command
4249 1.1 pooka * @tx: the tx commands associated with the beacon frame
4250 1.1 pooka * @template_id: currently equal to the mac context id of the coresponding
4251 1.1 pooka * mac.
4252 1.1 pooka * @tim_idx: the offset of the tim IE in the beacon
4253 1.1 pooka * @tim_size: the length of the tim IE
4254 1.1 pooka * @frame: the template of the beacon frame
4255 1.1 pooka */
4256 1.1 pooka struct iwm_mac_beacon_cmd {
4257 1.1 pooka struct iwm_tx_cmd tx;
4258 1.1 pooka uint32_t template_id;
4259 1.1 pooka uint32_t tim_idx;
4260 1.1 pooka uint32_t tim_size;
4261 1.1 pooka struct ieee80211_frame frame[0];
4262 1.1 pooka } __packed;
4263 1.1 pooka
4264 1.1 pooka struct iwm_beacon_notif {
4265 1.1 pooka struct iwm_mvm_tx_resp beacon_notify_hdr;
4266 1.1 pooka uint64_t tsf;
4267 1.1 pooka uint32_t ibss_mgr_status;
4268 1.1 pooka } __packed;
4269 1.1 pooka
4270 1.1 pooka /**
4271 1.1 pooka * enum iwm_dump_control - dump (flush) control flags
4272 1.1 pooka * @IWM_DUMP_TX_FIFO_FLUSH: Dump MSDUs until the the FIFO is empty
4273 1.1 pooka * and the TFD queues are empty.
4274 1.1 pooka */
4275 1.1 pooka enum iwm_dump_control {
4276 1.1 pooka IWM_DUMP_TX_FIFO_FLUSH = (1 << 1),
4277 1.1 pooka };
4278 1.1 pooka
4279 1.1 pooka /**
4280 1.1 pooka * struct iwm_tx_path_flush_cmd -- queue/FIFO flush command
4281 1.1 pooka * @queues_ctl: bitmap of queues to flush
4282 1.1 pooka * @flush_ctl: control flags
4283 1.1 pooka * @reserved: reserved
4284 1.1 pooka */
4285 1.1 pooka struct iwm_tx_path_flush_cmd {
4286 1.1 pooka uint32_t queues_ctl;
4287 1.1 pooka uint16_t flush_ctl;
4288 1.1 pooka uint16_t reserved;
4289 1.1 pooka } __packed; /* IWM_TX_PATH_FLUSH_CMD_API_S_VER_1 */
4290 1.1 pooka
4291 1.1 pooka /**
4292 1.1 pooka * iwm_mvm_get_scd_ssn - returns the SSN of the SCD
4293 1.1 pooka * @tx_resp: the Tx response from the fw (agg or non-agg)
4294 1.1 pooka *
4295 1.1 pooka * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
4296 1.1 pooka * it can't know that everything will go well until the end of the AMPDU, it
4297 1.1 pooka * can't know in advance the number of MPDUs that will be sent in the current
4298 1.1 pooka * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
4299 1.1 pooka * Hence, it can't know in advance what the SSN of the SCD will be at the end
4300 1.1 pooka * of the batch. This is why the SSN of the SCD is written at the end of the
4301 1.1 pooka * whole struct at a variable offset. This function knows how to cope with the
4302 1.1 pooka * variable offset and returns the SSN of the SCD.
4303 1.1 pooka */
4304 1.1 pooka static inline uint32_t iwm_mvm_get_scd_ssn(struct iwm_mvm_tx_resp *tx_resp)
4305 1.1 pooka {
4306 1.1 pooka return le32_to_cpup((uint32_t *)&tx_resp->status +
4307 1.1 pooka tx_resp->frame_count) & 0xfff;
4308 1.1 pooka }
4309 1.1 pooka
4310 1.1 pooka /*
4311 1.1 pooka * END mvm/fw-api-tx.h
4312 1.1 pooka */
4313 1.1 pooka
4314 1.1 pooka /*
4315 1.1 pooka * BEGIN mvm/fw-api-scan.h
4316 1.1 pooka */
4317 1.1 pooka
4318 1.1 pooka /* Scan Commands, Responses, Notifications */
4319 1.1 pooka
4320 1.1 pooka /* Masks for iwm_scan_channel.type flags */
4321 1.1 pooka #define IWM_SCAN_CHANNEL_TYPE_ACTIVE (1 << 0)
4322 1.1 pooka #define IWM_SCAN_CHANNEL_NARROW_BAND (1 << 22)
4323 1.1 pooka
4324 1.1 pooka /* Max number of IEs for direct SSID scans in a command */
4325 1.1 pooka #define IWM_PROBE_OPTION_MAX 20
4326 1.1 pooka
4327 1.1 pooka /**
4328 1.1 pooka * struct iwm_scan_channel - entry in IWM_REPLY_SCAN_CMD channel table
4329 1.1 pooka * @channel: band is selected by iwm_scan_cmd "flags" field
4330 1.1 pooka * @tx_gain: gain for analog radio
4331 1.1 pooka * @dsp_atten: gain for DSP
4332 1.1 pooka * @active_dwell: dwell time for active scan in TU, typically 5-50
4333 1.1 pooka * @passive_dwell: dwell time for passive scan in TU, typically 20-500
4334 1.1 pooka * @type: type is broken down to these bits:
4335 1.1 pooka * bit 0: 0 = passive, 1 = active
4336 1.1 pooka * bits 1-20: SSID direct bit map. If any of these bits is set then
4337 1.1 pooka * the corresponding SSID IE is transmitted in probe request
4338 1.1 pooka * (bit i adds IE in position i to the probe request)
4339 1.1 pooka * bit 22: channel width, 0 = regular, 1 = TGj narrow channel
4340 1.1 pooka *
4341 1.1 pooka * @iteration_count:
4342 1.1 pooka * @iteration_interval:
4343 1.1 pooka * This struct is used once for each channel in the scan list.
4344 1.1 pooka * Each channel can independently select:
4345 1.1 pooka * 1) SSID for directed active scans
4346 1.1 pooka * 2) Txpower setting (for rate specified within Tx command)
4347 1.1 pooka * 3) How long to stay on-channel (behavior may be modified by quiet_time,
4348 1.1 pooka * quiet_plcp_th, good_CRC_th)
4349 1.1 pooka *
4350 1.1 pooka * To avoid uCode errors, make sure the following are true (see comments
4351 1.1 pooka * under struct iwm_scan_cmd about max_out_time and quiet_time):
4352 1.1 pooka * 1) If using passive_dwell (i.e. passive_dwell != 0):
4353 1.1 pooka * active_dwell <= passive_dwell (< max_out_time if max_out_time != 0)
4354 1.1 pooka * 2) quiet_time <= active_dwell
4355 1.1 pooka * 3) If restricting off-channel time (i.e. max_out_time !=0):
4356 1.1 pooka * passive_dwell < max_out_time
4357 1.1 pooka * active_dwell < max_out_time
4358 1.1 pooka */
4359 1.1 pooka struct iwm_scan_channel {
4360 1.1 pooka uint32_t type;
4361 1.1 pooka uint16_t channel;
4362 1.1 pooka uint16_t iteration_count;
4363 1.1 pooka uint32_t iteration_interval;
4364 1.1 pooka uint16_t active_dwell;
4365 1.1 pooka uint16_t passive_dwell;
4366 1.1 pooka } __packed; /* IWM_SCAN_CHANNEL_CONTROL_API_S_VER_1 */
4367 1.1 pooka
4368 1.1 pooka /**
4369 1.1 pooka * struct iwm_ssid_ie - directed scan network information element
4370 1.1 pooka *
4371 1.1 pooka * Up to 20 of these may appear in IWM_REPLY_SCAN_CMD,
4372 1.1 pooka * selected by "type" bit field in struct iwm_scan_channel;
4373 1.1 pooka * each channel may select different ssids from among the 20 entries.
4374 1.1 pooka * SSID IEs get transmitted in reverse order of entry.
4375 1.1 pooka */
4376 1.1 pooka struct iwm_ssid_ie {
4377 1.1 pooka uint8_t id;
4378 1.1 pooka uint8_t len;
4379 1.1 pooka uint8_t ssid[IEEE80211_NWID_LEN];
4380 1.1 pooka } __packed; /* IWM_SCAN_DIRECT_SSID_IE_API_S_VER_1 */
4381 1.1 pooka
4382 1.1 pooka /**
4383 1.1 pooka * iwm_scan_flags - masks for scan command flags
4384 1.1 pooka *@IWM_SCAN_FLAGS_PERIODIC_SCAN:
4385 1.1 pooka *@IWM_SCAN_FLAGS_P2P_PUBLIC_ACTION_FRAME_TX:
4386 1.1 pooka *@IWM_SCAN_FLAGS_DELAYED_SCAN_LOWBAND:
4387 1.1 pooka *@IWM_SCAN_FLAGS_DELAYED_SCAN_HIGHBAND:
4388 1.1 pooka *@IWM_SCAN_FLAGS_FRAGMENTED_SCAN:
4389 1.1 pooka *@IWM_SCAN_FLAGS_PASSIVE2ACTIVE: use active scan on channels that was active
4390 1.1 pooka * in the past hour, even if they are marked as passive.
4391 1.1 pooka */
4392 1.1 pooka enum iwm_scan_flags {
4393 1.1 pooka IWM_SCAN_FLAGS_PERIODIC_SCAN = (1 << 0),
4394 1.1 pooka IWM_SCAN_FLAGS_P2P_PUBLIC_ACTION_FRAME_TX = (1 << 1),
4395 1.1 pooka IWM_SCAN_FLAGS_DELAYED_SCAN_LOWBAND = (1 << 2),
4396 1.1 pooka IWM_SCAN_FLAGS_DELAYED_SCAN_HIGHBAND = (1 << 3),
4397 1.1 pooka IWM_SCAN_FLAGS_FRAGMENTED_SCAN = (1 << 4),
4398 1.1 pooka IWM_SCAN_FLAGS_PASSIVE2ACTIVE = (1 << 5),
4399 1.1 pooka };
4400 1.1 pooka
4401 1.1 pooka /**
4402 1.1 pooka * enum iwm_scan_type - Scan types for scan command
4403 1.1 pooka * @IWM_SCAN_TYPE_FORCED:
4404 1.1 pooka * @IWM_SCAN_TYPE_BACKGROUND:
4405 1.1 pooka * @IWM_SCAN_TYPE_OS:
4406 1.1 pooka * @IWM_SCAN_TYPE_ROAMING:
4407 1.1 pooka * @IWM_SCAN_TYPE_ACTION:
4408 1.1 pooka * @IWM_SCAN_TYPE_DISCOVERY:
4409 1.1 pooka * @IWM_SCAN_TYPE_DISCOVERY_FORCED:
4410 1.1 pooka */
4411 1.1 pooka enum iwm_scan_type {
4412 1.1 pooka IWM_SCAN_TYPE_FORCED = 0,
4413 1.1 pooka IWM_SCAN_TYPE_BACKGROUND = 1,
4414 1.1 pooka IWM_SCAN_TYPE_OS = 2,
4415 1.1 pooka IWM_SCAN_TYPE_ROAMING = 3,
4416 1.1 pooka IWM_SCAN_TYPE_ACTION = 4,
4417 1.1 pooka IWM_SCAN_TYPE_DISCOVERY = 5,
4418 1.1 pooka IWM_SCAN_TYPE_DISCOVERY_FORCED = 6,
4419 1.1 pooka }; /* IWM_SCAN_ACTIVITY_TYPE_E_VER_1 */
4420 1.1 pooka
4421 1.1 pooka /* Maximal number of channels to scan */
4422 1.1 pooka #define IWM_MAX_NUM_SCAN_CHANNELS 0x24
4423 1.1 pooka
4424 1.1 pooka /**
4425 1.1 pooka * struct iwm_scan_cmd - scan request command
4426 1.1 pooka * ( IWM_SCAN_REQUEST_CMD = 0x80 )
4427 1.1 pooka * @len: command length in bytes
4428 1.1 pooka * @scan_flags: scan flags from IWM_SCAN_FLAGS_*
4429 1.1 pooka * @channel_count: num of channels in channel list (1 - IWM_MAX_NUM_SCAN_CHANNELS)
4430 1.1 pooka * @quiet_time: in msecs, dwell this time for active scan on quiet channels
4431 1.1 pooka * @quiet_plcp_th: quiet PLCP threshold (channel is quiet if less than
4432 1.1 pooka * this number of packets were received (typically 1)
4433 1.1 pooka * @passive2active: is auto switching from passive to active during scan allowed
4434 1.1 pooka * @rxchain_sel_flags: RXON_RX_CHAIN_*
4435 1.1 pooka * @max_out_time: in usecs, max out of serving channel time
4436 1.1 pooka * @suspend_time: how long to pause scan when returning to service channel:
4437 1.1 pooka * bits 0-19: beacon interal in usecs (suspend before executing)
4438 1.1 pooka * bits 20-23: reserved
4439 1.1 pooka * bits 24-31: number of beacons (suspend between channels)
4440 1.1 pooka * @rxon_flags: RXON_FLG_*
4441 1.1 pooka * @filter_flags: RXON_FILTER_*
4442 1.1 pooka * @tx_cmd: for active scans (zero for passive), w/o payload,
4443 1.1 pooka * no RS so specify TX rate
4444 1.1 pooka * @direct_scan: direct scan SSIDs
4445 1.1 pooka * @type: one of IWM_SCAN_TYPE_*
4446 1.1 pooka * @repeats: how many time to repeat the scan
4447 1.1 pooka */
4448 1.1 pooka struct iwm_scan_cmd {
4449 1.1 pooka uint16_t len;
4450 1.1 pooka uint8_t scan_flags;
4451 1.1 pooka uint8_t channel_count;
4452 1.1 pooka uint16_t quiet_time;
4453 1.1 pooka uint16_t quiet_plcp_th;
4454 1.1 pooka uint16_t passive2active;
4455 1.1 pooka uint16_t rxchain_sel_flags;
4456 1.1 pooka uint32_t max_out_time;
4457 1.1 pooka uint32_t suspend_time;
4458 1.1 pooka /* IWM_RX_ON_FLAGS_API_S_VER_1 */
4459 1.1 pooka uint32_t rxon_flags;
4460 1.1 pooka uint32_t filter_flags;
4461 1.1 pooka struct iwm_tx_cmd tx_cmd;
4462 1.1 pooka struct iwm_ssid_ie direct_scan[IWM_PROBE_OPTION_MAX];
4463 1.1 pooka uint32_t type;
4464 1.1 pooka uint32_t repeats;
4465 1.1 pooka
4466 1.1 pooka /*
4467 1.1 pooka * Probe request frame, followed by channel list.
4468 1.1 pooka *
4469 1.1 pooka * Size of probe request frame is specified by byte count in tx_cmd.
4470 1.1 pooka * Channel list follows immediately after probe request frame.
4471 1.1 pooka * Number of channels in list is specified by channel_count.
4472 1.1 pooka * Each channel in list is of type:
4473 1.1 pooka *
4474 1.1 pooka * struct iwm_scan_channel channels[0];
4475 1.1 pooka *
4476 1.1 pooka * NOTE: Only one band of channels can be scanned per pass. You
4477 1.1 pooka * must not mix 2.4GHz channels and 5.2GHz channels, and you must wait
4478 1.1 pooka * for one scan to complete (i.e. receive IWM_SCAN_COMPLETE_NOTIFICATION)
4479 1.1 pooka * before requesting another scan.
4480 1.1 pooka */
4481 1.1 pooka uint8_t data[0];
4482 1.1 pooka } __packed; /* IWM_SCAN_REQUEST_FIXED_PART_API_S_VER_5 */
4483 1.1 pooka
4484 1.1 pooka /* Response to scan request contains only status with one of these values */
4485 1.1 pooka #define IWM_SCAN_RESPONSE_OK 0x1
4486 1.1 pooka #define IWM_SCAN_RESPONSE_ERROR 0x2
4487 1.1 pooka
4488 1.1 pooka /*
4489 1.1 pooka * IWM_SCAN_ABORT_CMD = 0x81
4490 1.1 pooka * When scan abort is requested, the command has no fields except the common
4491 1.1 pooka * header. The response contains only a status with one of these values.
4492 1.1 pooka */
4493 1.1 pooka #define IWM_SCAN_ABORT_POSSIBLE 0x1
4494 1.1 pooka #define IWM_SCAN_ABORT_IGNORED 0x2 /* no pending scans */
4495 1.1 pooka
4496 1.1 pooka /* TODO: complete documentation */
4497 1.1 pooka #define IWM_SCAN_OWNER_STATUS 0x1
4498 1.1 pooka #define IWM_MEASURE_OWNER_STATUS 0x2
4499 1.1 pooka
4500 1.1 pooka /**
4501 1.1 pooka * struct iwm_scan_start_notif - notifies start of scan in the device
4502 1.1 pooka * ( IWM_SCAN_START_NOTIFICATION = 0x82 )
4503 1.1 pooka * @tsf_low: TSF timer (lower half) in usecs
4504 1.1 pooka * @tsf_high: TSF timer (higher half) in usecs
4505 1.1 pooka * @beacon_timer: structured as follows:
4506 1.1 pooka * bits 0:19 - beacon interval in usecs
4507 1.1 pooka * bits 20:23 - reserved (0)
4508 1.1 pooka * bits 24:31 - number of beacons
4509 1.1 pooka * @channel: which channel is scanned
4510 1.1 pooka * @band: 0 for 5.2 GHz, 1 for 2.4 GHz
4511 1.1 pooka * @status: one of *_OWNER_STATUS
4512 1.1 pooka */
4513 1.1 pooka struct iwm_scan_start_notif {
4514 1.1 pooka uint32_t tsf_low;
4515 1.1 pooka uint32_t tsf_high;
4516 1.1 pooka uint32_t beacon_timer;
4517 1.1 pooka uint8_t channel;
4518 1.1 pooka uint8_t band;
4519 1.1 pooka uint8_t reserved[2];
4520 1.1 pooka uint32_t status;
4521 1.1 pooka } __packed; /* IWM_SCAN_START_NTF_API_S_VER_1 */
4522 1.1 pooka
4523 1.1 pooka /* scan results probe_status first bit indicates success */
4524 1.1 pooka #define IWM_SCAN_PROBE_STATUS_OK 0
4525 1.1 pooka #define IWM_SCAN_PROBE_STATUS_TX_FAILED (1 << 0)
4526 1.1 pooka /* error statuses combined with TX_FAILED */
4527 1.1 pooka #define IWM_SCAN_PROBE_STATUS_FAIL_TTL (1 << 1)
4528 1.1 pooka #define IWM_SCAN_PROBE_STATUS_FAIL_BT (1 << 2)
4529 1.1 pooka
4530 1.1 pooka /* How many statistics are gathered for each channel */
4531 1.1 pooka #define IWM_SCAN_RESULTS_STATISTICS 1
4532 1.1 pooka
4533 1.1 pooka /**
4534 1.1 pooka * enum iwm_scan_complete_status - status codes for scan complete notifications
4535 1.1 pooka * @IWM_SCAN_COMP_STATUS_OK: scan completed successfully
4536 1.1 pooka * @IWM_SCAN_COMP_STATUS_ABORT: scan was aborted by user
4537 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_SLEEP: sending null sleep packet failed
4538 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_CHAN_TIMEOUT: timeout before channel is ready
4539 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_PROBE: sending probe request failed
4540 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_WAKEUP: sending null wakeup packet failed
4541 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_ANTENNAS: invalid antennas chosen at scan command
4542 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_INTERNAL: internal error caused scan abort
4543 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_COEX: medium was lost ot WiMax
4544 1.1 pooka * @IWM_SCAN_COMP_STATUS_P2P_ACTION_OK: P2P public action frame TX was successful
4545 1.1 pooka * (not an error!)
4546 1.1 pooka * @IWM_SCAN_COMP_STATUS_ITERATION_END: indicates end of one repeatition the driver
4547 1.1 pooka * asked for
4548 1.1 pooka * @IWM_SCAN_COMP_STATUS_ERR_ALLOC_TE: scan could not allocate time events
4549 1.1 pooka */
4550 1.1 pooka enum iwm_scan_complete_status {
4551 1.1 pooka IWM_SCAN_COMP_STATUS_OK = 0x1,
4552 1.1 pooka IWM_SCAN_COMP_STATUS_ABORT = 0x2,
4553 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_SLEEP = 0x3,
4554 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_CHAN_TIMEOUT = 0x4,
4555 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_PROBE = 0x5,
4556 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_WAKEUP = 0x6,
4557 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_ANTENNAS = 0x7,
4558 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_INTERNAL = 0x8,
4559 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_COEX = 0x9,
4560 1.1 pooka IWM_SCAN_COMP_STATUS_P2P_ACTION_OK = 0xA,
4561 1.1 pooka IWM_SCAN_COMP_STATUS_ITERATION_END = 0x0B,
4562 1.1 pooka IWM_SCAN_COMP_STATUS_ERR_ALLOC_TE = 0x0C,
4563 1.1 pooka };
4564 1.1 pooka
4565 1.1 pooka /**
4566 1.1 pooka * struct iwm_scan_results_notif - scan results for one channel
4567 1.1 pooka * ( IWM_SCAN_RESULTS_NOTIFICATION = 0x83 )
4568 1.1 pooka * @channel: which channel the results are from
4569 1.1 pooka * @band: 0 for 5.2 GHz, 1 for 2.4 GHz
4570 1.1 pooka * @probe_status: IWM_SCAN_PROBE_STATUS_*, indicates success of probe request
4571 1.1 pooka * @num_probe_not_sent: # of request that weren't sent due to not enough time
4572 1.1 pooka * @duration: duration spent in channel, in usecs
4573 1.1 pooka * @statistics: statistics gathered for this channel
4574 1.1 pooka */
4575 1.1 pooka struct iwm_scan_results_notif {
4576 1.1 pooka uint8_t channel;
4577 1.1 pooka uint8_t band;
4578 1.1 pooka uint8_t probe_status;
4579 1.1 pooka uint8_t num_probe_not_sent;
4580 1.1 pooka uint32_t duration;
4581 1.1 pooka uint32_t statistics[IWM_SCAN_RESULTS_STATISTICS];
4582 1.1 pooka } __packed; /* IWM_SCAN_RESULT_NTF_API_S_VER_2 */
4583 1.1 pooka
4584 1.1 pooka /**
4585 1.1 pooka * struct iwm_scan_complete_notif - notifies end of scanning (all channels)
4586 1.1 pooka * ( IWM_SCAN_COMPLETE_NOTIFICATION = 0x84 )
4587 1.1 pooka * @scanned_channels: number of channels scanned (and number of valid results)
4588 1.1 pooka * @status: one of IWM_SCAN_COMP_STATUS_*
4589 1.1 pooka * @bt_status: BT on/off status
4590 1.1 pooka * @last_channel: last channel that was scanned
4591 1.1 pooka * @tsf_low: TSF timer (lower half) in usecs
4592 1.1 pooka * @tsf_high: TSF timer (higher half) in usecs
4593 1.1 pooka * @results: all scan results, only "scanned_channels" of them are valid
4594 1.1 pooka */
4595 1.1 pooka struct iwm_scan_complete_notif {
4596 1.1 pooka uint8_t scanned_channels;
4597 1.1 pooka uint8_t status;
4598 1.1 pooka uint8_t bt_status;
4599 1.1 pooka uint8_t last_channel;
4600 1.1 pooka uint32_t tsf_low;
4601 1.1 pooka uint32_t tsf_high;
4602 1.1 pooka struct iwm_scan_results_notif results[IWM_MAX_NUM_SCAN_CHANNELS];
4603 1.1 pooka } __packed; /* IWM_SCAN_COMPLETE_NTF_API_S_VER_2 */
4604 1.1 pooka
4605 1.1 pooka /* scan offload */
4606 1.1 pooka #define IWM_MAX_SCAN_CHANNELS 40
4607 1.1 pooka #define IWM_SCAN_MAX_BLACKLIST_LEN 64
4608 1.1 pooka #define IWM_SCAN_SHORT_BLACKLIST_LEN 16
4609 1.1 pooka #define IWM_SCAN_MAX_PROFILES 11
4610 1.1 pooka #define IWM_SCAN_OFFLOAD_PROBE_REQ_SIZE 512
4611 1.1 pooka
4612 1.1 pooka /* Default watchdog (in MS) for scheduled scan iteration */
4613 1.1 pooka #define IWM_SCHED_SCAN_WATCHDOG cpu_to_le16(15000)
4614 1.1 pooka
4615 1.1 pooka #define IWM_GOOD_CRC_TH_DEFAULT cpu_to_le16(1)
4616 1.1 pooka #define IWM_CAN_ABORT_STATUS 1
4617 1.1 pooka
4618 1.1 pooka #define IWM_FULL_SCAN_MULTIPLIER 5
4619 1.1 pooka #define IWM_FAST_SCHED_SCAN_ITERATIONS 3
4620 1.1 pooka
4621 1.1 pooka enum iwm_scan_framework_client {
4622 1.1 pooka IWM_SCAN_CLIENT_SCHED_SCAN = (1 << 0),
4623 1.1 pooka IWM_SCAN_CLIENT_NETDETECT = (1 << 1),
4624 1.1 pooka IWM_SCAN_CLIENT_ASSET_TRACKING = (1 << 2),
4625 1.1 pooka };
4626 1.1 pooka
4627 1.1 pooka /**
4628 1.1 pooka * struct iwm_scan_offload_cmd - IWM_SCAN_REQUEST_FIXED_PART_API_S_VER_6
4629 1.1 pooka * @scan_flags: see enum iwm_scan_flags
4630 1.1 pooka * @channel_count: channels in channel list
4631 1.1 pooka * @quiet_time: dwell time, in milisiconds, on quiet channel
4632 1.1 pooka * @quiet_plcp_th: quiet channel num of packets threshold
4633 1.1 pooka * @good_CRC_th: passive to active promotion threshold
4634 1.1 pooka * @rx_chain: RXON rx chain.
4635 1.1 pooka * @max_out_time: max uSec to be out of assoceated channel
4636 1.1 pooka * @suspend_time: pause scan this long when returning to service channel
4637 1.1 pooka * @flags: RXON flags
4638 1.1 pooka * @filter_flags: RXONfilter
4639 1.1 pooka * @tx_cmd: tx command for active scan; for 2GHz and for 5GHz.
4640 1.1 pooka * @direct_scan: list of SSIDs for directed active scan
4641 1.1 pooka * @scan_type: see enum iwm_scan_type.
4642 1.1 pooka * @rep_count: repetition count for each scheduled scan iteration.
4643 1.1 pooka */
4644 1.1 pooka struct iwm_scan_offload_cmd {
4645 1.1 pooka uint16_t len;
4646 1.1 pooka uint8_t scan_flags;
4647 1.1 pooka uint8_t channel_count;
4648 1.1 pooka uint16_t quiet_time;
4649 1.1 pooka uint16_t quiet_plcp_th;
4650 1.1 pooka uint16_t good_CRC_th;
4651 1.1 pooka uint16_t rx_chain;
4652 1.1 pooka uint32_t max_out_time;
4653 1.1 pooka uint32_t suspend_time;
4654 1.1 pooka /* IWM_RX_ON_FLAGS_API_S_VER_1 */
4655 1.1 pooka uint32_t flags;
4656 1.1 pooka uint32_t filter_flags;
4657 1.1 pooka struct iwm_tx_cmd tx_cmd[2];
4658 1.1 pooka /* IWM_SCAN_DIRECT_SSID_IE_API_S_VER_1 */
4659 1.1 pooka struct iwm_ssid_ie direct_scan[IWM_PROBE_OPTION_MAX];
4660 1.1 pooka uint32_t scan_type;
4661 1.1 pooka uint32_t rep_count;
4662 1.1 pooka } __packed;
4663 1.1 pooka
4664 1.1 pooka enum iwm_scan_offload_channel_flags {
4665 1.1 pooka IWM_SCAN_OFFLOAD_CHANNEL_ACTIVE = (1 << 0),
4666 1.1 pooka IWM_SCAN_OFFLOAD_CHANNEL_NARROW = (1 << 22),
4667 1.1 pooka IWM_SCAN_OFFLOAD_CHANNEL_FULL = (1 << 24),
4668 1.1 pooka IWM_SCAN_OFFLOAD_CHANNEL_PARTIAL = (1 << 25),
4669 1.1 pooka };
4670 1.1 pooka
4671 1.1 pooka /**
4672 1.1 pooka * iwm_scan_channel_cfg - IWM_SCAN_CHANNEL_CFG_S
4673 1.1 pooka * @type: bitmap - see enum iwm_scan_offload_channel_flags.
4674 1.1 pooka * 0: passive (0) or active (1) scan.
4675 1.1 pooka * 1-20: directed scan to i'th ssid.
4676 1.1 pooka * 22: channel width configuation - 1 for narrow.
4677 1.1 pooka * 24: full scan.
4678 1.1 pooka * 25: partial scan.
4679 1.1 pooka * @channel_number: channel number 1-13 etc.
4680 1.1 pooka * @iter_count: repetition count for the channel.
4681 1.1 pooka * @iter_interval: interval between two innteration on one channel.
4682 1.1 pooka * @dwell_time: entry 0 - active scan, entry 1 - passive scan.
4683 1.1 pooka */
4684 1.1 pooka struct iwm_scan_channel_cfg {
4685 1.1 pooka uint32_t type[IWM_MAX_SCAN_CHANNELS];
4686 1.1 pooka uint16_t channel_number[IWM_MAX_SCAN_CHANNELS];
4687 1.1 pooka uint16_t iter_count[IWM_MAX_SCAN_CHANNELS];
4688 1.1 pooka uint32_t iter_interval[IWM_MAX_SCAN_CHANNELS];
4689 1.1 pooka uint8_t dwell_time[IWM_MAX_SCAN_CHANNELS][2];
4690 1.1 pooka } __packed;
4691 1.1 pooka
4692 1.1 pooka /**
4693 1.1 pooka * iwm_scan_offload_cfg - IWM_SCAN_OFFLOAD_CONFIG_API_S
4694 1.1 pooka * @scan_cmd: scan command fixed part
4695 1.1 pooka * @channel_cfg: scan channel configuration
4696 1.1 pooka * @data: probe request frames (one per band)
4697 1.1 pooka */
4698 1.1 pooka struct iwm_scan_offload_cfg {
4699 1.1 pooka struct iwm_scan_offload_cmd scan_cmd;
4700 1.1 pooka struct iwm_scan_channel_cfg channel_cfg;
4701 1.1 pooka uint8_t data[0];
4702 1.1 pooka } __packed;
4703 1.1 pooka
4704 1.1 pooka /**
4705 1.1 pooka * iwm_scan_offload_blacklist - IWM_SCAN_OFFLOAD_BLACKLIST_S
4706 1.1 pooka * @ssid: MAC address to filter out
4707 1.1 pooka * @reported_rssi: AP rssi reported to the host
4708 1.1 pooka * @client_bitmap: clients ignore this entry - enum scan_framework_client
4709 1.1 pooka */
4710 1.1 pooka struct iwm_scan_offload_blacklist {
4711 1.1 pooka uint8_t ssid[ETHER_ADDR_LEN];
4712 1.1 pooka uint8_t reported_rssi;
4713 1.1 pooka uint8_t client_bitmap;
4714 1.1 pooka } __packed;
4715 1.1 pooka
4716 1.1 pooka enum iwm_scan_offload_network_type {
4717 1.1 pooka IWM_NETWORK_TYPE_BSS = 1,
4718 1.1 pooka IWM_NETWORK_TYPE_IBSS = 2,
4719 1.1 pooka IWM_NETWORK_TYPE_ANY = 3,
4720 1.1 pooka };
4721 1.1 pooka
4722 1.1 pooka enum iwm_scan_offload_band_selection {
4723 1.1 pooka IWM_SCAN_OFFLOAD_SELECT_2_4 = 0x4,
4724 1.1 pooka IWM_SCAN_OFFLOAD_SELECT_5_2 = 0x8,
4725 1.1 pooka IWM_SCAN_OFFLOAD_SELECT_ANY = 0xc,
4726 1.1 pooka };
4727 1.1 pooka
4728 1.1 pooka /**
4729 1.1 pooka * iwm_scan_offload_profile - IWM_SCAN_OFFLOAD_PROFILE_S
4730 1.1 pooka * @ssid_index: index to ssid list in fixed part
4731 1.1 pooka * @unicast_cipher: encryption olgorithm to match - bitmap
4732 1.1 pooka * @aut_alg: authentication olgorithm to match - bitmap
4733 1.1 pooka * @network_type: enum iwm_scan_offload_network_type
4734 1.1 pooka * @band_selection: enum iwm_scan_offload_band_selection
4735 1.1 pooka * @client_bitmap: clients waiting for match - enum scan_framework_client
4736 1.1 pooka */
4737 1.1 pooka struct iwm_scan_offload_profile {
4738 1.1 pooka uint8_t ssid_index;
4739 1.1 pooka uint8_t unicast_cipher;
4740 1.1 pooka uint8_t auth_alg;
4741 1.1 pooka uint8_t network_type;
4742 1.1 pooka uint8_t band_selection;
4743 1.1 pooka uint8_t client_bitmap;
4744 1.1 pooka uint8_t reserved[2];
4745 1.1 pooka } __packed;
4746 1.1 pooka
4747 1.1 pooka /**
4748 1.1 pooka * iwm_scan_offload_profile_cfg - IWM_SCAN_OFFLOAD_PROFILES_CFG_API_S_VER_1
4749 1.1 pooka * @blaclist: AP list to filter off from scan results
4750 1.1 pooka * @profiles: profiles to search for match
4751 1.1 pooka * @blacklist_len: length of blacklist
4752 1.1 pooka * @num_profiles: num of profiles in the list
4753 1.1 pooka * @match_notify: clients waiting for match found notification
4754 1.1 pooka * @pass_match: clients waiting for the results
4755 1.1 pooka * @active_clients: active clients bitmap - enum scan_framework_client
4756 1.1 pooka * @any_beacon_notify: clients waiting for match notification without match
4757 1.1 pooka */
4758 1.1 pooka struct iwm_scan_offload_profile_cfg {
4759 1.1 pooka struct iwm_scan_offload_profile profiles[IWM_SCAN_MAX_PROFILES];
4760 1.1 pooka uint8_t blacklist_len;
4761 1.1 pooka uint8_t num_profiles;
4762 1.1 pooka uint8_t match_notify;
4763 1.1 pooka uint8_t pass_match;
4764 1.1 pooka uint8_t active_clients;
4765 1.1 pooka uint8_t any_beacon_notify;
4766 1.1 pooka uint8_t reserved[2];
4767 1.1 pooka } __packed;
4768 1.1 pooka
4769 1.1 pooka /**
4770 1.1 pooka * iwm_scan_offload_schedule - schedule of scan offload
4771 1.1 pooka * @delay: delay between iterations, in seconds.
4772 1.1 pooka * @iterations: num of scan iterations
4773 1.1 pooka * @full_scan_mul: number of partial scans before each full scan
4774 1.1 pooka */
4775 1.1 pooka struct iwm_scan_offload_schedule {
4776 1.1 pooka uint16_t delay;
4777 1.1 pooka uint8_t iterations;
4778 1.1 pooka uint8_t full_scan_mul;
4779 1.1 pooka } __packed;
4780 1.1 pooka
4781 1.1 pooka /*
4782 1.1 pooka * iwm_scan_offload_flags
4783 1.1 pooka *
4784 1.1 pooka * IWM_SCAN_OFFLOAD_FLAG_PASS_ALL: pass all results - no filtering.
4785 1.1 pooka * IWM_SCAN_OFFLOAD_FLAG_CACHED_CHANNEL: add cached channels to partial scan.
4786 1.1 pooka * IWM_SCAN_OFFLOAD_FLAG_ENERGY_SCAN: use energy based scan before partial scan
4787 1.1 pooka * on A band.
4788 1.1 pooka */
4789 1.1 pooka enum iwm_scan_offload_flags {
4790 1.1 pooka IWM_SCAN_OFFLOAD_FLAG_PASS_ALL = (1 << 0),
4791 1.1 pooka IWM_SCAN_OFFLOAD_FLAG_CACHED_CHANNEL = (1 << 2),
4792 1.1 pooka IWM_SCAN_OFFLOAD_FLAG_ENERGY_SCAN = (1 << 3),
4793 1.1 pooka };
4794 1.1 pooka
4795 1.1 pooka /**
4796 1.1 pooka * iwm_scan_offload_req - scan offload request command
4797 1.1 pooka * @flags: bitmap - enum iwm_scan_offload_flags.
4798 1.1 pooka * @watchdog: maximum scan duration in TU.
4799 1.1 pooka * @delay: delay in seconds before first iteration.
4800 1.1 pooka * @schedule_line: scan offload schedule, for fast and regular scan.
4801 1.1 pooka */
4802 1.1 pooka struct iwm_scan_offload_req {
4803 1.1 pooka uint16_t flags;
4804 1.1 pooka uint16_t watchdog;
4805 1.1 pooka uint16_t delay;
4806 1.1 pooka uint16_t reserved;
4807 1.1 pooka struct iwm_scan_offload_schedule schedule_line[2];
4808 1.1 pooka } __packed;
4809 1.1 pooka
4810 1.1 pooka enum iwm_scan_offload_compleate_status {
4811 1.1 pooka IWM_SCAN_OFFLOAD_COMPLETED = 1,
4812 1.1 pooka IWM_SCAN_OFFLOAD_ABORTED = 2,
4813 1.1 pooka };
4814 1.1 pooka
4815 1.1 pooka /**
4816 1.1 pooka * iwm_scan_offload_complete - IWM_SCAN_OFFLOAD_COMPLETE_NTF_API_S_VER_1
4817 1.1 pooka * @last_schedule_line: last schedule line executed (fast or regular)
4818 1.1 pooka * @last_schedule_iteration: last scan iteration executed before scan abort
4819 1.1 pooka * @status: enum iwm_scan_offload_compleate_status
4820 1.1 pooka */
4821 1.1 pooka struct iwm_scan_offload_complete {
4822 1.1 pooka uint8_t last_schedule_line;
4823 1.1 pooka uint8_t last_schedule_iteration;
4824 1.1 pooka uint8_t status;
4825 1.1 pooka uint8_t reserved;
4826 1.1 pooka } __packed;
4827 1.1 pooka
4828 1.1 pooka /**
4829 1.1 pooka * iwm_sched_scan_results - IWM_SCAN_OFFLOAD_MATCH_FOUND_NTF_API_S_VER_1
4830 1.1 pooka * @ssid_bitmap: SSIDs indexes found in this iteration
4831 1.1 pooka * @client_bitmap: clients that are active and wait for this notification
4832 1.1 pooka */
4833 1.1 pooka struct iwm_sched_scan_results {
4834 1.1 pooka uint16_t ssid_bitmap;
4835 1.1 pooka uint8_t client_bitmap;
4836 1.1 pooka uint8_t reserved;
4837 1.1 pooka };
4838 1.1 pooka
4839 1.1 pooka /*
4840 1.1 pooka * END mvm/fw-api-scan.h
4841 1.1 pooka */
4842 1.1 pooka
4843 1.1 pooka /*
4844 1.1 pooka * BEGIN mvm/fw-api-sta.h
4845 1.1 pooka */
4846 1.1 pooka
4847 1.1 pooka /**
4848 1.1 pooka * enum iwm_sta_flags - flags for the ADD_STA host command
4849 1.1 pooka * @IWM_STA_FLG_REDUCED_TX_PWR_CTRL:
4850 1.1 pooka * @IWM_STA_FLG_REDUCED_TX_PWR_DATA:
4851 1.1 pooka * @IWM_STA_FLG_FLG_ANT_MSK: Antenna selection
4852 1.1 pooka * @IWM_STA_FLG_PS: set if STA is in Power Save
4853 1.1 pooka * @IWM_STA_FLG_INVALID: set if STA is invalid
4854 1.1 pooka * @IWM_STA_FLG_DLP_EN: Direct Link Protocol is enabled
4855 1.1 pooka * @IWM_STA_FLG_SET_ALL_KEYS: the current key applies to all key IDs
4856 1.1 pooka * @IWM_STA_FLG_DRAIN_FLOW: drain flow
4857 1.1 pooka * @IWM_STA_FLG_PAN: STA is for PAN interface
4858 1.1 pooka * @IWM_STA_FLG_CLASS_AUTH:
4859 1.1 pooka * @IWM_STA_FLG_CLASS_ASSOC:
4860 1.1 pooka * @IWM_STA_FLG_CLASS_MIMO_PROT:
4861 1.1 pooka * @IWM_STA_FLG_MAX_AGG_SIZE_MSK: maximal size for A-MPDU
4862 1.1 pooka * @IWM_STA_FLG_AGG_MPDU_DENS_MSK: maximal MPDU density for Tx aggregation
4863 1.1 pooka * @IWM_STA_FLG_FAT_EN_MSK: support for channel width (for Tx). This flag is
4864 1.1 pooka * initialised by driver and can be updated by fw upon reception of
4865 1.1 pooka * action frames that can change the channel width. When cleared the fw
4866 1.1 pooka * will send all the frames in 20MHz even when FAT channel is requested.
4867 1.1 pooka * @IWM_STA_FLG_MIMO_EN_MSK: support for MIMO. This flag is initialised by the
4868 1.1 pooka * driver and can be updated by fw upon reception of action frames.
4869 1.1 pooka * @IWM_STA_FLG_MFP_EN: Management Frame Protection
4870 1.1 pooka */
4871 1.1 pooka enum iwm_sta_flags {
4872 1.1 pooka IWM_STA_FLG_REDUCED_TX_PWR_CTRL = (1 << 3),
4873 1.1 pooka IWM_STA_FLG_REDUCED_TX_PWR_DATA = (1 << 6),
4874 1.1 pooka
4875 1.1 pooka IWM_STA_FLG_FLG_ANT_A = (1 << 4),
4876 1.1 pooka IWM_STA_FLG_FLG_ANT_B = (2 << 4),
4877 1.1 pooka IWM_STA_FLG_FLG_ANT_MSK = (IWM_STA_FLG_FLG_ANT_A |
4878 1.1 pooka IWM_STA_FLG_FLG_ANT_B),
4879 1.1 pooka
4880 1.1 pooka IWM_STA_FLG_PS = (1 << 8),
4881 1.1 pooka IWM_STA_FLG_DRAIN_FLOW = (1 << 12),
4882 1.1 pooka IWM_STA_FLG_PAN = (1 << 13),
4883 1.1 pooka IWM_STA_FLG_CLASS_AUTH = (1 << 14),
4884 1.1 pooka IWM_STA_FLG_CLASS_ASSOC = (1 << 15),
4885 1.1 pooka IWM_STA_FLG_RTS_MIMO_PROT = (1 << 17),
4886 1.1 pooka
4887 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_SHIFT = 19,
4888 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_8K = (0 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4889 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_16K = (1 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4890 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_32K = (2 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4891 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_64K = (3 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4892 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_128K = (4 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4893 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_256K = (5 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4894 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_512K = (6 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4895 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_1024K = (7 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4896 1.1 pooka IWM_STA_FLG_MAX_AGG_SIZE_MSK = (7 << IWM_STA_FLG_MAX_AGG_SIZE_SHIFT),
4897 1.1 pooka
4898 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_SHIFT = 23,
4899 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_2US = (4 << IWM_STA_FLG_AGG_MPDU_DENS_SHIFT),
4900 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_4US = (5 << IWM_STA_FLG_AGG_MPDU_DENS_SHIFT),
4901 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_8US = (6 << IWM_STA_FLG_AGG_MPDU_DENS_SHIFT),
4902 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_16US = (7 << IWM_STA_FLG_AGG_MPDU_DENS_SHIFT),
4903 1.1 pooka IWM_STA_FLG_AGG_MPDU_DENS_MSK = (7 << IWM_STA_FLG_AGG_MPDU_DENS_SHIFT),
4904 1.1 pooka
4905 1.1 pooka IWM_STA_FLG_FAT_EN_20MHZ = (0 << 26),
4906 1.1 pooka IWM_STA_FLG_FAT_EN_40MHZ = (1 << 26),
4907 1.1 pooka IWM_STA_FLG_FAT_EN_80MHZ = (2 << 26),
4908 1.1 pooka IWM_STA_FLG_FAT_EN_160MHZ = (3 << 26),
4909 1.1 pooka IWM_STA_FLG_FAT_EN_MSK = (3 << 26),
4910 1.1 pooka
4911 1.1 pooka IWM_STA_FLG_MIMO_EN_SISO = (0 << 28),
4912 1.1 pooka IWM_STA_FLG_MIMO_EN_MIMO2 = (1 << 28),
4913 1.1 pooka IWM_STA_FLG_MIMO_EN_MIMO3 = (2 << 28),
4914 1.1 pooka IWM_STA_FLG_MIMO_EN_MSK = (3 << 28),
4915 1.1 pooka };
4916 1.1 pooka
4917 1.1 pooka /**
4918 1.1 pooka * enum iwm_sta_key_flag - key flags for the ADD_STA host command
4919 1.1 pooka * @IWM_STA_KEY_FLG_NO_ENC: no encryption
4920 1.1 pooka * @IWM_STA_KEY_FLG_WEP: WEP encryption algorithm
4921 1.1 pooka * @IWM_STA_KEY_FLG_CCM: CCMP encryption algorithm
4922 1.1 pooka * @IWM_STA_KEY_FLG_TKIP: TKIP encryption algorithm
4923 1.1 pooka * @IWM_STA_KEY_FLG_EXT: extended cipher algorithm (depends on the FW support)
4924 1.1 pooka * @IWM_STA_KEY_FLG_CMAC: CMAC encryption algorithm
4925 1.1 pooka * @IWM_STA_KEY_FLG_ENC_UNKNOWN: unknown encryption algorithm
4926 1.1 pooka * @IWM_STA_KEY_FLG_EN_MSK: mask for encryption algorithmi value
4927 1.1 pooka * @IWM_STA_KEY_FLG_WEP_KEY_MAP: wep is either a group key (0 - legacy WEP) or from
4928 1.1 pooka * station info array (1 - n 1X mode)
4929 1.1 pooka * @IWM_STA_KEY_FLG_KEYID_MSK: the index of the key
4930 1.1 pooka * @IWM_STA_KEY_NOT_VALID: key is invalid
4931 1.1 pooka * @IWM_STA_KEY_FLG_WEP_13BYTES: set for 13 bytes WEP key
4932 1.1 pooka * @IWM_STA_KEY_MULTICAST: set for multical key
4933 1.1 pooka * @IWM_STA_KEY_MFP: key is used for Management Frame Protection
4934 1.1 pooka */
4935 1.1 pooka enum iwm_sta_key_flag {
4936 1.1 pooka IWM_STA_KEY_FLG_NO_ENC = (0 << 0),
4937 1.1 pooka IWM_STA_KEY_FLG_WEP = (1 << 0),
4938 1.1 pooka IWM_STA_KEY_FLG_CCM = (2 << 0),
4939 1.1 pooka IWM_STA_KEY_FLG_TKIP = (3 << 0),
4940 1.1 pooka IWM_STA_KEY_FLG_EXT = (4 << 0),
4941 1.1 pooka IWM_STA_KEY_FLG_CMAC = (6 << 0),
4942 1.1 pooka IWM_STA_KEY_FLG_ENC_UNKNOWN = (7 << 0),
4943 1.1 pooka IWM_STA_KEY_FLG_EN_MSK = (7 << 0),
4944 1.1 pooka
4945 1.1 pooka IWM_STA_KEY_FLG_WEP_KEY_MAP = (1 << 3),
4946 1.1 pooka IWM_STA_KEY_FLG_KEYID_POS = 8,
4947 1.1 pooka IWM_STA_KEY_FLG_KEYID_MSK = (3 << IWM_STA_KEY_FLG_KEYID_POS),
4948 1.1 pooka IWM_STA_KEY_NOT_VALID = (1 << 11),
4949 1.1 pooka IWM_STA_KEY_FLG_WEP_13BYTES = (1 << 12),
4950 1.1 pooka IWM_STA_KEY_MULTICAST = (1 << 14),
4951 1.1 pooka IWM_STA_KEY_MFP = (1 << 15),
4952 1.1 pooka };
4953 1.1 pooka
4954 1.1 pooka /**
4955 1.1 pooka * enum iwm_sta_modify_flag - indicate to the fw what flag are being changed
4956 1.1 pooka * @IWM_STA_MODIFY_KEY: this command modifies %key
4957 1.1 pooka * @IWM_STA_MODIFY_TID_DISABLE_TX: this command modifies %tid_disable_tx
4958 1.1 pooka * @IWM_STA_MODIFY_TX_RATE: unused
4959 1.1 pooka * @IWM_STA_MODIFY_ADD_BA_TID: this command modifies %add_immediate_ba_tid
4960 1.1 pooka * @IWM_STA_MODIFY_REMOVE_BA_TID: this command modifies %remove_immediate_ba_tid
4961 1.1 pooka * @IWM_STA_MODIFY_SLEEPING_STA_TX_COUNT: this command modifies %sleep_tx_count
4962 1.1 pooka * @IWM_STA_MODIFY_PROT_TH:
4963 1.1 pooka * @IWM_STA_MODIFY_QUEUES: modify the queues used by this station
4964 1.1 pooka */
4965 1.1 pooka enum iwm_sta_modify_flag {
4966 1.1 pooka IWM_STA_MODIFY_KEY = (1 << 0),
4967 1.1 pooka IWM_STA_MODIFY_TID_DISABLE_TX = (1 << 1),
4968 1.1 pooka IWM_STA_MODIFY_TX_RATE = (1 << 2),
4969 1.1 pooka IWM_STA_MODIFY_ADD_BA_TID = (1 << 3),
4970 1.1 pooka IWM_STA_MODIFY_REMOVE_BA_TID = (1 << 4),
4971 1.1 pooka IWM_STA_MODIFY_SLEEPING_STA_TX_COUNT = (1 << 5),
4972 1.1 pooka IWM_STA_MODIFY_PROT_TH = (1 << 6),
4973 1.1 pooka IWM_STA_MODIFY_QUEUES = (1 << 7),
4974 1.1 pooka };
4975 1.1 pooka
4976 1.1 pooka #define IWM_STA_MODE_MODIFY 1
4977 1.1 pooka
4978 1.1 pooka /**
4979 1.1 pooka * enum iwm_sta_sleep_flag - type of sleep of the station
4980 1.1 pooka * @IWM_STA_SLEEP_STATE_AWAKE:
4981 1.1 pooka * @IWM_STA_SLEEP_STATE_PS_POLL:
4982 1.1 pooka * @IWM_STA_SLEEP_STATE_UAPSD:
4983 1.1 pooka */
4984 1.1 pooka enum iwm_sta_sleep_flag {
4985 1.1 pooka IWM_STA_SLEEP_STATE_AWAKE = 0,
4986 1.1 pooka IWM_STA_SLEEP_STATE_PS_POLL = (1 << 0),
4987 1.1 pooka IWM_STA_SLEEP_STATE_UAPSD = (1 << 1),
4988 1.1 pooka };
4989 1.1 pooka
4990 1.1 pooka /* STA ID and color bits definitions */
4991 1.1 pooka #define IWM_STA_ID_SEED (0x0f)
4992 1.1 pooka #define IWM_STA_ID_POS (0)
4993 1.1 pooka #define IWM_STA_ID_MSK (IWM_STA_ID_SEED << IWM_STA_ID_POS)
4994 1.1 pooka
4995 1.1 pooka #define IWM_STA_COLOR_SEED (0x7)
4996 1.1 pooka #define IWM_STA_COLOR_POS (4)
4997 1.1 pooka #define IWM_STA_COLOR_MSK (IWM_STA_COLOR_SEED << IWM_STA_COLOR_POS)
4998 1.1 pooka
4999 1.1 pooka #define IWM_STA_ID_N_COLOR_GET_COLOR(id_n_color) \
5000 1.1 pooka (((id_n_color) & IWM_STA_COLOR_MSK) >> IWM_STA_COLOR_POS)
5001 1.1 pooka #define IWM_STA_ID_N_COLOR_GET_ID(id_n_color) \
5002 1.1 pooka (((id_n_color) & IWM_STA_ID_MSK) >> IWM_STA_ID_POS)
5003 1.1 pooka
5004 1.1 pooka #define IWM_STA_KEY_MAX_NUM (16)
5005 1.1 pooka #define IWM_STA_KEY_IDX_INVALID (0xff)
5006 1.1 pooka #define IWM_STA_KEY_MAX_DATA_KEY_NUM (4)
5007 1.1 pooka #define IWM_MAX_GLOBAL_KEYS (4)
5008 1.1 pooka #define IWM_STA_KEY_LEN_WEP40 (5)
5009 1.1 pooka #define IWM_STA_KEY_LEN_WEP104 (13)
5010 1.1 pooka
5011 1.1 pooka /**
5012 1.1 pooka * struct iwm_mvm_keyinfo - key information
5013 1.1 pooka * @key_flags: type %iwm_sta_key_flag
5014 1.1 pooka * @tkip_rx_tsc_byte2: TSC[2] for key mix ph1 detection
5015 1.1 pooka * @tkip_rx_ttak: 10-byte unicast TKIP TTAK for Rx
5016 1.1 pooka * @key_offset: key offset in the fw's key table
5017 1.1 pooka * @key: 16-byte unicast decryption key
5018 1.1 pooka * @tx_secur_seq_cnt: initial RSC / PN needed for replay check
5019 1.1 pooka * @hw_tkip_mic_rx_key: byte: MIC Rx Key - used for TKIP only
5020 1.1 pooka * @hw_tkip_mic_tx_key: byte: MIC Tx Key - used for TKIP only
5021 1.1 pooka */
5022 1.1 pooka struct iwm_mvm_keyinfo {
5023 1.1 pooka uint16_t key_flags;
5024 1.1 pooka uint8_t tkip_rx_tsc_byte2;
5025 1.1 pooka uint8_t reserved1;
5026 1.1 pooka uint16_t tkip_rx_ttak[5];
5027 1.1 pooka uint8_t key_offset;
5028 1.1 pooka uint8_t reserved2;
5029 1.1 pooka uint8_t key[16];
5030 1.1 pooka uint64_t tx_secur_seq_cnt;
5031 1.1 pooka uint64_t hw_tkip_mic_rx_key;
5032 1.1 pooka uint64_t hw_tkip_mic_tx_key;
5033 1.1 pooka } __packed;
5034 1.1 pooka
5035 1.1 pooka /**
5036 1.1 pooka * struct iwm_mvm_add_sta_cmd_v5 - Add/modify a station in the fw's sta table.
5037 1.1 pooka * ( IWM_REPLY_ADD_STA = 0x18 )
5038 1.1 pooka * @add_modify: 1: modify existing, 0: add new station
5039 1.1 pooka * @unicast_tx_key_id: unicast tx key id. Relevant only when unicast key sent
5040 1.1 pooka * @multicast_tx_key_id: multicast tx key id. Relevant only when multicast key
5041 1.1 pooka * sent
5042 1.1 pooka * @mac_id_n_color: the Mac context this station belongs to
5043 1.1 pooka * @addr[ETHER_ADDR_LEN]: station's MAC address
5044 1.1 pooka * @sta_id: index of station in uCode's station table
5045 1.1 pooka * @modify_mask: IWM_STA_MODIFY_*, selects which parameters to modify vs. leave
5046 1.1 pooka * alone. 1 - modify, 0 - don't change.
5047 1.1 pooka * @key: look at %iwm_mvm_keyinfo
5048 1.1 pooka * @station_flags: look at %iwm_sta_flags
5049 1.1 pooka * @station_flags_msk: what of %station_flags have changed
5050 1.1 pooka * @tid_disable_tx: is tid BIT(tid) enabled for Tx. Clear BIT(x) to enable
5051 1.1 pooka * AMPDU for tid x. Set %IWM_STA_MODIFY_TID_DISABLE_TX to change this field.
5052 1.1 pooka * @add_immediate_ba_tid: tid for which to add block-ack support (Rx)
5053 1.1 pooka * Set %IWM_STA_MODIFY_ADD_BA_TID to use this field, and also set
5054 1.1 pooka * add_immediate_ba_ssn.
5055 1.1 pooka * @remove_immediate_ba_tid: tid for which to remove block-ack support (Rx)
5056 1.1 pooka * Set %IWM_STA_MODIFY_REMOVE_BA_TID to use this field
5057 1.1 pooka * @add_immediate_ba_ssn: ssn for the Rx block-ack session. Used together with
5058 1.1 pooka * add_immediate_ba_tid.
5059 1.1 pooka * @sleep_tx_count: number of packets to transmit to station even though it is
5060 1.1 pooka * asleep. Used to synchronise PS-poll and u-APSD responses while ucode
5061 1.1 pooka * keeps track of STA sleep state.
5062 1.1 pooka * @sleep_state_flags: Look at %iwm_sta_sleep_flag.
5063 1.1 pooka * @assoc_id: assoc_id to be sent in VHT PLCP (9-bit), for grp use 0, for AP
5064 1.1 pooka * mac-addr.
5065 1.1 pooka * @beamform_flags: beam forming controls
5066 1.1 pooka * @tfd_queue_msk: tfd queues used by this station
5067 1.1 pooka *
5068 1.1 pooka * The device contains an internal table of per-station information, with info
5069 1.1 pooka * on security keys, aggregation parameters, and Tx rates for initial Tx
5070 1.1 pooka * attempt and any retries (set by IWM_REPLY_TX_LINK_QUALITY_CMD).
5071 1.1 pooka *
5072 1.1 pooka * ADD_STA sets up the table entry for one station, either creating a new
5073 1.1 pooka * entry, or modifying a pre-existing one.
5074 1.1 pooka */
5075 1.1 pooka struct iwm_mvm_add_sta_cmd_v5 {
5076 1.1 pooka uint8_t add_modify;
5077 1.1 pooka uint8_t unicast_tx_key_id;
5078 1.1 pooka uint8_t multicast_tx_key_id;
5079 1.1 pooka uint8_t reserved1;
5080 1.1 pooka uint32_t mac_id_n_color;
5081 1.1 pooka uint8_t addr[ETHER_ADDR_LEN];
5082 1.1 pooka uint16_t reserved2;
5083 1.1 pooka uint8_t sta_id;
5084 1.1 pooka uint8_t modify_mask;
5085 1.1 pooka uint16_t reserved3;
5086 1.1 pooka struct iwm_mvm_keyinfo key;
5087 1.1 pooka uint32_t station_flags;
5088 1.1 pooka uint32_t station_flags_msk;
5089 1.1 pooka uint16_t tid_disable_tx;
5090 1.1 pooka uint16_t reserved4;
5091 1.1 pooka uint8_t add_immediate_ba_tid;
5092 1.1 pooka uint8_t remove_immediate_ba_tid;
5093 1.1 pooka uint16_t add_immediate_ba_ssn;
5094 1.1 pooka uint16_t sleep_tx_count;
5095 1.1 pooka uint16_t sleep_state_flags;
5096 1.1 pooka uint16_t assoc_id;
5097 1.1 pooka uint16_t beamform_flags;
5098 1.1 pooka uint32_t tfd_queue_msk;
5099 1.1 pooka } __packed; /* IWM_ADD_STA_CMD_API_S_VER_5 */
5100 1.1 pooka
5101 1.1 pooka /**
5102 1.1 pooka * struct iwm_mvm_add_sta_cmd_v6 - Add / modify a station
5103 1.1 pooka * VER_6 of this command is quite similar to VER_5 except
5104 1.1 pooka * exclusion of all fields related to the security key installation.
5105 1.1 pooka */
5106 1.1 pooka struct iwm_mvm_add_sta_cmd_v6 {
5107 1.1 pooka uint8_t add_modify;
5108 1.1 pooka uint8_t reserved1;
5109 1.1 pooka uint16_t tid_disable_tx;
5110 1.1 pooka uint32_t mac_id_n_color;
5111 1.1 pooka uint8_t addr[ETHER_ADDR_LEN]; /* _STA_ID_MODIFY_INFO_API_S_VER_1 */
5112 1.1 pooka uint16_t reserved2;
5113 1.1 pooka uint8_t sta_id;
5114 1.1 pooka uint8_t modify_mask;
5115 1.1 pooka uint16_t reserved3;
5116 1.1 pooka uint32_t station_flags;
5117 1.1 pooka uint32_t station_flags_msk;
5118 1.1 pooka uint8_t add_immediate_ba_tid;
5119 1.1 pooka uint8_t remove_immediate_ba_tid;
5120 1.1 pooka uint16_t add_immediate_ba_ssn;
5121 1.1 pooka uint16_t sleep_tx_count;
5122 1.1 pooka uint16_t sleep_state_flags;
5123 1.1 pooka uint16_t assoc_id;
5124 1.1 pooka uint16_t beamform_flags;
5125 1.1 pooka uint32_t tfd_queue_msk;
5126 1.1 pooka } __packed; /* IWM_ADD_STA_CMD_API_S_VER_6 */
5127 1.1 pooka
5128 1.1 pooka /**
5129 1.1 pooka * struct iwm_mvm_add_sta_key_cmd - add/modify sta key
5130 1.1 pooka * ( IWM_REPLY_ADD_STA_KEY = 0x17 )
5131 1.1 pooka * @sta_id: index of station in uCode's station table
5132 1.1 pooka * @key_offset: key offset in key storage
5133 1.1 pooka * @key_flags: type %iwm_sta_key_flag
5134 1.1 pooka * @key: key material data
5135 1.1 pooka * @key2: key material data
5136 1.1 pooka * @rx_secur_seq_cnt: RX security sequence counter for the key
5137 1.1 pooka * @tkip_rx_tsc_byte2: TSC[2] for key mix ph1 detection
5138 1.1 pooka * @tkip_rx_ttak: 10-byte unicast TKIP TTAK for Rx
5139 1.1 pooka */
5140 1.1 pooka struct iwm_mvm_add_sta_key_cmd {
5141 1.1 pooka uint8_t sta_id;
5142 1.1 pooka uint8_t key_offset;
5143 1.1 pooka uint16_t key_flags;
5144 1.1 pooka uint8_t key[16];
5145 1.1 pooka uint8_t key2[16];
5146 1.1 pooka uint8_t rx_secur_seq_cnt[16];
5147 1.1 pooka uint8_t tkip_rx_tsc_byte2;
5148 1.1 pooka uint8_t reserved;
5149 1.1 pooka uint16_t tkip_rx_ttak[5];
5150 1.1 pooka } __packed; /* IWM_ADD_MODIFY_STA_KEY_API_S_VER_1 */
5151 1.1 pooka
5152 1.1 pooka /**
5153 1.1 pooka * enum iwm_mvm_add_sta_rsp_status - status in the response to ADD_STA command
5154 1.1 pooka * @IWM_ADD_STA_SUCCESS: operation was executed successfully
5155 1.1 pooka * @IWM_ADD_STA_STATIONS_OVERLOAD: no room left in the fw's station table
5156 1.1 pooka * @IWM_ADD_STA_IMMEDIATE_BA_FAILURE: can't add Rx block ack session
5157 1.1 pooka * @IWM_ADD_STA_MODIFY_NON_EXISTING_STA: driver requested to modify a station
5158 1.1 pooka * that doesn't exist.
5159 1.1 pooka */
5160 1.1 pooka enum iwm_mvm_add_sta_rsp_status {
5161 1.1 pooka IWM_ADD_STA_SUCCESS = 0x1,
5162 1.1 pooka IWM_ADD_STA_STATIONS_OVERLOAD = 0x2,
5163 1.1 pooka IWM_ADD_STA_IMMEDIATE_BA_FAILURE = 0x4,
5164 1.1 pooka IWM_ADD_STA_MODIFY_NON_EXISTING_STA = 0x8,
5165 1.1 pooka };
5166 1.1 pooka
5167 1.1 pooka /**
5168 1.1 pooka * struct iwm_mvm_rm_sta_cmd - Add / modify a station in the fw's station table
5169 1.1 pooka * ( IWM_REMOVE_STA = 0x19 )
5170 1.1 pooka * @sta_id: the station id of the station to be removed
5171 1.1 pooka */
5172 1.1 pooka struct iwm_mvm_rm_sta_cmd {
5173 1.1 pooka uint8_t sta_id;
5174 1.1 pooka uint8_t reserved[3];
5175 1.1 pooka } __packed; /* IWM_REMOVE_STA_CMD_API_S_VER_2 */
5176 1.1 pooka
5177 1.1 pooka /**
5178 1.1 pooka * struct iwm_mvm_mgmt_mcast_key_cmd
5179 1.1 pooka * ( IWM_MGMT_MCAST_KEY = 0x1f )
5180 1.1 pooka * @ctrl_flags: %iwm_sta_key_flag
5181 1.1 pooka * @IGTK:
5182 1.1 pooka * @K1: IGTK master key
5183 1.1 pooka * @K2: IGTK sub key
5184 1.1 pooka * @sta_id: station ID that support IGTK
5185 1.1 pooka * @key_id:
5186 1.1 pooka * @receive_seq_cnt: initial RSC/PN needed for replay check
5187 1.1 pooka */
5188 1.1 pooka struct iwm_mvm_mgmt_mcast_key_cmd {
5189 1.1 pooka uint32_t ctrl_flags;
5190 1.1 pooka uint8_t IGTK[16];
5191 1.1 pooka uint8_t K1[16];
5192 1.1 pooka uint8_t K2[16];
5193 1.1 pooka uint32_t key_id;
5194 1.1 pooka uint32_t sta_id;
5195 1.1 pooka uint64_t receive_seq_cnt;
5196 1.1 pooka } __packed; /* SEC_MGMT_MULTICAST_KEY_CMD_API_S_VER_1 */
5197 1.1 pooka
5198 1.1 pooka struct iwm_mvm_wep_key {
5199 1.1 pooka uint8_t key_index;
5200 1.1 pooka uint8_t key_offset;
5201 1.1 pooka uint16_t reserved1;
5202 1.1 pooka uint8_t key_size;
5203 1.1 pooka uint8_t reserved2[3];
5204 1.1 pooka uint8_t key[16];
5205 1.1 pooka } __packed;
5206 1.1 pooka
5207 1.1 pooka struct iwm_mvm_wep_key_cmd {
5208 1.1 pooka uint32_t mac_id_n_color;
5209 1.1 pooka uint8_t num_keys;
5210 1.1 pooka uint8_t decryption_type;
5211 1.1 pooka uint8_t flags;
5212 1.1 pooka uint8_t reserved;
5213 1.1 pooka struct iwm_mvm_wep_key wep_key[0];
5214 1.1 pooka } __packed; /* SEC_CURR_WEP_KEY_CMD_API_S_VER_2 */
5215 1.1 pooka
5216 1.1 pooka
5217 1.1 pooka /*
5218 1.1 pooka * END mvm/fw-api-sta.h
5219 1.1 pooka */
5220 1.1 pooka
5221 1.1 pooka /*
5222 1.1 pooka * Some cherry-picked definitions
5223 1.1 pooka */
5224 1.1 pooka
5225 1.1 pooka #define IWM_FRAME_LIMIT 64
5226 1.1 pooka
5227 1.1 pooka struct iwm_cmd_header {
5228 1.1 pooka uint8_t code;
5229 1.1 pooka uint8_t flags;
5230 1.1 pooka uint8_t idx;
5231 1.1 pooka uint8_t qid;
5232 1.1 pooka } __packed;
5233 1.1 pooka
5234 1.1 pooka enum iwm_power_scheme {
5235 1.2 nonaka IWM_POWER_SCHEME_CAM = 1,
5236 1.2 nonaka IWM_POWER_SCHEME_BPS,
5237 1.2 nonaka IWM_POWER_SCHEME_LP
5238 1.1 pooka };
5239 1.1 pooka
5240 1.1 pooka #define IWM_DEF_CMD_PAYLOAD_SIZE 320
5241 1.1 pooka #define IWM_CMD_FAILED_MSK 0x40
5242 1.1 pooka
5243 1.1 pooka struct iwm_device_cmd {
5244 1.1 pooka struct iwm_cmd_header hdr;
5245 1.1 pooka
5246 1.1 pooka uint8_t data[IWM_DEF_CMD_PAYLOAD_SIZE];
5247 1.1 pooka } __packed;
5248 1.1 pooka
5249 1.1 pooka struct iwm_rx_packet {
5250 1.2 nonaka /*
5251 1.2 nonaka * The first 4 bytes of the RX frame header contain both the RX frame
5252 1.2 nonaka * size and some flags.
5253 1.2 nonaka * Bit fields:
5254 1.2 nonaka * 31: flag flush RB request
5255 1.2 nonaka * 30: flag ignore TC (terminal counter) request
5256 1.2 nonaka * 29: flag fast IRQ request
5257 1.2 nonaka * 28-14: Reserved
5258 1.2 nonaka * 13-00: RX frame size
5259 1.2 nonaka */
5260 1.2 nonaka uint32_t len_n_flags;
5261 1.2 nonaka struct iwm_cmd_header hdr;
5262 1.2 nonaka uint8_t data[];
5263 1.1 pooka } __packed;
5264 1.1 pooka
5265 1.1 pooka #define IWM_FH_RSCSR_FRAME_SIZE_MSK 0x00003fff
5266 1.1 pooka
5267 1.1 pooka static uint32_t
5268 1.1 pooka iwm_rx_packet_len(const struct iwm_rx_packet *pkt)
5269 1.1 pooka {
5270 1.1 pooka
5271 1.2 nonaka return le32toh(pkt->len_n_flags) & IWM_FH_RSCSR_FRAME_SIZE_MSK;
5272 1.1 pooka }
5273 1.1 pooka
5274 1.1 pooka static uint32_t
5275 1.1 pooka iwm_rx_packet_payload_len(const struct iwm_rx_packet *pkt)
5276 1.1 pooka {
5277 1.1 pooka
5278 1.2 nonaka return iwm_rx_packet_len(pkt) - sizeof(pkt->hdr);
5279 1.1 pooka }
5280 1.1 pooka
5281 1.1 pooka
5282 1.1 pooka #define IWM_MIN_DBM -100
5283 1.1 pooka #define IWM_MAX_DBM -33 /* realistic guess */
5284 1.1 pooka
5285 1.1 pooka #define IWM_READ(sc, reg) \
5286 1.1 pooka bus_space_read_4((sc)->sc_st, (sc)->sc_sh, (reg))
5287 1.1 pooka
5288 1.1 pooka #define IWM_WRITE(sc, reg, val) \
5289 1.1 pooka bus_space_write_4((sc)->sc_st, (sc)->sc_sh, (reg), (val))
5290 1.1 pooka
5291 1.1 pooka #define IWM_WRITE_1(sc, reg, val) \
5292 1.1 pooka bus_space_write_1((sc)->sc_st, (sc)->sc_sh, (reg), (val))
5293 1.1 pooka
5294 1.1 pooka #define IWM_SETBITS(sc, reg, mask) \
5295 1.1 pooka IWM_WRITE(sc, reg, IWM_READ(sc, reg) | (mask))
5296 1.1 pooka
5297 1.1 pooka #define IWM_CLRBITS(sc, reg, mask) \
5298 1.1 pooka IWM_WRITE(sc, reg, IWM_READ(sc, reg) & ~(mask))
5299 1.1 pooka
5300 1.1 pooka #define IWM_BARRIER_WRITE(sc) \
5301 1.1 pooka bus_space_barrier((sc)->sc_st, (sc)->sc_sh, 0, (sc)->sc_sz, \
5302 1.1 pooka BUS_SPACE_BARRIER_WRITE)
5303 1.1 pooka
5304 1.1 pooka #define IWM_BARRIER_READ_WRITE(sc) \
5305 1.1 pooka bus_space_barrier((sc)->sc_st, (sc)->sc_sh, 0, (sc)->sc_sz, \
5306 1.1 pooka BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE)
5307