diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2018-12-17 10:26:16 +0100 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2018-12-19 16:20:50 +0100 |
commit | 53904dc7c13841497835090a8057930d4a84c4de (patch) | |
tree | d1cd3243a2e595a6a46c3d54e06bdcb6f099db4b /arch/arm/dts/meson-axg-s400-u-boot.dtsi | |
parent | 1f2e948d6d53f77a2ddb2dde3531b0d5bc2815ad (diff) |
arm: dts: s400: Fix status for eMMC and SDIO ports
Under U-boot, the WiFi SDIO Module should be disabled and the
eMMC modules should be enabled, so this patch adds an s400-u-boot.dtsi
include file specific for U-Boot that will be included by the build system.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Tested-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'arch/arm/dts/meson-axg-s400-u-boot.dtsi')
-rw-r--r-- | arch/arm/dts/meson-axg-s400-u-boot.dtsi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/dts/meson-axg-s400-u-boot.dtsi b/arch/arm/dts/meson-axg-s400-u-boot.dtsi new file mode 100644 index 0000000000..c46eb3f38d --- /dev/null +++ b/arch/arm/dts/meson-axg-s400-u-boot.dtsi @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: (GPL-2.0+ OR MIT) +/* + * Copyright (c) 2017 Amlogic, Inc. All rights reserved. + */ + +/* wifi module */ +&sd_emmc_b { + status = "disabled"; +}; + +/* emmc storage */ +&sd_emmc_c { + status = "okay"; +}; |