2021-01-18 02:55:14 -05:00
|
|
|
/*
|
2023-06-27 09:34:53 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018-2023 Espressif Systems (Shanghai) CO LTD
|
2021-01-18 02:55:14 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-02-20 08:01:27 -05:00
|
|
|
|
|
|
|
#ifndef __ESP_COEXIST_INTERNAL_H__
|
|
|
|
#define __ESP_COEXIST_INTERNAL_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2021-01-18 02:55:14 -05:00
|
|
|
#include "esp_coexist.h"
|
2019-02-20 08:01:27 -05:00
|
|
|
#include "esp_coexist_adapter.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
COEX_PREFER_WIFI = 0,
|
|
|
|
COEX_PREFER_BT,
|
|
|
|
COEX_PREFER_BALANCE,
|
|
|
|
COEX_PREFER_NUM,
|
|
|
|
} coex_prefer_t;
|
|
|
|
|
2023-02-17 03:20:46 -05:00
|
|
|
typedef enum {
|
|
|
|
COEX_SCHM_CALLBACK_TYPE_WIFI = 0,
|
|
|
|
COEX_SCHM_CALLBACK_TYPE_BT,
|
|
|
|
COEX_SCHM_CALLBACK_TYPE_I154,
|
|
|
|
} coex_schm_callback_type_t;
|
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
typedef void (* coex_func_cb_t)(uint32_t event, int sched_cnt);
|
2021-10-25 09:19:47 -04:00
|
|
|
typedef esp_err_t (* coex_set_lpclk_source_callback_t)(void);
|
2023-02-21 03:30:54 -05:00
|
|
|
typedef void (* coex_wifi_channel_change_cb_t)(uint8_t primary, uint8_t secondary);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
2019-11-27 10:32:54 -05:00
|
|
|
/**
|
|
|
|
* @brief Pre-Init software coexist
|
|
|
|
* extern function for internal use.
|
|
|
|
*
|
|
|
|
* @return Init ok or failed.
|
|
|
|
*/
|
|
|
|
esp_err_t coex_pre_init(void);
|
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
/**
|
|
|
|
* @brief Init software coexist
|
|
|
|
* extern function for internal use.
|
|
|
|
*
|
|
|
|
* @return Init ok or failed.
|
|
|
|
*/
|
|
|
|
esp_err_t coex_init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief De-init software coexist
|
|
|
|
* extern function for internal use.
|
|
|
|
*/
|
|
|
|
void coex_deinit(void);
|
|
|
|
|
2020-08-26 05:51:13 -04:00
|
|
|
/**
|
|
|
|
* @brief Enable software coexist
|
|
|
|
* extern function for internal use.
|
|
|
|
*
|
|
|
|
* @return Enable ok or failed.
|
|
|
|
*/
|
|
|
|
esp_err_t coex_enable(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disable software coexist
|
|
|
|
* extern function for internal use.
|
|
|
|
*/
|
|
|
|
void coex_disable(void);
|
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
/**
|
|
|
|
* @brief Get software coexist version string
|
|
|
|
* extern function for internal use.
|
|
|
|
* @return : version string
|
|
|
|
*/
|
|
|
|
const char *coex_version_get(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Coexist performance preference set from libbt.a
|
|
|
|
* extern function for internal use.
|
|
|
|
*
|
|
|
|
* @param prefer : the prefer enumeration value
|
|
|
|
* @return : ESP_OK - success, other - failed
|
|
|
|
*/
|
|
|
|
esp_err_t coex_preference_set(coex_prefer_t prefer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get software coexist status.
|
|
|
|
* @return : software coexist status
|
|
|
|
*/
|
|
|
|
uint32_t coex_status_get(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief WiFi requests coexistence.
|
|
|
|
*
|
|
|
|
* @param event : WiFi event
|
|
|
|
* @param latency : WiFi will request coexistence after latency
|
|
|
|
* @param duration : duration for WiFi to request coexistence
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_wifi_request(uint32_t event, uint32_t latency, uint32_t duration);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief WiFi release coexistence.
|
|
|
|
*
|
|
|
|
* @param event : WiFi event
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_wifi_release(uint32_t event);
|
|
|
|
|
|
|
|
/**
|
2020-08-26 05:51:13 -04:00
|
|
|
* @brief Set WiFi channel to coexistence module.
|
2019-02-20 08:01:27 -05:00
|
|
|
*
|
2020-08-26 05:51:13 -04:00
|
|
|
* @param primary : WiFi primary channel
|
|
|
|
* @param secondary : WiFi secondary channel
|
2019-02-20 08:01:27 -05:00
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
2020-08-26 05:51:13 -04:00
|
|
|
int coex_wifi_channel_set(uint8_t primary, uint8_t secondary);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
2023-02-21 03:30:54 -05:00
|
|
|
/**
|
|
|
|
* @brief Get WiFi channel from coexistence module.
|
|
|
|
*
|
|
|
|
* @param primary : pointer to value of WiFi primary channel
|
|
|
|
* @param secondary : pointer to value of WiFi secondary channel
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_wifi_channel_get(uint8_t *primary, uint8_t *secondary);
|
|
|
|
|
2021-10-25 09:19:47 -04:00
|
|
|
/**
|
|
|
|
* @brief Register application callback function to Wi-Fi update low power clock module.
|
|
|
|
*
|
|
|
|
* @param callback : Wi-Fi update low power clock callback function
|
|
|
|
*/
|
|
|
|
void coex_wifi_register_update_lpclk_callback(coex_set_lpclk_source_callback_t callback);
|
|
|
|
|
2023-02-21 03:30:54 -05:00
|
|
|
/**
|
|
|
|
* @brief Bluetooth requests coexistence
|
|
|
|
*
|
|
|
|
* @param event : Bluetooth event
|
|
|
|
* @param latency : Bluetooth will request coexistence after latency
|
|
|
|
* @param duration : duration for Bluetooth to request coexistence
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_bt_request(uint32_t event, uint32_t latency, uint32_t duration);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Bluetooth release coexistence.
|
|
|
|
*
|
|
|
|
* @param event : Bluetooth event
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_bt_release(uint32_t event);
|
|
|
|
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
/**
|
|
|
|
* @brief Bluetooth registers callback function to coexistence module
|
|
|
|
* This function is only used on ESP32.
|
|
|
|
*
|
|
|
|
* @param callback: callback function registered to coexistence module
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_register_bt_cb(coex_func_cb_t callback);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief To acquire the spin-lock used in resetting Bluetooth baseband.
|
|
|
|
* This function is only used to workaround ESP32 hardware issue.
|
|
|
|
*
|
|
|
|
* @param callback: callback function registered to coexistence module
|
|
|
|
* @return : value of the spinlock to be restored
|
|
|
|
*/
|
|
|
|
uint32_t coex_bb_reset_lock(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief To release the spin-lock used in resetting Bluetooth baseband.
|
|
|
|
* This function is only used to workaround ESP32 hardware issue.
|
|
|
|
*
|
|
|
|
* @param restore: value of the spinlock returned from previous call of coex_bb_rest_lock
|
|
|
|
*/
|
|
|
|
void coex_bb_reset_unlock(uint32_t restore);
|
|
|
|
#endif /* CONFIG_IDF_TARGET_ESP32 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Bluetooth registers callback function to receive notification when Wi-Fi channel changes
|
|
|
|
*
|
|
|
|
* @param callback: callback function registered to coexistence module
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_register_wifi_channel_change_callback(coex_wifi_channel_change_cb_t callback);
|
|
|
|
|
2021-10-25 09:19:47 -04:00
|
|
|
/**
|
|
|
|
* @brief Update low power clock interval
|
|
|
|
*/
|
|
|
|
void coex_update_lpclk_interval(void);
|
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
/**
|
2020-08-26 05:51:13 -04:00
|
|
|
* @brief Get coexistence event duration.
|
2019-02-20 08:01:27 -05:00
|
|
|
*
|
2020-08-26 05:51:13 -04:00
|
|
|
* @param event : Coexistence event
|
2020-11-10 02:40:01 -05:00
|
|
|
* @param duration: Coexistence event duration
|
2019-02-20 08:01:27 -05:00
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
2020-08-26 05:51:13 -04:00
|
|
|
int coex_event_duration_get(uint32_t event, uint32_t *duration);
|
|
|
|
|
2021-01-10 03:16:28 -05:00
|
|
|
#if SOC_COEX_HW_PTI
|
|
|
|
/**
|
|
|
|
* @brief Get coexistence event priority.
|
|
|
|
*
|
|
|
|
* @param event : Coexistence event
|
|
|
|
* @param pti: Coexistence event priority
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_pti_get(uint32_t event, uint8_t *pti);
|
|
|
|
#endif
|
|
|
|
|
2020-08-26 05:51:13 -04:00
|
|
|
/**
|
|
|
|
* @brief Clear coexistence status.
|
|
|
|
*
|
|
|
|
* @param type : Coexistence status type
|
|
|
|
* @param status: Coexistence status
|
|
|
|
*/
|
|
|
|
void coex_schm_status_bit_clear(uint32_t type, uint32_t status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set coexistence status.
|
|
|
|
*
|
|
|
|
* @param type : Coexistence status type
|
|
|
|
* @param status: Coexistence status
|
|
|
|
*/
|
|
|
|
void coex_schm_status_bit_set(uint32_t type, uint32_t status);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
|
|
|
/**
|
2020-08-26 05:51:13 -04:00
|
|
|
* @brief Set coexistence scheme interval.
|
2019-02-20 08:01:27 -05:00
|
|
|
*
|
2020-11-10 02:40:01 -05:00
|
|
|
* @param interval : Coexistence scheme interval
|
2019-02-20 08:01:27 -05:00
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
2020-08-26 05:51:13 -04:00
|
|
|
int coex_schm_interval_set(uint32_t interval);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get coexistence scheme interval.
|
|
|
|
*
|
|
|
|
* @return : Coexistence scheme interval
|
|
|
|
*/
|
|
|
|
uint32_t coex_schm_interval_get(void);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
|
|
|
/**
|
2020-08-26 05:51:13 -04:00
|
|
|
* @brief Get current coexistence scheme period.
|
2019-02-20 08:01:27 -05:00
|
|
|
*
|
2020-11-10 02:40:01 -05:00
|
|
|
* @return : Coexistence scheme period
|
2020-08-26 05:51:13 -04:00
|
|
|
*/
|
|
|
|
uint8_t coex_schm_curr_period_get(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get current coexistence scheme phase.
|
|
|
|
*
|
2020-11-10 02:40:01 -05:00
|
|
|
* @return : Coexistence scheme phase
|
2020-08-26 05:51:13 -04:00
|
|
|
*/
|
|
|
|
void * coex_schm_curr_phase_get(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set current coexistence scheme phase index.
|
|
|
|
*
|
2020-11-10 02:40:01 -05:00
|
|
|
* @param interval : Coexistence scheme phase index
|
2020-08-26 05:51:13 -04:00
|
|
|
* @return : 0 - success, other - failed
|
2019-02-20 08:01:27 -05:00
|
|
|
*/
|
2020-08-26 05:51:13 -04:00
|
|
|
int coex_schm_curr_phase_idx_set(int idx);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
|
|
|
/**
|
2020-08-26 05:51:13 -04:00
|
|
|
* @brief Get current coexistence scheme phase index.
|
2019-02-20 08:01:27 -05:00
|
|
|
*
|
2020-08-26 05:51:13 -04:00
|
|
|
* @return : Coexistence scheme phase index
|
2019-02-20 08:01:27 -05:00
|
|
|
*/
|
2020-08-26 05:51:13 -04:00
|
|
|
int coex_schm_curr_phase_idx_get(void);
|
2019-02-20 08:01:27 -05:00
|
|
|
|
2022-05-07 06:19:55 -04:00
|
|
|
/**
|
2022-03-15 05:08:12 -04:00
|
|
|
* @brief Register WiFi callback for coexistence starts.
|
2022-05-07 06:19:55 -04:00
|
|
|
*
|
2022-03-15 05:08:12 -04:00
|
|
|
* @param cb : WiFi callback
|
|
|
|
* @return : 0 - success, other - failed
|
2022-05-07 06:19:55 -04:00
|
|
|
*/
|
|
|
|
int coex_register_start_cb(int (* cb)(void));
|
|
|
|
|
2022-11-18 04:26:31 -05:00
|
|
|
/**
|
|
|
|
* @brief Restart current coexistence scheme.
|
|
|
|
*
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
|
|
|
int coex_schm_process_restart(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Register callback for coexistence scheme.
|
|
|
|
*
|
|
|
|
* @param type : callback type
|
|
|
|
* @param callback : callback
|
|
|
|
* @return : 0 - success, other - failed
|
|
|
|
*/
|
2023-02-17 03:20:46 -05:00
|
|
|
int coex_schm_register_callback(coex_schm_callback_type_t type, void *callback);
|
2022-11-18 04:26:31 -05:00
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
/**
|
|
|
|
* @brief Register coexistence adapter functions.
|
|
|
|
*
|
|
|
|
* @param funcs : coexistence adapter functions
|
|
|
|
* @return : ESP_OK - success, other - failed
|
|
|
|
*/
|
|
|
|
esp_err_t esp_coex_adapter_register(coex_adapter_funcs_t *funcs);
|
|
|
|
|
2021-01-18 02:55:14 -05:00
|
|
|
#if CONFIG_EXTERNAL_COEX_ENABLE
|
2022-03-14 23:55:37 -04:00
|
|
|
/**
|
2023-05-08 04:22:30 -04:00
|
|
|
* @brief Set external coexistence advanced informations, like working mode.
|
2022-03-14 23:55:37 -04:00
|
|
|
*
|
2023-05-31 22:56:33 -04:00
|
|
|
* @param out_pti1 This parameter no longer works, will be deprecated and later removed in future releases.
|
|
|
|
* @param out_pti2 This parameter no longer works, will be deprecated and later removed in future releases.
|
|
|
|
*
|
2022-03-14 23:55:37 -04:00
|
|
|
* @return
|
|
|
|
* - ESP_OK: succeed
|
|
|
|
*/
|
2023-05-31 22:56:33 -04:00
|
|
|
esp_err_t esp_coex_external_params(esp_external_coex_advance_t coex_info, uint32_t out_pti1, uint32_t out_pti2);
|
2022-03-14 23:55:37 -04:00
|
|
|
|
2021-01-18 02:55:14 -05:00
|
|
|
/**
|
|
|
|
* @brief Set external coexistence pti level and enable it.
|
|
|
|
*
|
|
|
|
* @param level1 external coex low pti
|
|
|
|
* @param level2 external coex mid pti
|
|
|
|
* @param level3 external coex high pti
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: succeed
|
|
|
|
*/
|
|
|
|
esp_err_t esp_coex_external_set(esp_coex_pti_level_t level1,
|
|
|
|
esp_coex_pti_level_t level2, esp_coex_pti_level_t level3);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disable external coexist
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: succeed
|
|
|
|
*/
|
|
|
|
void esp_coex_external_stop(void);
|
2023-05-31 22:56:33 -04:00
|
|
|
|
|
|
|
#if SOC_EXTERNAL_COEX_LEADER_TX_LINE
|
|
|
|
/**
|
|
|
|
* @brief Enable external coexist tx line
|
|
|
|
*
|
|
|
|
* @param en Enable external coex tx line
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: succeed
|
|
|
|
*/
|
|
|
|
void esp_coex_external_set_txline(bool en);
|
|
|
|
#endif /*SOC_EXTERNAL_COEX_LEADER_TX_LINE*/
|
2021-01-18 02:55:14 -05:00
|
|
|
#endif /*External Coex*/
|
|
|
|
|
2019-02-20 08:01:27 -05:00
|
|
|
/**
|
|
|
|
* @brief Check the MD5 values of the coexistence adapter header files in IDF and WiFi library
|
|
|
|
*
|
|
|
|
* @attention 1. It is used for internal CI version check
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK : succeed
|
|
|
|
* - ESP_WIFI_INVALID_ARG : MD5 check fail
|
|
|
|
*/
|
|
|
|
esp_err_t esp_coex_adapter_funcs_md5_check(const char *md5);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ESP_COEXIST_INTERNAL_H__ */
|