sh: Remove sh7752evb board
[platform/kernel/u-boot.git] / arch / sh / Kconfig
1 menu "SuperH architecture"
2         depends on SH
3
4 config CPU_SH4
5         bool
6
7 config CPU_SH4A
8         bool
9         select CPU_SH4
10
11 config SH_32BIT
12         bool "32bit mode"
13         depends on CPU_SH4A
14         default n
15         help
16           SH4A has 2 physical memory maps. This use 32bit mode.
17           And this is board specific. Please check your board if you
18           want to use this.
19
20 choice
21         prompt "Target select"
22         optional
23
24 config TARGET_R2DPLUS
25         bool "Renesas R2D-PLUS"
26         select CPU_SH4
27
28 config TARGET_SH7753EVB
29         bool "SH7753EVB"
30         select CPU_SH4
31
32 config TARGET_SH7757LCR
33         bool "SH7757LCR"
34         select CPU_SH4A
35
36 config TARGET_SH7763RDP
37         bool "SH7763RDP"
38         select CPU_SH4
39
40 endchoice
41
42 config SYS_ARCH
43         default "sh"
44
45 config SYS_CPU
46         default "sh4" if CPU_SH4
47
48 source "arch/sh/lib/Kconfig"
49
50 source "board/renesas/r2dplus/Kconfig"
51 source "board/renesas/sh7753evb/Kconfig"
52 source "board/renesas/sh7757lcr/Kconfig"
53 source "board/renesas/sh7763rdp/Kconfig"
54
55 endmenu