summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSekhar Nori <nsekhar@ti.com>2016-08-10 19:24:04 +0530
committerJaehoon Chung <jh80.chung@samsung.com>2016-08-16 10:24:10 +0900
commit5396edc6750bfdd8d9a93b914ca993d98c29f4c0 (patch)
tree38ddfa2d535da005ff7daa417327924de3726eec
parent4de2de5149a0361fa62e5751ed05691d497844c5 (diff)
downloadu-boot-imx-5396edc6750bfdd8d9a93b914ca993d98c29f4c0.zip
u-boot-imx-5396edc6750bfdd8d9a93b914ca993d98c29f4c0.tar.gz
u-boot-imx-5396edc6750bfdd8d9a93b914ca993d98c29f4c0.tar.bz2
ARM: dts: K2G: Add support for MMC controller
K2G SoC from TI has two MMC/SD controllers. Add device tree data for these. Signed-off-by: Sekhar Nori <nsekhar@ti.com> Acked-by: Mugunthan V N <mugunthanvnm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r--arch/arm/dts/k2g.dtsi23
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/dts/k2g.dtsi b/arch/arm/dts/k2g.dtsi
index 00cd492..add03b7 100644
--- a/arch/arm/dts/k2g.dtsi
+++ b/arch/arm/dts/k2g.dtsi
@@ -149,5 +149,28 @@
#size-cells = <0>;
status = "disabled";
};
+
+ mmc0: mmc@23000000 {
+ compatible = "ti,omap4-hsmmc";
+ reg = <0x23000000 0x400>;
+ interrupts = <GIC_SPI 96 IRQ_TYPE_EDGE_RISING>;
+ bus-width = <4>;
+ ti,needs-special-reset;
+ no-1-8-v;
+ max-frequency = <96000000>;
+ status = "disabled";
+ };
+
+ mmc1: mmc@23100000 {
+ compatible = "ti,omap4-hsmmc";
+ reg = <0x23100000 0x400>;
+ interrupts = <GIC_SPI 97 IRQ_TYPE_EDGE_RISING>;
+ bus-width = <8>;
+ ti,needs-special-reset;
+ ti,non-removable;
+ max-frequency = <96000000>;
+ status = "disabled";
+ clock-names = "fck";
+ };
};
};