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