aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorThomas Petazzoni2012-12-21 08:49:08 -0600
committerArnd Bergmann2013-02-28 11:57:10 -0600
commitb6150c710658faed9ebe80f989f622175eaf0e14 (patch)
tree2099c75780120ebf045b67797d6b7d5725dffe41 /arch/arm
parentd64c129b44d90fd7075dc7cf4b0f30ef70c316f7 (diff)
downloadam43-linux-kernel-b6150c710658faed9ebe80f989f622175eaf0e14.tar.gz
am43-linux-kernel-b6150c710658faed9ebe80f989f622175eaf0e14.tar.xz
am43-linux-kernel-b6150c710658faed9ebe80f989f622175eaf0e14.zip
arm: mvebu: enable the SD card slot on Armada 370 DB board
The Armada XP DB evaluation board has one SD card slot, directly connected to the SDIO IP of the SoC, so we add a device tree description for it. However, in the default configuration of the board, the SD card slot is not usable: the connector plugged into CON40 must be changed against a different one, provided with the board by the manufacturer. Since such a manual modification of the hardware is needed, we did not enable the SDIO interface by default, and left it to the board user to modify the Device Tree if needed. Since this board is really only an evaluation board for developers and not a final product, it is not too bad. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/boot/dts/armada-370-db.dts15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-370-db.dts b/arch/arm/boot/dts/armada-370-db.dts
index 9b82facb256..8e66a7c00e1 100644
--- a/arch/arm/boot/dts/armada-370-db.dts
+++ b/arch/arm/boot/dts/armada-370-db.dts
@@ -59,5 +59,20 @@
59 phy = <&phy1>; 59 phy = <&phy1>;
60 phy-mode = "rgmii-id"; 60 phy-mode = "rgmii-id";
61 }; 61 };
62
63 mvsdio@d00d4000 {
64 pinctrl-0 = <&sdio_pins1>;
65 pinctrl-names = "default";
66 /*
67 * This device is disabled by default, because
68 * using the SD card connector requires
69 * changing the default CON40 connector
70 * "DB-88F6710_MPP_2xRGMII_DEVICE_Jumper" to a
71 * different connector
72 * "DB-88F6710_MPP_RGMII_SD_Jumper".
73 */
74 status = "disabled";
75 /* No CD or WP GPIOs */
76 };
62 }; 77 };
63}; 78};