* RaspberryPi4 support * Update kernel file * Fix lint * Fix uboot defconfig * Update firmware for rpi4 * fix naming * Add support for 64bit * fix path for dts
46 lines
1.1 KiB
Diff
46 lines
1.1 KiB
Diff
From 07801a834dfe2d53827ad5a61fe3d59776e0c5b1 Mon Sep 17 00:00:00 2001
|
|
From: Andrei Gherzan <andrei@balena.io>
|
|
Date: Fri, 12 Jul 2019 11:58:42 +0100
|
|
Subject: [PATCH 14/17] dts: bcm2838-rpi-4-b: Use the emmc2 interface for sdhci
|
|
|
|
Signed-off-by: Andrei Gherzan <andrei@balena.io>
|
|
---
|
|
arch/arm/dts/bcm2838-rpi-4-b.dts | 16 ++++++----------
|
|
1 file changed, 6 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/arch/arm/dts/bcm2838-rpi-4-b.dts b/arch/arm/dts/bcm2838-rpi-4-b.dts
|
|
index 07e9a78e8d..168179c17c 100644
|
|
--- a/arch/arm/dts/bcm2838-rpi-4-b.dts
|
|
+++ b/arch/arm/dts/bcm2838-rpi-4-b.dts
|
|
@@ -30,21 +30,17 @@
|
|
status = "okay";
|
|
};
|
|
|
|
-/* SDHCI is used to control the SDIO for wireless */
|
|
&sdhci {
|
|
- pinctrl-names = "default";
|
|
- pinctrl-0 = <&emmc_gpio34>;
|
|
- status = "okay";
|
|
- bus-width = <4>;
|
|
- non-removable;
|
|
+ status = "disabled";
|
|
};
|
|
|
|
-/* SDHOST is used to drive the SD card */
|
|
&sdhost {
|
|
- pinctrl-names = "default";
|
|
- pinctrl-0 = <&sdhost_gpio48>;
|
|
+ status = "disabled";
|
|
+};
|
|
+
|
|
+&emmc2 {
|
|
+ compatible = "brcm,bcm2835-sdhci";
|
|
status = "okay";
|
|
- bus-width = <4>;
|
|
};
|
|
|
|
&gpio {
|
|
--
|
|
2.17.1
|
|
|