diff options
author | Adam Ford <aford173@gmail.com> | 2019-08-07 10:16:33 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-04 12:21:23 -0400 |
commit | 5ff1963da31767521cbb755c0aa1f8ed2e361efd (patch) | |
tree | 9fa07243b1f58f821f53f69975972a080bf67e96 /arch/arm/dts/imx6q-logicpd-u-boot.dtsi | |
parent | fa840f13f5444cc0f3a435e3d2d48b1b1b6d63b9 (diff) |
ARM: dts: imx6q-logicpd: Add missing imx6q-logicpd-u-boot for SPL
The SPL device tree is missing the entires for gpio1, uart1, usdhc1 and
usdhc2. This creates the missing imx6q-logicpd-u-boot.dtsi file
which will enable these functions so SPL can properly setup UART, detect
microSD card, and startup.
Fixes: 8f4691e31a18 ("ARM: imx6q_logic: With SPL_OF_CONTROL enabled,
remove MMC init")
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'arch/arm/dts/imx6q-logicpd-u-boot.dtsi')
-rw-r--r-- | arch/arm/dts/imx6q-logicpd-u-boot.dtsi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/dts/imx6q-logicpd-u-boot.dtsi b/arch/arm/dts/imx6q-logicpd-u-boot.dtsi new file mode 100644 index 0000000000..625bed8f7d --- /dev/null +++ b/arch/arm/dts/imx6q-logicpd-u-boot.dtsi @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2019 Logic PD <aford173@gmail.com> + */ + +#include "imx6qdl-u-boot.dtsi" + +&uart1 { + u-boot,dm-spl; +}; + +&usdhc1 { + u-boot,dm-spl; +}; + +&usdhc2 { + u-boot,dm-spl; +}; |