sh: Prevent 64-bit pgprot clobbering across ioremap implementations.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 19 Jan 2010 04:34:38 +0000 (13:34 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 19 Jan 2010 04:34:38 +0000 (13:34 +0900)
commitd57d64080ddc0ff13fcffc898b6251074a482ba1
treec38fd506a30d56de84a39285412ffc1b45cc8d33
parentaf1415314a4190b8ea06e53808d392fcf91555af
sh: Prevent 64-bit pgprot clobbering across ioremap implementations.

Presently 'flags' gets passed around a lot between the various ioremap
helpers and implementations, which is only 32-bits. In the X2TLB case
we use 64-bit pgprots which presently results in the upper 32bits being
chopped off (which handily include our read/write/exec permissions).

As such, we convert everything internally to using pgprot_t directly and
simply convert over with pgprot_val() where needed. With this in place,
transparent fixmap utilization for early ioremap works as expected.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/boards/board-sh7785lcr.c
arch/sh/boards/mach-landisk/setup.c
arch/sh/boards/mach-lboxre2/setup.c
arch/sh/boards/mach-sh03/setup.c
arch/sh/include/asm/io.h
arch/sh/mm/ioremap.c