WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / wireless / intel / iwlwifi / fw / api / datapath.h
blobb472f08b06e60f35b94dbb754801f7c0cf6fc0ff
1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2 /*
3 * Copyright (C) 2012-2014, 2018-2019 Intel Corporation
4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2016-2017 Intel Deutschland GmbH
6 */
7 #ifndef __iwl_fw_api_datapath_h__
8 #define __iwl_fw_api_datapath_h__
10 /**
11 * enum iwl_data_path_subcmd_ids - data path group commands
13 enum iwl_data_path_subcmd_ids {
14 /**
15 * @DQA_ENABLE_CMD: &struct iwl_dqa_enable_cmd
17 DQA_ENABLE_CMD = 0x0,
19 /**
20 * @UPDATE_MU_GROUPS_CMD: &struct iwl_mu_group_mgmt_cmd
22 UPDATE_MU_GROUPS_CMD = 0x1,
24 /**
25 * @TRIGGER_RX_QUEUES_NOTIF_CMD: &struct iwl_rxq_sync_cmd
27 TRIGGER_RX_QUEUES_NOTIF_CMD = 0x2,
29 /**
30 * @STA_HE_CTXT_CMD: &struct iwl_he_sta_context_cmd
32 STA_HE_CTXT_CMD = 0x7,
34 /**
35 * @RFH_QUEUE_CONFIG_CMD: &struct iwl_rfh_queue_config
37 RFH_QUEUE_CONFIG_CMD = 0xD,
39 /**
40 * @TLC_MNG_CONFIG_CMD: &struct iwl_tlc_config_cmd
42 TLC_MNG_CONFIG_CMD = 0xF,
44 /**
45 * @HE_AIR_SNIFFER_CONFIG_CMD: &struct iwl_he_monitor_cmd
47 HE_AIR_SNIFFER_CONFIG_CMD = 0x13,
49 /**
50 * @CHEST_COLLECTOR_FILTER_CONFIG_CMD: Configure the CSI
51 * matrix collection, uses &struct iwl_channel_estimation_cfg
53 CHEST_COLLECTOR_FILTER_CONFIG_CMD = 0x14,
55 /**
56 * @RX_NO_DATA_NOTIF: &struct iwl_rx_no_data
58 RX_NO_DATA_NOTIF = 0xF5,
60 /**
61 * @TLC_MNG_UPDATE_NOTIF: &struct iwl_tlc_update_notif
63 TLC_MNG_UPDATE_NOTIF = 0xF7,
65 /**
66 * @STA_PM_NOTIF: &struct iwl_mvm_pm_state_notification
68 STA_PM_NOTIF = 0xFD,
70 /**
71 * @MU_GROUP_MGMT_NOTIF: &struct iwl_mu_group_mgmt_notif
73 MU_GROUP_MGMT_NOTIF = 0xFE,
75 /**
76 * @RX_QUEUES_NOTIFICATION: &struct iwl_rxq_sync_notification
78 RX_QUEUES_NOTIFICATION = 0xFF,
81 /**
82 * struct iwl_mu_group_mgmt_cmd - VHT MU-MIMO group configuration
84 * @reserved: reserved
85 * @membership_status: a bitmap of MU groups
86 * @user_position:the position of station in a group. If the station is in the
87 * group then bits (group * 2) is the position -1
89 struct iwl_mu_group_mgmt_cmd {
90 __le32 reserved;
91 __le32 membership_status[2];
92 __le32 user_position[4];
93 } __packed; /* MU_GROUP_ID_MNG_TABLE_API_S_VER_1 */
95 /**
96 * struct iwl_mu_group_mgmt_notif - VHT MU-MIMO group id notification
98 * @membership_status: a bitmap of MU groups
99 * @user_position: the position of station in a group. If the station is in the
100 * group then bits (group * 2) is the position -1
102 struct iwl_mu_group_mgmt_notif {
103 __le32 membership_status[2];
104 __le32 user_position[4];
105 } __packed; /* MU_GROUP_MNG_NTFY_API_S_VER_1 */
107 enum iwl_channel_estimation_flags {
108 IWL_CHANNEL_ESTIMATION_ENABLE = BIT(0),
109 IWL_CHANNEL_ESTIMATION_TIMER = BIT(1),
110 IWL_CHANNEL_ESTIMATION_COUNTER = BIT(2),
114 * struct iwl_channel_estimation_cfg - channel estimation reporting config
116 struct iwl_channel_estimation_cfg {
118 * @flags: flags, see &enum iwl_channel_estimation_flags
120 __le32 flags;
122 * @timer: if enabled via flags, automatically disable after this many
123 * microseconds
125 __le32 timer;
127 * @count: if enabled via flags, automatically disable after this many
128 * frames with channel estimation matrix were captured
130 __le32 count;
132 * @rate_n_flags_mask: only try to record the channel estimation matrix
133 * if the rate_n_flags value for the received frame (let's call
134 * that rx_rnf) matches the mask/value given here like this:
135 * (rx_rnf & rate_n_flags_mask) == rate_n_flags_val.
137 __le32 rate_n_flags_mask;
139 * @rate_n_flags_val: see @rate_n_flags_mask
141 __le32 rate_n_flags_val;
143 * @reserved: reserved (for alignment)
145 __le32 reserved;
147 * @frame_types: bitmap of frame types to capture, the received frame's
148 * subtype|type takes 6 bits in the frame and the corresponding bit
149 * in this field must be set to 1 to capture channel estimation for
150 * that frame type. Set to all-ones to enable capturing for all
151 * frame types.
153 __le64 frame_types;
154 } __packed; /* CHEST_COLLECTOR_FILTER_CMD_API_S_VER_1 */
156 #endif /* __iwl_fw_api_datapath_h__ */