mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
#include "freertos/FreeRTOS.h"
 | 
						|
#include "hal/clk_gate_ll.h"
 | 
						|
#include "esp_attr.h"
 | 
						|
#include "esp_private/periph_ctrl.h"
 | 
						|
#include "soc/soc_caps.h"
 | 
						|
 | 
						|
#if SOC_MODEM_CLOCK_IS_INDEPENDENT
 | 
						|
#include "esp_private/esp_modem_clock.h"
 | 
						|
#endif
 | 
						|
 | 
						|
static portMUX_TYPE periph_spinlock = portMUX_INITIALIZER_UNLOCKED;
 | 
						|
 | 
						|
static uint8_t ref_counts[PERIPH_MODULE_MAX] = {0};
 | 
						|
 | 
						|
void periph_module_enable(periph_module_t periph)
 | 
						|
{
 | 
						|
    assert(periph < PERIPH_MODULE_MAX);
 | 
						|
    portENTER_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
    if (ref_counts[periph] == 0) {
 | 
						|
        periph_ll_enable_clk_clear_rst(periph);
 | 
						|
    }
 | 
						|
    ref_counts[periph]++;
 | 
						|
    portEXIT_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
}
 | 
						|
 | 
						|
void periph_module_disable(periph_module_t periph)
 | 
						|
{
 | 
						|
    assert(periph < PERIPH_MODULE_MAX);
 | 
						|
    portENTER_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
    ref_counts[periph]--;
 | 
						|
    if (ref_counts[periph] == 0) {
 | 
						|
        periph_ll_disable_clk_set_rst(periph);
 | 
						|
    }
 | 
						|
    portEXIT_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
}
 | 
						|
 | 
						|
void periph_module_reset(periph_module_t periph)
 | 
						|
{
 | 
						|
    assert(periph < PERIPH_MODULE_MAX);
 | 
						|
    portENTER_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
    periph_ll_reset(periph);
 | 
						|
    portEXIT_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
}
 | 
						|
 | 
						|
#if !SOC_IEEE802154_BLE_ONLY
 | 
						|
IRAM_ATTR void wifi_bt_common_module_enable(void)
 | 
						|
{
 | 
						|
#if SOC_MODEM_CLOCK_IS_INDEPENDENT
 | 
						|
    modem_clock_module_enable(PERIPH_PHY_MODULE);
 | 
						|
#else
 | 
						|
    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);
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
IRAM_ATTR void wifi_bt_common_module_disable(void)
 | 
						|
{
 | 
						|
#if SOC_MODEM_CLOCK_IS_INDEPENDENT
 | 
						|
    modem_clock_module_disable(PERIPH_PHY_MODULE);
 | 
						|
#else
 | 
						|
    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);
 | 
						|
#endif
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#if CONFIG_ESP_WIFI_ENABLED
 | 
						|
void wifi_module_enable(void)
 | 
						|
{
 | 
						|
#if SOC_MODEM_CLOCK_IS_INDEPENDENT
 | 
						|
    modem_clock_module_enable(PERIPH_WIFI_MODULE);
 | 
						|
#else
 | 
						|
    portENTER_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
    periph_ll_wifi_module_enable_clk_clear_rst();
 | 
						|
    portEXIT_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
void wifi_module_disable(void)
 | 
						|
{
 | 
						|
#if SOC_MODEM_CLOCK_IS_INDEPENDENT
 | 
						|
    modem_clock_module_disable(PERIPH_WIFI_MODULE);
 | 
						|
#else
 | 
						|
    portENTER_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
    periph_ll_wifi_module_disable_clk_set_rst();
 | 
						|
    portEXIT_CRITICAL_SAFE(&periph_spinlock);
 | 
						|
#endif
 | 
						|
}
 | 
						|
#endif // CONFIG_ESP_WIFI_ENABLED
 |