mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	- Remove GPTIMER and TIMG related definitions from soc_caps_full.h files - Move timer peripheral definitions to appropriate HAL layer files - Update references across components to use proper HAL abstractions - Consolidate timer group and GPTIMER capabilities organization - Ensure consistent timer configuration across all ESP32 variants This refactoring improves the separation of concerns between SOC capabilities and HAL implementations for timer-related functionality.
		
			
				
	
	
		
			130 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include "hal/timer_periph.h"
 | 
						|
 | 
						|
const soc_timg_gptimer_signal_desc_t soc_timg_gptimer_signals[2][1] = {
 | 
						|
    [0] = {
 | 
						|
        [0] = {
 | 
						|
            .module_name = "TIMG0T0",
 | 
						|
            .parent_module = PERIPH_TIMG0_MODULE,
 | 
						|
            .irq_id = ETS_TG0_T0_INTR_SOURCE,
 | 
						|
        },
 | 
						|
    },
 | 
						|
    [1] = {
 | 
						|
        [0] = {
 | 
						|
            .module_name = "TIMG1T0",
 | 
						|
            .parent_module = PERIPH_TIMG1_MODULE,
 | 
						|
            .irq_id = ETS_TG1_T0_INTR_SOURCE,
 | 
						|
        },
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
/*  Registers in retention context:
 | 
						|
 *      TIMG_T0CONFIG_REG
 | 
						|
 *      TIMG_T0ALARMLO_REG
 | 
						|
 *      TIMG_T0ALARMHI_REG
 | 
						|
 *      TIMG_T0LOADLO_REG
 | 
						|
 *      TIMG_T0LOADHI_REG
 | 
						|
 *      TIMG_INT_ENA_TIMERS_REG
 | 
						|
 *      TIMG_REGCLK_REG
 | 
						|
 */
 | 
						|
#define TG_TIMER_RETENTION_REGS_CNT 7
 | 
						|
static const uint32_t tg_timer_regs_map[4] = {0x100000f1, 0x80000000, 0x0, 0x0};
 | 
						|
 | 
						|
const regdma_entries_config_t tg0_timer_regdma_entries[] = {
 | 
						|
    // backup stage: trigger a soft capture
 | 
						|
    [0] = {
 | 
						|
        .config = REGDMA_LINK_WRITE_INIT(REGDMA_TG0_TIMER_LINK(0x00),
 | 
						|
                                         TIMG_T0UPDATE_REG(0), TIMG_T0_UPDATE, TIMG_T0_UPDATE_M, 0, 1),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: wait for the capture done
 | 
						|
    [1] = {
 | 
						|
        .config = REGDMA_LINK_WAIT_INIT(REGDMA_TG0_TIMER_LINK(0x01),
 | 
						|
                                        TIMG_T0UPDATE_REG(0), 0x0, TIMG_T0_UPDATE_M, 0, 1),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: save the captured counter value
 | 
						|
    // restore stage: store the captured counter value to the loader register
 | 
						|
    [2] = {
 | 
						|
        .config = REGDMA_LINK_CONTINUOUS_INIT(REGDMA_TG0_TIMER_LINK(0x02),
 | 
						|
                                              TIMG_T0LO_REG(0), TIMG_T0LOADLO_REG(0), 2, 0, 0),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // restore stage: trigger a soft reload, so the timer can continue from where it was backed up
 | 
						|
    [3] = {
 | 
						|
        .config = REGDMA_LINK_WRITE_INIT(REGDMA_TG0_TIMER_LINK(0x03),
 | 
						|
                                         TIMG_T0LOAD_REG(0), 0x1, TIMG_T0_LOAD_M, 1, 0),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: save other configuration and status registers
 | 
						|
    // restore stage: restore the configuration and status registers
 | 
						|
    [4] = {
 | 
						|
        .config = REGDMA_LINK_ADDR_MAP_INIT(REGDMA_TG0_TIMER_LINK(0x04),
 | 
						|
                                            TIMG_T0CONFIG_REG(0), TIMG_T0CONFIG_REG(0),
 | 
						|
                                            TG_TIMER_RETENTION_REGS_CNT, 0, 0,
 | 
						|
                                            tg_timer_regs_map[0], tg_timer_regs_map[1],
 | 
						|
                                            tg_timer_regs_map[2], tg_timer_regs_map[3]),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
};
 | 
						|
 | 
						|
const regdma_entries_config_t tg1_timer_regdma_entries[] = {
 | 
						|
    // backup stage: trigger a soft capture
 | 
						|
    [0] = {
 | 
						|
        .config = REGDMA_LINK_WRITE_INIT(REGDMA_TG1_TIMER_LINK(0x00),
 | 
						|
                                         TIMG_T0UPDATE_REG(1), TIMG_T0_UPDATE, TIMG_T0_UPDATE_M, 0, 1),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: wait for the capture done
 | 
						|
    [1] = {
 | 
						|
        .config = REGDMA_LINK_WAIT_INIT(REGDMA_TG1_TIMER_LINK(0x01),
 | 
						|
                                        TIMG_T0UPDATE_REG(1), 0x0, TIMG_T0_UPDATE_M, 0, 1),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: save the captured counter value
 | 
						|
    // restore stage: store the captured counter value to the loader register
 | 
						|
    [2] = {
 | 
						|
        .config = REGDMA_LINK_CONTINUOUS_INIT(REGDMA_TG1_TIMER_LINK(0x02),
 | 
						|
                                              TIMG_T0LO_REG(1), TIMG_T0LOADLO_REG(1), 2, 0, 0),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // restore stage: trigger a soft reload, so the timer can continue from where it was backed up
 | 
						|
    [3] = {
 | 
						|
        .config = REGDMA_LINK_WRITE_INIT(REGDMA_TG1_TIMER_LINK(0x03),
 | 
						|
                                         TIMG_T0LOAD_REG(1), 0x1, TIMG_T0_LOAD_M, 1, 0),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
    // backup stage: save other configuration and status registers
 | 
						|
    // restore stage: restore the configuration and status registers
 | 
						|
    [4] = {
 | 
						|
        .config = REGDMA_LINK_ADDR_MAP_INIT(REGDMA_TG1_TIMER_LINK(0x04),
 | 
						|
                                            TIMG_T0CONFIG_REG(1), TIMG_T0CONFIG_REG(1),
 | 
						|
                                            TG_TIMER_RETENTION_REGS_CNT, 0, 0,
 | 
						|
                                            tg_timer_regs_map[0], tg_timer_regs_map[1],
 | 
						|
                                            tg_timer_regs_map[2], tg_timer_regs_map[3]),
 | 
						|
        .owner = ENTRY(0) | ENTRY(2)
 | 
						|
    },
 | 
						|
};
 | 
						|
 | 
						|
const soc_timg_gptimer_retention_desc_t soc_timg_gptimer_retention_infos[2][1] = {
 | 
						|
    [0] = {
 | 
						|
        [0] = {
 | 
						|
            .module = SLEEP_RETENTION_MODULE_TG0_TIMER0,
 | 
						|
            .regdma_entry_array = tg0_timer_regdma_entries,
 | 
						|
            .array_size = ARRAY_SIZE(tg0_timer_regdma_entries)
 | 
						|
        }
 | 
						|
    },
 | 
						|
    [1] = {
 | 
						|
        [0] = {
 | 
						|
            .module = SLEEP_RETENTION_MODULE_TG1_TIMER0,
 | 
						|
            .regdma_entry_array = tg1_timer_regdma_entries,
 | 
						|
            .array_size = ARRAY_SIZE(tg1_timer_regdma_entries)
 | 
						|
        }
 | 
						|
    },
 | 
						|
};
 |