// Copyright 2015-2020 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 #ifdef __cplusplus extern "C" { #endif #include #include #include "soc/periph_defs.h" #include "soc/system_reg.h" #include "soc/syscon_reg.h" #include "soc/dport_access.h" static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph) { switch (periph) { case PERIPH_LEDC_MODULE: return DPORT_LEDC_CLK_EN; case PERIPH_UART0_MODULE: return DPORT_UART_CLK_EN; case PERIPH_UART1_MODULE: return DPORT_UART1_CLK_EN; case PERIPH_USB_MODULE: return DPORT_USB_CLK_EN; case PERIPH_I2C0_MODULE: return DPORT_I2C_EXT0_CLK_EN; case PERIPH_I2C1_MODULE: return DPORT_I2C_EXT1_CLK_EN; case PERIPH_I2S0_MODULE: return DPORT_I2S0_CLK_EN; case PERIPH_I2S1_MODULE: return DPORT_I2S1_CLK_EN; case PERIPH_TIMG0_MODULE: return DPORT_TIMERGROUP_CLK_EN; case PERIPH_TIMG1_MODULE: return DPORT_TIMERGROUP1_CLK_EN; case PERIPH_PWM0_MODULE: return DPORT_PWM0_CLK_EN; case PERIPH_PWM1_MODULE: return DPORT_PWM1_CLK_EN; case PERIPH_PWM2_MODULE: return DPORT_PWM2_CLK_EN; case PERIPH_PWM3_MODULE: return DPORT_PWM3_CLK_EN; case PERIPH_UHCI0_MODULE: return DPORT_UHCI0_CLK_EN; case PERIPH_UHCI1_MODULE: return DPORT_UHCI1_CLK_EN; case PERIPH_RMT_MODULE: return DPORT_RMT_CLK_EN; case PERIPH_PCNT_MODULE: return DPORT_PCNT_CLK_EN; case PERIPH_SPI_MODULE: return DPORT_SPI01_CLK_EN; case PERIPH_FSPI_MODULE: return DPORT_SPI2_CLK_EN; case PERIPH_HSPI_MODULE: return DPORT_SPI3_CLK_EN; case PERIPH_SPI2_DMA_MODULE: return DPORT_SPI2_DMA_CLK_EN; case PERIPH_SPI3_DMA_MODULE: return DPORT_SPI3_DMA_CLK_EN; case PERIPH_CAN_MODULE: return DPORT_CAN_CLK_EN; case PERIPH_RNG_MODULE: return DPORT_WIFI_CLK_RNG_EN; case PERIPH_WIFI_MODULE: return DPORT_WIFI_CLK_WIFI_EN_M; case PERIPH_WIFI_BT_COMMON_MODULE: return DPORT_WIFI_CLK_WIFI_BT_COMMON_M; case PERIPH_SYSTIMER_MODULE: return DPORT_SYSTIMER_CLK_EN; default: return 0; } } static inline uint32_t periph_ll_get_rst_en_mask(periph_module_t periph, bool enable) { (void)enable; // unused switch (periph) { case PERIPH_LEDC_MODULE: return DPORT_LEDC_RST; case PERIPH_UART0_MODULE: return DPORT_UART_RST; case PERIPH_UART1_MODULE: return DPORT_UART1_RST; case PERIPH_USB_MODULE: return DPORT_USB_RST; case PERIPH_I2C0_MODULE: return DPORT_I2C_EXT0_RST; case PERIPH_I2C1_MODULE: return DPORT_I2C_EXT1_RST; case PERIPH_I2S0_MODULE: return DPORT_I2S0_RST; case PERIPH_I2S1_MODULE: return DPORT_I2S1_RST; case PERIPH_TIMG0_MODULE: return DPORT_TIMERGROUP_RST; case PERIPH_TIMG1_MODULE: return DPORT_TIMERGROUP1_RST; case PERIPH_PWM0_MODULE: return DPORT_PWM0_RST; case PERIPH_PWM1_MODULE: return DPORT_PWM1_RST; case PERIPH_PWM2_MODULE: return DPORT_PWM2_RST; case PERIPH_PWM3_MODULE: return DPORT_PWM3_RST; case PERIPH_UHCI0_MODULE: return DPORT_UHCI0_RST; case PERIPH_UHCI1_MODULE: return DPORT_UHCI1_RST; case PERIPH_RMT_MODULE: return DPORT_RMT_RST; case PERIPH_PCNT_MODULE: return DPORT_PCNT_RST; case PERIPH_SPI_MODULE: return DPORT_SPI01_RST; case PERIPH_FSPI_MODULE: return DPORT_SPI2_RST; case PERIPH_HSPI_MODULE: return DPORT_SPI3_RST; case PERIPH_SPI2_DMA_MODULE: return DPORT_SPI2_DMA_RST; case PERIPH_SPI3_DMA_MODULE: return DPORT_SPI3_DMA_RST; case PERIPH_CAN_MODULE: return DPORT_CAN_RST; case PERIPH_SYSTIMER_MODULE: return DPORT_SYSTIMER_RST; default: return 0; } } static inline uint32_t periph_ll_get_clk_en_reg(periph_module_t periph) { switch (periph) { case PERIPH_RNG_MODULE: case PERIPH_WIFI_MODULE: case PERIPH_WIFI_BT_COMMON_MODULE: return DPORT_WIFI_CLK_EN_REG; default: return DPORT_PERIP_CLK_EN_REG; } } static inline uint32_t periph_ll_get_rst_en_reg(periph_module_t periph) { switch (periph) { case PERIPH_RNG_MODULE: case PERIPH_WIFI_MODULE: case PERIPH_WIFI_BT_COMMON_MODULE: return DPORT_CORE_RST_EN_REG; default: return DPORT_PERIP_RST_EN_REG; } } static inline void periph_ll_enable_clk_clear_rst(periph_module_t periph) { DPORT_SET_PERI_REG_MASK(periph_ll_get_clk_en_reg(periph), periph_ll_get_clk_en_mask(periph)); DPORT_CLEAR_PERI_REG_MASK(periph_ll_get_rst_en_reg(periph), periph_ll_get_rst_en_mask(periph, true)); } static inline void periph_ll_disable_clk_set_rst(periph_module_t periph) { DPORT_CLEAR_PERI_REG_MASK(periph_ll_get_clk_en_reg(periph), periph_ll_get_clk_en_mask(periph)); DPORT_SET_PERI_REG_MASK(periph_ll_get_rst_en_reg(periph), periph_ll_get_rst_en_mask(periph, false)); } static inline void periph_ll_reset(periph_module_t periph) { DPORT_SET_PERI_REG_MASK(periph_ll_get_rst_en_reg(periph), periph_ll_get_rst_en_mask(periph, false)); DPORT_CLEAR_PERI_REG_MASK(periph_ll_get_rst_en_reg(periph), periph_ll_get_rst_en_mask(periph, false)); } #ifdef __cplusplus } #endif