mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-11 04:57:38 +00:00
117 lines
3.4 KiB
C
117 lines
3.4 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "soc/soc.h"
|
|
#include "soc/regi2c_defs.h"
|
|
#include "modem/modem_lpcon_struct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Enable analog I2C master clock
|
|
*/
|
|
static inline __attribute__((always_inline)) void _regi2c_ctrl_ll_master_enable_clock(bool en)
|
|
{
|
|
MODEM_LPCON.clk_conf.clk_i2c_mst_en = en;
|
|
}
|
|
|
|
/// use a macro to wrap the function, force the caller to use it in a critical section
|
|
/// the critical section needs to declare the __DECLARE_RCC_RC_ATOMIC_ENV variable in advance
|
|
#define regi2c_ctrl_ll_master_enable_clock(...) (void)__DECLARE_RCC_RC_ATOMIC_ENV; _regi2c_ctrl_ll_master_enable_clock(__VA_ARGS__)
|
|
|
|
/**
|
|
* @brief Check whether analog I2C master clock is enabled
|
|
*/
|
|
static inline __attribute__((always_inline)) bool regi2c_ctrl_ll_master_is_clock_enabled(void)
|
|
{
|
|
return MODEM_LPCON.clk_conf.clk_i2c_mst_en;
|
|
}
|
|
|
|
/**
|
|
* @brief Reset analog I2C master
|
|
*/
|
|
static inline __attribute__((always_inline)) void _regi2c_ctrl_ll_master_reset(void)
|
|
{
|
|
MODEM_LPCON.rst_conf.rst_i2c_mst = 1;
|
|
MODEM_LPCON.rst_conf.rst_i2c_mst = 0;
|
|
}
|
|
|
|
/// use a macro to wrap the function, force the caller to use it in a critical section
|
|
/// the critical section needs to declare the __DECLARE_RCC_RC_ATOMIC_ENV variable in advance
|
|
#define regi2c_ctrl_ll_master_reset(...) (void)__DECLARE_RCC_RC_ATOMIC_ENV; _regi2c_ctrl_ll_master_reset(__VA_ARGS__)
|
|
|
|
/**
|
|
* @brief Force enable analog I2C master clock
|
|
*/
|
|
static inline __attribute__((always_inline)) void regi2c_ctrl_ll_master_force_enable_clock(bool en)
|
|
{
|
|
MODEM_LPCON.clk_conf_force_on.clk_i2c_mst_fo = en;
|
|
}
|
|
|
|
/**
|
|
* @brief Configure analog I2C master clock
|
|
*/
|
|
static inline __attribute__((always_inline)) void regi2c_ctrl_ll_master_configure_clock(void)
|
|
{
|
|
MODEM_LPCON.i2c_mst_clk_conf.clk_i2c_mst_sel_160m = 1;
|
|
}
|
|
|
|
/**
|
|
* @brief Start BBPLL self-calibration
|
|
*/
|
|
static inline __attribute__((always_inline)) void regi2c_ctrl_ll_bbpll_calibration_start(void)
|
|
{
|
|
REG_CLR_BIT(I2C_MST_ANA_CONF0_REG, I2C_MST_BBPLL_STOP_FORCE_HIGH);
|
|
REG_SET_BIT(I2C_MST_ANA_CONF0_REG, I2C_MST_BBPLL_STOP_FORCE_LOW);
|
|
}
|
|
|
|
/**
|
|
* @brief Stop BBPLL self-calibration
|
|
*/
|
|
static inline __attribute__((always_inline)) void regi2c_ctrl_ll_bbpll_calibration_stop(void)
|
|
{
|
|
REG_CLR_BIT(I2C_MST_ANA_CONF0_REG, I2C_MST_BBPLL_STOP_FORCE_LOW);
|
|
REG_SET_BIT(I2C_MST_ANA_CONF0_REG, I2C_MST_BBPLL_STOP_FORCE_HIGH);
|
|
}
|
|
|
|
/**
|
|
* @brief Check whether BBPLL calibration is done
|
|
*
|
|
* @return True if calibration is done; otherwise false
|
|
*/
|
|
static inline __attribute__((always_inline)) bool regi2c_ctrl_ll_bbpll_calibration_is_done(void)
|
|
{
|
|
return REG_GET_BIT(I2C_MST_ANA_CONF0_REG, I2C_MST_BBPLL_CAL_DONE);
|
|
}
|
|
|
|
/**
|
|
* @brief Enable the I2C internal bus to do I2C read/write operation to the SAR_ADC register
|
|
*/
|
|
static inline void regi2c_ctrl_ll_i2c_saradc_enable(void)
|
|
{
|
|
CLEAR_PERI_REG_MASK(ANA_CONFIG_REG, ANA_I2C_SAR_FORCE_PD);
|
|
SET_PERI_REG_MASK(ANA_CONFIG2_REG, ANA_I2C_SAR_FORCE_PU);
|
|
}
|
|
|
|
/**
|
|
* @brief Disable the I2C internal bus to do I2C read/write operation to the SAR_ADC register
|
|
*/
|
|
static inline void regi2c_ctrl_ll_i2c_saradc_disable(void)
|
|
{
|
|
CLEAR_PERI_REG_MASK(ANA_CONFIG_REG, ANA_I2C_SAR_FORCE_PU);
|
|
SET_PERI_REG_MASK(ANA_CONFIG2_REG, ANA_I2C_SAR_FORCE_PD);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|