]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sh/Kconfig
Merge branch 'master' of git://git.denx.de/u-boot-usb
[karo-tx-uboot.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
33 config TARGET_RSK7203
34         bool "RSK+ 7203"
35         select CPU_SH2A
36
37 config TARGET_RSK7264
38         bool "RSK2+SH7264"
39         select CPU_SH2A
40
41 config TARGET_RSK7269
42         bool "RSK2+SH7269"
43         select CPU_SH2A
44
45 config TARGET_MPR2
46         bool "Magic Panel Release 2 board"
47         select CPU_SH3
48
49 config TARGET_MS7720SE
50         bool "Support ms7720se"
51         select CPU_SH3
52
53 config TARGET_SHMIN
54         bool "SHMIN"
55         select CPU_SH3
56
57 config TARGET_ESPT
58         bool "Data Technology ESPT-GIGA board"
59         select CPU_SH4
60
61 config TARGET_MS7722SE
62         bool "SolutionEngine 7722"
63         select CPU_SH4
64
65 config TARGET_MS7750SE
66         bool "SolutionEngine 7750"
67         select CPU_SH4
68
69 config TARGET_AP_SH4A_4A
70         bool "ALPHAPROJECT AP-SH4A-4A"
71         select CPU_SH4A
72
73 config TARGET_AP325RXA
74         bool "Renesas AP-325RXA"
75         select CPU_SH4
76
77 config TARGET_ECOVEC
78         bool "EcoVec"
79         select CPU_SH4A
80
81 config TARGET_MIGOR
82         bool "Migo-R"
83         select CPU_SH4
84
85 config TARGET_R0P7734
86         bool "Support r0p7734"
87         select CPU_SH4A
88
89 config TARGET_R2DPLUS
90         bool "Renesas R2D-PLUS"
91         select CPU_SH4
92
93 config TARGET_R7780MP
94         bool "R7780MP board"
95         select CPU_SH4A
96
97 config TARGET_SH7752EVB
98         bool "SH7752EVB"
99         select CPU_SH4A
100
101 config TARGET_SH7753EVB
102         bool "SH7753EVB"
103         select CPU_SH4
104
105 config TARGET_SH7757LCR
106         bool "SH7757LCR"
107         select CPU_SH4A
108
109 config TARGET_SH7763RDP
110         bool "SH7763RDP"
111         select CPU_SH4
112
113 config TARGET_SH7785LCR
114         bool "SH7785LCR"
115         select CPU_SH4A
116
117 endchoice
118
119 config SYS_ARCH
120         default "sh"
121
122 config SYS_CPU
123         default "sh2" if CPU_SH2
124         default "sh3" if CPU_SH3
125         default "sh4" if CPU_SH4
126
127 source "board/alphaproject/ap_sh4a_4a/Kconfig"
128 source "board/espt/Kconfig"
129 source "board/mpr2/Kconfig"
130 source "board/ms7720se/Kconfig"
131 source "board/ms7722se/Kconfig"
132 source "board/ms7750se/Kconfig"
133 source "board/renesas/MigoR/Kconfig"
134 source "board/renesas/ap325rxa/Kconfig"
135 source "board/renesas/ecovec/Kconfig"
136 source "board/renesas/r0p7734/Kconfig"
137 source "board/renesas/r2dplus/Kconfig"
138 source "board/renesas/r7780mp/Kconfig"
139 source "board/renesas/rsk7203/Kconfig"
140 source "board/renesas/rsk7264/Kconfig"
141 source "board/renesas/rsk7269/Kconfig"
142 source "board/renesas/sh7752evb/Kconfig"
143 source "board/renesas/sh7753evb/Kconfig"
144 source "board/renesas/sh7757lcr/Kconfig"
145 source "board/renesas/sh7763rdp/Kconfig"
146 source "board/renesas/sh7785lcr/Kconfig"
147 source "board/shmin/Kconfig"
148
149 endmenu