esp-idf/components/soc
morris 399ea2a05c Merge branch 'refactor/gptimer_retention_link_test' into 'master'
gptimer: optimize the backup register

Closes IDF-9749

See merge request espressif/esp-idf!33522
2024-09-26 12:28:23 +08:00
..
esp32 refactor(soc): sort esp32 soc headers 2024-09-23 09:46:36 +08:00
esp32c2 refactor(soc): create soc include folders 2024-09-10 09:56:11 +08:00
esp32c3 Merge branch 'feature/esp32c61_light_sleep_support_stage_2' into 'master' 2024-09-11 15:11:58 +08:00
esp32c5 change(gptimer): optimize the registers to be backup 2024-09-25 16:12:38 +08:00
esp32c6 change(gptimer): optimize the registers to be backup 2024-09-25 16:12:38 +08:00
esp32c61 Merge branch 'refactor/gptimer_retention_link_test' into 'master' 2024-09-26 12:28:23 +08:00
esp32h2 change(gptimer): optimize the registers to be backup 2024-09-25 16:12:38 +08:00
esp32p4 change(gptimer): optimize the registers to be backup 2024-09-25 16:12:38 +08:00
esp32s2 Merge branch 'feature/esp32c61_light_sleep_support_stage_2' into 'master' 2024-09-11 15:11:58 +08:00
esp32s3 Merge branch 'feature/esp32c61_light_sleep_support_stage_2' into 'master' 2024-09-11 15:11:58 +08:00
include/soc change(gptimer): optimize the registers to be backup 2024-09-25 16:12:38 +08:00
linux/include/soc fix(uart): make custom console uart pins same to the default console uart pins 2024-09-02 15:24:29 +08:00
CMakeLists.txt refactor(soc): create soc include folders 2024-09-10 09:56:11 +08:00
dport_access_common.c dport: Move DPORT workaround to G0 2022-05-31 13:44:18 +08:00
Kconfig feat(mmu): added 8KB mmu page size option for c6 h2 2024-07-29 16:16:36 +08:00
linker.lf
lldesc.c crypto: initial S3 Beta 3 bringup and testing for SHA/AES/RSA/flash enc 2021-05-18 11:25:41 +08:00
README.md refactor(soc): create soc include folders 2024-09-10 09:56:11 +08:00

soc

The soc component provides hardware description for targets supported by ESP-IDF.

- `xxx_reg.h`   - defines registers related to the hardware
- `xxx_struct.h` - hardware description in C `struct`
- `xxx_channel.h` - definitions for hardware with multiple channels
- `xxx_caps.h`  - features/capabilities of the hardware
- `xxx_pins.h`  - pin definitions
- `xxx_periph.h/*.c`  - includes all headers related to a peripheral; declaration and definition of IO mapping for that hardware

Specially, the xxx_reg.h and xxx_struct.h headers that generated by script are under register/soc folder. Please DO NOT add other manual coded files under this folder.

For other soc headers that are used as wrapper, definition, signaling, mapping or manual coded registers, please add them under include/soc folder.