aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-04-26 03:58:37 -0400
committerGregory CLEMENT <gregory.clement@free-electrons.com>2016-04-26 09:11:37 -0400
commitfea144987932dbc88b3051c6d258ffdcace7f1fa (patch)
treecb901bd499dc6367819dc53351c3d472c19f1a28
parent728dacc7f4dd5d99b2a7e127b969165f54b6eece (diff)
arm64: dts: marvell: enable several CP interfaces on Armada 7040-DB
This commit enables several interfaces of the CP side of the Armada 7040 for the Armada 7040 DB board: - one PCIe interface - one SPI controller with an attached SPI flash - one I2C controller - one SATA controller - two USB3 controllers Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
-rw-r--r--arch/arm64/boot/dts/marvell/armada-7040-db.dts50
1 files changed, 50 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/marvell/armada-7040-db.dts b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
index 95dd7c74f7ed..070b589680c5 100644
--- a/arch/arm64/boot/dts/marvell/armada-7040-db.dts
+++ b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
@@ -96,3 +96,53 @@
96&uart0 { 96&uart0 {
97 status = "okay"; 97 status = "okay";
98}; 98};
99
100
101&cpm_pcie2 {
102 status = "okay";
103};
104
105&cpm_i2c0 {
106 status = "okay";
107 clock-frequency = <100000>;
108};
109
110&cpm_spi1 {
111 status = "okay";
112
113 spi-flash@0 {
114 #address-cells = <0x1>;
115 #size-cells = <0x1>;
116 compatible = "jedec,spi-nor";
117 reg = <0x0>;
118 spi-max-frequency = <20000000>;
119
120 partitions {
121 compatible = "fixed-partitions";
122 #address-cells = <1>;
123 #size-cells = <1>;
124
125 partition@0 {
126 label = "U-Boot";
127 reg = <0x0 0x200000>;
128 };
129
130 partition@400000 {
131 label = "Filesystem";
132 reg = <0x200000 0xe00000>;
133 };
134 };
135 };
136};
137
138&cpm_sata0 {
139 status = "okay";
140};
141
142&cpm_usb3_0 {
143 status = "okay";
144};
145
146&cpm_usb3_1 {
147 status = "okay";
148};