0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003 * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
0004 */
0005 /dts-v1/;
0006
0007 #include "omap2420.dtsi"
0008
0009 / {
0010 model = "TI OMAP2420 H4 board";
0011 compatible = "ti,omap2420-h4", "ti,omap2420", "ti,omap2";
0012
0013 memory@80000000 {
0014 device_type = "memory";
0015 reg = <0x80000000 0x4000000>; /* 64 MB */
0016 };
0017 };
0018
0019 &gpmc {
0020 ranges = <0 0 0x08000000 0x04000000>;
0021
0022 nor@0,0 {
0023 compatible = "cfi-flash";
0024 linux,mtd-name = "intel,ge28f256l18b85";
0025 #address-cells = <1>;
0026 #size-cells = <1>;
0027 reg = <0 0 0x04000000>;
0028 bank-width = <2>;
0029
0030 gpmc,mux-add-data = <2>;
0031 gpmc,cs-on-ns = <10>;
0032 gpmc,cs-rd-off-ns = <160>;
0033 gpmc,cs-wr-off-ns = <160>;
0034 gpmc,adv-on-ns = <20>;
0035 gpmc,adv-rd-off-ns = <50>;
0036 gpmc,adv-wr-off-ns = <50>;
0037 gpmc,oe-on-ns = <60>;
0038 gpmc,oe-off-ns = <120>;
0039 gpmc,we-on-ns = <60>;
0040 gpmc,we-off-ns = <120>;
0041 gpmc,rd-cycle-ns = <170>;
0042 gpmc,wr-cycle-ns = <170>;
0043 gpmc,access-ns = <150>;
0044 gpmc,page-burst-access-ns = <10>;
0045
0046 partition@0 {
0047 label = "bootloader";
0048 reg = <0 0x20000>;
0049 };
0050 partition@20000 {
0051 label = "params";
0052 reg = <0x20000 0x20000>;
0053 };
0054 partition@40000 {
0055 label = "kernel";
0056 reg = <0x40000 0x200000>;
0057 };
0058 partition@240000 {
0059 label = "file-system";
0060 reg = <0x240000 0x3dc0000>;
0061 };
0062 };
0063 };