aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2017-03-08 04:19:11 -0500
committerEric Anholt <eric@anholt.net>2017-05-15 18:48:26 -0400
commit738f859f520862e51a5662b03fb162524e09307b (patch)
tree16ec1c98d087627c0812d9ec5fe20c0ca764a043
parent2ea659a9ef488125eb46da6eb571de5eae5c43f6 (diff)
arm64: dts: bcm2837: add &sdhci and &sdhost
For the raspberry pi 3 we'll need both sdhci (handles sdio wifi) and sdhost (handles sdcard). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Eric Anholt <eric@anholt.net>
-rw-r--r--arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts b/arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts
index c309633a1e87..972f14db28ac 100644
--- a/arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts
+++ b/arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts
@@ -22,3 +22,20 @@
22&uart1 { 22&uart1 {
23 status = "okay"; 23 status = "okay";
24}; 24};
25
26/* SDHCI is used to control the SDIO for wireless */
27&sdhci {
28 pinctrl-names = "default";
29 pinctrl-0 = <&emmc_gpio34>;
30 status = "okay";
31 bus-width = <4>;
32 non-removable;
33};
34
35/* SDHOST is used to drive the SD card */
36&sdhost {
37 pinctrl-names = "default";
38 pinctrl-0 = <&sdhost_gpio48>;
39 status = "okay";
40 bus-width = <4>;
41};