From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Will Deacon <will.deacon@arm.com>
Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org,
Mike Frysinger <vapier@gentoo.org>
Subject: Re: [RESEND PATCH 2/4] asm-generic: io: don't perform swab during {in,out} string functions
Date: Thu, 18 Oct 2012 11:01:50 +1100 [thread overview]
Message-ID: <1350518510.4678.117.camel@pasglop> (raw)
In-Reply-To: <1350488704-3711-3-git-send-email-will.deacon@arm.com>
On Wed, 2012-10-17 at 16:45 +0100, Will Deacon wrote:
> The {in,out}s{b,w,l} functions are designed to operate on a stream of
> bytes and therefore should not perform any byte-swapping, regardless of
> the CPU byte order.
>
> This patch fixes the generic IO header so that {in,out}s{b,w,l} call
> the __raw_{read,write} functions directly rather than going via the
> endian-correcting accessors.
>
> Cc: Mike Frysinger <vapier@gentoo.org>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Will Deacon <will.deacon@arm.com>
> ---
> include/asm-generic/io.h | 12 ++++++------
> 1 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/include/asm-generic/io.h b/include/asm-generic/io.h
> index 3607921..403b861 100644
> --- a/include/asm-generic/io.h
> +++ b/include/asm-generic/io.h
> @@ -148,7 +148,7 @@ static inline void insb(unsigned long addr, void *buffer, int count)
> if (count) {
> u8 *buf = buffer;
> do {
> - u8 x = inb(addr);
> + u8 x = __raw_readb(addr + PCI_IOBASE);
> *buf++ = x;
> } while (--count);
> }
> @@ -161,7 +161,7 @@ static inline void insw(unsigned long addr, void *buffer, int count)
> if (count) {
> u16 *buf = buffer;
> do {
> - u16 x = inw(addr);
> + u16 x = __raw_readw(addr + PCI_IOBASE);
> *buf++ = x;
> } while (--count);
> }
> @@ -174,7 +174,7 @@ static inline void insl(unsigned long addr, void *buffer, int count)
> if (count) {
> u32 *buf = buffer;
> do {
> - u32 x = inl(addr);
> + u32 x = __raw_readl(addr + PCI_IOBASE);
> *buf++ = x;
> } while (--count);
> }
> @@ -187,7 +187,7 @@ static inline void outsb(unsigned long addr, const void *buffer, int count)
> if (count) {
> const u8 *buf = buffer;
> do {
> - outb(*buf++, addr);
> + __raw_writeb(*buf++, addr + PCI_IOBASE);
> } while (--count);
> }
> }
> @@ -199,7 +199,7 @@ static inline void outsw(unsigned long addr, const void *buffer, int count)
> if (count) {
> const u16 *buf = buffer;
> do {
> - outw(*buf++, addr);
> + __raw_writew(*buf++, addr + PCI_IOBASE);
> } while (--count);
> }
> }
> @@ -211,7 +211,7 @@ static inline void outsl(unsigned long addr, const void *buffer, int count)
> if (count) {
> const u32 *buf = buffer;
> do {
> - outl(*buf++, addr);
> + __raw_writel(*buf++, addr + PCI_IOBASE);
> } while (--count);
> }
> }
next prev parent reply other threads:[~2012-10-18 0:02 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-17 15:45 [RESEND PATCH 0/4] Fix endianness of generic I/O accessors Will Deacon
2012-10-17 15:45 ` Will Deacon
2012-10-17 15:45 ` [RESEND PATCH 1/4] asm-generic: io: remove {read,write} string functions Will Deacon
2012-10-17 15:45 ` Will Deacon
2012-10-26 13:29 ` Arnd Bergmann
2012-10-26 13:38 ` Will Deacon
2012-10-26 13:38 ` Will Deacon
2012-10-17 15:45 ` [RESEND PATCH 2/4] asm-generic: io: don't perform swab during {in,out} " Will Deacon
2012-10-17 15:45 ` Will Deacon
2012-10-17 19:16 ` Geert Uytterhoeven
2012-10-18 0:04 ` Benjamin Herrenschmidt
2012-10-18 5:48 ` Geert Uytterhoeven
2012-10-19 12:53 ` Will Deacon
2012-10-23 1:25 ` Benjamin Herrenschmidt
2012-10-23 1:25 ` Benjamin Herrenschmidt
2012-10-28 9:28 ` Geert Uytterhoeven
2012-10-28 20:38 ` Benjamin Herrenschmidt
2012-10-18 0:01 ` Benjamin Herrenschmidt [this message]
2012-10-17 15:45 ` [RESEND PATCH 3/4] mmc: mmci: use io{read,write}*_rep accessors instead of " Will Deacon
2012-10-17 15:45 ` Will Deacon
2012-10-17 15:45 ` [RESEND PATCH 4/4] net: smc91x: " Will Deacon
2012-10-17 15:45 ` Will Deacon
2012-10-19 8:25 ` James Hogan
2012-10-19 8:25 ` James Hogan
2012-10-19 9:27 ` Will Deacon
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=1350518510.4678.117.camel@pasglop \
--to=benh@kernel.crashing.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vapier@gentoo.org \
--cc=will.deacon@arm.com \
/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).