]> Git Repo - J-u-boot.git/blame - arch/arm/dts/socfpga_cyclone5_socdk.dts
ARM: socfpga: cyclone5-socdk: Enable ports A & C
[J-u-boot.git] / arch / arm / dts / socfpga_cyclone5_socdk.dts
CommitLineData
da63df7c
MV
1/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include "socfpga_cyclone5.dtsi"
8
9/ {
10 model = "Altera SOCFPGA Cyclone V SoC Development Kit";
11 compatible = "altr,socfpga-cyclone5", "altr,socfpga";
12
13 chosen {
14 bootargs = "console=ttyS0,115200";
15 };
16
17 memory {
18 name = "memory";
19 device_type = "memory";
20 reg = <0x0 0x40000000>; /* 1GB */
21 };
22
23 aliases {
84f841c5 24 /* this allow the ethaddr uboot environment variable contents
da63df7c
MV
25 * to be added to the gmac1 device tree blob.
26 */
27 ethernet0 = &gmac1;
c90ada94 28 udc0 = &usb1;
da63df7c
MV
29 };
30
31 regulator_3_3v: 3-3-v-regulator {
32 compatible = "regulator-fixed";
33 regulator-name = "3.3V";
34 regulator-min-microvolt = <3300000>;
35 regulator-max-microvolt = <3300000>;
36 };
68909e82
MV
37
38 soc {
39 u-boot,dm-pre-reloc;
40 };
da63df7c
MV
41};
42
43&gmac1 {
44 status = "okay";
45 phy-mode = "rgmii";
46
47 rxd0-skew-ps = <0>;
48 rxd1-skew-ps = <0>;
49 rxd2-skew-ps = <0>;
50 rxd3-skew-ps = <0>;
51 txen-skew-ps = <0>;
52 txc-skew-ps = <2600>;
53 rxdv-skew-ps = <0>;
54 rxc-skew-ps = <2000>;
55};
56
45fa6f1d
GS
57&gpio0 {
58 status = "okay";
59};
60
da63df7c
MV
61&gpio1 {
62 status = "okay";
63};
64
45fa6f1d
GS
65&gpio2 {
66 status = "okay";
67};
68
da63df7c
MV
69&i2c0 {
70 status = "okay";
71
72 eeprom@51 {
73 compatible = "atmel,24c32";
74 reg = <0x51>;
75 pagesize = <32>;
76 };
77
78 rtc@68 {
79 compatible = "dallas,ds1339";
80 reg = <0x68>;
81 };
82};
83
84&mmc0 {
3790a8c6
DN
85 status = "okay";
86 u-boot,dm-pre-reloc;
87
da63df7c
MV
88 cd-gpios = <&portb 18 0>;
89 vmmc-supply = <&regulator_3_3v>;
90 vqmmc-supply = <&regulator_3_3v>;
91};
92
daa23f51
PM
93&qspi {
94 status = "okay";
755ff3a3 95 u-boot,dm-pre-reloc;
daa23f51
PM
96
97 flash0: n25q00@0 {
755ff3a3 98 u-boot,dm-pre-reloc;
daa23f51
PM
99 #address-cells = <1>;
100 #size-cells = <1>;
101 compatible = "n25q00";
102 reg = <0>; /* chip select */
a55f2862 103 spi-max-frequency = <100000000>;
daa23f51
PM
104 m25p,fast-read;
105 page-size = <256>;
106 block-size = <16>; /* 2^16, 64KB */
107 read-delay = <4>; /* delay value in read data capture register */
108 tshsl-ns = <50>;
109 tsd2d-ns = <50>;
110 tchsh-ns = <4>;
111 tslch-ns = <4>;
112 };
113};
c90ada94
MV
114
115&usb1 {
116 status = "okay";
117};
This page took 0.209078 seconds and 4 git commands to generate.