mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
Merge branch 'bugfix/fix_adc_digital_not_reset_issue_v4.4' into 'release/v4.4'
adc: fix adc digital part not reset issue (v4.4) See merge request espressif/esp-idf!17375
This commit is contained in:
@@ -74,6 +74,7 @@ void bootloader_random_enable(void)
|
|||||||
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_DTEST_RTC_ADDR, 0);
|
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_DTEST_RTC_ADDR, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO: IDF-4714
|
||||||
void bootloader_random_disable(void)
|
void bootloader_random_disable(void)
|
||||||
{
|
{
|
||||||
/* Restore internal I2C bus state */
|
/* Restore internal I2C bus state */
|
||||||
@@ -82,13 +83,19 @@ void bootloader_random_disable(void)
|
|||||||
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_ENT_RTC_ADDR, 0);
|
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_ENT_RTC_ADDR, 0);
|
||||||
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_DTEST_RTC_ADDR, 0);
|
REGI2C_WRITE_MASK(I2C_SAR_ADC, ADC_SARADC_DTEST_RTC_ADDR, 0);
|
||||||
|
|
||||||
/* Restore SARADC to default mode */
|
//Stop SAR ADC clock
|
||||||
CLEAR_PERI_REG_MASK(SENS_SAR_MEAS1_MUX_REG, SENS_SAR1_DIG_FORCE);
|
|
||||||
SET_PERI_REG_MASK(SYSTEM_PERIP_CLK_EN0_REG, SYSTEM_APB_SARADC_CLK_EN);
|
|
||||||
REG_SET_FIELD(SENS_SAR_POWER_XPD_SAR_REG, SENS_FORCE_XPD_SAR, 0);
|
|
||||||
CLEAR_PERI_REG_MASK(APB_SARADC_CTRL2_REG, APB_SARADC_TIMER_EN);
|
|
||||||
CLEAR_PERI_REG_MASK(SENS_SAR_PERI_CLK_GATE_CONF_REG, SENS_SARADC_CLK_EN);
|
CLEAR_PERI_REG_MASK(SENS_SAR_PERI_CLK_GATE_CONF_REG, SENS_SARADC_CLK_EN);
|
||||||
|
//Power off SAR ADC
|
||||||
|
REG_SET_FIELD(SENS_SAR_POWER_XPD_SAR_REG, SENS_FORCE_XPD_SAR, 0);
|
||||||
|
//return to ADC RTC controller
|
||||||
|
CLEAR_PERI_REG_MASK(SENS_SAR_MEAS1_MUX_REG, SENS_SAR1_DIG_FORCE);
|
||||||
|
//Invalidate ADC digital trigger timer
|
||||||
|
CLEAR_PERI_REG_MASK(APB_SARADC_CTRL2_REG, APB_SARADC_TIMER_EN);
|
||||||
|
|
||||||
|
//Disable ADC digital part
|
||||||
CLEAR_PERI_REG_MASK(SYSTEM_PERIP_CLK_EN0_REG, SYSTEM_APB_SARADC_CLK_EN);
|
CLEAR_PERI_REG_MASK(SYSTEM_PERIP_CLK_EN0_REG, SYSTEM_APB_SARADC_CLK_EN);
|
||||||
|
//Hold reset bit for ADC digital part
|
||||||
|
SET_PERI_REG_MASK(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_APB_SARADC_RST);
|
||||||
|
|
||||||
/* Note: the 8M CLK entropy source continues running even after this function is called,
|
/* Note: the 8M CLK entropy source continues running even after this function is called,
|
||||||
but as mentioned above it's better to enable Wi-Fi or BT or call bootloader_random_enable()
|
but as mentioned above it's better to enable Wi-Fi or BT or call bootloader_random_enable()
|
||||||
|
@@ -284,8 +284,10 @@ esp_err_t adc_digi_initialize(const adc_digi_init_config_t *init_config)
|
|||||||
};
|
};
|
||||||
adc_hal_context_config(&s_adc_digi_ctx->hal, &config);
|
adc_hal_context_config(&s_adc_digi_ctx->hal, &config);
|
||||||
|
|
||||||
//enable SARADC module clock
|
//enable ADC digital part
|
||||||
periph_module_enable(PERIPH_SARADC_MODULE);
|
periph_module_enable(PERIPH_SARADC_MODULE);
|
||||||
|
//reset ADC digital part
|
||||||
|
periph_module_reset(PERIPH_SARADC_MODULE);
|
||||||
|
|
||||||
#if SOC_ADC_CALIBRATION_V1_SUPPORTED
|
#if SOC_ADC_CALIBRATION_V1_SUPPORTED
|
||||||
adc_hal_calibration_init(ADC_NUM_1);
|
adc_hal_calibration_init(ADC_NUM_1);
|
||||||
|
@@ -1,16 +1,8 @@
|
|||||||
// Copyright 2015-2020 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// 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
|
#pragma once
|
||||||
|
|
||||||
@@ -29,6 +21,8 @@ extern "C" {
|
|||||||
static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph)
|
static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph)
|
||||||
{
|
{
|
||||||
switch (periph) {
|
switch (periph) {
|
||||||
|
case PERIPH_SARADC_MODULE:
|
||||||
|
return DPORT_APB_SARADC_CLK_EN;
|
||||||
case PERIPH_LEDC_MODULE:
|
case PERIPH_LEDC_MODULE:
|
||||||
return DPORT_LEDC_CLK_EN;
|
return DPORT_LEDC_CLK_EN;
|
||||||
case PERIPH_UART0_MODULE:
|
case PERIPH_UART0_MODULE:
|
||||||
@@ -99,6 +93,8 @@ static inline uint32_t periph_ll_get_rst_en_mask(periph_module_t periph, bool en
|
|||||||
(void)enable; // unused
|
(void)enable; // unused
|
||||||
|
|
||||||
switch (periph) {
|
switch (periph) {
|
||||||
|
case PERIPH_SARADC_MODULE:
|
||||||
|
return DPORT_APB_SARADC_RST;
|
||||||
case PERIPH_LEDC_MODULE:
|
case PERIPH_LEDC_MODULE:
|
||||||
return DPORT_LEDC_RST;
|
return DPORT_LEDC_RST;
|
||||||
case PERIPH_UART0_MODULE:
|
case PERIPH_UART0_MODULE:
|
||||||
|
@@ -21,6 +21,8 @@ extern "C" {
|
|||||||
static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph)
|
static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph)
|
||||||
{
|
{
|
||||||
switch (periph) {
|
switch (periph) {
|
||||||
|
case PERIPH_SARADC_MODULE:
|
||||||
|
return SYSTEM_APB_SARADC_CLK_EN;
|
||||||
case PERIPH_RMT_MODULE:
|
case PERIPH_RMT_MODULE:
|
||||||
return SYSTEM_RMT_CLK_EN;
|
return SYSTEM_RMT_CLK_EN;
|
||||||
case PERIPH_LEDC_MODULE:
|
case PERIPH_LEDC_MODULE:
|
||||||
@@ -103,6 +105,8 @@ static inline uint32_t periph_ll_get_clk_en_mask(periph_module_t periph)
|
|||||||
static inline uint32_t periph_ll_get_rst_en_mask(periph_module_t periph, bool enable)
|
static inline uint32_t periph_ll_get_rst_en_mask(periph_module_t periph, bool enable)
|
||||||
{
|
{
|
||||||
switch (periph) {
|
switch (periph) {
|
||||||
|
case PERIPH_SARADC_MODULE:
|
||||||
|
return SYSTEM_APB_SARADC_RST;
|
||||||
case PERIPH_RMT_MODULE:
|
case PERIPH_RMT_MODULE:
|
||||||
return SYSTEM_RMT_RST;
|
return SYSTEM_RMT_RST;
|
||||||
case PERIPH_LEDC_MODULE:
|
case PERIPH_LEDC_MODULE:
|
||||||
|
Reference in New Issue
Block a user