summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts
diff options
context:
space:
mode:
authorStefan Mavrodiev <stefan@olimex.com>2018-02-02 15:56:33 +0200
committerJagan Teki <jagan@amarulasolutions.com>2018-03-13 22:40:35 +0530
commitd682cff440c962e4312ed404b90a50b305b43d8b (patch)
tree64c31caa3cba42d4268671ab962b8f26e3ddf2cf /arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts
parent8dd6497d9cd0d8969d623f1f6114b85f9feb6f2f (diff)
downloadu-boot-d682cff440c962e4312ed404b90a50b305b43d8b.tar.gz
u-boot-d682cff440c962e4312ed404b90a50b305b43d8b.tar.xz
u-boot-d682cff440c962e4312ed404b90a50b305b43d8b.zip
sunxi: Add A20-SOM204-EVB-eMMC board
A20-SOM204 board has option with onboard 16GB eMMC. The chip is wired to MMC2 slot. This patch adds defconfig and dts files for this board. The dts is same with mainline kernel. Signed-off-by: Stefan Mavrodiev <stefan@olimex.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Reviewed-by: Jagan Teki <jagan@openedev.com>
Diffstat (limited to 'arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts')
-rw-r--r--arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts36
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts b/arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts
new file mode 100644
index 0000000000..c56620a8fb
--- /dev/null
+++ b/arch/arm/dts/sun7i-a20-olimex-som204-evb-emmc.dts
@@ -0,0 +1,36 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Device Tree Source for A20-SOM204-EVB-eMMC Board
+ *
+ * Copyright (C) 2018 Olimex Ltd.
+ * Author: Stefan Mavrodiev <stefan@olimex.com>
+ */
+
+/dts-v1/;
+#include "sun7i-a20-olimex-som204-evb.dts"
+
+/ {
+ model = "Olimex A20-SOM204-EVB-eMMC";
+ compatible = "olimex,a20-olimex-som204-evb-emmc", "allwinner,sun7i-a20";
+
+ mmc2_pwrseq: mmc2_pwrseq {
+ compatible = "mmc-pwrseq-emmc";
+ reset-gpios = <&pio 2 16 GPIO_ACTIVE_LOW>;
+ };
+};
+
+&mmc2 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&mmc2_pins_a>;
+ vmmc-supply = <&reg_vcc3v3>;
+ mmc-pwrseq = <&mmc2_pwrseq>;
+ bus-width = <4>;
+ non-removable;
+ status = "okay";
+
+ emmc: emmc@0 {
+ reg = <0>;
+ compatible = "mmc-card";
+ broken-hpi;
+ };
+};