29 lines
370 B
Plaintext
29 lines
370 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
|
|
*/
|
|
&itcm0 {
|
|
reg = <0x00000000 0x10000>;
|
|
};
|
|
|
|
&dtcm0 {
|
|
reg = <0x20000000 0x10000>;
|
|
};
|
|
|
|
&ocram0 {
|
|
reg = <0x20200000 0x20000>;
|
|
};
|