/* * SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include #include "hal/misc.h" #include "hal/assert.h" #include "soc/gpio_ext_struct.h" #include "soc/gpio_ext_reg.h" #ifdef __cplusplus extern "C" { #endif // Get SDM register base address with giving group number #define SDM_LL_GET_HW(group_id) ((group_id == 0) ? (&SDM) : NULL) #define SDM_LL_PRESCALE_MAX (GPIO_EXT_SD0_PRESCALE_V + 1) /** * @brief Set Sigma-delta enable * * @param hw Peripheral SIGMADELTA hardware instance address. * @param en Sigma-delta enable value */ static inline void sdm_ll_enable_clock(gpio_sd_dev_t *hw, bool en) { hw->misc.sigmadelta_clk_en = en; } /** * @brief Set Sigma-delta channel duty. * * @param hw Peripheral SIGMADELTA hardware instance address. * @param channel Sigma-delta channel number * @param density Sigma-delta quantized density of one channel, the value ranges from -128 to 127, recommended range is -90 ~ 90. * The waveform is more like a random one in this range. */ __attribute__((always_inline)) static inline void sdm_ll_set_pulse_density(gpio_sd_dev_t *hw, int channel, int8_t density) { HAL_FORCE_MODIFY_U32_REG_FIELD(hw->channel[channel], sdn_in, (uint32_t)density); } /** * @brief Set Sigma-delta channel's clock pre-scale value. * * @param hw Peripheral SIGMADELTA hardware instance address. * @param channel Sigma-delta channel number * @param prescale The divider of source clock, ranges from 1 to 256 */ static inline void sdm_ll_set_prescale(gpio_sd_dev_t *hw, int channel, uint32_t prescale) { HAL_ASSERT(prescale && prescale <= SDM_LL_PRESCALE_MAX); HAL_FORCE_MODIFY_U32_REG_FIELD(hw->channel[channel], sdn_prescale, prescale - 1); } #ifdef __cplusplus } #endif