From: jaccon.bastiaansen@gmail.com (Jaccon Bastiaansen)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] Add CS890x0 ethernet controller support to the i.MX21ADS
Date: Wed, 7 Sep 2011 12:24:10 +0200 [thread overview]
Message-ID: <1315391050-6715-1-git-send-email-jaccon.bastiaansen@gmail.com> (raw)
Signed-off-by: Jaccon Bastiaansen <jaccon.bastiaansen@gmail.com>
---
arch/arm/mach-imx/mach-mx21ads.c | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-imx/mach-mx21ads.c b/arch/arm/mach-imx/mach-mx21ads.c
index 74ac889..62b4717 100644
--- a/arch/arm/mach-imx/mach-mx21ads.c
+++ b/arch/arm/mach-imx/mach-mx21ads.c
@@ -159,6 +159,26 @@ static struct platform_device mx21ads_nor_mtd_device = {
.resource = &mx21ads_flash_resource,
};
+static struct resource mx21ads_cs8900_resources[] = {
+ {
+ .start = (u32)MX21ADS_CS8900A_IOBASE_REG,
+ .end = (u32)MX21ADS_CS8900A_IOBASE_REG + 0x200000 - 1,
+ .flags = IORESOURCE_MEM,
+ },
+ {
+ .start = MX21ADS_CS8900A_IRQ,
+ .end = MX21ADS_CS8900A_IRQ,
+ .flags = IORESOURCE_IRQ,
+ },
+};
+
+static struct platform_device mx21ads_cs8900_device = {
+ .name = "cs89x0",
+ .id = 0,
+ .num_resources = ARRAY_SIZE(mx21ads_cs8900_resources),
+ .resource = mx21ads_cs8900_resources,
+};
+
static const struct imxuart_platform_data uart_pdata_rts __initconst = {
.flags = IMXUART_HAVE_RTSCTS,
};
@@ -275,6 +295,7 @@ static void __init mx21ads_map_io(void)
static struct platform_device *platform_devices[] __initdata = {
&mx21ads_nor_mtd_device,
+ &mx21ads_cs8900_device
};
static void __init mx21ads_board_init(void)
--
1.7.1
reply other threads:[~2011-09-07 10:24 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=1315391050-6715-1-git-send-email-jaccon.bastiaansen@gmail.com \
--to=jaccon.bastiaansen@gmail.com \
--cc=linux-arm-kernel@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;
as well as URLs for NNTP newsgroup(s).