2021-05-24 00:09:38 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2016-09-28 15:20:34 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
2020-02-21 04:06:35 +00:00
|
|
|
#include "hal/clk_gate_ll.h"
|
2021-03-25 02:24:37 +00:00
|
|
|
#include "esp_attr.h"
|
2016-09-28 15:20:34 +00:00
|
|
|
#include "driver/periph_ctrl.h"
|
|
|
|
|
|
|
|
static portMUX_TYPE periph_spinlock = portMUX_INITIALIZER_UNLOCKED;
|
|
|
|
|
2020-04-10 08:09:07 +00:00
|
|
|
static uint8_t ref_counts[PERIPH_MODULE_MAX] = {0};
|
|
|
|
|
2016-09-28 15:20:34 +00:00
|
|
|
void periph_module_enable(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-04-10 08:09:07 +00:00
|
|
|
if (ref_counts[periph] == 0) {
|
|
|
|
periph_ll_enable_clk_clear_rst(periph);
|
|
|
|
}
|
|
|
|
ref_counts[periph]++;
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void periph_module_disable(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-04-10 08:09:07 +00:00
|
|
|
ref_counts[periph]--;
|
|
|
|
if (ref_counts[periph] == 0) {
|
|
|
|
periph_ll_disable_clk_set_rst(periph);
|
|
|
|
}
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void periph_module_reset(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-02-21 04:06:35 +00:00
|
|
|
periph_ll_reset(periph);
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|
2020-07-02 11:53:15 +00:00
|
|
|
|
2021-06-11 08:30:22 +00:00
|
|
|
#if CONFIG_ESP32_WIFI_ENABLED
|
2020-07-02 11:53:15 +00:00
|
|
|
IRAM_ATTR void wifi_bt_common_module_enable(void)
|
|
|
|
{
|
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
|
|
|
if (ref_counts[PERIPH_WIFI_BT_COMMON_MODULE] == 0) {
|
|
|
|
periph_ll_wifi_bt_module_enable_clk_clear_rst();
|
|
|
|
}
|
|
|
|
ref_counts[PERIPH_WIFI_BT_COMMON_MODULE]++;
|
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
IRAM_ATTR void wifi_bt_common_module_disable(void)
|
|
|
|
{
|
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
|
|
|
ref_counts[PERIPH_WIFI_BT_COMMON_MODULE]--;
|
|
|
|
if (ref_counts[PERIPH_WIFI_BT_COMMON_MODULE] == 0) {
|
|
|
|
periph_ll_wifi_bt_module_disable_clk_set_rst();
|
|
|
|
}
|
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2020-11-10 07:40:01 +00:00
|
|
|
}
|
2020-12-30 08:42:39 +00:00
|
|
|
|
|
|
|
void wifi_module_enable(void)
|
|
|
|
{
|
2022-01-27 11:21:48 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-12-30 08:42:39 +00:00
|
|
|
periph_ll_wifi_module_enable_clk_clear_rst();
|
2022-01-27 11:21:48 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2020-12-30 08:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wifi_module_disable(void)
|
|
|
|
{
|
2022-01-27 11:21:48 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-12-30 08:42:39 +00:00
|
|
|
periph_ll_wifi_module_disable_clk_set_rst();
|
2022-01-27 11:21:48 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2020-12-30 08:42:39 +00:00
|
|
|
}
|
2021-06-11 08:30:22 +00:00
|
|
|
#endif // CONFIG_ESP32_WIFI_ENABLED
|