2016-11-15 18:36:18 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
2017-02-16 22:06:02 +08:00
|
|
|
#include <sys/lock.h>
|
2017-02-16 19:05:07 +08:00
|
|
|
|
2017-04-11 15:44:43 +08:00
|
|
|
#include "soc/rtc.h"
|
2019-05-10 11:34:06 +08:00
|
|
|
#include "soc/dport_reg.h"
|
2016-11-15 18:36:18 +08:00
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_phy_init.h"
|
|
|
|
#include "esp_system.h"
|
|
|
|
#include "esp_log.h"
|
2016-11-18 01:18:39 +08:00
|
|
|
#include "nvs.h"
|
2017-02-16 19:05:07 +08:00
|
|
|
#include "nvs_flash.h"
|
2016-11-15 18:36:18 +08:00
|
|
|
#include "sdkconfig.h"
|
2018-01-24 12:19:57 +08:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/portmacro.h"
|
2017-01-16 02:33:16 +08:00
|
|
|
#include "phy.h"
|
2016-11-15 18:36:18 +08:00
|
|
|
#include "phy_init_data.h"
|
2019-02-20 21:01:27 +08:00
|
|
|
#include "esp_coexist_internal.h"
|
2017-11-01 17:05:38 +08:00
|
|
|
#include "driver/periph_ctrl.h"
|
2019-03-22 14:21:15 +08:00
|
|
|
#include "esp_private/wifi.h"
|
2021-01-19 19:36:06 +08:00
|
|
|
#include "soc/soc_caps.h"
|
2016-11-15 18:36:18 +08:00
|
|
|
|
2019-05-10 11:34:06 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
#include "esp32/rom/ets_sys.h"
|
|
|
|
#include "esp32/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2BETA
|
|
|
|
#include "esp32s2beta/rom/ets_sys.h"
|
|
|
|
#include "esp32s2beta/rom/rtc.h"
|
|
|
|
#endif
|
|
|
|
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-02-20 21:01:27 +08:00
|
|
|
extern wifi_mac_time_update_cb_t s_wifi_mac_time_update_cb;
|
2019-06-17 11:50:37 +08:00
|
|
|
#endif
|
2016-11-15 18:36:18 +08:00
|
|
|
|
2017-11-10 10:54:50 +08:00
|
|
|
static const char* TAG = "phy_init";
|
2017-02-16 19:05:07 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
static _lock_t s_phy_access_lock;
|
2017-02-16 19:05:07 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
/* Indicate PHY is calibrated or not */
|
|
|
|
static bool s_is_phy_calibrated = false;
|
2017-11-10 10:54:50 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
/* Reference count of enabling PHY */
|
|
|
|
static uint8_t s_phy_access_ref = 0;
|
2017-11-10 10:54:50 +08:00
|
|
|
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2018-12-11 16:49:01 +08:00
|
|
|
/* time stamp updated when the PHY/RF is turned on */
|
|
|
|
static int64_t s_phy_rf_en_ts = 0;
|
2019-06-17 11:50:37 +08:00
|
|
|
#endif
|
2018-12-11 16:49:01 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
/* PHY spinlock for libphy.a */
|
2019-12-02 14:56:18 +08:00
|
|
|
static DRAM_ATTR portMUX_TYPE s_phy_int_mux = portMUX_INITIALIZER_UNLOCKED;
|
|
|
|
|
2021-01-19 19:36:06 +08:00
|
|
|
/* Memory to store PHY digital registers */
|
|
|
|
static uint32_t* s_phy_digital_regs_mem = NULL;
|
|
|
|
|
2018-01-26 17:12:59 +08:00
|
|
|
uint32_t IRAM_ATTR phy_enter_critical(void)
|
2018-01-24 12:19:57 +08:00
|
|
|
{
|
2019-12-02 14:56:18 +08:00
|
|
|
if (xPortInIsrContext()) {
|
|
|
|
portENTER_CRITICAL_ISR(&s_phy_int_mux);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
portENTER_CRITICAL(&s_phy_int_mux);
|
|
|
|
}
|
|
|
|
// Interrupt level will be stored in current tcb, so always return zero.
|
|
|
|
return 0;
|
2018-01-24 12:19:57 +08:00
|
|
|
}
|
|
|
|
|
2018-01-26 17:12:59 +08:00
|
|
|
void IRAM_ATTR phy_exit_critical(uint32_t level)
|
2018-01-24 12:19:57 +08:00
|
|
|
{
|
2019-12-02 14:56:18 +08:00
|
|
|
// Param level don't need any more, ignore it.
|
|
|
|
if (xPortInIsrContext()) {
|
|
|
|
portEXIT_CRITICAL_ISR(&s_phy_int_mux);
|
|
|
|
} else {
|
|
|
|
portEXIT_CRITICAL(&s_phy_int_mux);
|
|
|
|
}
|
2018-01-24 12:19:57 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2018-12-11 16:49:01 +08:00
|
|
|
int64_t esp_phy_rf_get_on_ts(void)
|
|
|
|
{
|
|
|
|
return s_phy_rf_en_ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void phy_update_wifi_mac_time(bool en_clock_stopped, int64_t now)
|
2018-10-11 20:57:15 +08:00
|
|
|
{
|
|
|
|
static uint32_t s_common_clock_disable_time = 0;
|
|
|
|
|
|
|
|
if (en_clock_stopped) {
|
2018-12-11 16:49:01 +08:00
|
|
|
s_common_clock_disable_time = (uint32_t)now;
|
2018-10-11 20:57:15 +08:00
|
|
|
} else {
|
|
|
|
if (s_common_clock_disable_time) {
|
2018-12-11 16:49:01 +08:00
|
|
|
uint32_t diff = (uint64_t)now - s_common_clock_disable_time;
|
2018-10-11 20:57:15 +08:00
|
|
|
|
2019-02-20 21:01:27 +08:00
|
|
|
if (s_wifi_mac_time_update_cb) {
|
|
|
|
s_wifi_mac_time_update_cb(diff);
|
|
|
|
}
|
2018-10-11 20:57:15 +08:00
|
|
|
s_common_clock_disable_time = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-30 16:51:12 +08:00
|
|
|
#endif
|
2019-08-20 15:47:42 +08:00
|
|
|
|
|
|
|
IRAM_ATTR void esp_phy_common_clock_enable(void)
|
|
|
|
{
|
2020-07-02 19:53:15 +08:00
|
|
|
wifi_bt_common_module_enable();
|
2019-08-20 15:47:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
IRAM_ATTR void esp_phy_common_clock_disable(void)
|
|
|
|
{
|
2020-07-02 19:53:15 +08:00
|
|
|
wifi_bt_common_module_disable();
|
2019-08-20 15:47:42 +08:00
|
|
|
}
|
|
|
|
|
2021-01-19 19:36:06 +08:00
|
|
|
static inline void phy_digital_regs_store(void)
|
|
|
|
{
|
|
|
|
if (s_phy_digital_regs_mem == NULL) {
|
|
|
|
s_phy_digital_regs_mem = (uint32_t *)malloc(SOC_PHY_DIG_REGS_MEM_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s_phy_digital_regs_mem != NULL) {
|
|
|
|
phy_dig_reg_backup(true, s_phy_digital_regs_mem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void phy_digital_regs_load(void)
|
|
|
|
{
|
|
|
|
if (s_phy_digital_regs_mem != NULL) {
|
|
|
|
phy_dig_reg_backup(false, s_phy_digital_regs_mem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
void esp_phy_enable(void)
|
2017-02-16 19:05:07 +08:00
|
|
|
{
|
2020-05-22 17:15:28 +08:00
|
|
|
_lock_acquire(&s_phy_access_lock);
|
2017-11-10 10:54:50 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
if (s_phy_access_ref == 0) {
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2020-05-22 17:15:28 +08:00
|
|
|
// Update time stamp
|
|
|
|
s_phy_rf_en_ts = esp_timer_get_time();
|
|
|
|
// Update WiFi MAC time before WiFi/BT common clock is enabled
|
|
|
|
phy_update_wifi_mac_time(false, s_phy_rf_en_ts);
|
2019-06-17 11:50:37 +08:00
|
|
|
#endif
|
2020-05-22 17:15:28 +08:00
|
|
|
esp_phy_common_clock_enable();
|
2018-05-19 12:13:34 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
if (s_is_phy_calibrated == false) {
|
|
|
|
esp_phy_load_cal_and_init();
|
|
|
|
s_is_phy_calibrated = true;
|
2017-11-10 10:54:50 +08:00
|
|
|
}
|
|
|
|
else {
|
2020-05-22 17:15:28 +08:00
|
|
|
phy_wakeup_init();
|
2021-01-19 19:36:06 +08:00
|
|
|
phy_digital_regs_load();
|
2017-11-10 10:54:50 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2020-05-22 17:15:28 +08:00
|
|
|
coex_bt_high_prio();
|
2019-06-17 11:50:37 +08:00
|
|
|
#endif
|
2017-02-16 19:05:07 +08:00
|
|
|
}
|
2020-05-22 17:15:28 +08:00
|
|
|
s_phy_access_ref++;
|
2017-11-10 10:54:50 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
_lock_release(&s_phy_access_lock);
|
2017-11-10 10:54:50 +08:00
|
|
|
}
|
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
void esp_phy_disable(void)
|
2017-11-10 10:54:50 +08:00
|
|
|
{
|
2020-05-22 17:15:28 +08:00
|
|
|
_lock_acquire(&s_phy_access_lock);
|
2017-11-10 10:54:50 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
s_phy_access_ref--;
|
|
|
|
if (s_phy_access_ref == 0) {
|
2021-01-19 19:36:06 +08:00
|
|
|
phy_digital_regs_store();
|
2020-05-22 17:15:28 +08:00
|
|
|
// Disable PHY and RF.
|
|
|
|
phy_close_rf();
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
// Update WiFi MAC time before disalbe WiFi/BT common peripheral clock
|
|
|
|
phy_update_wifi_mac_time(true, esp_timer_get_time());
|
2017-11-10 10:54:50 +08:00
|
|
|
#endif
|
2020-05-22 17:15:28 +08:00
|
|
|
// Disable WiFi/BT common peripheral clock. Do not disable clock for hardware RNG
|
|
|
|
esp_phy_common_clock_disable();
|
2017-11-10 10:54:50 +08:00
|
|
|
}
|
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
_lock_release(&s_phy_access_lock);
|
2017-11-10 10:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-11-15 18:36:18 +08:00
|
|
|
// PHY init data handling functions
|
|
|
|
#if CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION
|
|
|
|
#include "esp_partition.h"
|
|
|
|
|
2019-07-16 16:33:30 +07:00
|
|
|
const esp_phy_init_data_t* esp_phy_get_init_data(void)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
|
|
|
const esp_partition_t* partition = esp_partition_find_first(
|
|
|
|
ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_PHY, NULL);
|
|
|
|
if (partition == NULL) {
|
|
|
|
ESP_LOGE(TAG, "PHY data partition not found");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ESP_LOGD(TAG, "loading PHY init data from partition at offset 0x%x", partition->address);
|
|
|
|
size_t init_data_store_length = sizeof(phy_init_magic_pre) +
|
|
|
|
sizeof(esp_phy_init_data_t) + sizeof(phy_init_magic_post);
|
|
|
|
uint8_t* init_data_store = (uint8_t*) malloc(init_data_store_length);
|
|
|
|
if (init_data_store == NULL) {
|
|
|
|
ESP_LOGE(TAG, "failed to allocate memory for PHY init data");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
esp_err_t err = esp_partition_read(partition, 0, init_data_store, init_data_store_length);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGE(TAG, "failed to read PHY data partition (0x%x)", err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (memcmp(init_data_store, PHY_INIT_MAGIC, sizeof(phy_init_magic_pre)) != 0 ||
|
|
|
|
memcmp(init_data_store + init_data_store_length - sizeof(phy_init_magic_post),
|
|
|
|
PHY_INIT_MAGIC, sizeof(phy_init_magic_post)) != 0) {
|
|
|
|
ESP_LOGE(TAG, "failed to validate PHY data partition");
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-07-05 11:29:53 +08:00
|
|
|
ESP_LOGD(TAG, "PHY data partition validated");
|
2016-11-15 18:36:18 +08:00
|
|
|
return (const esp_phy_init_data_t*) (init_data_store + sizeof(phy_init_magic_pre));
|
|
|
|
}
|
|
|
|
|
2016-11-18 01:18:39 +08:00
|
|
|
void esp_phy_release_init_data(const esp_phy_init_data_t* init_data)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
|
|
|
free((uint8_t*) init_data - sizeof(phy_init_magic_pre));
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION
|
|
|
|
|
|
|
|
// phy_init_data.h will declare static 'phy_init_data' variable initialized with default init data
|
|
|
|
|
2019-07-16 16:33:30 +07:00
|
|
|
const esp_phy_init_data_t* esp_phy_get_init_data(void)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
|
|
|
ESP_LOGD(TAG, "loading PHY init data from application binary");
|
|
|
|
return &phy_init_data;
|
|
|
|
}
|
|
|
|
|
2016-11-18 01:18:39 +08:00
|
|
|
void esp_phy_release_init_data(const esp_phy_init_data_t* init_data)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
|
|
|
// no-op
|
|
|
|
}
|
|
|
|
#endif // CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION
|
|
|
|
|
|
|
|
|
|
|
|
// PHY calibration data handling functions
|
|
|
|
static const char* PHY_NAMESPACE = "phy";
|
|
|
|
static const char* PHY_CAL_VERSION_KEY = "cal_version";
|
|
|
|
static const char* PHY_CAL_MAC_KEY = "cal_mac";
|
|
|
|
static const char* PHY_CAL_DATA_KEY = "cal_data";
|
|
|
|
|
2019-04-01 15:13:55 +01:00
|
|
|
static esp_err_t load_cal_data_from_nvs_handle(nvs_handle_t handle,
|
2016-11-15 18:36:18 +08:00
|
|
|
esp_phy_calibration_data_t* out_cal_data);
|
|
|
|
|
2019-04-01 15:13:55 +01:00
|
|
|
static esp_err_t store_cal_data_to_nvs_handle(nvs_handle_t handle,
|
2016-11-15 18:36:18 +08:00
|
|
|
const esp_phy_calibration_data_t* cal_data);
|
|
|
|
|
2016-11-18 01:18:39 +08:00
|
|
|
esp_err_t esp_phy_load_cal_data_from_nvs(esp_phy_calibration_data_t* out_cal_data)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
2019-04-01 15:13:55 +01:00
|
|
|
nvs_handle_t handle;
|
2017-07-13 23:46:19 +08:00
|
|
|
esp_err_t err = nvs_open(PHY_NAMESPACE, NVS_READONLY, &handle);
|
|
|
|
if (err == ESP_ERR_NVS_NOT_INITIALIZED) {
|
|
|
|
ESP_LOGE(TAG, "%s: NVS has not been initialized. "
|
|
|
|
"Call nvs_flash_init before starting WiFi/BT.", __func__);
|
2018-10-22 20:46:14 +08:00
|
|
|
return err;
|
2017-07-13 23:46:19 +08:00
|
|
|
} else if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGD(TAG, "%s: failed to open NVS namespace (0x%x)", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
2017-07-13 23:46:19 +08:00
|
|
|
err = load_cal_data_from_nvs_handle(handle, out_cal_data);
|
|
|
|
nvs_close(handle);
|
|
|
|
return err;
|
2016-11-15 18:36:18 +08:00
|
|
|
}
|
|
|
|
|
2016-11-18 01:18:39 +08:00
|
|
|
esp_err_t esp_phy_store_cal_data_to_nvs(const esp_phy_calibration_data_t* cal_data)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
2019-04-01 15:13:55 +01:00
|
|
|
nvs_handle_t handle;
|
2016-11-15 18:36:18 +08:00
|
|
|
esp_err_t err = nvs_open(PHY_NAMESPACE, NVS_READWRITE, &handle);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGD(TAG, "%s: failed to open NVS namespace (0x%x)", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else {
|
2016-11-18 01:18:39 +08:00
|
|
|
err = store_cal_data_to_nvs_handle(handle, cal_data);
|
2016-11-15 18:36:18 +08:00
|
|
|
nvs_close(handle);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-29 16:07:28 +08:00
|
|
|
esp_err_t esp_phy_erase_cal_data_in_nvs(void)
|
|
|
|
{
|
2019-04-01 15:13:55 +01:00
|
|
|
nvs_handle_t handle;
|
2018-11-29 16:07:28 +08:00
|
|
|
esp_err_t err = nvs_open(PHY_NAMESPACE, NVS_READWRITE, &handle);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "%s: failed to open NVS phy namespace (0x%x)", __func__, err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err = nvs_erase_all(handle);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "%s: failed to erase NVS phy namespace (0x%x)", __func__, err);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err = nvs_commit(handle);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "%s: failed to commit NVS phy namespace (0x%x)", __func__, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nvs_close(handle);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-04-01 15:13:55 +01:00
|
|
|
static esp_err_t load_cal_data_from_nvs_handle(nvs_handle_t handle,
|
2016-11-18 01:18:39 +08:00
|
|
|
esp_phy_calibration_data_t* out_cal_data)
|
2016-11-15 18:36:18 +08:00
|
|
|
{
|
|
|
|
esp_err_t err;
|
|
|
|
uint32_t cal_data_version;
|
|
|
|
err = nvs_get_u32(handle, PHY_CAL_VERSION_KEY, &cal_data_version);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGD(TAG, "%s: failed to get cal_version (0x%x)", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
2016-11-18 01:18:39 +08:00
|
|
|
uint32_t cal_format_version = phy_get_rf_cal_version() & (~BIT(16));
|
|
|
|
ESP_LOGV(TAG, "phy_get_rf_cal_version: %d\n", cal_format_version);
|
2016-11-15 18:36:18 +08:00
|
|
|
if (cal_data_version != cal_format_version) {
|
|
|
|
ESP_LOGD(TAG, "%s: expected calibration data format %d, found %d",
|
|
|
|
__func__, cal_format_version, cal_data_version);
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
uint8_t cal_data_mac[6];
|
|
|
|
size_t length = sizeof(cal_data_mac);
|
|
|
|
err = nvs_get_blob(handle, PHY_CAL_MAC_KEY, cal_data_mac, &length);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGD(TAG, "%s: failed to get cal_mac (0x%x)", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
if (length != sizeof(cal_data_mac)) {
|
|
|
|
ESP_LOGD(TAG, "%s: invalid length of cal_mac (%d)", __func__, length);
|
|
|
|
return ESP_ERR_INVALID_SIZE;
|
|
|
|
}
|
|
|
|
uint8_t sta_mac[6];
|
2017-05-05 22:24:56 +08:00
|
|
|
esp_efuse_mac_get_default(sta_mac);
|
2016-11-15 18:36:18 +08:00
|
|
|
if (memcmp(sta_mac, cal_data_mac, sizeof(sta_mac)) != 0) {
|
|
|
|
ESP_LOGE(TAG, "%s: calibration data MAC check failed: expected " \
|
|
|
|
MACSTR ", found " MACSTR,
|
|
|
|
__func__, MAC2STR(sta_mac), MAC2STR(cal_data_mac));
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
length = sizeof(*out_cal_data);
|
|
|
|
err = nvs_get_blob(handle, PHY_CAL_DATA_KEY, out_cal_data, &length);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGE(TAG, "%s: failed to get cal_data(0x%x)", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
if (length != sizeof(*out_cal_data)) {
|
|
|
|
ESP_LOGD(TAG, "%s: invalid length of cal_data (%d)", __func__, length);
|
|
|
|
return ESP_ERR_INVALID_SIZE;
|
|
|
|
}
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
2019-04-01 15:13:55 +01:00
|
|
|
static esp_err_t store_cal_data_to_nvs_handle(nvs_handle_t handle,
|
2016-11-15 18:36:18 +08:00
|
|
|
const esp_phy_calibration_data_t* cal_data)
|
|
|
|
{
|
|
|
|
esp_err_t err;
|
2018-05-03 15:48:14 +08:00
|
|
|
|
|
|
|
err = nvs_set_blob(handle, PHY_CAL_DATA_KEY, cal_data, sizeof(*cal_data));
|
2016-11-15 18:36:18 +08:00
|
|
|
if (err != ESP_OK) {
|
2018-05-03 15:48:14 +08:00
|
|
|
ESP_LOGE(TAG, "%s: store calibration data failed(0x%x)\n", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
2018-05-03 15:48:14 +08:00
|
|
|
|
2016-11-15 18:36:18 +08:00
|
|
|
uint8_t sta_mac[6];
|
2017-05-05 22:24:56 +08:00
|
|
|
esp_efuse_mac_get_default(sta_mac);
|
2016-11-15 18:36:18 +08:00
|
|
|
err = nvs_set_blob(handle, PHY_CAL_MAC_KEY, sta_mac, sizeof(sta_mac));
|
|
|
|
if (err != ESP_OK) {
|
2018-05-03 15:48:14 +08:00
|
|
|
ESP_LOGE(TAG, "%s: store calibration mac failed(0x%x)\n", __func__, err);
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
2018-05-03 15:48:14 +08:00
|
|
|
|
|
|
|
uint32_t cal_format_version = phy_get_rf_cal_version() & (~BIT(16));
|
|
|
|
ESP_LOGV(TAG, "phy_get_rf_cal_version: %d\n", cal_format_version);
|
|
|
|
err = nvs_set_u32(handle, PHY_CAL_VERSION_KEY, cal_format_version);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "%s: store calibration version failed(0x%x)\n", __func__, err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = nvs_commit(handle);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "%s: store calibration nvs commit failed(0x%x)\n", __func__, err);
|
|
|
|
}
|
2019-05-10 11:34:06 +08:00
|
|
|
|
2016-11-15 18:36:18 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-04-30 12:51:55 +02:00
|
|
|
#if CONFIG_ESP32_REDUCE_PHY_TX_POWER
|
2019-07-08 09:16:06 +08:00
|
|
|
// TODO: fix the esp_phy_reduce_tx_power unused warning for esp32s2beta - IDF-759
|
|
|
|
static void __attribute((unused)) esp_phy_reduce_tx_power(esp_phy_init_data_t* init_data)
|
2018-07-25 17:28:56 +08:00
|
|
|
{
|
|
|
|
uint8_t i;
|
2019-05-10 11:34:06 +08:00
|
|
|
|
2018-07-25 17:28:56 +08:00
|
|
|
for(i = 0; i < PHY_TX_POWER_NUM; i++) {
|
|
|
|
// LOWEST_PHY_TX_POWER is the lowest tx power
|
2019-05-10 11:34:06 +08:00
|
|
|
init_data->params[PHY_TX_POWER_OFFSET+i] = PHY_TX_POWER_LOWEST;
|
2018-07-25 17:28:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
void esp_phy_load_cal_and_init(void)
|
2017-02-16 19:05:07 +08:00
|
|
|
{
|
2021-01-06 20:08:30 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2020-11-13 16:11:11 +08:00
|
|
|
char * phy_version = get_phy_version_str();
|
|
|
|
ESP_LOGI(TAG, "phy_version %s", phy_version);
|
2021-01-06 20:08:30 +08:00
|
|
|
#endif
|
2020-11-13 16:11:11 +08:00
|
|
|
|
2017-06-15 18:37:53 +08:00
|
|
|
esp_phy_calibration_data_t* cal_data =
|
|
|
|
(esp_phy_calibration_data_t*) calloc(sizeof(esp_phy_calibration_data_t), 1);
|
|
|
|
if (cal_data == NULL) {
|
|
|
|
ESP_LOGE(TAG, "failed to allocate memory for RF calibration data");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-04-30 12:51:55 +02:00
|
|
|
#if CONFIG_ESP32_REDUCE_PHY_TX_POWER
|
2018-07-25 17:28:56 +08:00
|
|
|
const esp_phy_init_data_t* phy_init_data = esp_phy_get_init_data();
|
|
|
|
if (phy_init_data == NULL) {
|
|
|
|
ESP_LOGE(TAG, "failed to obtain PHY init data");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_phy_init_data_t* init_data = (esp_phy_init_data_t*) malloc(sizeof(esp_phy_init_data_t));
|
|
|
|
if (init_data == NULL) {
|
|
|
|
ESP_LOGE(TAG, "failed to allocate memory for phy init data");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(init_data, phy_init_data, sizeof(esp_phy_init_data_t));
|
2019-06-17 11:50:37 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
// ToDo: remove once esp_reset_reason is supported on esp32s2
|
2018-07-25 17:28:56 +08:00
|
|
|
if (esp_reset_reason() == ESP_RST_BROWNOUT) {
|
|
|
|
esp_phy_reduce_tx_power(init_data);
|
|
|
|
}
|
2019-06-17 11:50:37 +08:00
|
|
|
#endif
|
2018-07-25 17:28:56 +08:00
|
|
|
#else
|
2017-02-16 19:05:07 +08:00
|
|
|
const esp_phy_init_data_t* init_data = esp_phy_get_init_data();
|
|
|
|
if (init_data == NULL) {
|
|
|
|
ESP_LOGE(TAG, "failed to obtain PHY init data");
|
|
|
|
abort();
|
|
|
|
}
|
2018-07-25 17:28:56 +08:00
|
|
|
#endif
|
2017-06-15 18:37:53 +08:00
|
|
|
|
2018-01-04 11:48:24 +08:00
|
|
|
#ifdef CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE
|
|
|
|
esp_phy_calibration_mode_t calibration_mode = PHY_RF_CAL_PARTIAL;
|
2018-06-12 15:51:51 +08:00
|
|
|
uint8_t sta_mac[6];
|
2018-01-04 11:48:24 +08:00
|
|
|
if (rtc_get_reset_reason(0) == DEEPSLEEP_RESET) {
|
|
|
|
calibration_mode = PHY_RF_CAL_NONE;
|
|
|
|
}
|
2017-02-16 19:05:07 +08:00
|
|
|
esp_err_t err = esp_phy_load_cal_data_from_nvs(cal_data);
|
|
|
|
if (err != ESP_OK) {
|
2017-03-14 21:27:27 +08:00
|
|
|
ESP_LOGW(TAG, "failed to load RF calibration data (0x%x), falling back to full calibration", err);
|
2017-02-16 19:05:07 +08:00
|
|
|
calibration_mode = PHY_RF_CAL_FULL;
|
|
|
|
}
|
|
|
|
|
2018-06-12 15:51:51 +08:00
|
|
|
esp_efuse_mac_get_default(sta_mac);
|
|
|
|
memcpy(cal_data->mac, sta_mac, 6);
|
2020-05-22 17:15:28 +08:00
|
|
|
esp_err_t ret = register_chipv7_phy(init_data, cal_data, calibration_mode);
|
|
|
|
if (ret == ESP_CAL_DATA_CHECK_FAIL) {
|
|
|
|
ESP_LOGW(TAG, "saving new calibration data because of checksum failure, mode(%d)", calibration_mode);
|
|
|
|
}
|
2017-02-16 19:05:07 +08:00
|
|
|
|
2020-05-22 17:15:28 +08:00
|
|
|
if ((calibration_mode != PHY_RF_CAL_NONE && err != ESP_OK) ||
|
|
|
|
(calibration_mode != PHY_RF_CAL_FULL && ret == ESP_CAL_DATA_CHECK_FAIL)) {
|
2017-02-16 19:05:07 +08:00
|
|
|
err = esp_phy_store_cal_data_to_nvs(cal_data);
|
|
|
|
} else {
|
|
|
|
err = ESP_OK;
|
|
|
|
}
|
2017-02-16 22:06:02 +08:00
|
|
|
#else
|
2020-05-22 17:15:28 +08:00
|
|
|
register_chipv7_phy(init_data, cal_data, PHY_RF_CAL_FULL);
|
2017-02-16 22:06:02 +08:00
|
|
|
#endif
|
2017-06-15 18:37:53 +08:00
|
|
|
|
2019-04-30 12:51:55 +02:00
|
|
|
#if CONFIG_ESP32_REDUCE_PHY_TX_POWER
|
2018-07-25 17:28:56 +08:00
|
|
|
esp_phy_release_init_data(phy_init_data);
|
|
|
|
free(init_data);
|
|
|
|
#else
|
2018-01-04 11:48:24 +08:00
|
|
|
esp_phy_release_init_data(init_data);
|
2018-07-25 17:28:56 +08:00
|
|
|
#endif
|
2018-01-04 11:48:24 +08:00
|
|
|
|
2017-06-15 18:37:53 +08:00
|
|
|
free(cal_data); // PHY maintains a copy of calibration data, so we can free this
|
2017-02-16 19:05:07 +08:00
|
|
|
}
|
|
|
|
|