From patchwork Wed Aug 10 13:54:05 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sekhar Nori X-Patchwork-Id: 73642 Delivered-To: patch@linaro.org Received: by 10.140.29.52 with SMTP id a49csp416687qga; Wed, 10 Aug 2016 07:00:40 -0700 (PDT) X-Received: by 10.194.82.164 with SMTP id j4mr5025429wjy.157.1470837640649; Wed, 10 Aug 2016 07:00:40 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id f3si39901788wje.178.2016.08.10.07.00.40; Wed, 10 Aug 2016 07:00:40 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4E1DFA7528; Wed, 10 Aug 2016 16:00:35 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yyb7gMRd4CAY; Wed, 10 Aug 2016 16:00:35 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AE22CA7534; Wed, 10 Aug 2016 15:57:50 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CB3DFA7519 for ; Wed, 10 Aug 2016 15:54:26 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VkDm-kMuF7tH for ; Wed, 10 Aug 2016 15:54:26 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [198.47.19.12]) by theia.denx.de (Postfix) with ESMTPS id 3D2C84BDBD for ; Wed, 10 Aug 2016 15:54:19 +0200 (CEST) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id u7ADsGYv022716; Wed, 10 Aug 2016 08:54:16 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id u7ADsGrl013336; Wed, 10 Aug 2016 08:54:16 -0500 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.294.0; Wed, 10 Aug 2016 08:54:15 -0500 Received: from psplinux063.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id u7ADs76E008929; Wed, 10 Aug 2016 08:54:14 -0500 From: Sekhar Nori To: Tom Rini , Jaehoon Chung Date: Wed, 10 Aug 2016 19:24:05 +0530 Message-ID: <20160810135406.17255-4-nsekhar@ti.com> X-Mailer: git-send-email 2.9.0 In-Reply-To: <20160810135406.17255-1-nsekhar@ti.com> References: <20160810135406.17255-1-nsekhar@ti.com> MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 10 Aug 2016 15:57:38 +0200 Cc: U-Boot Mailing List Subject: [U-Boot] [PATCH 3/4] ARM: dts: k2g-evm: enable mmc/sd suppport X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The K2G EVM from TI has an SD card slot as well as onboard eMMC for data storage. Enable support for these. Signed-off-by: Sekhar Nori --- arch/arm/dts/k2g-evm.dts | 8 ++++++++ 1 file changed, 8 insertions(+) -- 2.9.0 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/arch/arm/dts/k2g-evm.dts b/arch/arm/dts/k2g-evm.dts index e95efd476707..61d0d5543337 100644 --- a/arch/arm/dts/k2g-evm.dts +++ b/arch/arm/dts/k2g-evm.dts @@ -100,3 +100,11 @@ }; }; }; + +&mmc0 { + status = "okay"; +}; + +&mmc1 { + status = "okay"; +};