From patchwork Wed Oct 26 08:49:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Nilsson XK X-Patchwork-Id: 4821 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id C643623EF6 for ; Wed, 26 Oct 2011 08:50:34 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id AFD32A18AAE for ; Wed, 26 Oct 2011 08:50:34 +0000 (UTC) Received: by faan26 with SMTP id n26so1875208faa.11 for ; Wed, 26 Oct 2011 01:50:34 -0700 (PDT) Received: by 10.223.77.69 with SMTP id f5mr57760110fak.3.1319619034496; Wed, 26 Oct 2011 01:50:34 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.1.71 with SMTP id 7cs5369lak; Wed, 26 Oct 2011 01:50:34 -0700 (PDT) Received: by 10.213.109.10 with SMTP id h10mr145219ebp.136.1319619032504; Wed, 26 Oct 2011 01:50:32 -0700 (PDT) Received: from eu1sys200aog108.obsmtp.com (eu1sys200aog108.obsmtp.com. [207.126.144.125]) by mx.google.com with SMTP id z45si216608eef.137.2011.10.26.01.50.25 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 26 Oct 2011 01:50:32 -0700 (PDT) Received-SPF: neutral (google.com: 207.126.144.125 is neither permitted nor denied by best guess record for domain of stefan.xk.nilsson@stericsson.com) client-ip=207.126.144.125; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.125 is neither permitted nor denied by best guess record for domain of stefan.xk.nilsson@stericsson.com) smtp.mail=stefan.xk.nilsson@stericsson.com Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob108.postini.com ([207.126.147.11]) with SMTP; Wed, 26 Oct 2011 08:50:32 UTC Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 56F761C3; Wed, 26 Oct 2011 08:50:23 +0000 (GMT) Received: from relay2.stm.gmessaging.net (unknown [10.230.100.18]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 0D2661902; Wed, 26 Oct 2011 08:50:23 +0000 (GMT) Received: from exdcvycastm003.EQ1STM.local (alteon-source-exch [10.230.100.61]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "exdcvycastm003", Issuer "exdcvycastm003" (not verified)) by relay2.stm.gmessaging.net (Postfix) with ESMTPS id EA716A8065; Wed, 26 Oct 2011 10:50:18 +0200 (CEST) Received: from localhost.localdomain (10.230.100.153) by smtp.stericsson.com (10.230.100.1) with Microsoft SMTP Server (TLS) id 8.3.83.0; Wed, 26 Oct 2011 10:50:22 +0200 From: Stefan Nilsson XK To: Cc: Stefan Nilsson XK Subject: [PATCH 2/2] ARM: ux500: Support SD cards on HREFv60 boards Date: Wed, 26 Oct 2011 10:49:35 +0200 Message-ID: <1319618975-17044-1-git-send-email-stefan.xk.nilsson@stericsson.com> X-Mailer: git-send-email 1.7.7 MIME-Version: 1.0 Properly support the correct SDI-init sequence on the ST-Ericsson HREFv60 and later boards in order to get support for SD cards. Signed-off-by: Stefan Nilsson XK Acked-by: Linus Walleij --- arch/arm/mach-ux500/board-mop500.c | 2 +- arch/arm/mach-ux500/board-mop500.h | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 4d75b0d..a4d8136 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c @@ -671,7 +671,7 @@ static void __init hrefv60_init_machine(void) ARRAY_SIZE(mop500_platform_devs)); mop500_i2c_init(); - mop500_sdi_init(); + hrefv60_sdi_init(); mop500_spi_init(); mop500_uart_init(); diff --git a/arch/arm/mach-ux500/board-mop500.h b/arch/arm/mach-ux500/board-mop500.h index de18a2a..e82552a 100644 --- a/arch/arm/mach-ux500/board-mop500.h +++ b/arch/arm/mach-ux500/board-mop500.h @@ -41,6 +41,7 @@ struct i2c_board_info; extern void mop500_sdi_init(void); extern void snowball_sdi_init(void); +extern void hrefv60_sdi_init(void); extern void mop500_sdi_tc35892_init(void); void __init mop500_u8500uib_init(void); void __init mop500_stuib_init(void);