| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include <stdint.h>
- #include <stdbool.h>
- #include "esp_err.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @file PHY init parameters and API
- */
- /**
- * @brief Structure holding PHY init parameters
- */
- typedef struct {
- uint8_t params[128]; /*!< opaque PHY initialization parameters */
- } esp_phy_init_data_t;
- /**
- * @brief Opaque PHY calibration data
- */
- typedef struct {
- uint8_t version[4]; /*!< PHY version */
- uint8_t mac[6]; /*!< The MAC address of the station */
- uint8_t opaque[1894]; /*!< calibration data */
- } esp_phy_calibration_data_t;
- typedef enum {
- PHY_RF_CAL_PARTIAL = 0x00000000, /*!< Do part of RF calibration. This should be used after power-on reset. */
- PHY_RF_CAL_NONE = 0x00000001, /*!< Don't do any RF calibration. This mode is only suggested to be used after deep sleep reset. */
- PHY_RF_CAL_FULL = 0x00000002 /*!< Do full RF calibration. Produces best results, but also consumes a lot of time and current. Suggested to be used once. */
- } esp_phy_calibration_mode_t;
- /**
- * @brief Modules for modem sleep
- */
- typedef enum{
- MODEM_BLE_MODULE, //!< BLE controller used
- MODEM_CLASSIC_BT_MODULE, //!< Classic BT controller used
- MODEM_WIFI_STATION_MODULE, //!< Wi-Fi Station used
- MODEM_WIFI_SOFTAP_MODULE, //!< Wi-Fi SoftAP used
- MODEM_WIFI_SNIFFER_MODULE, //!< Wi-Fi Sniffer used
- MODEM_WIFI_NULL_MODULE, //!< Wi-Fi Null mode used
- MODEM_USER_MODULE, //!< User used
- MODEM_MODULE_COUNT //!< Number of items
- }modem_sleep_module_t;
- #if CONFIG_ESP32_SUPPORT_MULTIPLE_PHY_INIT_DATA_BIN
- /**
- * @brief PHY init data type
- */
- typedef enum {
- ESP_PHY_INIT_DATA_TYPE_DEFAULT = 0,
- ESP_PHY_INIT_DATA_TYPE_SRRC,
- ESP_PHY_INIT_DATA_TYPE_FCC,
- ESP_PHY_INIT_DATA_TYPE_CE,
- ESP_PHY_INIT_DATA_TYPE_NCC,
- ESP_PHY_INIT_DATA_TYPE_KCC,
- ESP_PHY_INIT_DATA_TYPE_MIC,
- ESP_PHY_INIT_DATA_TYPE_IC,
- ESP_PHY_INIT_DATA_TYPE_ACMA,
- ESP_PHY_INIT_DATA_TYPE_ANATEL,
- ESP_PHY_INIT_DATA_TYPE_ISED,
- ESP_PHY_INIT_DATA_TYPE_WPC,
- ESP_PHY_INIT_DATA_TYPE_OFCA,
- ESP_PHY_INIT_DATA_TYPE_IFETEL,
- ESP_PHY_INIT_DATA_TYPE_RCM,
- ESP_PHY_INIT_DATA_TYPE_NUMBER,
- } phy_init_data_type_t;
- #endif
- /**
- * @brief Module WIFI mask for medem sleep
- */
- #define MODEM_BT_MASK ((1<<MODEM_BLE_MODULE) | \
- (1<<MODEM_CLASSIC_BT_MODULE))
- /**
- * @brief Module WIFI mask for medem sleep
- */
- #define MODEM_WIFI_MASK ((1<<MODEM_WIFI_STATION_MODULE) | \
- (1<<MODEM_WIFI_SOFTAP_MODULE) | \
- (1<<MODEM_WIFI_SNIFFER_MODULE) | \
- (1<<MODEM_WIFI_NULL_MODULE))
- /**
- * @brief Modules needing to call phy_rf_init
- */
- typedef enum{
- PHY_BT_MODULE, //!< Bluetooth used
- PHY_WIFI_MODULE, //!< Wi-Fi used
- PHY_MODEM_MODULE, //!< Modem sleep used
- PHY_MODULE_COUNT //!< Number of items
- }phy_rf_module_t;
- /**
- * @brief Get PHY init data
- *
- * If "Use a partition to store PHY init data" option is set in menuconfig,
- * This function will load PHY init data from a partition. Otherwise,
- * PHY init data will be compiled into the application itself, and this function
- * will return a pointer to PHY init data located in read-only memory (DROM).
- *
- * If "Use a partition to store PHY init data" option is enabled, this function
- * may return NULL if the data loaded from flash is not valid.
- *
- * @note Call esp_phy_release_init_data to release the pointer obtained using
- * this function after the call to esp_wifi_init.
- *
- * @return pointer to PHY init data structure
- */
- const esp_phy_init_data_t* esp_phy_get_init_data(void);
- /**
- * @brief Release PHY init data
- * @param data pointer to PHY init data structure obtained from
- * esp_phy_get_init_data function
- */
- void esp_phy_release_init_data(const esp_phy_init_data_t* data);
- /**
- * @brief Function called by esp_phy_init to load PHY calibration data
- *
- * This is a convenience function which can be used to load PHY calibration
- * data from NVS. Data can be stored to NVS using esp_phy_store_cal_data_to_nvs
- * function.
- *
- * If calibration data is not present in the NVS, or
- * data is not valid (was obtained for a chip with a different MAC address,
- * or obtained for a different version of software), this function will
- * return an error.
- *
- * If "Initialize PHY in startup code" option is set in menuconfig, this
- * function will be used to load calibration data. To provide a different
- * mechanism for loading calibration data, disable
- * "Initialize PHY in startup code" option in menuconfig and call esp_phy_init
- * function from the application. For an example usage of esp_phy_init and
- * this function, see esp_phy_store_cal_data_to_nvs function in cpu_start.c
- *
- * @param out_cal_data pointer to calibration data structure to be filled with
- * loaded data.
- * @return ESP_OK on success
- */
- esp_err_t esp_phy_load_cal_data_from_nvs(esp_phy_calibration_data_t* out_cal_data);
- /**
- * @brief Function called by esp_phy_init to store PHY calibration data
- *
- * This is a convenience function which can be used to store PHY calibration
- * data to the NVS. Calibration data is returned by esp_phy_init function.
- * Data saved using this function to the NVS can later be loaded using
- * esp_phy_store_cal_data_to_nvs function.
- *
- * If "Initialize PHY in startup code" option is set in menuconfig, this
- * function will be used to store calibration data. To provide a different
- * mechanism for storing calibration data, disable
- * "Initialize PHY in startup code" option in menuconfig and call esp_phy_init
- * function from the application.
- *
- * @param cal_data pointer to calibration data which has to be saved.
- * @return ESP_OK on success
- */
- esp_err_t esp_phy_store_cal_data_to_nvs(const esp_phy_calibration_data_t* cal_data);
- /**
- * @brief Erase PHY calibration data which is stored in the NVS
- *
- * This is a function which can be used to trigger full calibration as a last-resort remedy
- * if partial calibration is used. It can be called in the application based on some conditions
- * (e.g. an option provided in some diagnostic mode).
- *
- * @return ESP_OK on success
- * @return others on fail. Please refer to NVS API return value error number.
- */
- esp_err_t esp_phy_erase_cal_data_in_nvs(void);
- /**
- * @brief Initialize PHY and RF module
- *
- * PHY and RF module should be initialized in order to use WiFi or BT.
- * Now PHY and RF initializing job is done automatically when start WiFi or BT. Users should not
- * call this API in their application.
- *
- * @param init_data PHY parameters. Default set of parameters can
- * be obtained by calling esp_phy_get_default_init_data
- * function.
- * @param mode Calibration mode (Full, partial, or no calibration)
- * @param[inout] calibration_data
- * @return ESP_OK on success.
- * @return ESP_FAIL on fail.
- */
- esp_err_t esp_phy_rf_init(const esp_phy_init_data_t* init_data,esp_phy_calibration_mode_t mode,
- esp_phy_calibration_data_t* calibration_data, phy_rf_module_t module);
- /**
- * @brief De-initialize PHY and RF module
- *
- * PHY module should be de-initialized in order to shutdown WiFi or BT.
- * Now PHY and RF de-initializing job is done automatically when stop WiFi or BT. Users should not
- * call this API in their application.
- *
- * @return ESP_OK on success.
- */
- esp_err_t esp_phy_rf_deinit(phy_rf_module_t module);
- /**
- * @brief Load calibration data from NVS and initialize PHY and RF module
- */
- void esp_phy_load_cal_and_init(phy_rf_module_t module);
- /**
- * @brief Enable WiFi/BT common clock
- *
- */
- void esp_phy_common_clock_enable(void);
- /**
- * @brief Disable WiFi/BT common clock
- *
- */
- void esp_phy_common_clock_disable(void);
- /**
- * @brief Module requires to enter modem sleep
- */
- esp_err_t esp_modem_sleep_enter(modem_sleep_module_t module);
- /**
- * @brief Module requires to exit modem sleep
- */
- esp_err_t esp_modem_sleep_exit(modem_sleep_module_t module);
- /**
- * @brief Register module to make it be able to require to enter/exit modem sleep
- * Although the module has no sleep function, as long as the module use RF,
- * it must call esp_modem_sleep_regsiter. Otherwise, other modules with sleep
- * function will disable RF without checking the module which doesn't call
- * esp_modem_sleep_regsiter.
- */
- esp_err_t esp_modem_sleep_register(modem_sleep_module_t module);
- /**
- * @brief De-register module from modem sleep list
- */
- esp_err_t esp_modem_sleep_deregister(modem_sleep_module_t module);
- /**
- * @brief Get the time stamp when PHY/RF was switched on
- * @return return 0 if PHY/RF is never switched on. Otherwise return time in
- * microsecond since boot when phy/rf was last switched on
- */
- int64_t esp_phy_rf_get_on_ts(void);
- /**
- * @brief Update the corresponding PHY init type according to the country code of Wi-Fi.
- */
- esp_err_t esp_phy_update_country_info(const char *country);
- #if CONFIG_ESP32_SUPPORT_MULTIPLE_PHY_INIT_DATA_BIN
- /**
- * @brief Apply PHY init bin to PHY
- * @return ESP_OK on success.
- * @return ESP_FAIL on fail.
- */
- esp_err_t esp_phy_apply_phy_init_data(uint8_t *init_data);
- #endif
- /*
- * @brief Get PHY lib version
- * @return PHY lib version.
- */
- char * get_phy_version_str(void);
- #ifdef __cplusplus
- }
- #endif
|