Skip to content

Commit 014ec97

Browse files
geertugregkh
authored andcommitted
sh: landisk: Add missing initialization of sh_io_port_base
[ Upstream commit 0c64a0d ] The Landisk setup code maps the CF IDE area using ioremap_prot(), and passes the resulting virtual addresses to the pata_platform driver, disguising them as I/O port addresses. Hence the pata_platform driver translates them again using ioport_map(). As CONFIG_GENERIC_IOMAP=n, and CONFIG_HAS_IOPORT_MAP=y, the SuperH-specific mapping code in arch/sh/kernel/ioport.c translates I/O port addresses to virtual addresses by adding sh_io_port_base, which defaults to -1, thus breaking the assumption of an identity mapping. Fix this by setting sh_io_port_base to zero. Fixes: 37b7a97 ("sh: machvec IO death.") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Rich Felker <dalias@libc.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent df8caaf commit 014ec97

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

arch/sh/boards/mach-landisk/setup.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ device_initcall(landisk_devices_setup);
8585

8686
static void __init landisk_setup(char **cmdline_p)
8787
{
88+
/* I/O port identity mapping */
89+
__set_io_port_base(0);
90+
8891
/* LED ON */
8992
__raw_writeb(__raw_readb(PA_LED) | 0x03, PA_LED);
9093

0 commit comments

Comments
 (0)