From: Alexander Shiyan <shc_work@mail.ru>
To: barebox@lists.infradead.org
Subject: [PATCH 2/3] i.MX27: Add support for SDHC1,3
Date: Tue, 20 Mar 2012 12:54:25 +0400 [thread overview]
Message-ID: <1332233666-5422-2-git-send-email-shc_work@mail.ru> (raw)
In-Reply-To: <20120318151242.GP3852@pengutronix.de>
imx27_add_mmc0 really registered SDHC2. Fix this by adding a
imx27_add_mmc1 and use this in the pca100 board file. Also add
imx27_add_mmc2 helper for register SDHC3.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/boards/phycard-i.MX27/pca100.c | 2 +-
arch/arm/mach-imx/include/mach/devices-imx27.h | 10 +++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boards/phycard-i.MX27/pca100.c b/arch/arm/boards/phycard-i.MX27/pca100.c
index 1b43951..f934a9b 100644
--- a/arch/arm/boards/phycard-i.MX27/pca100.c
+++ b/arch/arm/boards/phycard-i.MX27/pca100.c
@@ -292,7 +292,7 @@ static int pca100_devices_init(void)
imx27_add_nand(&nand_info);
imx27_add_fec(&fec_info);
- imx27_add_mmc0(NULL);
+ imx27_add_mmc1(NULL);
imx27_add_fb(&pca100_fb_data);
PCCR1 |= PCCR1_PERCLK2_EN;
diff --git a/arch/arm/mach-imx/include/mach/devices-imx27.h b/arch/arm/mach-imx/include/mach/devices-imx27.h
index 3141d96..faf8ddc 100644
--- a/arch/arm/mach-imx/include/mach/devices-imx27.h
+++ b/arch/arm/mach-imx/include/mach/devices-imx27.h
@@ -58,7 +58,15 @@ static inline struct device_d *imx27_add_fec(struct fec_platform_data *pdata)
static inline struct device_d *imx27_add_mmc0(void *pdata)
{
- return imx_add_mmc((void *)0x10014000, 0, pdata);
+ return imx_add_mmc((void *)IMX_SDHC1_BASE, 0, pdata);
}
+static inline struct device_d *imx27_add_mmc1(void *pdata)
+{
+ return imx_add_mmc((void *)IMX_SDHC2_BASE, 1, pdata);
+}
+static inline struct device_d *imx27_add_mmc2(void *pdata)
+{
+ return imx_add_mmc((void *)IMX_SDHC3_BASE, 2, pdata);
+}
--
1.7.3.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-03-20 8:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-18 6:29 [PATCH 2/2] i.MX27: Add support for SDHC1 Alexander Shiyan
2012-03-18 15:12 ` Sascha Hauer
2012-03-20 8:54 ` [PATCH 1/3] i.MX27: Define base address for SDHC1,2,3 Alexander Shiyan
2012-03-20 13:09 ` Sascha Hauer
2012-03-20 8:54 ` Alexander Shiyan [this message]
2012-03-20 8:54 ` [PATCH 3/3] i.MX51: Fix name definition for SSI3 Alexander Shiyan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1332233666-5422-2-git-send-email-shc_work@mail.ru \
--to=shc_work@mail.ru \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox