aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Jacques Hiblot2017-08-24 09:09:57 -0500
committerJean-Jacques Hiblot2017-08-25 08:09:25 -0500
commitcb3e5f98c4d64de83fcf06de03a2eb082f064bcc (patch)
treeb72b8a77fc2ef4373ce0323abb73afedd6cb2772
parent195eea92885bdd4fd17d419f2197001a9b79efa3 (diff)
downloadu-boot-cb3e5f98c4d64de83fcf06de03a2eb082f064bcc.tar.gz
u-boot-cb3e5f98c4d64de83fcf06de03a2eb082f064bcc.tar.xz
u-boot-cb3e5f98c4d64de83fcf06de03a2eb082f064bcc.zip
ARM: dts: dra76-evm: add higher speed MMC/SD modes
commit 2f4f581cb1a0 ("ARM: dts: dra76-evm: add higher speed MMC/SD modes") branch ti-u-boot-2017.01 The SD card interface on DRA76x EVM can support high speed SD cards. The eMMC onboard can support up to HS200 mode. Enable support for these higher speed modes in the device-tree file. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
-rw-r--r--arch/arm/dts/dra76-evm.dts10
1 files changed, 8 insertions, 2 deletions
diff --git a/arch/arm/dts/dra76-evm.dts b/arch/arm/dts/dra76-evm.dts
index 6413e670a4..1a149fa5fe 100644
--- a/arch/arm/dts/dra76-evm.dts
+++ b/arch/arm/dts/dra76-evm.dts
@@ -313,16 +313,22 @@
313 * is always hardwired. 313 * is always hardwired.
314 */ 314 */
315 cd-gpios = <&gpio6 27 GPIO_ACTIVE_LOW>; 315 cd-gpios = <&gpio6 27 GPIO_ACTIVE_LOW>;
316 pinctrl-names = "default"; 316 max-frequency = <192000000>;
317 pinctrl-names = "default", "hs";
317 pinctrl-0 = <&mmc1_pins_default>; 318 pinctrl-0 = <&mmc1_pins_default>;
319 pinctrl-1 = <&mmc1_pins_hs>;
318}; 320};
319 321
320&mmc2 { 322&mmc2 {
321 status = "okay"; 323 status = "okay";
322 vmmc-supply = <&vio_1v8>; 324 vmmc-supply = <&vio_1v8>;
323 bus-width = <8>; 325 bus-width = <8>;
324 pinctrl-names = "default"; 326 max-frequency = <192000000>;
327 pinctrl-names = "default", "hs", "ddr_1_8v", "hs200_1_8v";
325 pinctrl-0 = <&mmc2_pins_default>; 328 pinctrl-0 = <&mmc2_pins_default>;
329 pinctrl-1 = <&mmc2_pins_hs>;
330 pinctrl-2 = <&mmc2_pins_ddr>;
331 pinctrl-3 = <&mmc2_pins_hs200 &mmc2_iodelay_hs200_conf>;
326}; 332};
327 333
328/* No RTC on this device */ 334/* No RTC on this device */