mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 01:46:26 +00:00
Have nodelabels match the SoC docs so when a nodelabel reference is made in the code its easier to relate to the SoC. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
29 lines
367 B
Plaintext
29 lines
367 B
Plaintext
/*
|
|
* Copyright (c) 2019, Linaro
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <nxp/nxp_rt.dtsi>
|
|
|
|
&sysclk {
|
|
clock-frequency = <500000000>;
|
|
};
|
|
|
|
/* i.MX rt1020 default FlexRAM partition:
|
|
* ITCM: 64KB
|
|
* DTCM: 64KB
|
|
* OCRAM: 128KB
|
|
*/
|
|
&itcm {
|
|
reg = <0x00000000 0x10000>;
|
|
};
|
|
|
|
&dtcm {
|
|
reg = <0x20000000 0x10000>;
|
|
};
|
|
|
|
&ocram {
|
|
reg = <0x20200000 0x20000>;
|
|
};
|