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 help 48 H8MAX Evaluation Board Support 49 More Information. (Japanese Only) 50 <http://strawberry-linux.com/h8/index.html> 51 52config H8300_KANEBEBE 53 bool "KaneBebe" 54 select H83069 55 select RAMKERNEL 56 help 57 KaneBebe Evalition Board Support 58 More Information. (Japanese Only) 59 <http://www.nissin-tech.com/2009/10/uclinuxkane-bebe-h83069f.html> 60 61config H8300H_SIM 62 bool "H8/300H GDB Simulator" 63 select H83069 64 select ROMKERNEL 65 help 66 GDB Simulator Support 67 More Information. 68 <http://sourceware.org/sid/> 69 70config H8S_EDOSK2674 71 bool "EDOSK-2674" 72 select H8S2678 73 select RAMKERNEL 74 help 75 Renesas EDOSK-2674 Evaluation Board Support 76 More Information. 77 <http://www.azpower.com/H8-uClinux/index.html> 78 <http://www.renesas.eu/products/tools/introductory_evaluation_tools/evaluation_development_os_kits/edosk2674r/edosk2674r_software_tools_root.jsp> 79 80config H8S_SIM 81 bool "H8S GDB Simulator" 82 select H8S2678 83 select ROMKERNEL 84 help 85 GDB Simulator Support 86 More Information. 87 <http://sourceware.org/sid/> 88 89endchoice 90 91config H8300_BUILTIN_DTB 92 string "Builtin DTB" 93 default "" 94 95config OFFSET 96 hex "Load offset" 97 default 0 98 99endmenu 100