esp-idf/components/soc
Alexey Lapshin 824c8e0593 feat(esp_system): allow .bss to spill over into L2MEM above 0x4ff40000
This commit introduce SOC_MEM_NON_CONTIGUOUS_SRAM flag (that enebled for
esp32p4). If SOC_MEM_NON_CONTIGUOUS_SRAM is enabled:

- LDFLAGS+=--enable-non-contiguous-regions
- ldgen.py replaces "arrays[*]" from sections.ld.in with objects under
  SURROUND keyword. (e.g. from linker.lf: data -> dram0_data SURROUND(foo))
- "mapping[*]" - refers to all other data

If SOC_MEM_NON_CONTIGUOUS_SRAM, sections.ld.in file should contain at
least one block of code like this (otherwise it does not make sense):

  .dram0.bss (NOLOAD) :
  {
    arrays[dram0_bss]
    mapping[dram0_bss]
  } > sram_low

  .dram1.bss (NOLOAD) :
  {
    /* do not place here arrays[dram0_bss] because it may be splited
     * between segments */
    mapping[dram0_bss]
  } > sram_high
2024-02-28 19:41:25 +04:00
..
esp32 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32c2 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32c3 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32c5 feat(clk): preliminary clock tree support for ESP32C5 2024-02-07 14:38:15 +08:00
esp32c6 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32h2 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32p4 feat(esp_system): allow .bss to spill over into L2MEM above 0x4ff40000 2024-02-28 19:41:25 +04:00
esp32s2 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
esp32s3 refactor(uart): add support to be able to test LP_UART port 2024-02-07 14:37:48 +08:00
include/soc Merge branch 'feat/csi_driver' into 'master' 2024-02-05 09:59:35 +08:00
linux/include/soc feat(esp32c5): support esp32c5 g0 components 2023-12-08 15:12:24 +08:00
CMakeLists.txt feat(csi): added csi driver 2024-02-04 19:06:11 +08:00
Kconfig
README.md
dport_access_common.c
linker.lf
lldesc.c

README.md

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