mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
65a1e1269f
1. Optimize WiFi log 2. Optimize 4way handshake failure time 3. Fix eapol frames encryption during reauth 4. Set softap beacon DTIM count according to TSF timer 5. Remove wifi tx buffer limits 6. Remove coexist warnings in ESP_WIFI_MESH 7. Update some APIs descriptions, tables format and typos 8. Fix wifi tx all
195 lines
6.0 KiB
C
195 lines
6.0 KiB
C
// Copyright 2015-2017 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 <esp_event.h>
|
|
#include <esp_wifi.h>
|
|
#include "esp_log.h"
|
|
#include "esp_wifi_internal.h"
|
|
#include "esp_pm.h"
|
|
#include "soc/rtc.h"
|
|
#include "esp_mesh.h"
|
|
#include "driver/adc.h"
|
|
|
|
#if (CONFIG_ESP32_WIFI_RX_BA_WIN > CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM)
|
|
#error "WiFi configuration check: WARNING, WIFI_RX_BA_WIN should not be larger than WIFI_DYNAMIC_RX_BUFFER_NUM!"
|
|
#endif
|
|
|
|
#if (CONFIG_ESP32_WIFI_RX_BA_WIN > (CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM << 1))
|
|
#error "WiFi configuration check: WARNING, WIFI_RX_BA_WIN should not be larger than double of the WIFI_STATIC_RX_BUFFER_NUM!"
|
|
#endif
|
|
|
|
/* mesh event callback handler */
|
|
mesh_event_cb_t g_mesh_event_cb = NULL;
|
|
|
|
/* Set additional WiFi features and capabilities */
|
|
uint64_t g_wifi_feature_caps =
|
|
#if CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE
|
|
CONFIG_FEATURE_WPA3_SAE_BIT |
|
|
#endif
|
|
#if (CONFIG_ESP32_SPIRAM_SUPPORT | CONFIG_ESP32S2_SPIRAM_SUPPORT)
|
|
CONFIG_FEATURE_CACHE_TX_BUF_BIT |
|
|
#endif
|
|
0;
|
|
|
|
#ifdef CONFIG_PM_ENABLE
|
|
static esp_pm_lock_handle_t s_wifi_modem_sleep_lock;
|
|
#endif
|
|
|
|
/* Callback function to update WiFi MAC time */
|
|
wifi_mac_time_update_cb_t s_wifi_mac_time_update_cb = NULL;
|
|
|
|
static bool s_wifi_adc_xpd_flag;
|
|
static const char* TAG = "wifi_init";
|
|
|
|
static void __attribute__((constructor)) s_set_default_wifi_log_level()
|
|
{
|
|
/* WiFi libraries aren't compiled to know CONFIG_LOG_DEFAULT_LEVEL,
|
|
so set it at runtime startup. Done here not in esp_wifi_init() to allow
|
|
the user to set the level again before esp_wifi_init() is called.
|
|
*/
|
|
esp_log_level_set("wifi", CONFIG_LOG_DEFAULT_LEVEL);
|
|
esp_log_level_set("mesh", CONFIG_LOG_DEFAULT_LEVEL);
|
|
}
|
|
|
|
static void esp_wifi_set_debug_log()
|
|
{
|
|
/* set WiFi log level and module */
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE
|
|
uint32_t g_wifi_log_level = WIFI_LOG_INFO;
|
|
uint32_t g_wifi_log_module = 0;
|
|
uint32_t g_wifi_log_submodule = 0;
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_DEBUG
|
|
g_wifi_log_level = WIFI_LOG_DEBUG;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_VERBOSE
|
|
g_wifi_log_level = WIFI_LOG_VERBOSE;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_ALL
|
|
g_wifi_log_module = WIFI_LOG_MODULE_ALL;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_WIFI
|
|
g_wifi_log_module = WIFI_LOG_MODULE_WIFI;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_COEX
|
|
g_wifi_log_module = WIFI_LOG_MODULE_COEX;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_MESH
|
|
g_wifi_log_module = WIFI_LOG_MODULE_MESH;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL
|
|
g_wifi_log_submodule |= WIFI_LOG_SUBMODULE_ALL;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE_INIT
|
|
g_wifi_log_submodule |= WIFI_LOG_SUBMODULE_INIT;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE_IOCTL
|
|
g_wifi_log_submodule |= WIFI_LOG_SUBMODULE_IOCTL;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE_CONN
|
|
g_wifi_log_submodule |= WIFI_LOG_SUBMODULE_CONN;
|
|
#endif
|
|
#if CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE_SCAN
|
|
g_wifi_log_submodule |= WIFI_LOG_SUBMODULE_SCAN;
|
|
#endif
|
|
esp_wifi_internal_set_log_level(g_wifi_log_level);
|
|
esp_wifi_internal_set_log_mod(g_wifi_log_module, g_wifi_log_submodule, true);
|
|
|
|
#endif /* CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE*/
|
|
|
|
}
|
|
|
|
static void esp_wifi_config_info(void)
|
|
{
|
|
#ifdef CONFIG_ESP32_WIFI_RX_BA_WIN
|
|
ESP_LOGI(TAG, "rx ba win: %d", CONFIG_ESP32_WIFI_RX_BA_WIN);
|
|
#endif
|
|
ESP_LOGI(TAG, "tcpip mbox: %d", CONFIG_TCPIP_RECVMBOX_SIZE);
|
|
ESP_LOGI(TAG, "udp mbox: %d", CONFIG_UDP_RECVMBOX_SIZE);
|
|
ESP_LOGI(TAG, "tcp mbox: %d", CONFIG_TCP_RECVMBOX_SIZE);
|
|
ESP_LOGI(TAG, "tcp tx win: %d", CONFIG_TCP_SND_BUF_DEFAULT);
|
|
ESP_LOGI(TAG, "tcp rx win: %d", CONFIG_TCP_WND_DEFAULT);
|
|
ESP_LOGI(TAG, "tcp mss: %d", CONFIG_TCP_MSS);
|
|
|
|
#ifdef CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
|
ESP_LOGI(TAG, "WiFi/LWIP prefer SPIRAM");
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_WIFI_IRAM_OPT
|
|
ESP_LOGI(TAG, "WiFi IRAM OP enabled");
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_WIFI_RX_IRAM_OPT
|
|
ESP_LOGI(TAG, "WiFi RX IRAM OP enabled");
|
|
#endif
|
|
|
|
#ifdef CONFIG_LWIP_IRAM_OPTIMIZATION
|
|
ESP_LOGI(TAG, "LWIP IRAM OP enabled");
|
|
#endif
|
|
}
|
|
|
|
esp_err_t esp_wifi_init(const wifi_init_config_t *config)
|
|
{
|
|
#ifdef CONFIG_PM_ENABLE
|
|
if (s_wifi_modem_sleep_lock == NULL) {
|
|
esp_err_t err = esp_pm_lock_create(ESP_PM_APB_FREQ_MAX, 0, "wifi",
|
|
&s_wifi_modem_sleep_lock);
|
|
if (err != ESP_OK) {
|
|
return err;
|
|
}
|
|
}
|
|
#endif
|
|
esp_event_set_default_wifi_handlers();
|
|
esp_err_t result = esp_wifi_init_internal(config);
|
|
if (result == ESP_OK) {
|
|
esp_wifi_set_debug_log();
|
|
s_wifi_mac_time_update_cb = esp_wifi_internal_update_mac_time;
|
|
}
|
|
|
|
esp_wifi_config_info();
|
|
return result;
|
|
}
|
|
|
|
#ifdef CONFIG_PM_ENABLE
|
|
void wifi_apb80m_request(void)
|
|
{
|
|
assert(s_wifi_modem_sleep_lock);
|
|
esp_pm_lock_acquire(s_wifi_modem_sleep_lock);
|
|
if (rtc_clk_apb_freq_get() != APB_CLK_FREQ) {
|
|
ESP_LOGE(__func__, "WiFi needs 80MHz APB frequency to work, but got %dHz", rtc_clk_apb_freq_get());
|
|
}
|
|
}
|
|
|
|
void wifi_apb80m_release(void)
|
|
{
|
|
assert(s_wifi_modem_sleep_lock);
|
|
esp_pm_lock_release(s_wifi_modem_sleep_lock);
|
|
}
|
|
#endif //CONFIG_PM_ENABLE
|
|
|
|
/* Coordinate ADC power with other modules. This overrides the function from PHY lib. */
|
|
void set_xpd_sar(bool en)
|
|
{
|
|
if (s_wifi_adc_xpd_flag == en) {
|
|
/* ignore repeated calls to set_xpd_sar when the state is already correct */
|
|
return;
|
|
}
|
|
|
|
s_wifi_adc_xpd_flag = en;
|
|
if (en) {
|
|
adc_power_acquire();
|
|
} else {
|
|
adc_power_release();
|
|
}
|
|
}
|