From: Pali Rohár Date: Mon, 14 Feb 2022 10:34:29 +0000 (+0100) Subject: arm: a37xx: espressobin: Explicitly enable eMMC node in -u-boot.dtsi X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=6560bf4edede49843e387bdec9d098d6605070a6;p=u-boot.git arm: a37xx: espressobin: Explicitly enable eMMC node in -u-boot.dtsi Official DT bindings for Espressobin have disabled eMMC node. As U-Boot requires to have this node enabled by default, do it in armada-3720-espressobin-u-boot.dtsi DTS file. Signed-off-by: Pali Rohár Reviewed-by: Stefan Roese --- diff --git a/arch/arm/dts/armada-3720-espressobin-u-boot.dtsi b/arch/arm/dts/armada-3720-espressobin-u-boot.dtsi index 7ec3392201..3e01c64a4b 100644 --- a/arch/arm/dts/armada-3720-espressobin-u-boot.dtsi +++ b/arch/arm/dts/armada-3720-espressobin-u-boot.dtsi @@ -21,3 +21,11 @@ }; }; #endif + +/* + * U-Boot requires to have this eMMC node by default in "okay" status. U-Boot + * at runtime changes status to "disabled" if eMMC is not present on the board. + */ +&sdhci0 { + status = "okay"; +};