2005-04-17 02:20:36 +04:00
menu "Processor type and features"
2008-10-16 09:01:17 +04:00
source "kernel/time/Kconfig"
2005-04-17 02:20:36 +04:00
choice
prompt "H8/300 platform"
default H8300H_GENERIC
config H8300H_GENERIC
bool "H8/300H Generic"
help
H8/300H CPU Generic Hardware Support
config H8300H_AKI3068NET
bool "AE-3068/69"
2009-06-23 23:37:06 +04:00
select H83068
2005-04-17 02:20:36 +04:00
help
AKI-H8/3068F / AKI-H8/3069F Flashmicom LAN Board Support
More Information. (Japanese Only)
<http://akizukidensi.com/catalog/h8.html>
AE-3068/69 Evaluation Board Support
More Information.
<http://www.microtronique.com/ae3069lan.htm>
config H8300H_H8MAX
bool "H8MAX"
2009-06-23 23:37:06 +04:00
select H83068
2005-04-17 02:20:36 +04:00
help
H8MAX Evaluation Board Support
More Information. (Japanese Only)
<http://strawberry-linux.com/h8/index.html>
config H8300H_SIM
bool "H8/300H Simulator"
2009-06-23 23:37:06 +04:00
select H83007
2005-04-17 02:20:36 +04:00
help
GDB Simulator Support
More Information.
arch/h8300/Doc/simulator.txt
config H8S_GENERIC
bool "H8S Generic"
help
H8S CPU Generic Hardware Support
config H8S_EDOSK2674
bool "EDOSK-2674"
2009-06-23 23:37:06 +04:00
select H8S2678
2005-04-17 02:20:36 +04:00
help
Renesas EDOSK-2674 Evaluation Board Support
More Information.
<http://www.azpower.com/H8-uClinux/index.html>
<http://www.eu.renesas.com/tools/edk/support/edosk2674.html>
config H8S_SIM
bool "H8S Simulator"
help
GDB Simulator Support
More Information.
arch/h8300/Doc/simulator.txt
endchoice
choice
prompt "CPU Selection"
config H83002
bool "H8/3001,3002,3003"
2008-10-16 09:01:17 +04:00
select CPU_H8300H
2005-04-17 02:20:36 +04:00
config H83007
bool "H8/3006,3007"
2008-10-16 09:01:17 +04:00
select CPU_H8300H
2005-04-17 02:20:36 +04:00
config H83048
bool "H8/3044,3045,3046,3047,3048,3052"
2008-10-16 09:01:17 +04:00
select CPU_H8300H
2005-04-17 02:20:36 +04:00
config H83068
bool "H8/3065,3066,3067,3068,3069"
2008-10-16 09:01:17 +04:00
select CPU_H8300H
2005-04-17 02:20:36 +04:00
config H8S2678
bool "H8S/2670,2673,2674R,2675,2676"
2008-10-16 09:01:17 +04:00
select CPU_H8S
2005-04-17 02:20:36 +04:00
endchoice
config CPU_CLOCK
int "CPU Clock Frequency (/1KHz)"
default "20000"
help
CPU Clock Frequency divide to 1000
choice
prompt "Kernel executes from"
---help---
Choose the memory type that the kernel will be running in.
config RAMKERNEL
bool "RAM"
help
The kernel will be resident in RAM when running.
config ROMKERNEL
bool "ROM"
help
The kernel will be resident in FLASH/ROM when running.
endchoice
2008-10-16 09:01:17 +04:00
config CPU_H8300H
2005-04-17 02:20:36 +04:00
bool
2008-10-16 09:01:17 +04:00
depends on (H83002 || H83007 || H83048 || H83068)
2005-04-17 02:20:36 +04:00
default y
2008-10-16 09:01:17 +04:00
config CPU_H8S
2005-04-17 02:20:36 +04:00
bool
2008-10-16 09:01:17 +04:00
depends on H8S2678
2005-04-17 02:20:36 +04:00
default y
2008-10-16 09:01:17 +04:00
choice
prompt "Timer"
config H8300_TIMER8
bool "8bit timer (2ch cascade)"
depends on (H83007 || H83068 || H8S2678)
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
config H8300_TIMER16
bool "16bit timer"
depends on (H83007 || H83068)
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
config H8300_ITU
bool "ITU"
depends on (H83002 || H83048)
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
config H8300_TPU
bool "TPU"
depends on H8S2678
endchoice
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
if H8300_TIMER8
choice
prompt "Timer Channel"
config H8300_TIMER8_CH0
bool "Channel 0"
config H8300_TIMER8_CH2
bool "Channel 2"
depends on CPU_H8300H
endchoice
2005-04-17 02:20:36 +04:00
endif
2008-10-16 09:01:17 +04:00
config H8300_TIMER16_CH
int "16bit timer channel (0 - 2)"
depends on H8300_TIMER16
range 0 2
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
config H8300_ITU_CH
int "ITU channel"
depends on H8300_ITU
2005-04-17 02:20:36 +04:00
2008-10-16 09:01:17 +04:00
config H8300_TPU_CH
int "TPU channel"
depends on H8300_TPU
2005-04-17 02:20:36 +04:00
config PREEMPT
bool "Preemptible Kernel"
default n
2005-06-23 11:07:43 +04:00
source "mm/Kconfig"
2005-04-17 02:20:36 +04:00
endmenu