diff options
author | Ye Li <ye.li@nxp.com> | 2017-03-17 17:17:59 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 17:24:36 +0800 |
commit | 9ae0e03eb829f694d26caec22f91d1f0fdba980d (patch) | |
tree | 3d537b2ecefe6df7578a8596d1b8e1552ad18f24 /arch/arm | |
parent | 6c2fe5b60692e7d0e86383c44792e5f2938bfa14 (diff) | |
download | u-boot-imx-9ae0e03eb829f694d26caec22f91d1f0fdba980d.zip u-boot-imx-9ae0e03eb829f694d26caec22f91d1f0fdba980d.tar.gz u-boot-imx-9ae0e03eb829f694d26caec22f91d1f0fdba980d.tar.bz2 |
MLK-14445-9 mx7ulp_evk: Add eMMC reworked board support
Add build configuration and DTS file to enable eMMC for eMMC reworked
EVK board.
Because the eMMC DTS file has QSPI node disabled, so we change to use
non-DM QSPI driver.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/dts/imx7ulp-evk-emmc.dts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/dts/imx7ulp-evk-emmc.dts b/arch/arm/dts/imx7ulp-evk-emmc.dts new file mode 100644 index 0000000..e58616e --- /dev/null +++ b/arch/arm/dts/imx7ulp-evk-emmc.dts @@ -0,0 +1,18 @@ +/* + * Copyright (C) 2016 Freescale Semiconductor, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include "imx7ulp-evk.dts" + +&usdhc0 { + pinctrl-names = "default", "sleep"; + pinctrl-0 = <&pinctrl_usdhc0_8bit>; + pinctrl-1 = <&pinctrl_usdhc0_8bit>; + non-removable; + bus-width = <8>; + status = "okay"; +}; |