/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ /* * Copyright (C) 2023-2024 Intel Corporation * Copyright (C) 2013-2014, 2018-2019 Intel Corporation * Copyright (C) 2013-2014 Intel Mobile Communications GmbH * Copyright (C) 2017 Intel Deutschland GmbH */ #ifndef __iwl_fw_api_coex_h__ #define __iwl_fw_api_coex_h__ #include <linux/types.h> #include <linux/bitops.h> #define BITS(nb) … enum iwl_bt_coex_lut_type { … }; /* BT_COEX_DECISION_LUT_INDEX_API_E_VER_1 */ #define BT_REDUCED_TX_POWER_BIT … enum iwl_bt_coex_mode { … }; /* BT_COEX_MODES_E */ enum iwl_bt_coex_enabled_modules { … }; /* BT_COEX_MODULES_ENABLE_E_VER_1 */ /** * struct iwl_bt_coex_cmd - bt coex configuration command * @mode: &enum iwl_bt_coex_mode * @enabled_modules: &enum iwl_bt_coex_enabled_modules * * The structure is used for the BT_COEX command. */ struct iwl_bt_coex_cmd { … } __packed; /* BT_COEX_CMD_API_S_VER_6 */ /** * struct iwl_bt_coex_reduced_txp_update_cmd * @reduced_txp: bit BT_REDUCED_TX_POWER_BIT to enable / disable, rest of the * bits are the sta_id (value) */ struct iwl_bt_coex_reduced_txp_update_cmd { … } __packed; /* BT_COEX_UPDATE_REDUCED_TX_POWER_API_S_VER_1 */ /** * struct iwl_bt_coex_ci_cmd - bt coex channel inhibition command * @bt_primary_ci: primary channel inhibition bitmap * @primary_ch_phy_id: primary channel PHY ID * @bt_secondary_ci: secondary channel inhibition bitmap * @secondary_ch_phy_id: secondary channel PHY ID * * Used for BT_COEX_CI command */ struct iwl_bt_coex_ci_cmd { … } __packed; /* BT_CI_MSG_API_S_VER_2 */ enum iwl_bt_activity_grading { … }; /* BT_COEX_BT_ACTIVITY_GRADING_API_E_VER_1 */ enum iwl_bt_ci_compliance { … }; /* BT_COEX_CI_COMPLIENCE_E_VER_1 */ /** * struct iwl_bt_coex_profile_notif - notification about BT coex * @mbox_msg: message from BT to WiFi * @msg_idx: the index of the message * @bt_ci_compliance: enum %iwl_bt_ci_compliance * @primary_ch_lut: LUT used for primary channel &enum iwl_bt_coex_lut_type * @secondary_ch_lut: LUT used for secondary channel &enum iwl_bt_coex_lut_type * @bt_activity_grading: the activity of BT &enum iwl_bt_activity_grading * @ttc_status: is TTC enabled - one bit per PHY * @rrc_status: is RRC enabled - one bit per PHY * The following fields are only for version 5, and are reserved in version 4: * @wifi_loss_low_rssi: The predicted lost WiFi rate (% of air time that BT is * utilizing) when the RSSI is low (<= -65 dBm) * @wifi_loss_mid_high_rssi: The predicted lost WiFi rate (% of air time that * BT is utilizing) when the RSSI is mid/high (>= -65 dBm) */ struct iwl_bt_coex_profile_notif { … } __packed; /* BT_COEX_PROFILE_NTFY_API_S_VER_4 * BT_COEX_PROFILE_NTFY_API_S_VER_5 */ #endif /* __iwl_fw_api_coex_h__ */