sh: sh2: Remove CPU support
[oweals/u-boot.git] / arch / sh / Kconfig
1 menu "SuperH architecture"
2         depends on SH
3
4 config CPU_SH3
5         bool
6
7 config CPU_SH4
8         bool
9
10 config CPU_SH4A
11         bool
12         select CPU_SH4
13
14 config SH_32BIT
15         bool "32bit mode"
16         depends on CPU_SH4A
17         default n
18         help
19           SH4A has 2 physical memory maps. This use 32bit mode.
20           And this is board specific. Please check your board if you
21           want to use this.
22
23 choice
24         prompt "Target select"
25         optional
26
27 config TARGET_MPR2
28         bool "Magic Panel Release 2 board"
29         select CPU_SH3
30
31 config TARGET_MS7720SE
32         bool "Support ms7720se"
33         select CPU_SH3
34
35 config TARGET_SHMIN
36         bool "SHMIN"
37         select CPU_SH3
38
39 config TARGET_ESPT
40         bool "Data Technology ESPT-GIGA board"
41         select CPU_SH4
42
43 config TARGET_MS7722SE
44         bool "SolutionEngine 7722"
45         select CPU_SH4
46
47 config TARGET_MS7750SE
48         bool "SolutionEngine 7750"
49         select CPU_SH4
50
51 config TARGET_AP_SH4A_4A
52         bool "ALPHAPROJECT AP-SH4A-4A"
53         select CPU_SH4A
54
55 config TARGET_AP325RXA
56         bool "Renesas AP-325RXA"
57         select CPU_SH4
58
59 config TARGET_MIGOR
60         bool "Migo-R"
61         select CPU_SH4
62
63 config TARGET_R0P7734
64         bool "Support r0p7734"
65         select CPU_SH4A
66
67 config TARGET_R2DPLUS
68         bool "Renesas R2D-PLUS"
69         select CPU_SH4
70
71 config TARGET_R7780MP
72         bool "R7780MP board"
73         select CPU_SH4A
74
75 config TARGET_SH7752EVB
76         bool "SH7752EVB"
77         select CPU_SH4A
78
79 config TARGET_SH7753EVB
80         bool "SH7753EVB"
81         select CPU_SH4
82
83 config TARGET_SH7757LCR
84         bool "SH7757LCR"
85         select CPU_SH4A
86
87 config TARGET_SH7763RDP
88         bool "SH7763RDP"
89         select CPU_SH4
90
91 endchoice
92
93 config SYS_ARCH
94         default "sh"
95
96 config SYS_CPU
97         default "sh3" if CPU_SH3
98         default "sh4" if CPU_SH4
99
100 source "arch/sh/lib/Kconfig"
101
102 source "board/alphaproject/ap_sh4a_4a/Kconfig"
103 source "board/espt/Kconfig"
104 source "board/mpr2/Kconfig"
105 source "board/ms7720se/Kconfig"
106 source "board/ms7722se/Kconfig"
107 source "board/ms7750se/Kconfig"
108 source "board/renesas/MigoR/Kconfig"
109 source "board/renesas/ap325rxa/Kconfig"
110 source "board/renesas/r0p7734/Kconfig"
111 source "board/renesas/r2dplus/Kconfig"
112 source "board/renesas/r7780mp/Kconfig"
113 source "board/renesas/sh7752evb/Kconfig"
114 source "board/renesas/sh7753evb/Kconfig"
115 source "board/renesas/sh7757lcr/Kconfig"
116 source "board/renesas/sh7763rdp/Kconfig"
117 source "board/shmin/Kconfig"
118
119 endmenu