Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  * O2D 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,o2d";
0013         compatible = "ifm,o2d";
0014 
0015         memory@0 {
0016                 reg = <0x00000000 0x08000000>;  // 128MB
0017         };
0018 
0019         localbus {
0020                 ranges = <0 0 0xfc000000 0x02000000
0021                           3 0 0xe3000000 0x00100000>;
0022 
0023                 flash@0,0 {
0024                         compatible = "cfi-flash";
0025                         reg = <0 0 0x02000000>;
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                         /* o2d specific partitions */
0037                         partition@2c0000 {
0038                                 label = "o2d user defined";
0039                                 reg = <0x002c0000 0x01d40000>;
0040                         };
0041                 };
0042         };
0043 };