]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h
Merge remote-tracking branch 'usb/usb-next'
[karo-tx-linux.git] / drivers / net / wireless / intel / iwlwifi / mvm / fw-api.h
1 /******************************************************************************
2  *
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * GPL LICENSE SUMMARY
7  *
8  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10  * Copyright(c) 2016        Intel Deutschland GmbH
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of version 2 of the GNU General Public License as
14  * published by the Free Software Foundation.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24  * USA
25  *
26  * The full GNU General Public License is included in this distribution
27  * in the file called COPYING.
28  *
29  * Contact Information:
30  *  Intel Linux Wireless <linuxwifi@intel.com>
31  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32  *
33  * BSD LICENSE
34  *
35  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
36  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
37  * Copyright(c) 2016        Intel Deutschland GmbH
38  * All rights reserved.
39  *
40  * Redistribution and use in source and binary forms, with or without
41  * modification, are permitted provided that the following conditions
42  * are met:
43  *
44  *  * Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  *  * Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in
48  *    the documentation and/or other materials provided with the
49  *    distribution.
50  *  * Neither the name Intel Corporation nor the names of its
51  *    contributors may be used to endorse or promote products derived
52  *    from this software without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65  *
66  *****************************************************************************/
67
68 #ifndef __fw_api_h__
69 #define __fw_api_h__
70
71 #include "fw-api-rs.h"
72 #include "fw-api-rx.h"
73 #include "fw-api-tx.h"
74 #include "fw-api-sta.h"
75 #include "fw-api-mac.h"
76 #include "fw-api-power.h"
77 #include "fw-api-d3.h"
78 #include "fw-api-coex.h"
79 #include "fw-api-scan.h"
80 #include "fw-api-stats.h"
81 #include "fw-api-tof.h"
82
83 /* Tx queue numbers */
84 enum {
85         IWL_MVM_OFFCHANNEL_QUEUE = 8,
86         IWL_MVM_CMD_QUEUE = 9,
87 };
88
89 enum iwl_mvm_tx_fifo {
90         IWL_MVM_TX_FIFO_BK = 0,
91         IWL_MVM_TX_FIFO_BE,
92         IWL_MVM_TX_FIFO_VI,
93         IWL_MVM_TX_FIFO_VO,
94         IWL_MVM_TX_FIFO_MCAST = 5,
95         IWL_MVM_TX_FIFO_CMD = 7,
96 };
97
98 #define IWL_MVM_STATION_COUNT   16
99
100 #define IWL_MVM_TDLS_STA_COUNT  4
101
102 /* commands */
103 enum {
104         MVM_ALIVE = 0x1,
105         REPLY_ERROR = 0x2,
106         ECHO_CMD = 0x3,
107
108         INIT_COMPLETE_NOTIF = 0x4,
109
110         /* PHY context commands */
111         PHY_CONTEXT_CMD = 0x8,
112         DBG_CFG = 0x9,
113         ANTENNA_COUPLING_NOTIFICATION = 0xa,
114
115         /* UMAC scan commands */
116         SCAN_ITERATION_COMPLETE_UMAC = 0xb5,
117         SCAN_CFG_CMD = 0xc,
118         SCAN_REQ_UMAC = 0xd,
119         SCAN_ABORT_UMAC = 0xe,
120         SCAN_COMPLETE_UMAC = 0xf,
121
122         /* station table */
123         ADD_STA_KEY = 0x17,
124         ADD_STA = 0x18,
125         REMOVE_STA = 0x19,
126
127         /* paging get item */
128         FW_GET_ITEM_CMD = 0x1a,
129
130         /* TX */
131         TX_CMD = 0x1c,
132         TXPATH_FLUSH = 0x1e,
133         MGMT_MCAST_KEY = 0x1f,
134
135         /* scheduler config */
136         SCD_QUEUE_CFG = 0x1d,
137
138         /* global key */
139         WEP_KEY = 0x20,
140
141         /* Memory */
142         SHARED_MEM_CFG = 0x25,
143
144         /* TDLS */
145         TDLS_CHANNEL_SWITCH_CMD = 0x27,
146         TDLS_CHANNEL_SWITCH_NOTIFICATION = 0xaa,
147         TDLS_CONFIG_CMD = 0xa7,
148
149         /* MAC and Binding commands */
150         MAC_CONTEXT_CMD = 0x28,
151         TIME_EVENT_CMD = 0x29, /* both CMD and response */
152         TIME_EVENT_NOTIFICATION = 0x2a,
153         BINDING_CONTEXT_CMD = 0x2b,
154         TIME_QUOTA_CMD = 0x2c,
155         NON_QOS_TX_COUNTER_CMD = 0x2d,
156
157         LQ_CMD = 0x4e,
158
159         /* paging block to FW cpu2 */
160         FW_PAGING_BLOCK_CMD = 0x4f,
161
162         /* Scan offload */
163         SCAN_OFFLOAD_REQUEST_CMD = 0x51,
164         SCAN_OFFLOAD_ABORT_CMD = 0x52,
165         HOT_SPOT_CMD = 0x53,
166         SCAN_OFFLOAD_COMPLETE = 0x6D,
167         SCAN_OFFLOAD_UPDATE_PROFILES_CMD = 0x6E,
168         SCAN_OFFLOAD_CONFIG_CMD = 0x6f,
169         MATCH_FOUND_NOTIFICATION = 0xd9,
170         SCAN_ITERATION_COMPLETE = 0xe7,
171
172         /* Phy */
173         PHY_CONFIGURATION_CMD = 0x6a,
174         CALIB_RES_NOTIF_PHY_DB = 0x6b,
175         /* PHY_DB_CMD = 0x6c, */
176
177         /* ToF - 802.11mc FTM */
178         TOF_CMD = 0x10,
179         TOF_NOTIFICATION = 0x11,
180
181         /* Power - legacy power table command */
182         POWER_TABLE_CMD = 0x77,
183         PSM_UAPSD_AP_MISBEHAVING_NOTIFICATION = 0x78,
184         LTR_CONFIG = 0xee,
185
186         /* Thermal Throttling*/
187         REPLY_THERMAL_MNG_BACKOFF = 0x7e,
188
189         /* Set/Get DC2DC frequency tune */
190         DC2DC_CONFIG_CMD = 0x83,
191
192         /* NVM */
193         NVM_ACCESS_CMD = 0x88,
194
195         SET_CALIB_DEFAULT_CMD = 0x8e,
196
197         BEACON_NOTIFICATION = 0x90,
198         BEACON_TEMPLATE_CMD = 0x91,
199         TX_ANT_CONFIGURATION_CMD = 0x98,
200         STATISTICS_CMD = 0x9c,
201         STATISTICS_NOTIFICATION = 0x9d,
202         EOSP_NOTIFICATION = 0x9e,
203         REDUCE_TX_POWER_CMD = 0x9f,
204
205         /* RF-KILL commands and notifications */
206         CARD_STATE_CMD = 0xa0,
207         CARD_STATE_NOTIFICATION = 0xa1,
208
209         MISSED_BEACONS_NOTIFICATION = 0xa2,
210
211         /* Power - new power table command */
212         MAC_PM_POWER_TABLE = 0xa9,
213
214         MFUART_LOAD_NOTIFICATION = 0xb1,
215
216         RSS_CONFIG_CMD = 0xb3,
217
218         REPLY_RX_PHY_CMD = 0xc0,
219         REPLY_RX_MPDU_CMD = 0xc1,
220         FRAME_RELEASE = 0xc3,
221         BA_NOTIF = 0xc5,
222
223         /* Location Aware Regulatory */
224         MCC_UPDATE_CMD = 0xc8,
225         MCC_CHUB_UPDATE_CMD = 0xc9,
226
227         MARKER_CMD = 0xcb,
228
229         /* BT Coex */
230         BT_COEX_PRIO_TABLE = 0xcc,
231         BT_COEX_PROT_ENV = 0xcd,
232         BT_PROFILE_NOTIFICATION = 0xce,
233         BT_CONFIG = 0x9b,
234         BT_COEX_UPDATE_SW_BOOST = 0x5a,
235         BT_COEX_UPDATE_CORUN_LUT = 0x5b,
236         BT_COEX_UPDATE_REDUCED_TXP = 0x5c,
237         BT_COEX_CI = 0x5d,
238
239         REPLY_SF_CFG_CMD = 0xd1,
240         REPLY_BEACON_FILTERING_CMD = 0xd2,
241
242         /* DTS measurements */
243         CMD_DTS_MEASUREMENT_TRIGGER = 0xdc,
244         DTS_MEASUREMENT_NOTIFICATION = 0xdd,
245
246         REPLY_DEBUG_CMD = 0xf0,
247         LDBG_CONFIG_CMD = 0xf6,
248         DEBUG_LOG_MSG = 0xf7,
249
250         BCAST_FILTER_CMD = 0xcf,
251         MCAST_FILTER_CMD = 0xd0,
252
253         /* D3 commands/notifications */
254         D3_CONFIG_CMD = 0xd3,
255         PROT_OFFLOAD_CONFIG_CMD = 0xd4,
256         OFFLOADS_QUERY_CMD = 0xd5,
257         REMOTE_WAKE_CONFIG_CMD = 0xd6,
258         D0I3_END_CMD = 0xed,
259
260         /* for WoWLAN in particular */
261         WOWLAN_PATTERNS = 0xe0,
262         WOWLAN_CONFIGURATION = 0xe1,
263         WOWLAN_TSC_RSC_PARAM = 0xe2,
264         WOWLAN_TKIP_PARAM = 0xe3,
265         WOWLAN_KEK_KCK_MATERIAL = 0xe4,
266         WOWLAN_GET_STATUSES = 0xe5,
267         WOWLAN_TX_POWER_PER_DB = 0xe6,
268
269         /* and for NetDetect */
270         SCAN_OFFLOAD_PROFILES_QUERY_CMD = 0x56,
271         SCAN_OFFLOAD_HOTSPOTS_CONFIG_CMD = 0x58,
272         SCAN_OFFLOAD_HOTSPOTS_QUERY_CMD = 0x59,
273
274         REPLY_MAX = 0xff,
275 };
276
277 /* Please keep this enum *SORTED* by hex value.
278  * Needed for binary search, otherwise a warning will be triggered.
279  */
280 enum iwl_phy_ops_subcmd_ids {
281         CMD_DTS_MEASUREMENT_TRIGGER_WIDE = 0x0,
282         DTS_MEASUREMENT_NOTIF_WIDE = 0xFF,
283 };
284
285 enum iwl_prot_offload_subcmd_ids {
286         STORED_BEACON_NTF = 0xFF,
287 };
288
289 /* command groups */
290 enum {
291         LEGACY_GROUP = 0x0,
292         LONG_GROUP = 0x1,
293         PHY_OPS_GROUP = 0x4,
294         PROT_OFFLOAD_GROUP = 0xb,
295 };
296
297 /**
298  * struct iwl_cmd_response - generic response struct for most commands
299  * @status: status of the command asked, changes for each one
300  */
301 struct iwl_cmd_response {
302         __le32 status;
303 };
304
305 /*
306  * struct iwl_tx_ant_cfg_cmd
307  * @valid: valid antenna configuration
308  */
309 struct iwl_tx_ant_cfg_cmd {
310         __le32 valid;
311 } __packed;
312
313 /*
314  * Calibration control struct.
315  * Sent as part of the phy configuration command.
316  * @flow_trigger: bitmap for which calibrations to perform according to
317  *              flow triggers.
318  * @event_trigger: bitmap for which calibrations to perform according to
319  *              event triggers.
320  */
321 struct iwl_calib_ctrl {
322         __le32 flow_trigger;
323         __le32 event_trigger;
324 } __packed;
325
326 /* This enum defines the bitmap of various calibrations to enable in both
327  * init ucode and runtime ucode through CALIBRATION_CFG_CMD.
328  */
329 enum iwl_calib_cfg {
330         IWL_CALIB_CFG_XTAL_IDX                  = BIT(0),
331         IWL_CALIB_CFG_TEMPERATURE_IDX           = BIT(1),
332         IWL_CALIB_CFG_VOLTAGE_READ_IDX          = BIT(2),
333         IWL_CALIB_CFG_PAPD_IDX                  = BIT(3),
334         IWL_CALIB_CFG_TX_PWR_IDX                = BIT(4),
335         IWL_CALIB_CFG_DC_IDX                    = BIT(5),
336         IWL_CALIB_CFG_BB_FILTER_IDX             = BIT(6),
337         IWL_CALIB_CFG_LO_LEAKAGE_IDX            = BIT(7),
338         IWL_CALIB_CFG_TX_IQ_IDX                 = BIT(8),
339         IWL_CALIB_CFG_TX_IQ_SKEW_IDX            = BIT(9),
340         IWL_CALIB_CFG_RX_IQ_IDX                 = BIT(10),
341         IWL_CALIB_CFG_RX_IQ_SKEW_IDX            = BIT(11),
342         IWL_CALIB_CFG_SENSITIVITY_IDX           = BIT(12),
343         IWL_CALIB_CFG_CHAIN_NOISE_IDX           = BIT(13),
344         IWL_CALIB_CFG_DISCONNECTED_ANT_IDX      = BIT(14),
345         IWL_CALIB_CFG_ANT_COUPLING_IDX          = BIT(15),
346         IWL_CALIB_CFG_DAC_IDX                   = BIT(16),
347         IWL_CALIB_CFG_ABS_IDX                   = BIT(17),
348         IWL_CALIB_CFG_AGC_IDX                   = BIT(18),
349 };
350
351 /*
352  * Phy configuration command.
353  */
354 struct iwl_phy_cfg_cmd {
355         __le32  phy_cfg;
356         struct iwl_calib_ctrl calib_control;
357 } __packed;
358
359 #define PHY_CFG_RADIO_TYPE      (BIT(0) | BIT(1))
360 #define PHY_CFG_RADIO_STEP      (BIT(2) | BIT(3))
361 #define PHY_CFG_RADIO_DASH      (BIT(4) | BIT(5))
362 #define PHY_CFG_PRODUCT_NUMBER  (BIT(6) | BIT(7))
363 #define PHY_CFG_TX_CHAIN_A      BIT(8)
364 #define PHY_CFG_TX_CHAIN_B      BIT(9)
365 #define PHY_CFG_TX_CHAIN_C      BIT(10)
366 #define PHY_CFG_RX_CHAIN_A      BIT(12)
367 #define PHY_CFG_RX_CHAIN_B      BIT(13)
368 #define PHY_CFG_RX_CHAIN_C      BIT(14)
369
370
371 /* Target of the NVM_ACCESS_CMD */
372 enum {
373         NVM_ACCESS_TARGET_CACHE = 0,
374         NVM_ACCESS_TARGET_OTP = 1,
375         NVM_ACCESS_TARGET_EEPROM = 2,
376 };
377
378 /* Section types for NVM_ACCESS_CMD */
379 enum {
380         NVM_SECTION_TYPE_SW = 1,
381         NVM_SECTION_TYPE_REGULATORY = 3,
382         NVM_SECTION_TYPE_CALIBRATION = 4,
383         NVM_SECTION_TYPE_PRODUCTION = 5,
384         NVM_SECTION_TYPE_MAC_OVERRIDE = 11,
385         NVM_SECTION_TYPE_PHY_SKU = 12,
386         NVM_MAX_NUM_SECTIONS = 13,
387 };
388
389 /**
390  * struct iwl_nvm_access_cmd_ver2 - Request the device to send an NVM section
391  * @op_code: 0 - read, 1 - write
392  * @target: NVM_ACCESS_TARGET_*
393  * @type: NVM_SECTION_TYPE_*
394  * @offset: offset in bytes into the section
395  * @length: in bytes, to read/write
396  * @data: if write operation, the data to write. On read its empty
397  */
398 struct iwl_nvm_access_cmd {
399         u8 op_code;
400         u8 target;
401         __le16 type;
402         __le16 offset;
403         __le16 length;
404         u8 data[];
405 } __packed; /* NVM_ACCESS_CMD_API_S_VER_2 */
406
407 #define NUM_OF_FW_PAGING_BLOCKS 33 /* 32 for data and 1 block for CSS */
408
409 /*
410  * struct iwl_fw_paging_cmd - paging layout
411  *
412  * (FW_PAGING_BLOCK_CMD = 0x4f)
413  *
414  * Send to FW the paging layout in the driver.
415  *
416  * @flags: various flags for the command
417  * @block_size: the block size in powers of 2
418  * @block_num: number of blocks specified in the command.
419  * @device_phy_addr: virtual addresses from device side
420 */
421 struct iwl_fw_paging_cmd {
422         __le32 flags;
423         __le32 block_size;
424         __le32 block_num;
425         __le32 device_phy_addr[NUM_OF_FW_PAGING_BLOCKS];
426 } __packed; /* FW_PAGING_BLOCK_CMD_API_S_VER_1 */
427
428 /*
429  * Fw items ID's
430  *
431  * @IWL_FW_ITEM_ID_PAGING: Address of the pages that the FW will upload
432  *      download
433  */
434 enum iwl_fw_item_id {
435         IWL_FW_ITEM_ID_PAGING = 3,
436 };
437
438 /*
439  * struct iwl_fw_get_item_cmd - get an item from the fw
440  */
441 struct iwl_fw_get_item_cmd {
442         __le32 item_id;
443 } __packed; /* FW_GET_ITEM_CMD_API_S_VER_1 */
444
445 #define CONT_REC_COMMAND_SIZE   80
446 #define ENABLE_CONT_RECORDING   0x15
447 #define DISABLE_CONT_RECORDING  0x16
448
449 /*
450  * struct iwl_continuous_record_mode - recording mode
451  */
452 struct iwl_continuous_record_mode {
453         __le16 enable_recording;
454 } __packed;
455
456 /*
457  * struct iwl_continuous_record_cmd - enable/disable continuous recording
458  */
459 struct iwl_continuous_record_cmd {
460         struct iwl_continuous_record_mode record_mode;
461         u8 pad[CONT_REC_COMMAND_SIZE -
462                 sizeof(struct iwl_continuous_record_mode)];
463 } __packed;
464
465 struct iwl_fw_get_item_resp {
466         __le32 item_id;
467         __le32 item_byte_cnt;
468         __le32 item_val;
469 } __packed; /* FW_GET_ITEM_RSP_S_VER_1 */
470
471 /**
472  * struct iwl_nvm_access_resp_ver2 - response to NVM_ACCESS_CMD
473  * @offset: offset in bytes into the section
474  * @length: in bytes, either how much was written or read
475  * @type: NVM_SECTION_TYPE_*
476  * @status: 0 for success, fail otherwise
477  * @data: if read operation, the data returned. Empty on write.
478  */
479 struct iwl_nvm_access_resp {
480         __le16 offset;
481         __le16 length;
482         __le16 type;
483         __le16 status;
484         u8 data[];
485 } __packed; /* NVM_ACCESS_CMD_RESP_API_S_VER_2 */
486
487 /* MVM_ALIVE 0x1 */
488
489 /* alive response is_valid values */
490 #define ALIVE_RESP_UCODE_OK     BIT(0)
491 #define ALIVE_RESP_RFKILL       BIT(1)
492
493 /* alive response ver_type values */
494 enum {
495         FW_TYPE_HW = 0,
496         FW_TYPE_PROT = 1,
497         FW_TYPE_AP = 2,
498         FW_TYPE_WOWLAN = 3,
499         FW_TYPE_TIMING = 4,
500         FW_TYPE_WIPAN = 5
501 };
502
503 /* alive response ver_subtype values */
504 enum {
505         FW_SUBTYPE_FULL_FEATURE = 0,
506         FW_SUBTYPE_BOOTSRAP = 1, /* Not valid */
507         FW_SUBTYPE_REDUCED = 2,
508         FW_SUBTYPE_ALIVE_ONLY = 3,
509         FW_SUBTYPE_WOWLAN = 4,
510         FW_SUBTYPE_AP_SUBTYPE = 5,
511         FW_SUBTYPE_WIPAN = 6,
512         FW_SUBTYPE_INITIALIZE = 9
513 };
514
515 #define IWL_ALIVE_STATUS_ERR 0xDEAD
516 #define IWL_ALIVE_STATUS_OK 0xCAFE
517
518 #define IWL_ALIVE_FLG_RFKILL    BIT(0)
519
520 struct mvm_alive_resp_ver1 {
521         __le16 status;
522         __le16 flags;
523         u8 ucode_minor;
524         u8 ucode_major;
525         __le16 id;
526         u8 api_minor;
527         u8 api_major;
528         u8 ver_subtype;
529         u8 ver_type;
530         u8 mac;
531         u8 opt;
532         __le16 reserved2;
533         __le32 timestamp;
534         __le32 error_event_table_ptr;   /* SRAM address for error log */
535         __le32 log_event_table_ptr;     /* SRAM address for event log */
536         __le32 cpu_register_ptr;
537         __le32 dbgm_config_ptr;
538         __le32 alive_counter_ptr;
539         __le32 scd_base_ptr;            /* SRAM address for SCD */
540 } __packed; /* ALIVE_RES_API_S_VER_1 */
541
542 struct mvm_alive_resp_ver2 {
543         __le16 status;
544         __le16 flags;
545         u8 ucode_minor;
546         u8 ucode_major;
547         __le16 id;
548         u8 api_minor;
549         u8 api_major;
550         u8 ver_subtype;
551         u8 ver_type;
552         u8 mac;
553         u8 opt;
554         __le16 reserved2;
555         __le32 timestamp;
556         __le32 error_event_table_ptr;   /* SRAM address for error log */
557         __le32 log_event_table_ptr;     /* SRAM address for LMAC event log */
558         __le32 cpu_register_ptr;
559         __le32 dbgm_config_ptr;
560         __le32 alive_counter_ptr;
561         __le32 scd_base_ptr;            /* SRAM address for SCD */
562         __le32 st_fwrd_addr;            /* pointer to Store and forward */
563         __le32 st_fwrd_size;
564         u8 umac_minor;                  /* UMAC version: minor */
565         u8 umac_major;                  /* UMAC version: major */
566         __le16 umac_id;                 /* UMAC version: id */
567         __le32 error_info_addr;         /* SRAM address for UMAC error log */
568         __le32 dbg_print_buff_addr;
569 } __packed; /* ALIVE_RES_API_S_VER_2 */
570
571 struct mvm_alive_resp {
572         __le16 status;
573         __le16 flags;
574         __le32 ucode_minor;
575         __le32 ucode_major;
576         u8 ver_subtype;
577         u8 ver_type;
578         u8 mac;
579         u8 opt;
580         __le32 timestamp;
581         __le32 error_event_table_ptr;   /* SRAM address for error log */
582         __le32 log_event_table_ptr;     /* SRAM address for LMAC event log */
583         __le32 cpu_register_ptr;
584         __le32 dbgm_config_ptr;
585         __le32 alive_counter_ptr;
586         __le32 scd_base_ptr;            /* SRAM address for SCD */
587         __le32 st_fwrd_addr;            /* pointer to Store and forward */
588         __le32 st_fwrd_size;
589         __le32 umac_minor;              /* UMAC version: minor */
590         __le32 umac_major;              /* UMAC version: major */
591         __le32 error_info_addr;         /* SRAM address for UMAC error log */
592         __le32 dbg_print_buff_addr;
593 } __packed; /* ALIVE_RES_API_S_VER_3 */
594
595 /* Error response/notification */
596 enum {
597         FW_ERR_UNKNOWN_CMD = 0x0,
598         FW_ERR_INVALID_CMD_PARAM = 0x1,
599         FW_ERR_SERVICE = 0x2,
600         FW_ERR_ARC_MEMORY = 0x3,
601         FW_ERR_ARC_CODE = 0x4,
602         FW_ERR_WATCH_DOG = 0x5,
603         FW_ERR_WEP_GRP_KEY_INDX = 0x10,
604         FW_ERR_WEP_KEY_SIZE = 0x11,
605         FW_ERR_OBSOLETE_FUNC = 0x12,
606         FW_ERR_UNEXPECTED = 0xFE,
607         FW_ERR_FATAL = 0xFF
608 };
609
610 /**
611  * struct iwl_error_resp - FW error indication
612  * ( REPLY_ERROR = 0x2 )
613  * @error_type: one of FW_ERR_*
614  * @cmd_id: the command ID for which the error occured
615  * @bad_cmd_seq_num: sequence number of the erroneous command
616  * @error_service: which service created the error, applicable only if
617  *      error_type = 2, otherwise 0
618  * @timestamp: TSF in usecs.
619  */
620 struct iwl_error_resp {
621         __le32 error_type;
622         u8 cmd_id;
623         u8 reserved1;
624         __le16 bad_cmd_seq_num;
625         __le32 error_service;
626         __le64 timestamp;
627 } __packed;
628
629
630 /* Common PHY, MAC and Bindings definitions */
631
632 #define MAX_MACS_IN_BINDING     (3)
633 #define MAX_BINDINGS            (4)
634 #define AUX_BINDING_INDEX       (3)
635 #define MAX_PHYS                (4)
636
637 /* Used to extract ID and color from the context dword */
638 #define FW_CTXT_ID_POS    (0)
639 #define FW_CTXT_ID_MSK    (0xff << FW_CTXT_ID_POS)
640 #define FW_CTXT_COLOR_POS (8)
641 #define FW_CTXT_COLOR_MSK (0xff << FW_CTXT_COLOR_POS)
642 #define FW_CTXT_INVALID   (0xffffffff)
643
644 #define FW_CMD_ID_AND_COLOR(_id, _color) ((_id << FW_CTXT_ID_POS) |\
645                                           (_color << FW_CTXT_COLOR_POS))
646
647 /* Possible actions on PHYs, MACs and Bindings */
648 enum {
649         FW_CTXT_ACTION_STUB = 0,
650         FW_CTXT_ACTION_ADD,
651         FW_CTXT_ACTION_MODIFY,
652         FW_CTXT_ACTION_REMOVE,
653         FW_CTXT_ACTION_NUM
654 }; /* COMMON_CONTEXT_ACTION_API_E_VER_1 */
655
656 /* Time Events */
657
658 /* Time Event types, according to MAC type */
659 enum iwl_time_event_type {
660         /* BSS Station Events */
661         TE_BSS_STA_AGGRESSIVE_ASSOC,
662         TE_BSS_STA_ASSOC,
663         TE_BSS_EAP_DHCP_PROT,
664         TE_BSS_QUIET_PERIOD,
665
666         /* P2P Device Events */
667         TE_P2P_DEVICE_DISCOVERABLE,
668         TE_P2P_DEVICE_LISTEN,
669         TE_P2P_DEVICE_ACTION_SCAN,
670         TE_P2P_DEVICE_FULL_SCAN,
671
672         /* P2P Client Events */
673         TE_P2P_CLIENT_AGGRESSIVE_ASSOC,
674         TE_P2P_CLIENT_ASSOC,
675         TE_P2P_CLIENT_QUIET_PERIOD,
676
677         /* P2P GO Events */
678         TE_P2P_GO_ASSOC_PROT,
679         TE_P2P_GO_REPETITIVE_NOA,
680         TE_P2P_GO_CT_WINDOW,
681
682         /* WiDi Sync Events */
683         TE_WIDI_TX_SYNC,
684
685         /* Channel Switch NoA */
686         TE_CHANNEL_SWITCH_PERIOD,
687
688         TE_MAX
689 }; /* MAC_EVENT_TYPE_API_E_VER_1 */
690
691
692
693 /* Time event - defines for command API v1 */
694
695 /*
696  * @TE_V1_FRAG_NONE: fragmentation of the time event is NOT allowed.
697  * @TE_V1_FRAG_SINGLE: fragmentation of the time event is allowed, but only
698  *      the first fragment is scheduled.
699  * @TE_V1_FRAG_DUAL: fragmentation of the time event is allowed, but only
700  *      the first 2 fragments are scheduled.
701  * @TE_V1_FRAG_ENDLESS: fragmentation of the time event is allowed, and any
702  *      number of fragments are valid.
703  *
704  * Other than the constant defined above, specifying a fragmentation value 'x'
705  * means that the event can be fragmented but only the first 'x' will be
706  * scheduled.
707  */
708 enum {
709         TE_V1_FRAG_NONE = 0,
710         TE_V1_FRAG_SINGLE = 1,
711         TE_V1_FRAG_DUAL = 2,
712         TE_V1_FRAG_ENDLESS = 0xffffffff
713 };
714
715 /* If a Time Event can be fragmented, this is the max number of fragments */
716 #define TE_V1_FRAG_MAX_MSK      0x0fffffff
717 /* Repeat the time event endlessly (until removed) */
718 #define TE_V1_REPEAT_ENDLESS    0xffffffff
719 /* If a Time Event has bounded repetitions, this is the maximal value */
720 #define TE_V1_REPEAT_MAX_MSK_V1 0x0fffffff
721
722 /* Time Event dependencies: none, on another TE, or in a specific time */
723 enum {
724         TE_V1_INDEPENDENT               = 0,
725         TE_V1_DEP_OTHER                 = BIT(0),
726         TE_V1_DEP_TSF                   = BIT(1),
727         TE_V1_EVENT_SOCIOPATHIC         = BIT(2),
728 }; /* MAC_EVENT_DEPENDENCY_POLICY_API_E_VER_2 */
729
730 /*
731  * @TE_V1_NOTIF_NONE: no notifications
732  * @TE_V1_NOTIF_HOST_EVENT_START: request/receive notification on event start
733  * @TE_V1_NOTIF_HOST_EVENT_END:request/receive notification on event end
734  * @TE_V1_NOTIF_INTERNAL_EVENT_START: internal FW use
735  * @TE_V1_NOTIF_INTERNAL_EVENT_END: internal FW use.
736  * @TE_V1_NOTIF_HOST_FRAG_START: request/receive notification on frag start
737  * @TE_V1_NOTIF_HOST_FRAG_END:request/receive notification on frag end
738  * @TE_V1_NOTIF_INTERNAL_FRAG_START: internal FW use.
739  * @TE_V1_NOTIF_INTERNAL_FRAG_END: internal FW use.
740  *
741  * Supported Time event notifications configuration.
742  * A notification (both event and fragment) includes a status indicating weather
743  * the FW was able to schedule the event or not. For fragment start/end
744  * notification the status is always success. There is no start/end fragment
745  * notification for monolithic events.
746  */
747 enum {
748         TE_V1_NOTIF_NONE = 0,
749         TE_V1_NOTIF_HOST_EVENT_START = BIT(0),
750         TE_V1_NOTIF_HOST_EVENT_END = BIT(1),
751         TE_V1_NOTIF_INTERNAL_EVENT_START = BIT(2),
752         TE_V1_NOTIF_INTERNAL_EVENT_END = BIT(3),
753         TE_V1_NOTIF_HOST_FRAG_START = BIT(4),
754         TE_V1_NOTIF_HOST_FRAG_END = BIT(5),
755         TE_V1_NOTIF_INTERNAL_FRAG_START = BIT(6),
756         TE_V1_NOTIF_INTERNAL_FRAG_END = BIT(7),
757 }; /* MAC_EVENT_ACTION_API_E_VER_2 */
758
759 /* Time event - defines for command API */
760
761 /*
762  * @TE_V2_FRAG_NONE: fragmentation of the time event is NOT allowed.
763  * @TE_V2_FRAG_SINGLE: fragmentation of the time event is allowed, but only
764  *  the first fragment is scheduled.
765  * @TE_V2_FRAG_DUAL: fragmentation of the time event is allowed, but only
766  *  the first 2 fragments are scheduled.
767  * @TE_V2_FRAG_ENDLESS: fragmentation of the time event is allowed, and any
768  *  number of fragments are valid.
769  *
770  * Other than the constant defined above, specifying a fragmentation value 'x'
771  * means that the event can be fragmented but only the first 'x' will be
772  * scheduled.
773  */
774 enum {
775         TE_V2_FRAG_NONE = 0,
776         TE_V2_FRAG_SINGLE = 1,
777         TE_V2_FRAG_DUAL = 2,
778         TE_V2_FRAG_MAX = 0xfe,
779         TE_V2_FRAG_ENDLESS = 0xff
780 };
781
782 /* Repeat the time event endlessly (until removed) */
783 #define TE_V2_REPEAT_ENDLESS    0xff
784 /* If a Time Event has bounded repetitions, this is the maximal value */
785 #define TE_V2_REPEAT_MAX        0xfe
786
787 #define TE_V2_PLACEMENT_POS     12
788 #define TE_V2_ABSENCE_POS       15
789
790 /* Time event policy values
791  * A notification (both event and fragment) includes a status indicating weather
792  * the FW was able to schedule the event or not. For fragment start/end
793  * notification the status is always success. There is no start/end fragment
794  * notification for monolithic events.
795  *
796  * @TE_V2_DEFAULT_POLICY: independent, social, present, unoticable
797  * @TE_V2_NOTIF_HOST_EVENT_START: request/receive notification on event start
798  * @TE_V2_NOTIF_HOST_EVENT_END:request/receive notification on event end
799  * @TE_V2_NOTIF_INTERNAL_EVENT_START: internal FW use
800  * @TE_V2_NOTIF_INTERNAL_EVENT_END: internal FW use.
801  * @TE_V2_NOTIF_HOST_FRAG_START: request/receive notification on frag start
802  * @TE_V2_NOTIF_HOST_FRAG_END:request/receive notification on frag end
803  * @TE_V2_NOTIF_INTERNAL_FRAG_START: internal FW use.
804  * @TE_V2_NOTIF_INTERNAL_FRAG_END: internal FW use.
805  * @TE_V2_DEP_OTHER: depends on another time event
806  * @TE_V2_DEP_TSF: depends on a specific time
807  * @TE_V2_EVENT_SOCIOPATHIC: can't co-exist with other events of tha same MAC
808  * @TE_V2_ABSENCE: are we present or absent during the Time Event.
809  */
810 enum {
811         TE_V2_DEFAULT_POLICY = 0x0,
812
813         /* notifications (event start/stop, fragment start/stop) */
814         TE_V2_NOTIF_HOST_EVENT_START = BIT(0),
815         TE_V2_NOTIF_HOST_EVENT_END = BIT(1),
816         TE_V2_NOTIF_INTERNAL_EVENT_START = BIT(2),
817         TE_V2_NOTIF_INTERNAL_EVENT_END = BIT(3),
818
819         TE_V2_NOTIF_HOST_FRAG_START = BIT(4),
820         TE_V2_NOTIF_HOST_FRAG_END = BIT(5),
821         TE_V2_NOTIF_INTERNAL_FRAG_START = BIT(6),
822         TE_V2_NOTIF_INTERNAL_FRAG_END = BIT(7),
823         T2_V2_START_IMMEDIATELY = BIT(11),
824
825         TE_V2_NOTIF_MSK = 0xff,
826
827         /* placement characteristics */
828         TE_V2_DEP_OTHER = BIT(TE_V2_PLACEMENT_POS),
829         TE_V2_DEP_TSF = BIT(TE_V2_PLACEMENT_POS + 1),
830         TE_V2_EVENT_SOCIOPATHIC = BIT(TE_V2_PLACEMENT_POS + 2),
831
832         /* are we present or absent during the Time Event. */
833         TE_V2_ABSENCE = BIT(TE_V2_ABSENCE_POS),
834 };
835
836 /**
837  * struct iwl_time_event_cmd_api - configuring Time Events
838  * with struct MAC_TIME_EVENT_DATA_API_S_VER_2 (see also
839  * with version 1. determined by IWL_UCODE_TLV_FLAGS)
840  * ( TIME_EVENT_CMD = 0x29 )
841  * @id_and_color: ID and color of the relevant MAC
842  * @action: action to perform, one of FW_CTXT_ACTION_*
843  * @id: this field has two meanings, depending on the action:
844  *      If the action is ADD, then it means the type of event to add.
845  *      For all other actions it is the unique event ID assigned when the
846  *      event was added by the FW.
847  * @apply_time: When to start the Time Event (in GP2)
848  * @max_delay: maximum delay to event's start (apply time), in TU
849  * @depends_on: the unique ID of the event we depend on (if any)
850  * @interval: interval between repetitions, in TU
851  * @duration: duration of event in TU
852  * @repeat: how many repetitions to do, can be TE_REPEAT_ENDLESS
853  * @max_frags: maximal number of fragments the Time Event can be divided to
854  * @policy: defines whether uCode shall notify the host or other uCode modules
855  *      on event and/or fragment start and/or end
856  *      using one of TE_INDEPENDENT, TE_DEP_OTHER, TE_DEP_TSF
857  *      TE_EVENT_SOCIOPATHIC
858  *      using TE_ABSENCE and using TE_NOTIF_*
859  */
860 struct iwl_time_event_cmd {
861         /* COMMON_INDEX_HDR_API_S_VER_1 */
862         __le32 id_and_color;
863         __le32 action;
864         __le32 id;
865         /* MAC_TIME_EVENT_DATA_API_S_VER_2 */
866         __le32 apply_time;
867         __le32 max_delay;
868         __le32 depends_on;
869         __le32 interval;
870         __le32 duration;
871         u8 repeat;
872         u8 max_frags;
873         __le16 policy;
874 } __packed; /* MAC_TIME_EVENT_CMD_API_S_VER_2 */
875
876 /**
877  * struct iwl_time_event_resp - response structure to iwl_time_event_cmd
878  * @status: bit 0 indicates success, all others specify errors
879  * @id: the Time Event type
880  * @unique_id: the unique ID assigned (in ADD) or given (others) to the TE
881  * @id_and_color: ID and color of the relevant MAC
882  */
883 struct iwl_time_event_resp {
884         __le32 status;
885         __le32 id;
886         __le32 unique_id;
887         __le32 id_and_color;
888 } __packed; /* MAC_TIME_EVENT_RSP_API_S_VER_1 */
889
890 /**
891  * struct iwl_time_event_notif - notifications of time event start/stop
892  * ( TIME_EVENT_NOTIFICATION = 0x2a )
893  * @timestamp: action timestamp in GP2
894  * @session_id: session's unique id
895  * @unique_id: unique id of the Time Event itself
896  * @id_and_color: ID and color of the relevant MAC
897  * @action: one of TE_NOTIF_START or TE_NOTIF_END
898  * @status: true if scheduled, false otherwise (not executed)
899  */
900 struct iwl_time_event_notif {
901         __le32 timestamp;
902         __le32 session_id;
903         __le32 unique_id;
904         __le32 id_and_color;
905         __le32 action;
906         __le32 status;
907 } __packed; /* MAC_TIME_EVENT_NTFY_API_S_VER_1 */
908
909
910 /* Bindings and Time Quota */
911
912 /**
913  * struct iwl_binding_cmd - configuring bindings
914  * ( BINDING_CONTEXT_CMD = 0x2b )
915  * @id_and_color: ID and color of the relevant Binding
916  * @action: action to perform, one of FW_CTXT_ACTION_*
917  * @macs: array of MAC id and colors which belong to the binding
918  * @phy: PHY id and color which belongs to the binding
919  */
920 struct iwl_binding_cmd {
921         /* COMMON_INDEX_HDR_API_S_VER_1 */
922         __le32 id_and_color;
923         __le32 action;
924         /* BINDING_DATA_API_S_VER_1 */
925         __le32 macs[MAX_MACS_IN_BINDING];
926         __le32 phy;
927 } __packed; /* BINDING_CMD_API_S_VER_1 */
928
929 /* The maximal number of fragments in the FW's schedule session */
930 #define IWL_MVM_MAX_QUOTA 128
931
932 /**
933  * struct iwl_time_quota_data - configuration of time quota per binding
934  * @id_and_color: ID and color of the relevant Binding
935  * @quota: absolute time quota in TU. The scheduler will try to divide the
936  *      remainig quota (after Time Events) according to this quota.
937  * @max_duration: max uninterrupted context duration in TU
938  */
939 struct iwl_time_quota_data {
940         __le32 id_and_color;
941         __le32 quota;
942         __le32 max_duration;
943 } __packed; /* TIME_QUOTA_DATA_API_S_VER_1 */
944
945 /**
946  * struct iwl_time_quota_cmd - configuration of time quota between bindings
947  * ( TIME_QUOTA_CMD = 0x2c )
948  * @quotas: allocations per binding
949  */
950 struct iwl_time_quota_cmd {
951         struct iwl_time_quota_data quotas[MAX_BINDINGS];
952 } __packed; /* TIME_QUOTA_ALLOCATION_CMD_API_S_VER_1 */
953
954
955 /* PHY context */
956
957 /* Supported bands */
958 #define PHY_BAND_5  (0)
959 #define PHY_BAND_24 (1)
960
961 /* Supported channel width, vary if there is VHT support */
962 #define PHY_VHT_CHANNEL_MODE20  (0x0)
963 #define PHY_VHT_CHANNEL_MODE40  (0x1)
964 #define PHY_VHT_CHANNEL_MODE80  (0x2)
965 #define PHY_VHT_CHANNEL_MODE160 (0x3)
966
967 /*
968  * Control channel position:
969  * For legacy set bit means upper channel, otherwise lower.
970  * For VHT - bit-2 marks if the control is lower/upper relative to center-freq
971  *   bits-1:0 mark the distance from the center freq. for 20Mhz, offset is 0.
972  *                                   center_freq
973  *                                        |
974  * 40Mhz                          |_______|_______|
975  * 80Mhz                  |_______|_______|_______|_______|
976  * 160Mhz |_______|_______|_______|_______|_______|_______|_______|_______|
977  * code      011     010     001     000  |  100     101     110    111
978  */
979 #define PHY_VHT_CTRL_POS_1_BELOW  (0x0)
980 #define PHY_VHT_CTRL_POS_2_BELOW  (0x1)
981 #define PHY_VHT_CTRL_POS_3_BELOW  (0x2)
982 #define PHY_VHT_CTRL_POS_4_BELOW  (0x3)
983 #define PHY_VHT_CTRL_POS_1_ABOVE  (0x4)
984 #define PHY_VHT_CTRL_POS_2_ABOVE  (0x5)
985 #define PHY_VHT_CTRL_POS_3_ABOVE  (0x6)
986 #define PHY_VHT_CTRL_POS_4_ABOVE  (0x7)
987
988 /*
989  * @band: PHY_BAND_*
990  * @channel: channel number
991  * @width: PHY_[VHT|LEGACY]_CHANNEL_*
992  * @ctrl channel: PHY_[VHT|LEGACY]_CTRL_*
993  */
994 struct iwl_fw_channel_info {
995         u8 band;
996         u8 channel;
997         u8 width;
998         u8 ctrl_pos;
999 } __packed;
1000
1001 #define PHY_RX_CHAIN_DRIVER_FORCE_POS   (0)
1002 #define PHY_RX_CHAIN_DRIVER_FORCE_MSK \
1003         (0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS)
1004 #define PHY_RX_CHAIN_VALID_POS          (1)
1005 #define PHY_RX_CHAIN_VALID_MSK \
1006         (0x7 << PHY_RX_CHAIN_VALID_POS)
1007 #define PHY_RX_CHAIN_FORCE_SEL_POS      (4)
1008 #define PHY_RX_CHAIN_FORCE_SEL_MSK \
1009         (0x7 << PHY_RX_CHAIN_FORCE_SEL_POS)
1010 #define PHY_RX_CHAIN_FORCE_MIMO_SEL_POS (7)
1011 #define PHY_RX_CHAIN_FORCE_MIMO_SEL_MSK \
1012         (0x7 << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS)
1013 #define PHY_RX_CHAIN_CNT_POS            (10)
1014 #define PHY_RX_CHAIN_CNT_MSK \
1015         (0x3 << PHY_RX_CHAIN_CNT_POS)
1016 #define PHY_RX_CHAIN_MIMO_CNT_POS       (12)
1017 #define PHY_RX_CHAIN_MIMO_CNT_MSK \
1018         (0x3 << PHY_RX_CHAIN_MIMO_CNT_POS)
1019 #define PHY_RX_CHAIN_MIMO_FORCE_POS     (14)
1020 #define PHY_RX_CHAIN_MIMO_FORCE_MSK \
1021         (0x1 << PHY_RX_CHAIN_MIMO_FORCE_POS)
1022
1023 /* TODO: fix the value, make it depend on firmware at runtime? */
1024 #define NUM_PHY_CTX     3
1025
1026 /* TODO: complete missing documentation */
1027 /**
1028  * struct iwl_phy_context_cmd - config of the PHY context
1029  * ( PHY_CONTEXT_CMD = 0x8 )
1030  * @id_and_color: ID and color of the relevant Binding
1031  * @action: action to perform, one of FW_CTXT_ACTION_*
1032  * @apply_time: 0 means immediate apply and context switch.
1033  *      other value means apply new params after X usecs
1034  * @tx_param_color: ???
1035  * @channel_info:
1036  * @txchain_info: ???
1037  * @rxchain_info: ???
1038  * @acquisition_data: ???
1039  * @dsp_cfg_flags: set to 0
1040  */
1041 struct iwl_phy_context_cmd {
1042         /* COMMON_INDEX_HDR_API_S_VER_1 */
1043         __le32 id_and_color;
1044         __le32 action;
1045         /* PHY_CONTEXT_DATA_API_S_VER_1 */
1046         __le32 apply_time;
1047         __le32 tx_param_color;
1048         struct iwl_fw_channel_info ci;
1049         __le32 txchain_info;
1050         __le32 rxchain_info;
1051         __le32 acquisition_data;
1052         __le32 dsp_cfg_flags;
1053 } __packed; /* PHY_CONTEXT_CMD_API_VER_1 */
1054
1055 /*
1056  * Aux ROC command
1057  *
1058  * Command requests the firmware to create a time event for a certain duration
1059  * and remain on the given channel. This is done by using the Aux framework in
1060  * the FW.
1061  * The command was first used for Hot Spot issues - but can be used regardless
1062  * to Hot Spot.
1063  *
1064  * ( HOT_SPOT_CMD 0x53 )
1065  *
1066  * @id_and_color: ID and color of the MAC
1067  * @action: action to perform, one of FW_CTXT_ACTION_*
1068  * @event_unique_id: If the action FW_CTXT_ACTION_REMOVE then the
1069  *      event_unique_id should be the id of the time event assigned by ucode.
1070  *      Otherwise ignore the event_unique_id.
1071  * @sta_id_and_color: station id and color, resumed during "Remain On Channel"
1072  *      activity.
1073  * @channel_info: channel info
1074  * @node_addr: Our MAC Address
1075  * @reserved: reserved for alignment
1076  * @apply_time: GP2 value to start (should always be the current GP2 value)
1077  * @apply_time_max_delay: Maximum apply time delay value in TU. Defines max
1078  *      time by which start of the event is allowed to be postponed.
1079  * @duration: event duration in TU To calculate event duration:
1080  *      timeEventDuration = min(duration, remainingQuota)
1081  */
1082 struct iwl_hs20_roc_req {
1083         /* COMMON_INDEX_HDR_API_S_VER_1 hdr */
1084         __le32 id_and_color;
1085         __le32 action;
1086         __le32 event_unique_id;
1087         __le32 sta_id_and_color;
1088         struct iwl_fw_channel_info channel_info;
1089         u8 node_addr[ETH_ALEN];
1090         __le16 reserved;
1091         __le32 apply_time;
1092         __le32 apply_time_max_delay;
1093         __le32 duration;
1094 } __packed; /* HOT_SPOT_CMD_API_S_VER_1 */
1095
1096 /*
1097  * values for AUX ROC result values
1098  */
1099 enum iwl_mvm_hot_spot {
1100         HOT_SPOT_RSP_STATUS_OK,
1101         HOT_SPOT_RSP_STATUS_TOO_MANY_EVENTS,
1102         HOT_SPOT_MAX_NUM_OF_SESSIONS,
1103 };
1104
1105 /*
1106  * Aux ROC command response
1107  *
1108  * In response to iwl_hs20_roc_req the FW sends this command to notify the
1109  * driver the uid of the timevent.
1110  *
1111  * ( HOT_SPOT_CMD 0x53 )
1112  *
1113  * @event_unique_id: Unique ID of time event assigned by ucode
1114  * @status: Return status 0 is success, all the rest used for specific errors
1115  */
1116 struct iwl_hs20_roc_res {
1117         __le32 event_unique_id;
1118         __le32 status;
1119 } __packed; /* HOT_SPOT_RSP_API_S_VER_1 */
1120
1121 /**
1122  * struct iwl_radio_version_notif - information on the radio version
1123  * ( RADIO_VERSION_NOTIFICATION = 0x68 )
1124  * @radio_flavor:
1125  * @radio_step:
1126  * @radio_dash:
1127  */
1128 struct iwl_radio_version_notif {
1129         __le32 radio_flavor;
1130         __le32 radio_step;
1131         __le32 radio_dash;
1132 } __packed; /* RADIO_VERSION_NOTOFICATION_S_VER_1 */
1133
1134 enum iwl_card_state_flags {
1135         CARD_ENABLED            = 0x00,
1136         HW_CARD_DISABLED        = 0x01,
1137         SW_CARD_DISABLED        = 0x02,
1138         CT_KILL_CARD_DISABLED   = 0x04,
1139         HALT_CARD_DISABLED      = 0x08,
1140         CARD_DISABLED_MSK       = 0x0f,
1141         CARD_IS_RX_ON           = 0x10,
1142 };
1143
1144 /**
1145  * struct iwl_radio_version_notif - information on the radio version
1146  * ( CARD_STATE_NOTIFICATION = 0xa1 )
1147  * @flags: %iwl_card_state_flags
1148  */
1149 struct iwl_card_state_notif {
1150         __le32 flags;
1151 } __packed; /* CARD_STATE_NTFY_API_S_VER_1 */
1152
1153 /**
1154  * struct iwl_missed_beacons_notif - information on missed beacons
1155  * ( MISSED_BEACONS_NOTIFICATION = 0xa2 )
1156  * @mac_id: interface ID
1157  * @consec_missed_beacons_since_last_rx: number of consecutive missed
1158  *      beacons since last RX.
1159  * @consec_missed_beacons: number of consecutive missed beacons
1160  * @num_expected_beacons:
1161  * @num_recvd_beacons:
1162  */
1163 struct iwl_missed_beacons_notif {
1164         __le32 mac_id;
1165         __le32 consec_missed_beacons_since_last_rx;
1166         __le32 consec_missed_beacons;
1167         __le32 num_expected_beacons;
1168         __le32 num_recvd_beacons;
1169 } __packed; /* MISSED_BEACON_NTFY_API_S_VER_3 */
1170
1171 /**
1172  * struct iwl_mfuart_load_notif - mfuart image version & status
1173  * ( MFUART_LOAD_NOTIFICATION = 0xb1 )
1174  * @installed_ver: installed image version
1175  * @external_ver: external image version
1176  * @status: MFUART loading status
1177  * @duration: MFUART loading time
1178 */
1179 struct iwl_mfuart_load_notif {
1180         __le32 installed_ver;
1181         __le32 external_ver;
1182         __le32 status;
1183         __le32 duration;
1184 } __packed; /*MFU_LOADER_NTFY_API_S_VER_1*/
1185
1186 /**
1187  * struct iwl_set_calib_default_cmd - set default value for calibration.
1188  * ( SET_CALIB_DEFAULT_CMD = 0x8e )
1189  * @calib_index: the calibration to set value for
1190  * @length: of data
1191  * @data: the value to set for the calibration result
1192  */
1193 struct iwl_set_calib_default_cmd {
1194         __le16 calib_index;
1195         __le16 length;
1196         u8 data[0];
1197 } __packed; /* PHY_CALIB_OVERRIDE_VALUES_S */
1198
1199 #define MAX_PORT_ID_NUM 2
1200 #define MAX_MCAST_FILTERING_ADDRESSES 256
1201
1202 /**
1203  * struct iwl_mcast_filter_cmd - configure multicast filter.
1204  * @filter_own: Set 1 to filter out multicast packets sent by station itself
1205  * @port_id:    Multicast MAC addresses array specifier. This is a strange way
1206  *              to identify network interface adopted in host-device IF.
1207  *              It is used by FW as index in array of addresses. This array has
1208  *              MAX_PORT_ID_NUM members.
1209  * @count:      Number of MAC addresses in the array
1210  * @pass_all:   Set 1 to pass all multicast packets.
1211  * @bssid:      current association BSSID.
1212  * @addr_list:  Place holder for array of MAC addresses.
1213  *              IMPORTANT: add padding if necessary to ensure DWORD alignment.
1214  */
1215 struct iwl_mcast_filter_cmd {
1216         u8 filter_own;
1217         u8 port_id;
1218         u8 count;
1219         u8 pass_all;
1220         u8 bssid[6];
1221         u8 reserved[2];
1222         u8 addr_list[0];
1223 } __packed; /* MCAST_FILTERING_CMD_API_S_VER_1 */
1224
1225 #define MAX_BCAST_FILTERS 8
1226 #define MAX_BCAST_FILTER_ATTRS 2
1227
1228 /**
1229  * enum iwl_mvm_bcast_filter_attr_offset - written by fw for each Rx packet
1230  * @BCAST_FILTER_OFFSET_PAYLOAD_START: offset is from payload start.
1231  * @BCAST_FILTER_OFFSET_IP_END: offset is from ip header end (i.e.
1232  *      start of ip payload).
1233  */
1234 enum iwl_mvm_bcast_filter_attr_offset {
1235         BCAST_FILTER_OFFSET_PAYLOAD_START = 0,
1236         BCAST_FILTER_OFFSET_IP_END = 1,
1237 };
1238
1239 /**
1240  * struct iwl_fw_bcast_filter_attr - broadcast filter attribute
1241  * @offset_type:        &enum iwl_mvm_bcast_filter_attr_offset.
1242  * @offset:     starting offset of this pattern.
1243  * @val:                value to match - big endian (MSB is the first
1244  *              byte to match from offset pos).
1245  * @mask:       mask to match (big endian).
1246  */
1247 struct iwl_fw_bcast_filter_attr {
1248         u8 offset_type;
1249         u8 offset;
1250         __le16 reserved1;
1251         __be32 val;
1252         __be32 mask;
1253 } __packed; /* BCAST_FILTER_ATT_S_VER_1 */
1254
1255 /**
1256  * enum iwl_mvm_bcast_filter_frame_type - filter frame type
1257  * @BCAST_FILTER_FRAME_TYPE_ALL: consider all frames.
1258  * @BCAST_FILTER_FRAME_TYPE_IPV4: consider only ipv4 frames
1259  */
1260 enum iwl_mvm_bcast_filter_frame_type {
1261         BCAST_FILTER_FRAME_TYPE_ALL = 0,
1262         BCAST_FILTER_FRAME_TYPE_IPV4 = 1,
1263 };
1264
1265 /**
1266  * struct iwl_fw_bcast_filter - broadcast filter
1267  * @discard: discard frame (1) or let it pass (0).
1268  * @frame_type: &enum iwl_mvm_bcast_filter_frame_type.
1269  * @num_attrs: number of valid attributes in this filter.
1270  * @attrs: attributes of this filter. a filter is considered matched
1271  *      only when all its attributes are matched (i.e. AND relationship)
1272  */
1273 struct iwl_fw_bcast_filter {
1274         u8 discard;
1275         u8 frame_type;
1276         u8 num_attrs;
1277         u8 reserved1;
1278         struct iwl_fw_bcast_filter_attr attrs[MAX_BCAST_FILTER_ATTRS];
1279 } __packed; /* BCAST_FILTER_S_VER_1 */
1280
1281 /**
1282  * struct iwl_fw_bcast_mac - per-mac broadcast filtering configuration.
1283  * @default_discard: default action for this mac (discard (1) / pass (0)).
1284  * @attached_filters: bitmap of relevant filters for this mac.
1285  */
1286 struct iwl_fw_bcast_mac {
1287         u8 default_discard;
1288         u8 reserved1;
1289         __le16 attached_filters;
1290 } __packed; /* BCAST_MAC_CONTEXT_S_VER_1 */
1291
1292 /**
1293  * struct iwl_bcast_filter_cmd - broadcast filtering configuration
1294  * @disable: enable (0) / disable (1)
1295  * @max_bcast_filters: max number of filters (MAX_BCAST_FILTERS)
1296  * @max_macs: max number of macs (NUM_MAC_INDEX_DRIVER)
1297  * @filters: broadcast filters
1298  * @macs: broadcast filtering configuration per-mac
1299  */
1300 struct iwl_bcast_filter_cmd {
1301         u8 disable;
1302         u8 max_bcast_filters;
1303         u8 max_macs;
1304         u8 reserved1;
1305         struct iwl_fw_bcast_filter filters[MAX_BCAST_FILTERS];
1306         struct iwl_fw_bcast_mac macs[NUM_MAC_INDEX_DRIVER];
1307 } __packed; /* BCAST_FILTERING_HCMD_API_S_VER_1 */
1308
1309 /*
1310  * enum iwl_mvm_marker_id - maker ids
1311  *
1312  * The ids for different type of markers to insert into the usniffer logs
1313  */
1314 enum iwl_mvm_marker_id {
1315         MARKER_ID_TX_FRAME_LATENCY = 1,
1316 }; /* MARKER_ID_API_E_VER_1 */
1317
1318 /**
1319  * struct iwl_mvm_marker - mark info into the usniffer logs
1320  *
1321  * (MARKER_CMD = 0xcb)
1322  *
1323  * Mark the UTC time stamp into the usniffer logs together with additional
1324  * metadata, so the usniffer output can be parsed.
1325  * In the command response the ucode will return the GP2 time.
1326  *
1327  * @dw_len: The amount of dwords following this byte including this byte.
1328  * @marker_id: A unique marker id (iwl_mvm_marker_id).
1329  * @reserved: reserved.
1330  * @timestamp: in milliseconds since 1970-01-01 00:00:00 UTC
1331  * @metadata: additional meta data that will be written to the unsiffer log
1332  */
1333 struct iwl_mvm_marker {
1334         u8 dwLen;
1335         u8 markerId;
1336         __le16 reserved;
1337         __le64 timestamp;
1338         __le32 metadata[0];
1339 } __packed; /* MARKER_API_S_VER_1 */
1340
1341 /*
1342  * enum iwl_dc2dc_config_id - flag ids
1343  *
1344  * Ids of dc2dc configuration flags
1345  */
1346 enum iwl_dc2dc_config_id {
1347         DCDC_LOW_POWER_MODE_MSK_SET  = 0x1, /* not used */
1348         DCDC_FREQ_TUNE_SET = 0x2,
1349 }; /* MARKER_ID_API_E_VER_1 */
1350
1351 /**
1352  * struct iwl_dc2dc_config_cmd - configure dc2dc values
1353  *
1354  * (DC2DC_CONFIG_CMD = 0x83)
1355  *
1356  * Set/Get & configure dc2dc values.
1357  * The command always returns the current dc2dc values.
1358  *
1359  * @flags: set/get dc2dc
1360  * @enable_low_power_mode: not used.
1361  * @dc2dc_freq_tune0: frequency divider - digital domain
1362  * @dc2dc_freq_tune1: frequency divider - analog domain
1363  */
1364 struct iwl_dc2dc_config_cmd {
1365         __le32 flags;
1366         __le32 enable_low_power_mode; /* not used */
1367         __le32 dc2dc_freq_tune0;
1368         __le32 dc2dc_freq_tune1;
1369 } __packed; /* DC2DC_CONFIG_CMD_API_S_VER_1 */
1370
1371 /**
1372  * struct iwl_dc2dc_config_resp - response for iwl_dc2dc_config_cmd
1373  *
1374  * Current dc2dc values returned by the FW.
1375  *
1376  * @dc2dc_freq_tune0: frequency divider - digital domain
1377  * @dc2dc_freq_tune1: frequency divider - analog domain
1378  */
1379 struct iwl_dc2dc_config_resp {
1380         __le32 dc2dc_freq_tune0;
1381         __le32 dc2dc_freq_tune1;
1382 } __packed; /* DC2DC_CONFIG_RESP_API_S_VER_1 */
1383
1384 /***********************************
1385  * Smart Fifo API
1386  ***********************************/
1387 /* Smart Fifo state */
1388 enum iwl_sf_state {
1389         SF_LONG_DELAY_ON = 0, /* should never be called by driver */
1390         SF_FULL_ON,
1391         SF_UNINIT,
1392         SF_INIT_OFF,
1393         SF_HW_NUM_STATES
1394 };
1395
1396 /* Smart Fifo possible scenario */
1397 enum iwl_sf_scenario {
1398         SF_SCENARIO_SINGLE_UNICAST,
1399         SF_SCENARIO_AGG_UNICAST,
1400         SF_SCENARIO_MULTICAST,
1401         SF_SCENARIO_BA_RESP,
1402         SF_SCENARIO_TX_RESP,
1403         SF_NUM_SCENARIO
1404 };
1405
1406 #define SF_TRANSIENT_STATES_NUMBER 2    /* SF_LONG_DELAY_ON and SF_FULL_ON */
1407 #define SF_NUM_TIMEOUT_TYPES 2          /* Aging timer and Idle timer */
1408
1409 /* smart FIFO default values */
1410 #define SF_W_MARK_SISO 6144
1411 #define SF_W_MARK_MIMO2 8192
1412 #define SF_W_MARK_MIMO3 6144
1413 #define SF_W_MARK_LEGACY 4096
1414 #define SF_W_MARK_SCAN 4096
1415
1416 /* SF Scenarios timers for default configuration (aligned to 32 uSec) */
1417 #define SF_SINGLE_UNICAST_IDLE_TIMER_DEF 160    /* 150 uSec  */
1418 #define SF_SINGLE_UNICAST_AGING_TIMER_DEF 400   /* 0.4 mSec */
1419 #define SF_AGG_UNICAST_IDLE_TIMER_DEF 160               /* 150 uSec */
1420 #define SF_AGG_UNICAST_AGING_TIMER_DEF 400              /* 0.4 mSec */
1421 #define SF_MCAST_IDLE_TIMER_DEF 160             /* 150 mSec */
1422 #define SF_MCAST_AGING_TIMER_DEF 400            /* 0.4 mSec */
1423 #define SF_BA_IDLE_TIMER_DEF 160                        /* 150 uSec */
1424 #define SF_BA_AGING_TIMER_DEF 400                       /* 0.4 mSec */
1425 #define SF_TX_RE_IDLE_TIMER_DEF 160                     /* 150 uSec */
1426 #define SF_TX_RE_AGING_TIMER_DEF 400            /* 0.4 mSec */
1427
1428 /* SF Scenarios timers for BSS MAC configuration (aligned to 32 uSec) */
1429 #define SF_SINGLE_UNICAST_IDLE_TIMER 320        /* 300 uSec  */
1430 #define SF_SINGLE_UNICAST_AGING_TIMER 2016      /* 2 mSec */
1431 #define SF_AGG_UNICAST_IDLE_TIMER 320           /* 300 uSec */
1432 #define SF_AGG_UNICAST_AGING_TIMER 2016         /* 2 mSec */
1433 #define SF_MCAST_IDLE_TIMER 2016                /* 2 mSec */
1434 #define SF_MCAST_AGING_TIMER 10016              /* 10 mSec */
1435 #define SF_BA_IDLE_TIMER 320                    /* 300 uSec */
1436 #define SF_BA_AGING_TIMER 2016                  /* 2 mSec */
1437 #define SF_TX_RE_IDLE_TIMER 320                 /* 300 uSec */
1438 #define SF_TX_RE_AGING_TIMER 2016               /* 2 mSec */
1439
1440 #define SF_LONG_DELAY_AGING_TIMER 1000000       /* 1 Sec */
1441
1442 #define SF_CFG_DUMMY_NOTIF_OFF  BIT(16)
1443
1444 /**
1445  * Smart Fifo configuration command.
1446  * @state: smart fifo state, types listed in enum %iwl_sf_sate.
1447  * @watermark: Minimum allowed availabe free space in RXF for transient state.
1448  * @long_delay_timeouts: aging and idle timer values for each scenario
1449  * in long delay state.
1450  * @full_on_timeouts: timer values for each scenario in full on state.
1451  */
1452 struct iwl_sf_cfg_cmd {
1453         __le32 state;
1454         __le32 watermark[SF_TRANSIENT_STATES_NUMBER];
1455         __le32 long_delay_timeouts[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES];
1456         __le32 full_on_timeouts[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES];
1457 } __packed; /* SF_CFG_API_S_VER_2 */
1458
1459 /***********************************
1460  * Location Aware Regulatory (LAR) API - MCC updates
1461  ***********************************/
1462
1463 /**
1464  * struct iwl_mcc_update_cmd_v1 - Request the device to update geographic
1465  * regulatory profile according to the given MCC (Mobile Country Code).
1466  * The MCC is two letter-code, ascii upper case[A-Z] or '00' for world domain.
1467  * 'ZZ' MCC will be used to switch to NVM default profile; in this case, the
1468  * MCC in the cmd response will be the relevant MCC in the NVM.
1469  * @mcc: given mobile country code
1470  * @source_id: the source from where we got the MCC, see iwl_mcc_source
1471  * @reserved: reserved for alignment
1472  */
1473 struct iwl_mcc_update_cmd_v1 {
1474         __le16 mcc;
1475         u8 source_id;
1476         u8 reserved;
1477 } __packed; /* LAR_UPDATE_MCC_CMD_API_S_VER_1 */
1478
1479 /**
1480  * struct iwl_mcc_update_cmd - Request the device to update geographic
1481  * regulatory profile according to the given MCC (Mobile Country Code).
1482  * The MCC is two letter-code, ascii upper case[A-Z] or '00' for world domain.
1483  * 'ZZ' MCC will be used to switch to NVM default profile; in this case, the
1484  * MCC in the cmd response will be the relevant MCC in the NVM.
1485  * @mcc: given mobile country code
1486  * @source_id: the source from where we got the MCC, see iwl_mcc_source
1487  * @reserved: reserved for alignment
1488  * @key: integrity key for MCC API OEM testing
1489  * @reserved2: reserved
1490  */
1491 struct iwl_mcc_update_cmd {
1492         __le16 mcc;
1493         u8 source_id;
1494         u8 reserved;
1495         __le32 key;
1496         __le32 reserved2[5];
1497 } __packed; /* LAR_UPDATE_MCC_CMD_API_S_VER_2 */
1498
1499 /**
1500  * iwl_mcc_update_resp_v1  - response to MCC_UPDATE_CMD.
1501  * Contains the new channel control profile map, if changed, and the new MCC
1502  * (mobile country code).
1503  * The new MCC may be different than what was requested in MCC_UPDATE_CMD.
1504  * @status: see &enum iwl_mcc_update_status
1505  * @mcc: the new applied MCC
1506  * @cap: capabilities for all channels which matches the MCC
1507  * @source_id: the MCC source, see iwl_mcc_source
1508  * @n_channels: number of channels in @channels_data (may be 14, 39, 50 or 51
1509  *              channels, depending on platform)
1510  * @channels: channel control data map, DWORD for each channel. Only the first
1511  *      16bits are used.
1512  */
1513 struct iwl_mcc_update_resp_v1  {
1514         __le32 status;
1515         __le16 mcc;
1516         u8 cap;
1517         u8 source_id;
1518         __le32 n_channels;
1519         __le32 channels[0];
1520 } __packed; /* LAR_UPDATE_MCC_CMD_RESP_S_VER_1 */
1521
1522 /**
1523  * iwl_mcc_update_resp - response to MCC_UPDATE_CMD.
1524  * Contains the new channel control profile map, if changed, and the new MCC
1525  * (mobile country code).
1526  * The new MCC may be different than what was requested in MCC_UPDATE_CMD.
1527  * @status: see &enum iwl_mcc_update_status
1528  * @mcc: the new applied MCC
1529  * @cap: capabilities for all channels which matches the MCC
1530  * @source_id: the MCC source, see iwl_mcc_source
1531  * @time: time elapsed from the MCC test start (in 30 seconds TU)
1532  * @reserved: reserved.
1533  * @n_channels: number of channels in @channels_data (may be 14, 39, 50 or 51
1534  *              channels, depending on platform)
1535  * @channels: channel control data map, DWORD for each channel. Only the first
1536  *      16bits are used.
1537  */
1538 struct iwl_mcc_update_resp {
1539         __le32 status;
1540         __le16 mcc;
1541         u8 cap;
1542         u8 source_id;
1543         __le16 time;
1544         __le16 reserved;
1545         __le32 n_channels;
1546         __le32 channels[0];
1547 } __packed; /* LAR_UPDATE_MCC_CMD_RESP_S_VER_2 */
1548
1549 /**
1550  * struct iwl_mcc_chub_notif - chub notifies of mcc change
1551  * (MCC_CHUB_UPDATE_CMD = 0xc9)
1552  * The Chub (Communication Hub, CommsHUB) is a HW component that connects to
1553  * the cellular and connectivity cores that gets updates of the mcc, and
1554  * notifies the ucode directly of any mcc change.
1555  * The ucode requests the driver to request the device to update geographic
1556  * regulatory  profile according to the given MCC (Mobile Country Code).
1557  * The MCC is two letter-code, ascii upper case[A-Z] or '00' for world domain.
1558  * 'ZZ' MCC will be used to switch to NVM default profile; in this case, the
1559  * MCC in the cmd response will be the relevant MCC in the NVM.
1560  * @mcc: given mobile country code
1561  * @source_id: identity of the change originator, see iwl_mcc_source
1562  * @reserved1: reserved for alignment
1563  */
1564 struct iwl_mcc_chub_notif {
1565         u16 mcc;
1566         u8 source_id;
1567         u8 reserved1;
1568 } __packed; /* LAR_MCC_NOTIFY_S */
1569
1570 enum iwl_mcc_update_status {
1571         MCC_RESP_NEW_CHAN_PROFILE,
1572         MCC_RESP_SAME_CHAN_PROFILE,
1573         MCC_RESP_INVALID,
1574         MCC_RESP_NVM_DISABLED,
1575         MCC_RESP_ILLEGAL,
1576         MCC_RESP_LOW_PRIORITY,
1577         MCC_RESP_TEST_MODE_ACTIVE,
1578         MCC_RESP_TEST_MODE_NOT_ACTIVE,
1579         MCC_RESP_TEST_MODE_DENIAL_OF_SERVICE,
1580 };
1581
1582 enum iwl_mcc_source {
1583         MCC_SOURCE_OLD_FW = 0,
1584         MCC_SOURCE_ME = 1,
1585         MCC_SOURCE_BIOS = 2,
1586         MCC_SOURCE_3G_LTE_HOST = 3,
1587         MCC_SOURCE_3G_LTE_DEVICE = 4,
1588         MCC_SOURCE_WIFI = 5,
1589         MCC_SOURCE_RESERVED = 6,
1590         MCC_SOURCE_DEFAULT = 7,
1591         MCC_SOURCE_UNINITIALIZED = 8,
1592         MCC_SOURCE_MCC_API = 9,
1593         MCC_SOURCE_GET_CURRENT = 0x10,
1594         MCC_SOURCE_GETTING_MCC_TEST_MODE = 0x11,
1595 };
1596
1597 /* DTS measurements */
1598
1599 enum iwl_dts_measurement_flags {
1600         DTS_TRIGGER_CMD_FLAGS_TEMP      = BIT(0),
1601         DTS_TRIGGER_CMD_FLAGS_VOLT      = BIT(1),
1602 };
1603
1604 /**
1605  * iwl_dts_measurement_cmd - request DTS temperature and/or voltage measurements
1606  *
1607  * @flags: indicates which measurements we want as specified in &enum
1608  *         iwl_dts_measurement_flags
1609  */
1610 struct iwl_dts_measurement_cmd {
1611         __le32 flags;
1612 } __packed; /* TEMPERATURE_MEASUREMENT_TRIGGER_CMD_S */
1613
1614 /**
1615 * enum iwl_dts_control_measurement_mode - DTS measurement type
1616 * @DTS_AUTOMATIC: Automatic mode (full SW control). Provide temperature read
1617 *                 back (latest value. Not waiting for new value). Use automatic
1618 *                 SW DTS configuration.
1619 * @DTS_REQUEST_READ: Request DTS read. Configure DTS with manual settings,
1620 *                    trigger DTS reading and provide read back temperature read
1621 *                    when available.
1622 * @DTS_OVER_WRITE: over-write the DTS temperatures in the SW until next read
1623 * @DTS_DIRECT_WITHOUT_MEASURE: DTS returns its latest temperature result,
1624 *                              without measurement trigger.
1625 */
1626 enum iwl_dts_control_measurement_mode {
1627         DTS_AUTOMATIC                   = 0,
1628         DTS_REQUEST_READ                = 1,
1629         DTS_OVER_WRITE                  = 2,
1630         DTS_DIRECT_WITHOUT_MEASURE      = 3,
1631 };
1632
1633 /**
1634 * enum iwl_dts_used - DTS to use or used for measurement in the DTS request
1635 * @DTS_USE_TOP: Top
1636 * @DTS_USE_CHAIN_A: chain A
1637 * @DTS_USE_CHAIN_B: chain B
1638 * @DTS_USE_CHAIN_C: chain C
1639 * @XTAL_TEMPERATURE - read temperature from xtal
1640 */
1641 enum iwl_dts_used {
1642         DTS_USE_TOP             = 0,
1643         DTS_USE_CHAIN_A         = 1,
1644         DTS_USE_CHAIN_B         = 2,
1645         DTS_USE_CHAIN_C         = 3,
1646         XTAL_TEMPERATURE        = 4,
1647 };
1648
1649 /**
1650 * enum iwl_dts_bit_mode - bit-mode to use in DTS request read mode
1651 * @DTS_BIT6_MODE: bit 6 mode
1652 * @DTS_BIT8_MODE: bit 8 mode
1653 */
1654 enum iwl_dts_bit_mode {
1655         DTS_BIT6_MODE   = 0,
1656         DTS_BIT8_MODE   = 1,
1657 };
1658
1659 /**
1660  * iwl_ext_dts_measurement_cmd - request extended DTS temperature measurements
1661  * @control_mode: see &enum iwl_dts_control_measurement_mode
1662  * @temperature: used when over write DTS mode is selected
1663  * @sensor: set temperature sensor to use. See &enum iwl_dts_used
1664  * @avg_factor: average factor to DTS in request DTS read mode
1665  * @bit_mode: value defines the DTS bit mode to use. See &enum iwl_dts_bit_mode
1666  * @step_duration: step duration for the DTS
1667  */
1668 struct iwl_ext_dts_measurement_cmd {
1669         __le32 control_mode;
1670         __le32 temperature;
1671         __le32 sensor;
1672         __le32 avg_factor;
1673         __le32 bit_mode;
1674         __le32 step_duration;
1675 } __packed; /* XVT_FW_DTS_CONTROL_MEASUREMENT_REQUEST_API_S */
1676
1677 /**
1678  * iwl_dts_measurement_notif - notification received with the measurements
1679  *
1680  * @temp: the measured temperature
1681  * @voltage: the measured voltage
1682  */
1683 struct iwl_dts_measurement_notif {
1684         __le32 temp;
1685         __le32 voltage;
1686 } __packed; /* TEMPERATURE_MEASUREMENT_TRIGGER_NTFY_S */
1687
1688 /***********************************
1689  * TDLS API
1690  ***********************************/
1691
1692 /* Type of TDLS request */
1693 enum iwl_tdls_channel_switch_type {
1694         TDLS_SEND_CHAN_SW_REQ = 0,
1695         TDLS_SEND_CHAN_SW_RESP_AND_MOVE_CH,
1696         TDLS_MOVE_CH,
1697 }; /* TDLS_STA_CHANNEL_SWITCH_CMD_TYPE_API_E_VER_1 */
1698
1699 /**
1700  * Switch timing sub-element in a TDLS channel-switch command
1701  * @frame_timestamp: GP2 timestamp of channel-switch request/response packet
1702  *      received from peer
1703  * @max_offchan_duration: What amount of microseconds out of a DTIM is given
1704  *      to the TDLS off-channel communication. For instance if the DTIM is
1705  *      200TU and the TDLS peer is to be given 25% of the time, the value
1706  *      given will be 50TU, or 50 * 1024 if translated into microseconds.
1707  * @switch_time: switch time the peer sent in its channel switch timing IE
1708  * @switch_timout: switch timeout the peer sent in its channel switch timing IE
1709  */
1710 struct iwl_tdls_channel_switch_timing {
1711         __le32 frame_timestamp; /* GP2 time of peer packet Rx */
1712         __le32 max_offchan_duration; /* given in micro-seconds */
1713         __le32 switch_time; /* given in micro-seconds */
1714         __le32 switch_timeout; /* given in micro-seconds */
1715 } __packed; /* TDLS_STA_CHANNEL_SWITCH_TIMING_DATA_API_S_VER_1 */
1716
1717 #define IWL_TDLS_CH_SW_FRAME_MAX_SIZE 200
1718
1719 /**
1720  * TDLS channel switch frame template
1721  *
1722  * A template representing a TDLS channel-switch request or response frame
1723  *
1724  * @switch_time_offset: offset to the channel switch timing IE in the template
1725  * @tx_cmd: Tx parameters for the frame
1726  * @data: frame data
1727  */
1728 struct iwl_tdls_channel_switch_frame {
1729         __le32 switch_time_offset;
1730         struct iwl_tx_cmd tx_cmd;
1731         u8 data[IWL_TDLS_CH_SW_FRAME_MAX_SIZE];
1732 } __packed; /* TDLS_STA_CHANNEL_SWITCH_FRAME_API_S_VER_1 */
1733
1734 /**
1735  * TDLS channel switch command
1736  *
1737  * The command is sent to initiate a channel switch and also in response to
1738  * incoming TDLS channel-switch request/response packets from remote peers.
1739  *
1740  * @switch_type: see &enum iwl_tdls_channel_switch_type
1741  * @peer_sta_id: station id of TDLS peer
1742  * @ci: channel we switch to
1743  * @timing: timing related data for command
1744  * @frame: channel-switch request/response template, depending to switch_type
1745  */
1746 struct iwl_tdls_channel_switch_cmd {
1747         u8 switch_type;
1748         __le32 peer_sta_id;
1749         struct iwl_fw_channel_info ci;
1750         struct iwl_tdls_channel_switch_timing timing;
1751         struct iwl_tdls_channel_switch_frame frame;
1752 } __packed; /* TDLS_STA_CHANNEL_SWITCH_CMD_API_S_VER_1 */
1753
1754 /**
1755  * TDLS channel switch start notification
1756  *
1757  * @status: non-zero on success
1758  * @offchannel_duration: duration given in microseconds
1759  * @sta_id: peer currently performing the channel-switch with
1760  */
1761 struct iwl_tdls_channel_switch_notif {
1762         __le32 status;
1763         __le32 offchannel_duration;
1764         __le32 sta_id;
1765 } __packed; /* TDLS_STA_CHANNEL_SWITCH_NTFY_API_S_VER_1 */
1766
1767 /**
1768  * TDLS station info
1769  *
1770  * @sta_id: station id of the TDLS peer
1771  * @tx_to_peer_tid: TID reserved vs. the peer for FW based Tx
1772  * @tx_to_peer_ssn: initial SSN the FW should use for Tx on its TID vs the peer
1773  * @is_initiator: 1 if the peer is the TDLS link initiator, 0 otherwise
1774  */
1775 struct iwl_tdls_sta_info {
1776         u8 sta_id;
1777         u8 tx_to_peer_tid;
1778         __le16 tx_to_peer_ssn;
1779         __le32 is_initiator;
1780 } __packed; /* TDLS_STA_INFO_VER_1 */
1781
1782 /**
1783  * TDLS basic config command
1784  *
1785  * @id_and_color: MAC id and color being configured
1786  * @tdls_peer_count: amount of currently connected TDLS peers
1787  * @tx_to_ap_tid: TID reverved vs. the AP for FW based Tx
1788  * @tx_to_ap_ssn: initial SSN the FW should use for Tx on its TID vs. the AP
1789  * @sta_info: per-station info. Only the first tdls_peer_count entries are set
1790  * @pti_req_data_offset: offset of network-level data for the PTI template
1791  * @pti_req_tx_cmd: Tx parameters for PTI request template
1792  * @pti_req_template: PTI request template data
1793  */
1794 struct iwl_tdls_config_cmd {
1795         __le32 id_and_color; /* mac id and color */
1796         u8 tdls_peer_count;
1797         u8 tx_to_ap_tid;
1798         __le16 tx_to_ap_ssn;
1799         struct iwl_tdls_sta_info sta_info[IWL_MVM_TDLS_STA_COUNT];
1800
1801         __le32 pti_req_data_offset;
1802         struct iwl_tx_cmd pti_req_tx_cmd;
1803         u8 pti_req_template[0];
1804 } __packed; /* TDLS_CONFIG_CMD_API_S_VER_1 */
1805
1806 /**
1807  * TDLS per-station config information from FW
1808  *
1809  * @sta_id: station id of the TDLS peer
1810  * @tx_to_peer_last_seq: last sequence number used by FW during FW-based Tx to
1811  *      the peer
1812  */
1813 struct iwl_tdls_config_sta_info_res {
1814         __le16 sta_id;
1815         __le16 tx_to_peer_last_seq;
1816 } __packed; /* TDLS_STA_INFO_RSP_VER_1 */
1817
1818 /**
1819  * TDLS config information from FW
1820  *
1821  * @tx_to_ap_last_seq: last sequence number used by FW during FW-based Tx to AP
1822  * @sta_info: per-station TDLS config information
1823  */
1824 struct iwl_tdls_config_res {
1825         __le32 tx_to_ap_last_seq;
1826         struct iwl_tdls_config_sta_info_res sta_info[IWL_MVM_TDLS_STA_COUNT];
1827 } __packed; /* TDLS_CONFIG_RSP_API_S_VER_1 */
1828
1829 #define TX_FIFO_MAX_NUM         8
1830 #define RX_FIFO_MAX_NUM         2
1831
1832 /**
1833  * Shared memory configuration information from the FW
1834  *
1835  * @shared_mem_addr: shared memory addr (pre 8000 HW set to 0x0 as MARBH is not
1836  *      accessible)
1837  * @shared_mem_size: shared memory size
1838  * @sample_buff_addr: internal sample (mon/adc) buff addr (pre 8000 HW set to
1839  *      0x0 as accessible only via DBGM RDAT)
1840  * @sample_buff_size: internal sample buff size
1841  * @txfifo_addr: start addr of TXF0 (excluding the context table 0.5KB), (pre
1842  *      8000 HW set to 0x0 as not accessible)
1843  * @txfifo_size: size of TXF0 ... TXF7
1844  * @rxfifo_size: RXF1, RXF2 sizes. If there is no RXF2, it'll have a value of 0
1845  * @page_buff_addr: used by UMAC and performance debug (page miss analysis),
1846  *      when paging is not supported this should be 0
1847  * @page_buff_size: size of %page_buff_addr
1848  */
1849 struct iwl_shared_mem_cfg {
1850         __le32 shared_mem_addr;
1851         __le32 shared_mem_size;
1852         __le32 sample_buff_addr;
1853         __le32 sample_buff_size;
1854         __le32 txfifo_addr;
1855         __le32 txfifo_size[TX_FIFO_MAX_NUM];
1856         __le32 rxfifo_size[RX_FIFO_MAX_NUM];
1857         __le32 page_buff_addr;
1858         __le32 page_buff_size;
1859 } __packed; /* SHARED_MEM_ALLOC_API_S_VER_1 */
1860
1861 #define MAX_STORED_BEACON_SIZE 600
1862
1863 /**
1864  * Stored beacon notification
1865  *
1866  * @system_time: system time on air rise
1867  * @tsf: TSF on air rise
1868  * @beacon_timestamp: beacon on air rise
1869  * @phy_flags: general phy flags: band, modulation, etc.
1870  * @channel: channel this beacon was received on
1871  * @rates: rate in ucode internal format
1872  * @byte_count: frame's byte count
1873  */
1874 struct iwl_stored_beacon_notif {
1875         __le32 system_time;
1876         __le64 tsf;
1877         __le32 beacon_timestamp;
1878         __le16 phy_flags;
1879         __le16 channel;
1880         __le32 rates;
1881         __le32 byte_count;
1882         u8 data[MAX_STORED_BEACON_SIZE];
1883 } __packed; /* WOWLAN_STROED_BEACON_INFO_S_VER_1 */
1884
1885 #endif /* __fw_api_h__ */