Linux Audio

Check our new training course

Loading...
v5.4
 1// SPDX-License-Identifier: GPL-2.0-only
 2/*
 3 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
 
 
 
 
 4 */
 5/dts-v1/;
 6
 7#include "omap2420.dtsi"
 8
 9/ {
10	model = "TI OMAP2420 H4 board";
11	compatible = "ti,omap2420-h4", "ti,omap2420", "ti,omap2";
12
13	memory@80000000 {
14		device_type = "memory";
15		reg = <0x80000000 0x4000000>; /* 64 MB */
16	};
17};
18
19&gpmc {
20	ranges = <0 0 0x08000000 0x04000000>;
21
22	nor@0,0 {
23		compatible = "cfi-flash";
24		linux,mtd-name= "intel,ge28f256l18b85";
25		#address-cells = <1>;
26		#size-cells = <1>;
27		reg = <0 0 0x04000000>;
28		bank-width = <2>;
29
30		gpmc,mux-add-data = <2>;
31		gpmc,cs-on-ns = <10>;
32		gpmc,cs-rd-off-ns = <160>;
33		gpmc,cs-wr-off-ns = <160>;
34		gpmc,adv-on-ns = <20>;
35		gpmc,adv-rd-off-ns = <50>;
36		gpmc,adv-wr-off-ns = <50>;
37		gpmc,oe-on-ns = <60>;
38		gpmc,oe-off-ns = <120>;
39		gpmc,we-on-ns = <60>;
40		gpmc,we-off-ns = <120>;
41		gpmc,rd-cycle-ns = <170>;
42		gpmc,wr-cycle-ns = <170>;
43		gpmc,access-ns = <150>;
44		gpmc,page-burst-access-ns = <10>;
45
46		partition@0 {
47			label = "bootloader";
48			reg = <0 0x20000>;
49		};
50		partition@20000 {
51			label = "params";
52			reg = <0x20000 0x20000>;
53		};
54		partition@40000 {
55			label = "kernel";
56			reg = <0x40000 0x200000>;
57		};
58		partition@240000 {
59			label = "file-system";
60			reg = <0x240000 0x3dc0000>;
61		};
62	};
63};
v4.6
 
 1/*
 2 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
 3 *
 4 * This program is free software; you can redistribute it and/or modify
 5 * it under the terms of the GNU General Public License version 2 as
 6 * published by the Free Software Foundation.
 7 */
 8/dts-v1/;
 9
10#include "omap2420.dtsi"
11
12/ {
13	model = "TI OMAP2420 H4 board";
14	compatible = "ti,omap2420-h4", "ti,omap2420", "ti,omap2";
15
16	memory {
17		device_type = "memory";
18		reg = <0x80000000 0x4000000>; /* 64 MB */
19	};
20};
21
22&gpmc {
23	ranges = <0 0 0x08000000 0x04000000>;
24
25	nor@0,0 {
26		compatible = "cfi-flash";
27		linux,mtd-name= "intel,ge28f256l18b85";
28		#address-cells = <1>;
29		#size-cells = <1>;
30		reg = <0 0 0x04000000>;
31		bank-width = <2>;
32
33		gpmc,mux-add-data = <2>;
34		gpmc,cs-on-ns = <10>;
35		gpmc,cs-rd-off-ns = <160>;
36		gpmc,cs-wr-off-ns = <160>;
37		gpmc,adv-on-ns = <20>;
38		gpmc,adv-rd-off-ns = <50>;
39		gpmc,adv-wr-off-ns = <50>;
40		gpmc,oe-on-ns = <60>;
41		gpmc,oe-off-ns = <120>;
42		gpmc,we-on-ns = <60>;
43		gpmc,we-off-ns = <120>;
44		gpmc,rd-cycle-ns = <170>;
45		gpmc,wr-cycle-ns = <170>;
46		gpmc,access-ns = <150>;
47		gpmc,page-burst-access-ns = <10>;
48
49		partition@0 {
50			label = "bootloader";
51			reg = <0 0x20000>;
52		};
53		partition@20000 {
54			label = "params";
55			reg = <0x20000 0x20000>;
56		};
57		partition@40000 {
58			label = "kernel";
59			reg = <0x40000 0x200000>;
60		};
61		partition@240000 {
62			label = "file-system";
63			reg = <0x240000 0x3dc0000>;
64		};
65	};
66};