0001 /*
0002 * NXP LPC4350 and LPC4330 SoC
0003 *
0004 * Copyright 2015 Ariel D'Alessandro <ariel.dalessandro@gmail.com>
0005 *
0006 * This code is released using a dual license strategy: BSD/GPL
0007 * You can choose the licence that better fits your requirements.
0008 *
0009 * Released under the terms of 3-clause BSD License
0010 * Released under the terms of GNU General Public License Version 2.0
0011 *
0012 */
0013
0014 / {
0015 compatible = "nxp,lpc4350", "nxp,lpc4330";
0016
0017 cpus {
0018 cpu@0 {
0019 compatible = "arm,cortex-m4";
0020 };
0021 };
0022
0023 soc {
0024 sram0: sram@10000000 {
0025 compatible = "mmio-sram";
0026 reg = <0x10000000 0x20000>; /* 96 + 32 KiB local SRAM */
0027 };
0028
0029 sram1: sram@10080000 {
0030 compatible = "mmio-sram";
0031 reg = <0x10080000 0x12000>; /* 64 + 8 KiB local SRAM */
0032 };
0033
0034 sram2: sram@20000000 {
0035 compatible = "mmio-sram";
0036 reg = <0x20000000 0x10000>; /* 4 x 16 KiB AHB SRAM */
0037 };
0038 };
0039 };