1menu "SuperH architecture"
2	depends on SH
3
4config CPU_SH4
5	bool
6
7config CPU_SH7751
8	bool
9	select CPU_SH4
10
11choice
12	prompt "Target select"
13	optional
14
15config TARGET_R2DPLUS
16	bool "Renesas R2D-PLUS"
17	select CPU_SH7751
18
19endchoice
20
21config SYS_ARCH
22	default "sh"
23
24config SYS_CPU
25	default "sh4" if CPU_SH4
26
27source "arch/sh/lib/Kconfig"
28
29source "board/renesas/r2dplus/Kconfig"
30
31endmenu
32