0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003 * O2D300 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,o2d300";
0013 compatible = "ifm,o2d";
0014
0015 localbus {
0016 ranges = <0 0 0xfc000000 0x02000000
0017 3 0 0xe3000000 0x00100000>;
0018 flash@0,0 {
0019 compatible = "cfi-flash";
0020 reg = <0 0 0x02000000>;
0021 bank-width = <2>;
0022 device-width = <2>;
0023 #size-cells = <1>;
0024 #address-cells = <1>;
0025
0026 partition@40000 {
0027 label = "env_1";
0028 reg = <0x00040000 0x00020000>;
0029 read-only;
0030 };
0031 partition@60000 {
0032 label = "env_2";
0033 reg = <0x00060000 0x00020000>;
0034 read-only;
0035 };
0036 partition@80000 {
0037 label = "kernel";
0038 reg = <0x00080000 0x00260000>;
0039 read-only;
0040 };
0041 /* o2d300 specific partitions */
0042 partition@2e0000 {
0043 label = "o2d300 user defined";
0044 reg = <0x002e0000 0x01d20000>;
0045 };
0046 };
0047 };
0048 };