0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003 * O3DNT Device Tree Source
0004 *
0005 * Copyright (C) 2012 DENX Software Engineering
0006 * Anatolij Gustschin <agust@denx.de>
0007 */
0008
0009 /include/ "o2d.dtsi"
0010
0011 / {
0012 model = "ifm,o3dnt";
0013 compatible = "ifm,o2d";
0014
0015 memory@0 {
0016 reg = <0x00000000 0x04000000>; // 64MB
0017 };
0018
0019 localbus {
0020 ranges = <0 0 0xfc000000 0x01000000
0021 3 0 0xe3000000 0x00100000>;
0022
0023 flash@0,0 {
0024 compatible = "cfi-flash";
0025 reg = <0 0 0x01000000>;
0026 bank-width = <2>;
0027 device-width = <2>;
0028 #size-cells = <1>;
0029 #address-cells = <1>;
0030
0031 partition@60000 {
0032 label = "kernel";
0033 reg = <0x00060000 0x00260000>;
0034 read-only;
0035 };
0036
0037 /* o3dnt specific partitions */
0038 partition@2c0000 {
0039 label = "o3dnt user defined";
0040 reg = <0x002c0000 0x00d40000>;
0041 };
0042 };
0043 };
0044 };