mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-03 15:15:01 +00:00

* esp32 & esp32s2 sharing scripts * add wokwi files * Add fixup section for esp32s2, fix ordering of sectino includes * Remove debug asm file * Use shared linker scripts for s3 with fixups * Add external.x sections back * Move ld scripts into esp-hal-common * esp32c3 unified linker scripts - rework original c3 script to use the xtensa named sections (e.g, _SECTIONNAME_start) - Add fixups in esp32c3 specific linker - Remove useless text section start and end (not required when using any form of bootloader) * Add RTC alias'. Move some shared fixups to a file * comment and cleanup * unify c2 linker script * unify c6 linker script * remove debug configs * use new esp-riscv-rt * fmt * align db symbol names * fix s3 db
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
MEMORY
|
|
{
|
|
/*
|
|
https://github.com/espressif/esptool/blob/10828527038d143e049790d330ac4de76ce987d6/esptool/targets/esp32c2.py#L53-L62
|
|
MEMORY_MAP = [[0x00000000, 0x00010000, "PADDING"],
|
|
[0x3C000000, 0x3C400000, "DROM"],
|
|
[0x3FCA0000, 0x3FCE0000, "DRAM"],
|
|
[0x3FC88000, 0x3FD00000, "BYTE_ACCESSIBLE"],
|
|
[0x3FF00000, 0x3FF50000, "DROM_MASK"],
|
|
[0x40000000, 0x40090000, "IROM_MASK"],
|
|
[0x42000000, 0x42400000, "IROM"],
|
|
[0x4037C000, 0x403C0000, "IRAM"]]
|
|
*/
|
|
|
|
/* 272K of on soc RAM, 16K reserved for cache */
|
|
ICACHE : ORIGIN = 0x4037C000, LENGTH = 16K
|
|
/* Instruction RAM */
|
|
IRAM : ORIGIN = 0x4037C000 + 16K, LENGTH = 272K - 16K
|
|
/* Data RAM */
|
|
DRAM : ORIGIN = 0x3FCA0000, LENGTH = 0x30000
|
|
|
|
/* External flash */
|
|
/* Instruction ROM */
|
|
IROM : ORIGIN = 0x42000000 + 0x20, LENGTH = 0x200000 - 0x20
|
|
/* Data ROM */
|
|
DROM : ORIGIN = 0x3C000000, LENGTH = 0x200000
|
|
}
|
|
|
|
REGION_ALIAS("ROTEXT", IROM);
|
|
REGION_ALIAS("RODATA", DROM);
|
|
|
|
REGION_ALIAS("RWDATA", DRAM);
|
|
REGION_ALIAS("RWTEXT", IRAM); |