From: Tony Lindgren <tony@atomide.com>
To: jgarzik@pobox.com
Cc: Nicolas Pitre <nico@cam.org>, linux-kernel@vger.kernel.org
Subject: [PATCH] Add OMAP functions to smc91x.h
Date: Fri, 21 Jan 2005 11:37:56 -0800 [thread overview]
Message-ID: <20050121193756.GM14554@atomide.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 163 bytes --]
Hi Jeff,
Attached patch adds support for various OMAP boards to the smc91x
Ethernet driver. Nicolas asked to send it to you. Can you please apply?
Regards,
Tony
[-- Attachment #2: patch-2.6.10-omap-net-drivers --]
[-- Type: text/plain, Size: 1209 bytes --]
Add support for various OMAP boards to smc91x Ethernet driver
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Nicolas Pitre <nico@cam.org>
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:[~2005-01-21 19:38 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=20050121193756.GM14554@atomide.com \
--to=tony@atomide.com \
--cc=jgarzik@pobox.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
Powered by JetHome