feat(gpio): support hysteresis filter on C61

This commit is contained in:
gaoxu 2024-08-20 14:48:14 +08:00
parent fab065848d
commit 004f27efda
5 changed files with 52 additions and 21 deletions

View File

@ -1,5 +1,5 @@
/* /*
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
* *
* SPDX-License-Identifier: Unlicense OR CC0-1.0 * SPDX-License-Identifier: Unlicense OR CC0-1.0
*/ */
@ -13,21 +13,24 @@
* NOTE: To run this special feature test case, a slope analog signal is needed. * NOTE: To run this special feature test case, a slope analog signal is needed.
* A simple RC circuit used here to generate continuous slope signal. * A simple RC circuit used here to generate continuous slope signal.
* *
* +---------+ * +--------------+
* | | * | |
* | (intr)26|----------------+ C:1000uF * | (intr)HYS_IO |----------------+ C:1000uF
* | | | ++ + * | | | ++ +
* | (wave)27|______+-----+___+___|| |_____ * | (wave)WAVE_IO|______+-----+___+___|| |_____
* | | +-----+ || | | * | | +-----+ || | |
* | ESP32 | R:10k ++ + | * | ESP32 | R:10k ++ + |
* | | | * | | |
* | GND |------------------------------+ * | GND |------------------------------+
* +---------+ * +--------------+
* *
* or you can connect your slop signals from signal generator to ESP32 pin * or you can connect your slop signals from signal generator to ESP32 pin
* which enabled the hysteresis feature directly to have a test. * which enabled the hysteresis feature directly to have a test.
**/ **/
#define TEST_GPIO_HYS_IO 4
#define TEST_GPIO_WAVE_IO 5
static void test_gpio_hysteresis_intr_handler(void *args) static void test_gpio_hysteresis_intr_handler(void *args)
{ {
esp_rom_printf("%" PRIu32 "\n", ++ * ((uint32_t *)args)); esp_rom_printf("%" PRIu32 "\n", ++ * ((uint32_t *)args));
@ -36,37 +39,35 @@ static void test_gpio_hysteresis_intr_handler(void *args)
// This case is now tested only manually // This case is now tested only manually
TEST_CASE("GPIO Input hysteresis filter", "[gpio_filter][timeout=50][ignore]") TEST_CASE("GPIO Input hysteresis filter", "[gpio_filter][timeout=50][ignore]")
{ {
const gpio_num_t TEST_HYS_IO = 26;
const gpio_num_t TEST_WAVE_IO = 27;
uint32_t intr_cnt = 0; uint32_t intr_cnt = 0;
gpio_config_t gpio_cfg = { gpio_config_t gpio_cfg = {
.pin_bit_mask = (1 << TEST_WAVE_IO), .pin_bit_mask = (1 << TEST_GPIO_WAVE_IO),
.mode = GPIO_MODE_OUTPUT, .mode = GPIO_MODE_OUTPUT,
.pull_down_en = GPIO_PULLDOWN_ENABLE, .pull_down_en = GPIO_PULLDOWN_ENABLE,
}; };
TEST_ESP_OK(gpio_config(&gpio_cfg)); TEST_ESP_OK(gpio_config(&gpio_cfg));
gpio_cfg.pin_bit_mask = 1 << TEST_HYS_IO; gpio_cfg.pin_bit_mask = 1 << TEST_GPIO_HYS_IO;
gpio_cfg.mode = GPIO_MODE_INPUT; gpio_cfg.mode = GPIO_MODE_INPUT;
gpio_cfg.intr_type = GPIO_INTR_ANYEDGE; gpio_cfg.intr_type = GPIO_INTR_ANYEDGE;
gpio_cfg.hys_ctrl_mode = GPIO_HYS_SOFT_ENABLE; gpio_cfg.hys_ctrl_mode = GPIO_HYS_SOFT_ENABLE;
TEST_ESP_OK(gpio_config(&gpio_cfg)); TEST_ESP_OK(gpio_config(&gpio_cfg));
gpio_install_isr_service(0); gpio_install_isr_service(0);
gpio_isr_handler_add(TEST_HYS_IO, test_gpio_hysteresis_intr_handler, &intr_cnt); gpio_isr_handler_add(TEST_GPIO_HYS_IO, test_gpio_hysteresis_intr_handler, &intr_cnt);
// generate 5 rising and falling slopes to test gpio interrupt // generate 5 rising and falling slopes to test gpio interrupt
for (uint8_t i = 0; i < 5; i++) { for (uint8_t i = 0; i < 5; i++) {
printf("----falling %dth\n", i); printf("----falling %dth\n", i);
gpio_set_level(TEST_WAVE_IO, 0); gpio_set_level(TEST_GPIO_WAVE_IO, 0);
vTaskDelay(1500); vTaskDelay(1500);
printf("----rising %dth\n", i); printf("----rising %dth\n", i);
gpio_set_level(TEST_WAVE_IO, 1); gpio_set_level(TEST_GPIO_WAVE_IO, 1);
vTaskDelay(1500); vTaskDelay(1500);
} }
gpio_isr_handler_remove(TEST_HYS_IO); gpio_isr_handler_remove(TEST_GPIO_HYS_IO);
gpio_uninstall_isr_service(); gpio_uninstall_isr_service();
// should shot ISR exactly 10 times // should shot ISR exactly 10 times
TEST_ASSERT_UINT32_WITHIN(1, 10, intr_cnt); TEST_ASSERT_UINT32_WITHIN(1, 10, intr_cnt);

View File

@ -259,6 +259,31 @@ static inline void gpio_ll_pin_filter_disable(gpio_dev_t *hw, uint32_t gpio_num)
IO_MUX.gpion[gpio_num].gpion_filter_en = 0; IO_MUX.gpion[gpio_num].gpion_filter_en = 0;
} }
/**
* @brief Enable GPIO hysteresis
*
* @param hw Peripheral GPIO hardware instance address.
* @param gpio_num GPIO number
*/
static inline void gpio_ll_pin_input_hysteresis_enable(gpio_dev_t *hw, uint32_t gpio_num)
{
// Always set hys_sel to 1 to use software control hysteresis, since no efuse bit reserved for hysteresis on ESP32C61
IO_MUX.gpion[gpio_num].gpion_hys_sel = 1;
IO_MUX.gpion[gpio_num].gpion_hys_en = 1;
}
/**
* @brief Disable GPIO hysteresis
*
* @param hw Peripheral GPIO hardware instance address.
* @param gpio_num GPIO number
*/
static inline void gpio_ll_pin_input_hysteresis_disable(gpio_dev_t *hw, uint32_t gpio_num)
{
IO_MUX.gpion[gpio_num].gpion_hys_sel = 1;
IO_MUX.gpion[gpio_num].gpion_hys_en = 0;
}
/** /**
* @brief Disable output mode on GPIO. * @brief Disable output mode on GPIO.
* *

View File

@ -231,6 +231,10 @@ config SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER
bool bool
default y default y
config SOC_GPIO_SUPPORT_PIN_HYS_FILTER
bool
default y
config SOC_GPIO_SUPPORT_RTC_INDEPENDENT config SOC_GPIO_SUPPORT_RTC_INDEPENDENT
bool bool
default y default y

View File

@ -102,8 +102,8 @@ typedef union {
uint32_t gpion_hys_en:1; uint32_t gpion_hys_en:1;
/** gpion_hys_sel : R/W; bitpos: [17]; default: 0; /** gpion_hys_sel : R/W; bitpos: [17]; default: 0;
* Configures to choose the signal for enabling the hysteresis function for GPIOn. \\ * Configures to choose the signal for enabling the hysteresis function for GPIOn. \\
* 0: Choose the output enable signal of eFuse\\ * 0: Choose the output enable signal of eFuse, there is no efuse bit for it, should never set to 0\\
* 1: Choose the output enable signal of IO_MUX_GPIOn_HYS_EN\\ * 1: Choose the output enable signal of IO_MUX_GPIOn_HYS_EN, always set to 1\\
*/ */
uint32_t gpion_hys_sel:1; uint32_t gpion_hys_sel:1;
uint32_t reserved_18:14; uint32_t reserved_18:14;

View File

@ -162,6 +162,7 @@
#define SOC_GPIO_PORT 1U #define SOC_GPIO_PORT 1U
#define SOC_GPIO_PIN_COUNT 22 #define SOC_GPIO_PIN_COUNT 22
#define SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 #define SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1
#define SOC_GPIO_SUPPORT_PIN_HYS_FILTER 1
// GPIO peripheral has the ETM extension // GPIO peripheral has the ETM extension
// \#define SOC_GPIO_SUPPORT_ETM 1 //TODO: [ESP32C61] IDF-9318 // \#define SOC_GPIO_SUPPORT_ETM 1 //TODO: [ESP32C61] IDF-9318