sh: rsk7269: 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_MPR2
35         bool "Magic Panel Release 2 board"
36         select CPU_SH3
37
38 config TARGET_MS7720SE
39         bool "Support ms7720se"
40         select CPU_SH3
41
42 config TARGET_SHMIN
43         bool "SHMIN"
44         select CPU_SH3
45
46 config TARGET_ESPT
47         bool "Data Technology ESPT-GIGA board"
48         select CPU_SH4
49
50 config TARGET_MS7722SE
51         bool "SolutionEngine 7722"
52         select CPU_SH4
53
54 config TARGET_MS7750SE
55         bool "SolutionEngine 7750"
56         select CPU_SH4
57
58 config TARGET_AP_SH4A_4A
59         bool "ALPHAPROJECT AP-SH4A-4A"
60         select CPU_SH4A
61
62 config TARGET_AP325RXA
63         bool "Renesas AP-325RXA"
64         select CPU_SH4
65
66 config TARGET_MIGOR
67         bool "Migo-R"
68         select CPU_SH4
69
70 config TARGET_R0P7734
71         bool "Support r0p7734"
72         select CPU_SH4A
73
74 config TARGET_R2DPLUS
75         bool "Renesas R2D-PLUS"
76         select CPU_SH4
77
78 config TARGET_R7780MP
79         bool "R7780MP board"
80         select CPU_SH4A
81
82 config TARGET_SH7752EVB
83         bool "SH7752EVB"
84         select CPU_SH4A
85
86 config TARGET_SH7753EVB
87         bool "SH7753EVB"
88         select CPU_SH4
89
90 config TARGET_SH7757LCR
91         bool "SH7757LCR"
92         select CPU_SH4A
93
94 config TARGET_SH7763RDP
95         bool "SH7763RDP"
96         select CPU_SH4
97
98 endchoice
99
100 config SYS_ARCH
101         default "sh"
102
103 config SYS_CPU
104         default "sh2" if CPU_SH2
105         default "sh3" if CPU_SH3
106         default "sh4" if CPU_SH4
107
108 source "arch/sh/lib/Kconfig"
109
110 source "board/alphaproject/ap_sh4a_4a/Kconfig"
111 source "board/espt/Kconfig"
112 source "board/mpr2/Kconfig"
113 source "board/ms7720se/Kconfig"
114 source "board/ms7722se/Kconfig"
115 source "board/ms7750se/Kconfig"
116 source "board/renesas/MigoR/Kconfig"
117 source "board/renesas/ap325rxa/Kconfig"
118 source "board/renesas/r0p7734/Kconfig"
119 source "board/renesas/r2dplus/Kconfig"
120 source "board/renesas/r7780mp/Kconfig"
121 source "board/renesas/sh7752evb/Kconfig"
122 source "board/renesas/sh7753evb/Kconfig"
123 source "board/renesas/sh7757lcr/Kconfig"
124 source "board/renesas/sh7763rdp/Kconfig"
125 source "board/shmin/Kconfig"
126
127 endmenu