Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f631bc16 authored by Peter Griffin's avatar Peter Griffin Committed by Maxime Coquelin
Browse files

ARM: STi: DT: Enable second sdhci controller for stih416 b2020 boards.



The second controller is only present on the stih416 SoC. Also
mark this as non-removeable as its eMMC.

Signed-off-by: default avatarGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: default avatarPeter Griffin <peter.griffin@linaro.org>
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
Acked-by: default avatarMaxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: default avatarMaxime Coquelin <maxime.coquelin@st.com>
parent 6919edc8
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -12,4 +12,12 @@
/ {
/ {
	model = "STiH416 B2020";
	model = "STiH416 B2020";
	compatible = "st,stih416-b2020", "st,stih416";
	compatible = "st,stih416-b2020", "st,stih416";

	soc {
		mmc1: sdhci@fe81f000 {
			status       = "okay";
			bus-width    = <8>;
			non-removable;
		};
	};
};
};
+6 −0
Original line number Original line Diff line number Diff line
@@ -31,5 +31,11 @@
		ethernet1: dwmac@fef08000 {
		ethernet1: dwmac@fef08000 {
			snps,reset-gpio = <&pio0 7>;
			snps,reset-gpio = <&pio0 7>;
		};
		};

		mmc1: sdhci@fe81f000 {
			status       = "okay";
			bus-width    = <8>;
			non-removable;
		};
	};
	};
};
};