sh: fix ioreadN_rep and iowriteN_rep

This patch is a fix to make sure readsN/writesN are used over insN/outsN for
ioreadN_rep/iowriteN_rep.

The current state of the sh io code is that mmio operations like readN/writeN
and ioreadN/iowriteN are unaffected by the value of generic_io_base. This is
different fom port based io like inN/outN which gets adjusted using the value
in generic_io_base.

Without this patch ioreadN_rep/iowriteN_rep get their addresses adjusted.
The address for mmio access is adjusted using generic_io_base. This is wrong.
The ata core code currently crashes if generic_io_base is set.

This patch changes ioreadN_rep/iowriteN_rep to follow the same rules as the
rest of the mmio operations, ie don't adjust using generic_io_base.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
Acked-by: Katsuya MATSUBARA <matsu@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>

authored by Magnus Damm and committed by Paul Mundt c0ca41a2 e036eaa6

+6 -6
+6 -6
include/asm-sh/io.h
··· 182 #define iowrite32(v,a) writel((v),(a)) 183 #define iowrite32be(v,a) __raw_writel(cpu_to_be32((v)),(a)) 184 185 - #define ioread8_rep(a,d,c) insb((a),(d),(c)) 186 - #define ioread16_rep(a,d,c) insw((a),(d),(c)) 187 - #define ioread32_rep(a,d,c) insl((a),(d),(c)) 188 189 - #define iowrite8_rep(a,s,c) outsb((a),(s),(c)) 190 - #define iowrite16_rep(a,s,c) outsw((a),(s),(c)) 191 - #define iowrite32_rep(a,s,c) outsl((a),(s),(c)) 192 193 #define mmiowb() wmb() /* synco on SH-4A, otherwise a nop */ 194
··· 182 #define iowrite32(v,a) writel((v),(a)) 183 #define iowrite32be(v,a) __raw_writel(cpu_to_be32((v)),(a)) 184 185 + #define ioread8_rep(a, d, c) readsb((a), (d), (c)) 186 + #define ioread16_rep(a, d, c) readsw((a), (d), (c)) 187 + #define ioread32_rep(a, d, c) readsl((a), (d), (c)) 188 189 + #define iowrite8_rep(a, s, c) writesb((a), (s), (c)) 190 + #define iowrite16_rep(a, s, c) writesw((a), (s), (c)) 191 + #define iowrite32_rep(a, s, c) writesl((a), (s), (c)) 192 193 #define mmiowb() wmb() /* synco on SH-4A, otherwise a nop */ 194