summaryrefslogtreecommitdiff
path: root/arch/arm/dts/zynq-minized.dts
blob: 525921ee7bad44dae438364480da6470440885f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// SPDX-License-Identifier: GPL-2.0+
/*
 * dts file for Avnet MiniZed board
 *
 * (C) Copyright 2017 - 2018, Xilinx, Inc.
 *
 * Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com>
 */

/dts-v1/;
#include "zynq-7000.dtsi"

/ {
	model = "Avnet Zynq MiniZed Development Board";
	compatible = "avnet,minized", "xlnx,zynq-7000";

	aliases {
		serial0 = &uart1;
		serial1 = &uart0;
		spi0 = &qspi;
		mmc0 = &sdhci0;
	};

	memory@0 {
		device_type = "memory";
		reg = <0x0 0x20000000>;
	};

	chosen {
		bootargs = "";
		stdout-path = "serial0:115200n8";
	};

	usb_phy0: phy0 {
		compatible = "usb-nop-xceiv";
		#phy-cells = <0>;
	};
};

&qspi {
	status = "okay";
	is-dual = <0>;
	num-cs = <1>;
	flash@0 {
		compatible = "micron,m25p128";
		reg = <0x0>;
		spi-tx-bus-width = <4>;
		spi-rx-bus-width = <4>;
		spi-max-frequency = <50000000>;
		partitions {
			compatible = "fixed-partitions";
			#address-cells = <1>;
			#size-cells = <1>;
			partition@0 {
				label = "boot";
				reg = <0x0 0xff0000>;
			};

			partition@270000 {
				label = "kernel";
				reg = <0x270000 0xd80000>;
			};

			partition@ff0000 {
				label = "bootenv";
				reg = <0xff0000 0x10000>;
			};

			partition@1000000 {
				label = "spare";
				reg = <0x1000000 0x0>;
			};
		};
	};
};

&uart0 {
	status = "okay";
};

&uart1 {
	u-boot,dm-pre-reloc;
	status = "okay";
};

&usb0 {
	status = "okay";
	dr_mode = "host";
	usb-phy = <&usb_phy0>;
	usb-reset = <&gpio0 7 0>; /* USB_RST_N-MIO7 */
};

&sdhci1 {
	status = "okay";
	non-removable;
	bus-width = <4>;
	max-frequency = <12000000>;

	#address-cells = <1>;
	#size-cells = <0>;
	mmccard: mmccard@0 {
		compatible = "mmc-card";
		reg = <0>;
		broken-hpi;
	};
};