mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
260 lines
6.8 KiB
C
260 lines
6.8 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*******************************************************************************
|
|
* NOTICE
|
|
* The hal is not public api, don't use in application code.
|
|
* See readme.md in component/hal/readme.md
|
|
******************************************************************************/
|
|
|
|
// The LL for temperature sensor
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include "hal/regi2c_ctrl.h"
|
|
#include "soc/regi2c_saradc.h"
|
|
#include "soc/apb_saradc_struct.h"
|
|
#include "soc/apb_saradc_reg.h"
|
|
#include "soc/pcr_struct.h"
|
|
#include "soc/soc.h"
|
|
#include "soc/soc_caps.h"
|
|
#include "soc/pcr_struct.h"
|
|
#include "soc/interrupts.h"
|
|
#include "hal/temperature_sensor_types.h"
|
|
#include "hal/assert.h"
|
|
#include "hal/misc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define TEMPERATURE_SENSOR_LL_ADC_FACTOR (0.4386)
|
|
#define TEMPERATURE_SENSOR_LL_DAC_FACTOR (27.88)
|
|
#define TEMPERATURE_SENSOR_LL_OFFSET_FACTOR (20.52)
|
|
#define TEMPERATURE_SENSOR_LL_MEASURE_MAX (125)
|
|
#define TEMPERATURE_SENSOR_LL_MEASURE_MIN (-40)
|
|
|
|
#define TEMPERATURE_SENSOR_LL_INTR_MASK APB_SARADC_APB_SARADC_TSENS_INT_ST
|
|
|
|
typedef enum {
|
|
TEMPERATURE_SENSOR_LL_WAKE_ABSOLUTE = 0,
|
|
TEMPERATURE_SENSOR_LL_WAKE_DELTA = 1,
|
|
} temperature_sensor_ll_wakeup_mode_t;
|
|
|
|
/**
|
|
* @brief Enable the temperature sensor power.
|
|
*
|
|
* @param enable true: enable the power.
|
|
*/
|
|
static inline void temperature_sensor_ll_enable(bool enable)
|
|
{
|
|
APB_SARADC.saradc_apb_tsens_ctrl.saradc_tsens_pu = enable;
|
|
}
|
|
|
|
/**
|
|
* @brief Enable the clock
|
|
*/
|
|
static inline void temperature_sensor_ll_bus_clk_enable(bool enable)
|
|
{
|
|
PCR.tsens_clk_conf.tsens_clk_en = enable;
|
|
}
|
|
|
|
/**
|
|
* @brief Reset the Temperature sensor module
|
|
*/
|
|
static inline void temperature_sensor_ll_reset_module(void)
|
|
{
|
|
PCR.tsens_clk_conf.tsens_rst_en = 1;
|
|
PCR.tsens_clk_conf.tsens_rst_en = 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Select the clock source for temperature sensor. On ESP32-C6, temperautre sensor
|
|
* can use XTAL or FOSC. To make it convenience, suggest using XTAL all the time.
|
|
*
|
|
* @param clk_src refer to ``temperature_sensor_clk_src_t``
|
|
*/
|
|
static inline void temperature_sensor_ll_clk_sel(temperature_sensor_clk_src_t clk_src)
|
|
{
|
|
uint8_t clk_sel = 0;
|
|
switch (clk_src) {
|
|
case TEMPERATURE_SENSOR_CLK_SRC_XTAL:
|
|
clk_sel = 1;
|
|
break;
|
|
case TEMPERATURE_SENSOR_CLK_SRC_RC_FAST:
|
|
clk_sel = 0;
|
|
break;
|
|
default:
|
|
HAL_ASSERT(false);
|
|
break;
|
|
}
|
|
PCR.tsens_clk_conf.tsens_clk_sel = clk_sel;
|
|
}
|
|
|
|
/**
|
|
* @brief Set the hardware range, you can refer to the table ``temperature_sensor_attributes``
|
|
*
|
|
* @param tsens_dac ``reg_val`` in table ``temperature_sensor_attributes``
|
|
*/
|
|
static inline void temperature_sensor_ll_set_range(uint32_t range)
|
|
{
|
|
REGI2C_WRITE_MASK(I2C_SAR_ADC, I2C_SARADC_TSENS_DAC, range);
|
|
}
|
|
|
|
/**
|
|
* @brief Get the raw value of temperature sensor.
|
|
*
|
|
* @return uint32_t raw_value
|
|
*/
|
|
__attribute__((always_inline))
|
|
static inline uint32_t temperature_sensor_ll_get_raw_value(void)
|
|
{
|
|
return HAL_FORCE_READ_U32_REG_FIELD(APB_SARADC.saradc_apb_tsens_ctrl, saradc_tsens_out);
|
|
}
|
|
|
|
/**
|
|
* @brief Get the offset value of temperature sensor.
|
|
*
|
|
* @note This function is only used in legacy driver
|
|
*
|
|
* @return uint32_t offset value
|
|
*/
|
|
static inline uint32_t temperature_sensor_ll_get_offset(void)
|
|
{
|
|
return REGI2C_READ_MASK(I2C_SAR_ADC, I2C_SARADC_TSENS_DAC);
|
|
}
|
|
|
|
/**
|
|
* @brief Get the clock division factor value.
|
|
*
|
|
* @note This function is only used in legacy driver
|
|
*
|
|
* @return uint32_t clock division factor
|
|
*/
|
|
static inline uint32_t temperature_sensor_ll_get_clk_div(void)
|
|
{
|
|
return HAL_FORCE_READ_U32_REG_FIELD(APB_SARADC.saradc_apb_tsens_ctrl, saradc_tsens_clk_div);
|
|
}
|
|
|
|
/**
|
|
* @brief Set the clock division factor value, actually this has no impact on temperature sensor.
|
|
* Suggest just keep it as default value 6.
|
|
*
|
|
* @note This function is only used in legacy driver
|
|
*
|
|
* @param clk_div clock division factor, range from 1-10
|
|
*/
|
|
static inline void temperature_sensor_ll_set_clk_div(uint8_t clk_div)
|
|
{
|
|
HAL_FORCE_MODIFY_U32_REG_FIELD(APB_SARADC.saradc_apb_tsens_ctrl, saradc_tsens_clk_div, clk_div);
|
|
}
|
|
|
|
/**
|
|
* @brief Choose the wake-up mode for temperature sensor
|
|
*
|
|
* @note ESP32-C6 does not support difference mode.
|
|
*
|
|
* @param mode 0: Absolute value mode. 1: Difference mode.
|
|
*/
|
|
static inline void temperature_sensor_ll_wakeup_mode(temperature_sensor_ll_wakeup_mode_t mode)
|
|
{
|
|
APB_SARADC.tsens_wake.saradc_wakeup_mode = mode;
|
|
}
|
|
|
|
/**
|
|
* @brief Get temperature sensor interrupt/wakeup in which reason
|
|
*
|
|
* @return uint8_t 0: temperature value lower than low threshold 1: otherwise, higher than high threshold.
|
|
*/
|
|
__attribute__((always_inline))
|
|
static inline uint8_t temperature_sensor_ll_get_wakeup_reason(void)
|
|
{
|
|
return APB_SARADC.tsens_wake.saradc_wakeup_over_upper_th;
|
|
}
|
|
|
|
/**
|
|
* @brief Configure whether to enable temperature sensor wake up
|
|
*
|
|
* @param en true: enable, false: disable.
|
|
*/
|
|
static inline void temperature_sensor_ll_wakeup_enable(bool en)
|
|
{
|
|
APB_SARADC.tsens_wake.saradc_wakeup_en = en;
|
|
}
|
|
|
|
/**
|
|
* @brief Configures the low threshold for temperature sensor to wakeup
|
|
*
|
|
* @param th_low low threshold value.
|
|
*/
|
|
static inline void temperature_sensor_ll_set_th_low_val(uint8_t th_low)
|
|
{
|
|
HAL_FORCE_MODIFY_U32_REG_FIELD(APB_SARADC.tsens_wake, saradc_wakeup_th_low, th_low);
|
|
}
|
|
|
|
/**
|
|
* @brief Configures the high threshold for temperature sensor to wakeup
|
|
*
|
|
* @param th_high high threshold value.
|
|
*/
|
|
static inline void temperature_sensor_ll_set_th_high_val(uint8_t th_high)
|
|
{
|
|
HAL_FORCE_MODIFY_U32_REG_FIELD(APB_SARADC.tsens_wake, saradc_wakeup_th_high, th_high);
|
|
}
|
|
|
|
/**
|
|
* @brief Enable temperature sensor interrupt
|
|
*
|
|
* @param enable true: enable. false: disable
|
|
*/
|
|
static inline void temperature_sensor_ll_enable_intr(bool enable)
|
|
{
|
|
APB_SARADC.saradc_int_ena.saradc_apb_saradc_tsens_int_ena = enable;
|
|
}
|
|
|
|
/**
|
|
* @brief Clear temperature sensor interrupt
|
|
*/
|
|
__attribute__((always_inline))
|
|
static inline void temperature_sensor_ll_clear_intr(void)
|
|
{
|
|
APB_SARADC.saradc_int_clr.saradc_apb_saradc_tsens_int_clr = 1;
|
|
}
|
|
|
|
/**
|
|
* @brief Get temperature sensor interrupt status.
|
|
*/
|
|
static inline volatile void *temperature_sensor_ll_get_intr_status(void)
|
|
{
|
|
return &APB_SARADC.saradc_int_st;
|
|
}
|
|
|
|
/**
|
|
* @brief Configure whether to enable hardware sampling
|
|
*
|
|
* @param en true: enable, false: disable
|
|
*/
|
|
static inline void temperature_sensor_ll_sample_enable(bool en)
|
|
{
|
|
APB_SARADC.tsens_sample.saradc_tsens_sample_en = en;
|
|
}
|
|
|
|
/**
|
|
* @brief Configures the hardware sampling rate
|
|
*
|
|
* @param rate sampling rate
|
|
*/
|
|
static inline void temperature_sensor_ll_set_sample_rate(uint16_t rate)
|
|
{
|
|
HAL_FORCE_MODIFY_U32_REG_FIELD(APB_SARADC.tsens_sample, saradc_tsens_sample_rate, rate);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|