From: peiyong feng <peiyong.feng.kernel@gmail.com>
To: Ben Dooks <ben-linux@fluff.org>,
Russell King <linux@arm.linux.org.uk>,
linux-arm-kernel@lists.infradead.org,
Kukjin Kim <kgene.kim@samsung.com>,
linux-kernel@vger.kernel.org
Cc: peiyong feng <peiyong.feng.kernel@gmail.com>
Subject: [PATCH] Add dm9000 network support for OK6410 board.
Date: Fri, 11 Nov 2011 18:14:27 +0800 [thread overview]
Message-ID: <1321006467-15824-1-git-send-email-peiyong.feng.kernel@gmail.com> (raw)
Signed-off-by: peiyong feng <peiyong.feng.kernel@gmail.com>
---
arch/arm/mach-s3c64xx/mach-smdk6410.c | 1 +
arch/arm/plat-samsung/devs.c | 40 +++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-s3c64xx/mach-smdk6410.c b/arch/arm/mach-s3c64xx/mach-smdk6410.c
index 8bc8edd..71e817a 100644
--- a/arch/arm/mach-s3c64xx/mach-smdk6410.c
+++ b/arch/arm/mach-s3c64xx/mach-smdk6410.c
@@ -276,6 +276,7 @@ static struct platform_device *smdk6410_devices[] __initdata = {
&s3c_device_fb,
&s3c_device_ohci,
&s3c_device_usb_hsotg,
+ &s3c_device_dm9000,
&samsung_asoc_dma,
&s3c64xx_device_iisv4,
&samsung_device_keypad,
diff --git a/arch/arm/plat-samsung/devs.c b/arch/arm/plat-samsung/devs.c
index 4ca8b57..38edc1a 100644
--- a/arch/arm/plat-samsung/devs.c
+++ b/arch/arm/plat-samsung/devs.c
@@ -29,6 +29,7 @@
#include <linux/mtd/partitions.h>
#include <linux/mmc/host.h>
#include <linux/ioport.h>
+#include <linux/dm9000.h>
#include <asm/irq.h>
#include <asm/pmu.h>
@@ -1401,6 +1402,45 @@ void __init s5p_ehci_set_platdata(struct s5p_ehci_platdata *pd)
}
#endif /* CONFIG_S5P_DEV_USB_EHCI */
+/* Ethernet */
+#ifdef CONFIG_DM9000
+#define S3C64XX_PA_DM9000 (0x18000000)
+#define S3C64XX_SZ_DM9000 SZ_1M
+#define S3C64XX_VA_DM9000 S3C_ADDR(0x03b00300)
+
+static struct resource dm9000_resources[] = {
+ [0] = {
+ .start = S3C64XX_PA_DM9000,
+ .end = S3C64XX_PA_DM9000 + 3,
+ .flags = IORESOURCE_MEM,
+ },
+ [1] = {
+ .start = S3C64XX_PA_DM9000 + 4,
+ .end = S3C64XX_PA_DM9000 + S3C64XX_SZ_DM9000 - 1,
+ .flags = IORESOURCE_MEM,
+ },
+ [2] = {
+ .start = IRQ_EINT(7),
+ .end = IRQ_EINT(7),
+ .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
+ },
+};
+
+static struct dm9000_plat_data dm9000_setup = {
+ .flags = DM9000_PLATF_16BITONLY,
+ .dev_addr = { 0x08, 0x90, 0x00, 0xa0, 0x90, 0x90 },
+};
+
+static struct platform_device s3c_device_dm9000 = {
+ .name = "dm9000",
+ .id = 0,
+ .num_resources = ARRAY_SIZE(dm9000_resources),
+ .resource = dm9000_resources,
+ .dev = {
+ .platform_data = &dm9000_setup,
+ }
+};
+#endif /*#ifdef CONFIG_DM9000*/
/* USB HSOTG */
#ifdef CONFIG_S3C_DEV_USB_HSOTG
--
1.7.7.rc0.235.g8d714
next reply other threads:[~2011-11-11 10:15 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-11 10:14 peiyong feng [this message]
2011-11-11 13:02 ` Thomas Abraham
[not found] ` <CAN_1RdvdeXHdM50utA8objg46Q2GM23pwzAiB7itswrTm1FqSQ@mail.gmail.com>
2011-11-15 10:20 ` Kukjin Kim
2011-11-16 2:10 ` Peiyong Feng
2011-11-16 3:00 ` Thomas Abraham
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=1321006467-15824-1-git-send-email-peiyong.feng.kernel@gmail.com \
--to=peiyong.feng.kernel@gmail.com \
--cc=ben-linux@fluff.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
/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
all inboxes | Powered by JetHome®