1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
3 * Copyright (C) 2020-2021, 2023 Intel Corporation
5 #ifndef __iwl_fw_api_rfi_h__
6 #define __iwl_fw_api_rfi_h__
8 #define IWL_RFI_LUT_ENTRY_CHANNELS_NUM 15
9 #define IWL_RFI_LUT_SIZE 24
10 #define IWL_RFI_LUT_INSTALLED_SIZE 4
13 * struct iwl_rfi_lut_entry - an entry in the RFI frequency LUT.
16 * @channels: channels that can be interfered at frequency freq (at most 15)
17 * @bands: the corresponding bands
19 struct iwl_rfi_lut_entry {
21 u8 channels[IWL_RFI_LUT_ENTRY_CHANNELS_NUM];
22 u8 bands[IWL_RFI_LUT_ENTRY_CHANNELS_NUM];
26 * struct iwl_rfi_config_cmd - RFI configuration table
28 * @table: a table can have 24 frequency/channel mappings
29 * @oem: specifies if this is the default table or set by OEM
30 * @reserved: (reserved/padding)
32 struct iwl_rfi_config_cmd {
33 struct iwl_rfi_lut_entry table[IWL_RFI_LUT_SIZE];
36 } __packed; /* RFI_CONFIG_CMD_API_S_VER_1 */
39 * enum iwl_rfi_freq_table_status - status of the frequency table query
40 * @RFI_FREQ_TABLE_OK: can be used
41 * @RFI_FREQ_TABLE_DVFS_NOT_READY: DVFS is not ready yet, should try later
42 * @RFI_FREQ_TABLE_DISABLED: the feature is disabled in FW
44 enum iwl_rfi_freq_table_status {
46 RFI_FREQ_TABLE_DVFS_NOT_READY,
47 RFI_FREQ_TABLE_DISABLED,
51 * struct iwl_rfi_freq_table_resp_cmd - get the rfi freq table used by FW
53 * @table: table used by FW
54 * @status: see &iwl_rfi_freq_table_status
56 struct iwl_rfi_freq_table_resp_cmd {
57 struct iwl_rfi_lut_entry table[IWL_RFI_LUT_INSTALLED_SIZE];
59 } __packed; /* RFI_CONFIG_CMD_API_S_VER_1 */
62 * struct iwl_rfi_deactivate_notif - notifcation that FW disaled RFIm
64 * @reason: used only for a log message
66 struct iwl_rfi_deactivate_notif {
68 } __packed; /* RFI_DEACTIVATE_NTF_S_VER_1 */
69 #endif /* __iwl_fw_api_rfi_h__ */