mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00

* Use all remaining memory for stack(s) * Remove HEAP related code from RISCV linker scripts * Fix direct-boot / mcu-boot linker scripts * Use a statically allocated stack for core-1
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
MEMORY
|
||
{
|
||
/* MEMORY_MAP = [
|
||
[0x00000000, 0x00010000, "PADDING"],
|
||
[0x42800000, 0x43000000, "DROM"],
|
||
[0x40800000, 0x40850000, "DRAM"],
|
||
[0x40800000, 0x40850000, "BYTE_ACCESSIBLE"],
|
||
[0x4001С400, 0x40020000, "DROM_MASK"],
|
||
[0x40000000, 0x4001С400, "IROM_MASK"],
|
||
[0x42000000, 0x42800000, "IROM"],
|
||
[0x40800000, 0x40850000, "IRAM"],
|
||
[0x50000000, 0x50001000, "RTC_IRAM"],
|
||
[0x50000000, 0x50001000, "RTC_DRAM"],
|
||
[0x600FE000, 0x60100000, "MEM_INTERNAL2"],
|
||
] */
|
||
|
||
|
||
/* 320K of on soc RAM, 16K reserved for cache */
|
||
ICACHE : ORIGIN = 0x40800000, LENGTH = 16K
|
||
|
||
RAM : ORIGIN = 0x40800000 + 16K, LENGTH = 320K - 16K
|
||
|
||
/* External flash */
|
||
ROM : ORIGIN = 0x42000000, LENGTH = 0x400000
|
||
|
||
/* RTC fast memory (executable). Persists over deep sleep. */
|
||
RTC_FAST : ORIGIN = 0x50000000, LENGTH = 16K /*- ESP_BOOTLOADER_RESERVE_RTC*/
|
||
}
|
||
|
||
REGION_ALIAS("REGION_TEXT", ROM);
|
||
REGION_ALIAS("REGION_RODATA", ROM);
|
||
|
||
REGION_ALIAS("REGION_DATA", RAM);
|
||
REGION_ALIAS("REGION_BSS", RAM);
|
||
REGION_ALIAS("REGION_STACK", RAM);
|
||
|
||
REGION_ALIAS("REGION_RWTEXT", RAM);
|
||
REGION_ALIAS("REGION_RTC_FAST", RTC_FAST);
|