From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751988AbdHAEqe (ORCPT ); Tue, 1 Aug 2017 00:46:34 -0400 Received: from fllnx209.ext.ti.com ([198.47.19.16]:32539 "EHLO fllnx209.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751971AbdHAEqc (ORCPT ); Tue, 1 Aug 2017 00:46:32 -0400 From: Lokesh Vutla To: Santosh Shilimkar CC: Linux ARM Mailing List , , Device Tree Mailing List , Rob Herring , Tero Kristo , Sekhar Nori , Peter Ujfalusi , Keerthy , Lokesh Vutla Subject: [PATCH 4/6] ARM: dts: keystone-k2g: add MMC0 and MMC1 nodes Date: Tue, 1 Aug 2017 10:11:17 +0530 Message-ID: <20170801044119.16201-5-lokeshvutla@ti.com> X-Mailer: git-send-email 2.13.0 In-Reply-To: <20170801044119.16201-1-lokeshvutla@ti.com> References: <20170801044119.16201-1-lokeshvutla@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add device tree nodes for MMC0 and MMC1 pesent on 66AK2G device. Signed-off-by: Lokesh Vutla [nsekhar@ti.com: fix clock-names for mmc1 node] Signed-off-by: Sekhar Nori --- arch/arm/boot/dts/keystone-k2g.dtsi | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi index 3f1fd3df76d5..9ecea2c27d76 100644 --- a/arch/arm/boot/dts/keystone-k2g.dtsi +++ b/arch/arm/boot/dts/keystone-k2g.dtsi @@ -276,5 +276,37 @@ reg = <0x027b8000 0x400>; power-domains = <&k2g_pds 0x4f>; }; + + mmc0: mmc@23000000 { + compatible = "ti,k2g-hsmmc", "ti,omap4-hsmmc"; + reg = <0x23000000 0x400>; + interrupts = ; + dmas = <&edma1 24 0>, <&edma1 25 0>; + dma-names = "tx", "rx"; + bus-width = <4>; + ti,needs-special-reset; + no-1-8-v; + max-frequency = <96000000>; + power-domains = <&k2g_pds 0xb>; + clocks = <&k2g_clks 0xb 1>, <&k2g_clks 0xb 2>; + clock-names = "fck", "mmchsdb_fck"; + status = "disabled"; + }; + + mmc1: mmc@23100000 { + compatible = "ti,k2g-hsmmc", "ti,omap4-hsmmc"; + reg = <0x23100000 0x400>; + interrupts = ; + dmas = <&edma1 26 0>, <&edma1 27 0>; + dma-names = "tx", "rx"; + bus-width = <8>; + ti,needs-special-reset; + ti,non-removable; + max-frequency = <96000000>; + power-domains = <&k2g_pds 0xc>; + clocks = <&k2g_clks 0xc 1>, <&k2g_clks 0xc 2>; + clock-names = "fck", "mmchsdb_fck"; + status = "disabled"; + }; }; }; -- 2.13.0