From: Tony Lindgren <tony@atomide.com>
To: linux-kernel@vger.kernel.org
Cc: nico@cam.org
Subject: [PATCH] Add OMAP support to smc91x Ethernet driver
Date: Wed, 29 Dec 2004 16:45:49 -0800 [thread overview]
Message-ID: <20041230004549.GD14964@atomide.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 166 bytes --]
Hi Nicolas,
Following patch adds support for various OMAP boards to smc91x.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Can you please apply?
Regards,
Tony
[-- Attachment #2: patch-2.6.10-omap-net-drivers --]
[-- Type: text/plain, Size: 1053 bytes --]
diff -Nru --exclude-from=/home/tmlind/src/dontdiff-tony linus/drivers/net/smc91x.h b/drivers/net/smc91x.h
--- a/drivers/net/smc91x.h 2004-12-10 11:53:52.000000000 -0800
+++ b/drivers/net/smc91x.h 2004-12-27 12:08:43.000000000 -0800
@@ -162,6 +162,26 @@
}
}
+#elif defined(CONFIG_ARCH_OMAP)
+
+/* We can only do 16-bit reads and writes in the static memory space. */
+#define SMC_CAN_USE_8BIT 0
+#define SMC_CAN_USE_16BIT 1
+#define SMC_CAN_USE_32BIT 0
+#define SMC_IO_SHIFT 0
+#define SMC_NOWAIT 1
+
+#define SMC_inb(a, r) readb((a) + (r))
+#define SMC_outb(v, a, r) writeb(v, (a) + (r))
+#define SMC_inw(a, r) readw((a) + (r))
+#define SMC_outw(v, a, r) writew(v, (a) + (r))
+#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
+#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
+#define SMC_inl(a, r) readl((a) + (r))
+#define SMC_outl(v, a, r) writel(v, (a) + (r))
+#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
+#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
+
#elif defined(CONFIG_ISA)
#define SMC_CAN_USE_8BIT 1
reply other threads:[~2004-12-30 0:50 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=20041230004549.GD14964@atomide.com \
--to=tony@atomide.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nico@cam.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