1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
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
7 #ifndef __iwl_fw_api_datapath_h__
8 #define __iwl_fw_api_datapath_h__
11 * enum iwl_data_path_subcmd_ids - data path group commands
13 enum iwl_data_path_subcmd_ids
{
15 * @DQA_ENABLE_CMD: &struct iwl_dqa_enable_cmd
20 * @UPDATE_MU_GROUPS_CMD: &struct iwl_mu_group_mgmt_cmd
22 UPDATE_MU_GROUPS_CMD
= 0x1,
25 * @TRIGGER_RX_QUEUES_NOTIF_CMD: &struct iwl_rxq_sync_cmd
27 TRIGGER_RX_QUEUES_NOTIF_CMD
= 0x2,
30 * @STA_HE_CTXT_CMD: &struct iwl_he_sta_context_cmd
32 STA_HE_CTXT_CMD
= 0x7,
35 * @RFH_QUEUE_CONFIG_CMD: &struct iwl_rfh_queue_config
37 RFH_QUEUE_CONFIG_CMD
= 0xD,
40 * @TLC_MNG_CONFIG_CMD: &struct iwl_tlc_config_cmd
42 TLC_MNG_CONFIG_CMD
= 0xF,
45 * @HE_AIR_SNIFFER_CONFIG_CMD: &struct iwl_he_monitor_cmd
47 HE_AIR_SNIFFER_CONFIG_CMD
= 0x13,
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,
56 * @RX_NO_DATA_NOTIF: &struct iwl_rx_no_data
58 RX_NO_DATA_NOTIF
= 0xF5,
61 * @TLC_MNG_UPDATE_NOTIF: &struct iwl_tlc_update_notif
63 TLC_MNG_UPDATE_NOTIF
= 0xF7,
66 * @STA_PM_NOTIF: &struct iwl_mvm_pm_state_notification
71 * @MU_GROUP_MGMT_NOTIF: &struct iwl_mu_group_mgmt_notif
73 MU_GROUP_MGMT_NOTIF
= 0xFE,
76 * @RX_QUEUES_NOTIFICATION: &struct iwl_rxq_sync_notification
78 RX_QUEUES_NOTIFICATION
= 0xFF,
82 * struct iwl_mu_group_mgmt_cmd - VHT MU-MIMO group configuration
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
{
91 __le32 membership_status
[2];
92 __le32 user_position
[4];
93 } __packed
; /* MU_GROUP_ID_MNG_TABLE_API_S_VER_1 */
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
122 * @timer: if enabled via flags, automatically disable after this many
127 * @count: if enabled via flags, automatically disable after this many
128 * frames with channel estimation matrix were captured
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)
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
154 } __packed
; /* CHEST_COLLECTOR_FILTER_CMD_API_S_VER_1 */
156 #endif /* __iwl_fw_api_datapath_h__ */