xref: /freebsd-src/sys/contrib/device-tree/src/arm/st/spear600-evb.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Copyright 2012 Stefan Roese <sr@denx.de>
4*f126890aSEmmanuel Vadot */
5*f126890aSEmmanuel Vadot
6*f126890aSEmmanuel Vadot/dts-v1/;
7*f126890aSEmmanuel Vadot/include/ "spear600.dtsi"
8*f126890aSEmmanuel Vadot
9*f126890aSEmmanuel Vadot/ {
10*f126890aSEmmanuel Vadot	model = "ST SPEAr600 Evaluation Board";
11*f126890aSEmmanuel Vadot	compatible = "st,spear600-evb", "st,spear600";
12*f126890aSEmmanuel Vadot	#address-cells = <1>;
13*f126890aSEmmanuel Vadot	#size-cells = <1>;
14*f126890aSEmmanuel Vadot
15*f126890aSEmmanuel Vadot	memory {
16*f126890aSEmmanuel Vadot		device_type = "memory";
17*f126890aSEmmanuel Vadot		reg = <0 0x10000000>;
18*f126890aSEmmanuel Vadot	};
19*f126890aSEmmanuel Vadot};
20*f126890aSEmmanuel Vadot
21*f126890aSEmmanuel Vadot&clcd {
22*f126890aSEmmanuel Vadot	status = "okay";
23*f126890aSEmmanuel Vadot};
24*f126890aSEmmanuel Vadot
25*f126890aSEmmanuel Vadot&dmac {
26*f126890aSEmmanuel Vadot	status = "okay";
27*f126890aSEmmanuel Vadot};
28*f126890aSEmmanuel Vadot
29*f126890aSEmmanuel Vadot&ehci_usb0 {
30*f126890aSEmmanuel Vadot	status = "okay";
31*f126890aSEmmanuel Vadot};
32*f126890aSEmmanuel Vadot
33*f126890aSEmmanuel Vadot&ehci_usb1 {
34*f126890aSEmmanuel Vadot	status = "okay";
35*f126890aSEmmanuel Vadot};
36*f126890aSEmmanuel Vadot
37*f126890aSEmmanuel Vadot&gmac {
38*f126890aSEmmanuel Vadot	phy-mode = "gmii";
39*f126890aSEmmanuel Vadot	status = "okay";
40*f126890aSEmmanuel Vadot};
41*f126890aSEmmanuel Vadot
42*f126890aSEmmanuel Vadot&ohci_usb0 {
43*f126890aSEmmanuel Vadot	status = "okay";
44*f126890aSEmmanuel Vadot};
45*f126890aSEmmanuel Vadot
46*f126890aSEmmanuel Vadot&ohci_usb1 {
47*f126890aSEmmanuel Vadot	status = "okay";
48*f126890aSEmmanuel Vadot};
49*f126890aSEmmanuel Vadot
50*f126890aSEmmanuel Vadot&smi {
51*f126890aSEmmanuel Vadot	status = "okay";
52*f126890aSEmmanuel Vadot	clock-rate = <50000000>;
53*f126890aSEmmanuel Vadot
54*f126890aSEmmanuel Vadot	flash@f8000000 {
55*f126890aSEmmanuel Vadot		reg = <0xf8000000 0x800000>;
56*f126890aSEmmanuel Vadot		st,smi-fast-mode;
57*f126890aSEmmanuel Vadot
58*f126890aSEmmanuel Vadot		partitions {
59*f126890aSEmmanuel Vadot			compatible = "fixed-partitions";
60*f126890aSEmmanuel Vadot			#address-cells = <1>;
61*f126890aSEmmanuel Vadot			#size-cells = <1>;
62*f126890aSEmmanuel Vadot
63*f126890aSEmmanuel Vadot			partition@0 {
64*f126890aSEmmanuel Vadot				label = "xloader";
65*f126890aSEmmanuel Vadot				reg = <0x0 0x10000>;
66*f126890aSEmmanuel Vadot			};
67*f126890aSEmmanuel Vadot			partition@10000 {
68*f126890aSEmmanuel Vadot				label = "u-boot";
69*f126890aSEmmanuel Vadot				reg = <0x10000 0x50000>;
70*f126890aSEmmanuel Vadot			};
71*f126890aSEmmanuel Vadot			partition@60000 {
72*f126890aSEmmanuel Vadot				label = "environment";
73*f126890aSEmmanuel Vadot				reg = <0x60000 0x10000>;
74*f126890aSEmmanuel Vadot			};
75*f126890aSEmmanuel Vadot			partition@70000 {
76*f126890aSEmmanuel Vadot				label = "dtb";
77*f126890aSEmmanuel Vadot				reg = <0x70000 0x10000>;
78*f126890aSEmmanuel Vadot			};
79*f126890aSEmmanuel Vadot			partition@80000 {
80*f126890aSEmmanuel Vadot				label = "linux";
81*f126890aSEmmanuel Vadot				reg = <0x80000 0x310000>;
82*f126890aSEmmanuel Vadot			};
83*f126890aSEmmanuel Vadot			partition@390000 {
84*f126890aSEmmanuel Vadot				label = "rootfs";
85*f126890aSEmmanuel Vadot				reg = <0x390000 0x0>;
86*f126890aSEmmanuel Vadot			};
87*f126890aSEmmanuel Vadot		};
88*f126890aSEmmanuel Vadot	};
89*f126890aSEmmanuel Vadot};
90*f126890aSEmmanuel Vadot
91*f126890aSEmmanuel Vadot&uart0 {
92*f126890aSEmmanuel Vadot	status = "okay";
93*f126890aSEmmanuel Vadot};
94*f126890aSEmmanuel Vadot
95*f126890aSEmmanuel Vadot&uart1 {
96*f126890aSEmmanuel Vadot	status = "okay";
97*f126890aSEmmanuel Vadot};
98*f126890aSEmmanuel Vadot
99*f126890aSEmmanuel Vadot&rtc {
100*f126890aSEmmanuel Vadot	status = "okay";
101*f126890aSEmmanuel Vadot};
102*f126890aSEmmanuel Vadot
103*f126890aSEmmanuel Vadot&i2c {
104*f126890aSEmmanuel Vadot	clock-frequency = <400000>;
105*f126890aSEmmanuel Vadot	status = "okay";
106*f126890aSEmmanuel Vadot};
107