Commit cc3358e0 authored by Ryan QIAN's avatar Ryan QIAN Committed by Maureen Helm
Browse files

dts: arm: nxp: Add dtsi for RT1015 and RT1020



The default flexram configuration for RT1015:
  - ITCM  0x0,         32KB
  - DTCM  0x200000000, 32KB
  - OCRAM 0x20200000,  64KB

The default flexram configuration for RT1020:
  - ITCM  0x0,         64KB
  - DTCM  0x200000000, 64KB
  - OCRAM 0x20200000,  128KB

Signed-off-by: default avatarRyan QIAN <jianghao.qian@nxp.com>
parent cbbbdeaa
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019, Linaro
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include <nxp/nxp_rt.dtsi>

/* i.MX rt1015 default FlexRAM partition:
 * ITCM: 32KB
 * DTCM: 32KB
 * OCRAM: 64KB
 */
&itcm0 {
	reg = <0x00000000 0x8000>;
};

&dtcm0 {
	reg = <0x20000000 0x8000>;
};

&ocram0 {
	reg = <0x20200000 0x10000>;
};
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019, Linaro
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include <nxp/nxp_rt.dtsi>

/* i.MX rt1020 default FlexRAM partition:
 * ITCM: 64KB
 * DTCM: 64KB
 * OCRAM: 128KB
 */
&itcm0 {
	reg = <0x00000000 0x10000>;
};

&dtcm0 {
	reg = <0x20000000 0x10000>;
};

&ocram0 {
	reg = <0x20200000 0x20000>;
};