diff options
author | Hirokazu Takata <takata@linux-m32r.org> | 2005-06-21 20:16:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 22:07:30 -0400 |
commit | 2368086344c3d67b0f4aecac39d620fb9b8795c3 (patch) | |
tree | aa55003e311abf6049acd23f5ff7f8bfd24eca4c /arch/m32r/Kconfig | |
parent | d4c477ca5448f19afaaf6c0cfd655009ea9e614d (diff) |
[PATCH] m32r: Support M3A-2170(Mappi-III) platform
This patchset is for supporting a new m32r platform, M3A-2170(Mappi-III)
evaluation board. An M32R chip multiprocessor is equipped on the board.
http://http://www.linux-m32r.org/eng/platform/platform.html
* arch/m32r/Kconfig: Support Mappi-III platform.
* arch/m32r/kernel/Makefile: ditto.
* arch/m32r/kernel/io_mappi3.c: ditto.
* arch/m32r/kernel/setup.c: ditto.
* arch/m32r/kernel/setup_mappi3.c: ditto.
* include/asm-m32r/m32102.h: ditto.
* include/asm-m32r/m32r.h: ditto.
* include/asm-m32r/mappi3/mappi3_pld.h: ditto.
* include/asm-m32r/ide.h: CF support for Mappi-III.
* arch/m32r/kernel/setup_mappi3.c: ditto.
* arch/m32r/mappi3/defconfig.smp: A default config file for Mappi-III.
* arch/m32r/mappi3/dot.gdbinit: A default .gdbinit file for Mappi-III.
* arch/m32r/boot/compressed/m32r_sio.c: Modified for Mappi-III
- At boot time, m32r-g00ff bootloader makes MMU off for Mappi-III,
on the contrary it makes MMU on for Mappi-II.
* arch/m32r/kernel/io_mappi2.c: Update comments.
* arch/m32r/kernel/setup_mappi2.c: ditto.
Signed-off-by: Mamoru Sakugawa <sakugawa@linux-m32r.org>
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m32r/Kconfig')
-rw-r--r-- | arch/m32r/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index 0d90ea58a0cb..64c133344afe 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
@@ -78,6 +78,9 @@ config PLAT_OAKS32R | |||
78 | config PLAT_MAPPI2 | 78 | config PLAT_MAPPI2 |
79 | bool "Mappi-II(M3A-ZA36/M3A-ZA52)" | 79 | bool "Mappi-II(M3A-ZA36/M3A-ZA52)" |
80 | 80 | ||
81 | config PLAT_MAPPI3 | ||
82 | bool "Mappi-III(M3A-2170)" | ||
83 | |||
81 | endchoice | 84 | endchoice |
82 | 85 | ||
83 | choice | 86 | choice |
@@ -134,6 +137,7 @@ config BUS_CLOCK | |||
134 | int "Bus Clock [Hz] (integer)" | 137 | int "Bus Clock [Hz] (integer)" |
135 | default "70000000" if PLAT_MAPPI | 138 | default "70000000" if PLAT_MAPPI |
136 | default "25000000" if PLAT_USRV | 139 | default "25000000" if PLAT_USRV |
140 | default "50000000" if PLAT_MAPPI3 | ||
137 | default "50000000" if PLAT_M32700UT | 141 | default "50000000" if PLAT_M32700UT |
138 | default "50000000" if PLAT_OPSPUT | 142 | default "50000000" if PLAT_OPSPUT |
139 | default "33333333" if PLAT_OAKS32R | 143 | default "33333333" if PLAT_OAKS32R |
@@ -149,7 +153,7 @@ config CPU_LITTLE_ENDIAN | |||
149 | 153 | ||
150 | config MEMORY_START | 154 | config MEMORY_START |
151 | hex "Physical memory start address (hex)" | 155 | hex "Physical memory start address (hex)" |
152 | default "08000000" if PLAT_MAPPI || PLAT_MAPPI2 | 156 | default "08000000" if PLAT_MAPPI || PLAT_MAPPI2 || PLAT_MAPPI3 |
153 | default "08000000" if PLAT_USRV | 157 | default "08000000" if PLAT_USRV |
154 | default "08000000" if PLAT_M32700UT | 158 | default "08000000" if PLAT_M32700UT |
155 | default "08000000" if PLAT_OPSPUT | 159 | default "08000000" if PLAT_OPSPUT |
@@ -157,6 +161,7 @@ config MEMORY_START | |||
157 | 161 | ||
158 | config MEMORY_SIZE | 162 | config MEMORY_SIZE |
159 | hex "Physical memory size (hex)" | 163 | hex "Physical memory size (hex)" |
164 | default "08000000" if PLAT_MAPPI3 | ||
160 | default "04000000" if PLAT_MAPPI || PLAT_MAPPI2 | 165 | default "04000000" if PLAT_MAPPI || PLAT_MAPPI2 |
161 | default "02000000" if PLAT_USRV | 166 | default "02000000" if PLAT_USRV |
162 | default "01000000" if PLAT_M32700UT | 167 | default "01000000" if PLAT_M32700UT |