We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b8651 commit 10c88caCopy full SHA for 10c88ca
arch/sh/Kconfig
@@ -125,7 +125,8 @@ config ARCH_HAS_ILOG2_U64
125
126
config NO_IOPORT_MAP
127
def_bool !PCI
128
- depends on !SH_SHMIN && !SH_HP6XX && !SH_SOLUTION_ENGINE
+ depends on !SH_SHMIN && !SH_HP6XX && !SH_SOLUTION_ENGINE && \
129
+ !SH_DREAMCAST
130
131
config IO_TRAPPED
132
bool
arch/sh/boards/mach-dreamcast/setup.c
@@ -25,10 +25,13 @@
25
#include <asm/irq.h>
26
#include <asm/rtc.h>
27
#include <asm/machvec.h>
28
+#include <cpu/addrspace.h>
29
#include <mach/sysasic.h>
30
31
static void __init dreamcast_setup(char **cmdline_p)
32
{
33
+ /* GAPS PCI bridge assumes P2 area relative addresses. */
34
+ __set_io_port_base(P2SEG);
35
}
36
37
static struct sh_machine_vector mv_dreamcast __initmv = {
0 commit comments