esp-idf/components/soc
Konstantin Kondrashov efdc853b45 Merge branch 'feature/esp32c61_esp_timer_systimer' into 'master'
feat(esp_timer): Updates systimer and esp_timer for ESP32-C61

Closes IDF-9284, IDF-10955, IDF-9307, and IDF-9308

See merge request espressif/esp-idf!33439
2024-09-14 16:08:40 +08:00
..
esp32 Merge branch 'feature/esp32c61_light_sleep_support_stage_2' into 'master' 2024-09-11 15:11:58 +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 doc(psram): clarify why psram speed is faster than flash 2024-09-14 11:13:20 +08:00
esp32c6 feat(wifi): add support for ap choose 2024-09-13 11:34:18 +08:00
esp32c61 Merge branch 'feature/esp32c61_esp_timer_systimer' into 'master' 2024-09-14 16:08:40 +08:00
esp32h2 Merge branch 'feature/esp32c61_lp_io_support' into 'master' 2024-09-11 14:45:54 +08:00
esp32p4 Merge branch 'feature/optimize_esp32p4_active_power_eco1' into 'master' 2024-09-11 23:15:29 +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(esp_hw_support): change regdma link entry num 2024-08-28 10:44:08 +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
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.