diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-01-09 14:56:07 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-02-28 12:57:07 -0500 |
commit | 491221451b9998cf182770f2b5f8b3a8b141dd81 (patch) | |
tree | 92b6f513313881ed192bdf2b343ea191a9e7017e /arch/arm/boot/dts/armada-370-rd.dts | |
parent | 3202bf0157ccbf8f1f89051d60ba9ca3aa4d424f (diff) |
arm: mvebu: add DTS file for Marvell RD-A370-A1 board
This patch adds the DTS file to support the Marvell RD-A370-A1
(Reference Design board) also known as RD-88F6710 board. It is almost
entirely similar to the DB-A370 board except that the first Ethernet PHY
is SGMII-wired and the second is a switch which is RGMII-wired.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/armada-370-rd.dts')
-rw-r--r-- | arch/arm/boot/dts/armada-370-rd.dts | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-370-rd.dts b/arch/arm/boot/dts/armada-370-rd.dts new file mode 100644 index 000000000000..d62dfac61924 --- /dev/null +++ b/arch/arm/boot/dts/armada-370-rd.dts | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * Device Tree file for Marvell Armada 370 Reference Design board | ||
3 | * (RD-88F6710-A1) | ||
4 | * | ||
5 | * Copied from arch/arm/boot/dts/armada-370-db.dts | ||
6 | * | ||
7 | * Copyright (C) 2013 Florian Fainelli <florian@openwrt.org> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | /dts-v1/; | ||
15 | /include/ "armada-370.dtsi" | ||
16 | |||
17 | / { | ||
18 | model = "Marvell Armada 370 Reference Design"; | ||
19 | compatible = "marvell,a370-rd", "marvell,armada370", "marvell,armada-370-xp"; | ||
20 | |||
21 | chosen { | ||
22 | bootargs = "console=ttyS0,115200 earlyprintk"; | ||
23 | }; | ||
24 | |||
25 | memory { | ||
26 | device_type = "memory"; | ||
27 | reg = <0x00000000 0x20000000>; /* 512 MB */ | ||
28 | }; | ||
29 | |||
30 | soc { | ||
31 | serial@d0012000 { | ||
32 | clock-frequency = <200000000>; | ||
33 | status = "okay"; | ||
34 | }; | ||
35 | sata@d00a0000 { | ||
36 | nr-ports = <2>; | ||
37 | status = "okay"; | ||
38 | }; | ||
39 | |||
40 | mdio { | ||
41 | phy0: ethernet-phy@0 { | ||
42 | reg = <0>; | ||
43 | }; | ||
44 | |||
45 | phy1: ethernet-phy@1 { | ||
46 | reg = <1>; | ||
47 | }; | ||
48 | }; | ||
49 | |||
50 | ethernet@d0070000 { | ||
51 | status = "okay"; | ||
52 | phy = <&phy0>; | ||
53 | phy-mode = "sgmii"; | ||
54 | }; | ||
55 | ethernet@d0074000 { | ||
56 | status = "okay"; | ||
57 | phy = <&phy1>; | ||
58 | phy-mode = "rgmii-id"; | ||
59 | }; | ||
60 | }; | ||
61 | }; | ||