mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-27 04:10:25 +00:00

Adds initial support for MIMXRT600 series MCUs from NXP. Subsequent PRs will add more drivers.
35 lines
595 B
Plaintext
35 lines
595 B
Plaintext
MEMORY {
|
|
OTFAD : ORIGIN = 0x08000000, LENGTH = 256
|
|
FCB : ORIGIN = 0x08000400, LENGTH = 512
|
|
BIV : ORIGIN = 0x08000600, LENGTH = 4
|
|
KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
|
|
FLASH : ORIGIN = 0x08001000, LENGTH = 1M
|
|
RAM : ORIGIN = 0x20080000, LENGTH = 1536K
|
|
}
|
|
|
|
SECTIONS {
|
|
.otfad : {
|
|
. = ALIGN(4);
|
|
KEEP(* (.otfad))
|
|
. = ALIGN(4);
|
|
} > OTFAD
|
|
|
|
.fcb : {
|
|
. = ALIGN(4);
|
|
KEEP(* (.fcb))
|
|
. = ALIGN(4);
|
|
} > FCB
|
|
|
|
.biv : {
|
|
. = ALIGN(4);
|
|
KEEP(* (.biv))
|
|
. = ALIGN(4);
|
|
} > BIV
|
|
|
|
.keystore : {
|
|
. = ALIGN(4);
|
|
KEEP(* (.keystore))
|
|
. = ALIGN(4);
|
|
} > KEYSTORE
|
|
}
|