mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
4768c7d431
* machine/rp2350: add flash support for rp2350 * combine duplicate files * clean things up and group by source file * add stubbed out xip cache clean func if needed in the future * update flash_enable_xip_via_boot2 * remove unused macros and fix inconsistent formatting * make flash size configurable like rp2040 * add missing flash size configs * retain big Go CGo compatibility per #4103 * clarify CS0_SIZE source and remove single-use typedef
24 lines
785 B
Plaintext
24 lines
785 B
Plaintext
/* See Rust for a more complete reference: https://github.com/rp-rs/rp-hal/blob/main/rp235x-hal-examples/memory.x */
|
|
MEMORY
|
|
{
|
|
/* 2MiB safe default. */
|
|
FLASH : ORIGIN = 0x10000000, LENGTH = __flash_size
|
|
/* RAM consists of 8 banks, SRAM0..SRAM7 with striped mapping. */
|
|
SRAM : ORIGIN = 0x20000000, LENGTH = 512k
|
|
/* Banks 8 and 9 use direct mapping which can be
|
|
specailized for applications where predictable access time is beneficial.
|
|
i.e: Separate stacks for core0 and core1. */
|
|
SRAM4 : ORIGIN = 0x20080000, LENGTH = 4k
|
|
SRAM5 : ORIGIN = 0x20081000, LENGTH = 4k
|
|
FLASH_TEXT (rx) : ORIGIN = 0x10000000, LENGTH = __flash_size
|
|
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 512k
|
|
}
|
|
|
|
_stack_size = 2K;
|
|
|
|
SECTIONS
|
|
{
|
|
}
|
|
|
|
INCLUDE "targets/arm.ld"
|