sh: ms7750se: Remove the 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_AP_SH4A_4A
25         bool "ALPHAPROJECT AP-SH4A-4A"
26         select CPU_SH4A
27
28 config TARGET_AP325RXA
29         bool "Renesas AP-325RXA"
30         select CPU_SH4
31
32 config TARGET_MIGOR
33         bool "Migo-R"
34         select CPU_SH4
35
36 config TARGET_R0P7734
37         bool "Support r0p7734"
38         select CPU_SH4A
39
40 config TARGET_R2DPLUS
41         bool "Renesas R2D-PLUS"
42         select CPU_SH4
43
44 config TARGET_R7780MP
45         bool "R7780MP board"
46         select CPU_SH4A
47
48 config TARGET_SH7752EVB
49         bool "SH7752EVB"
50         select CPU_SH4A
51
52 config TARGET_SH7753EVB
53         bool "SH7753EVB"
54         select CPU_SH4
55
56 config TARGET_SH7757LCR
57         bool "SH7757LCR"
58         select CPU_SH4A
59
60 config TARGET_SH7763RDP
61         bool "SH7763RDP"
62         select CPU_SH4
63
64 endchoice
65
66 config SYS_ARCH
67         default "sh"
68
69 config SYS_CPU
70         default "sh4" if CPU_SH4
71
72 source "arch/sh/lib/Kconfig"
73
74 source "board/alphaproject/ap_sh4a_4a/Kconfig"
75 source "board/renesas/MigoR/Kconfig"
76 source "board/renesas/ap325rxa/Kconfig"
77 source "board/renesas/r0p7734/Kconfig"
78 source "board/renesas/r2dplus/Kconfig"
79 source "board/renesas/r7780mp/Kconfig"
80 source "board/renesas/sh7752evb/Kconfig"
81 source "board/renesas/sh7753evb/Kconfig"
82 source "board/renesas/sh7757lcr/Kconfig"
83 source "board/renesas/sh7763rdp/Kconfig"
84
85 endmenu