From patchwork Sat Apr 16 21:54:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: matt.waddel@linaro.org X-Patchwork-Id: 1055 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:48:39 -0000 Delivered-To: patches@linaro.org Received: by 10.224.67.148 with SMTP id r20cs93667qai; Sat, 16 Apr 2011 14:55:01 -0700 (PDT) Received: by 10.236.78.38 with SMTP id f26mr2209394yhe.60.1302990901056; Sat, 16 Apr 2011 14:55:01 -0700 (PDT) Received: from mail-yi0-f50.google.com (mail-yi0-f50.google.com [209.85.218.50]) by mx.google.com with ESMTPS id x39si8676146anx.123.2011.04.16.14.55.00 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 16 Apr 2011 14:55:01 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.218.50 is neither permitted nor denied by best guess record for domain of matt.waddel@linaro.org) client-ip=209.85.218.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.218.50 is neither permitted nor denied by best guess record for domain of matt.waddel@linaro.org) smtp.mail=matt.waddel@linaro.org Received: by mail-yi0-f50.google.com with SMTP id 30so3834086yie.37 for ; Sat, 16 Apr 2011 14:55:00 -0700 (PDT) Received: by 10.100.25.19 with SMTP id 19mr621962any.157.1302990900774; Sat, 16 Apr 2011 14:55:00 -0700 (PDT) Received: from localhost.localdomain (c-98-202-116-201.hsd1.ut.comcast.net [98.202.116.201]) by mx.google.com with ESMTPS id x37sm3905694ana.34.2011.04.16.14.54.58 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 16 Apr 2011 14:54:59 -0700 (PDT) From: matt.waddel@linaro.org To: u-boot@lists.denx.de Cc: patches@linaro.org, Matt Waddel Subject: [PATCH V4 3/3] ARMV7: Vexpress: Add MMC support Date: Sat, 16 Apr 2011 15:54:08 -0600 Message-Id: <1302990848-4225-4-git-send-email-matt.waddel@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1302990848-4225-1-git-send-email-matt.waddel@linaro.org> References: <1299129759-30678-3-git-send-email-matt.waddel@linaro.org> <1302990848-4225-1-git-send-email-matt.waddel@linaro.org> From: Matt Waddel Added the board specific definitions to use the MMCI device. Signed-off-by: Matt Waddel --- board/armltd/vexpress/ca9x4_ct_vxp.c | 9 +++++++++ include/configs/ca9x4_ct_vxp.h | 4 ++++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/board/armltd/vexpress/ca9x4_ct_vxp.c b/board/armltd/vexpress/ca9x4_ct_vxp.c index ce1be1e..3566b95 100644 --- a/board/armltd/vexpress/ca9x4_ct_vxp.c +++ b/board/armltd/vexpress/ca9x4_ct_vxp.c @@ -86,6 +86,15 @@ int board_eth_init(bd_t *bis) return rc; } +int cpu_mmc_init(bd_t *bis) +{ + int rc = 0; +#ifdef CONFIG_ARM_PL180_MMCI + rc = arm_pl180_mmci_init(); +#endif + return rc; +} + static void flash__init(void) { /* Setup the sytem control register to allow writing to flash */ diff --git a/include/configs/ca9x4_ct_vxp.h b/include/configs/ca9x4_ct_vxp.h index 63f003d..4ab58c0 100644 --- a/include/configs/ca9x4_ct_vxp.h +++ b/include/configs/ca9x4_ct_vxp.h @@ -86,6 +86,10 @@ #define CONFIG_MMC 1 #define CONFIG_CMD_MMC #define CONFIG_GENERIC_MMC +#define CONFIG_ARM_PL180_MMCI +#define CONFIG_ARM_PL180_MMCI_BASE 0x10005000 +#define CONFIG_SYS_MMC_MAX_BLK_COUNT 127 +#define CONFIG_ARM_PL180_MMCI_CLOCK_FREQ 6250000 /* BOOTP options */ #define CONFIG_BOOTP_BOOTFILESIZE