blob: 1a2d79d75820e322e2dab08dc47dc2a3d85f34ba [file] [log] [blame]
Chris Packham937cb9d2019-04-12 08:47:05 +12001// SPDX-License-Identifier: (GPL-2.0 OR MIT)
Chris Packhamc0def242016-09-22 12:56:14 +12002/*
Chris Packham937cb9d2019-04-12 08:47:05 +12003 * Device Tree file for Marvell Armada 385 AMC board
Chris Packhamc0def242016-09-22 12:56:14 +12004 * (DB-88F6820-AMC)
5 *
Chris Packham937cb9d2019-04-12 08:47:05 +12006 * Copyright (C) 2017 Allied Telesis Labs
Chris Packhamc0def242016-09-22 12:56:14 +12007 */
8
9/dts-v1/;
10#include "armada-385.dtsi"
Chris Packham937cb9d2019-04-12 08:47:05 +120011
Chris Packhamc0def242016-09-22 12:56:14 +120012#include <dt-bindings/gpio/gpio.h>
13
14/ {
15 model = "Marvell Armada 385 AMC";
Chris Packham937cb9d2019-04-12 08:47:05 +120016 compatible = "marvell,a385-db-amc", "marvell,armada385", "marvell,armada380";
Chris Packhamc0def242016-09-22 12:56:14 +120017
18 chosen {
19 stdout-path = "serial0:115200n8";
20 };
21
22 aliases {
23 ethernet0 = &eth0;
Chris Packham0a05bf42018-01-08 16:17:12 +130024 ethernet1 = &eth2;
Chris Packhame38f5fc2017-05-02 20:35:25 +120025 i2c0 = &i2c0;
Chris Packhamc0def242016-09-22 12:56:14 +120026 spi1 = &spi1;
27 };
28
29 memory {
30 device_type = "memory";
Chris Packham937cb9d2019-04-12 08:47:05 +120031 reg = <0x00000000 0x80000000>; /* 2GB */
Chris Packhamc0def242016-09-22 12:56:14 +120032 };
33
34 soc {
35 ranges = <MBUS_ID(0xf0, 0x01) 0 0xf1000000 0x100000
36 MBUS_ID(0x01, 0x1d) 0 0xfff00000 0x100000>;
Chris Packhamc0def242016-09-22 12:56:14 +120037 };
38};
39
Chris Packham937cb9d2019-04-12 08:47:05 +120040&i2c0 {
41 u-boot,i2c-slave-addr = <0x0>;
42 pinctrl-names = "default";
43 pinctrl-0 = <&i2c0_pins>;
44 status = "okay";
45};
46
47&uart0 {
48 /*
49 * Exported on the micro USB connector CON3
50 * through an FTDI
51 */
52
53 pinctrl-names = "default";
54 pinctrl-0 = <&uart0_pins>;
55 status = "okay";
Chris Packham937cb9d2019-04-12 08:47:05 +120056};
57
58
59&eth0 {
60 pinctrl-names = "default";
61 /*
62 * The Reference Clock 0 is used to provide a
63 * clock to the PHY
64 */
65 pinctrl-0 = <&ge0_rgmii_pins>, <&ref_clk0_pins>;
66 status = "okay";
67 phy = <&phy0>;
68 phy-mode = "rgmii-id";
69};
70
71&eth2 {
72 status = "okay";
73 phy = <&phy1>;
74 phy-mode = "sgmii";
75};
76
77&usb0 {
78 status = "okay";
79};
80
81
82
83&mdio {
84 pinctrl-names = "default";
85 pinctrl-0 = <&mdio_pins>;
86
87 phy0: ethernet-phy@1 {
88 reg = <1>;
89 };
90
91 phy1: ethernet-phy@0 {
92 reg = <0>;
93 };
94};
95
96&nand_controller {
97 status = "okay";
98 marvell,nand-keep-config;
99 marvell,nand-enable-arbiter;
100 nand-on-flash-bbt;
101};
102
103&pciec {
104 status = "okay";
105};
106
107&pcie1 {
108 /* Port 0, Lane 0 */
109 status = "okay";
110};
111
Chris Packhamc0def242016-09-22 12:56:14 +1200112&spi1 {
113 pinctrl-names = "default";
114 pinctrl-0 = <&spi1_pins>;
115 status = "okay";
Chris Packhamc0def242016-09-22 12:56:14 +1200116
117 spi-flash@0 {
Chris Packhamc0def242016-09-22 12:56:14 +1200118 #address-cells = <1>;
119 #size-cells = <1>;
Chris Packham937cb9d2019-04-12 08:47:05 +1200120 compatible = "jedec,spi-nor";
Chris Packhamc0def242016-09-22 12:56:14 +1200121 reg = <0>; /* Chip select 0 */
122 spi-max-frequency = <50000000>;
123 m25p,fast-read;
Chris Packham937cb9d2019-04-12 08:47:05 +1200124
125 partitions {
126 compatible = "fixed-partitions";
127 #address-cells = <1>;
128 #size-cells = <1>;
129 partition@0 {
130 reg = <0x00000000 0x00100000>;
131 label = "u-boot";
132 };
133 partition@100000 {
134 reg = <0x00100000 0x00040000>;
135 label = "u-boot-env";
136 };
137 };
Chris Packhamc0def242016-09-22 12:56:14 +1200138 };
139};
140
141&refclk {
142 clock-frequency = <20000000>;
143};