1# SPDX-License-Identifier: GPL-2.0 2config CPU_H8300H 3 bool 4 5config CPU_H8S 6 bool 7 8config H83069 9 bool 10 select CPU_H8300H 11 select H8300_TMR16 12 select RENESAS_H8300H_INTC 13 14config H8S2678 15 bool 16 select CPU_H8S 17 select H8300_TPU 18 select RENESAS_H8S_INTC 19 20config RAMKERNEL 21 bool 22 23config ROMKERNEL 24 bool 25 26menu "Processor type and features" 27 28choice 29prompt "H8/300 platform" 30 31config H8300_AE3068 32 bool "AE-3068/69" 33 select H83069 34 select RAMKERNEL 35 help 36 AKI-H8/3068F / AKI-H8/3069F Flashmicom LAN Board Support 37 More Information. (Japanese Only) 38 <http://akizukidenshi.com/catalog/default.aspx> 39 AE-3068/69 Evaluation Board Support 40 More Information. 41 <http://www.microtronique.com/ae3069lan.htm> 42 43config H8300_H8MAX 44 bool "H8MAX" 45 select H83069 46 select RAMKERNEL 47 select HAVE_IDE 48 help 49 H8MAX Evaluation Board Support 50 More Information. (Japanese Only) 51 <http://strawberry-linux.com/h8/index.html> 52 53config H8300_KANEBEBE 54 bool "KaneBebe" 55 select H83069 56 select RAMKERNEL 57 help 58 KaneBebe Evalition Board Support 59 More Information. (Japanese Only) 60 <http://www.nissin-tech.com/2009/10/uclinuxkane-bebe-h83069f.html> 61 62config H8300H_SIM 63 bool "H8/300H GDB Simulator" 64 select H83069 65 select ROMKERNEL 66 help 67 GDB Simulator Support 68 More Information. 69 <http://sourceware.org/sid/> 70 71config H8S_EDOSK2674 72 bool "EDOSK-2674" 73 select H8S2678 74 select RAMKERNEL 75 help 76 Renesas EDOSK-2674 Evaluation Board Support 77 More Information. 78 <http://www.azpower.com/H8-uClinux/index.html> 79 <http://www.renesas.eu/products/tools/introductory_evaluation_tools/evaluation_development_os_kits/edosk2674r/edosk2674r_software_tools_root.jsp> 80 81config H8S_SIM 82 bool "H8S GDB Simulator" 83 select H8S2678 84 select ROMKERNEL 85 help 86 GDB Simulator Support 87 More Information. 88 <http://sourceware.org/sid/> 89 90endchoice 91 92config H8300_BUILTIN_DTB 93 string "Builtin DTB" 94 default "" 95 96config OFFSET 97 hex "Load offset" 98 default 0 99 100endmenu 101