]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/sh/Kconfig
am33xx: Add a function to query MPU voltage in uV
[people/ms/u-boot.git] / arch / sh / Kconfig
CommitLineData
dd84058d
MY
1menu "SuperH architecture"
2 depends on SH
3
7d236662
MY
4config CPU_SH2
5 bool
6
7config CPU_SH2A
8 bool
9 select CPU_SH2
10
11config CPU_SH3
12 bool
13
14config CPU_SH4
15 bool
16
17config CPU_SH4A
18 bool
19 select CPU_SH4
20
570dd7f4
NI
21config 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
dd84058d
MY
30choice
31 prompt "Target select"
a26cd049 32 optional
dd84058d
MY
33
34config TARGET_RSK7203
0e29429f 35 bool "RSK+ 7203"
7d236662 36 select CPU_SH2A
dd84058d
MY
37
38config TARGET_RSK7264
0e29429f 39 bool "RSK2+SH7264"
7d236662 40 select CPU_SH2A
dd84058d
MY
41
42config TARGET_RSK7269
0e29429f 43 bool "RSK2+SH7269"
7d236662 44 select CPU_SH2A
dd84058d
MY
45
46config TARGET_MPR2
0e29429f 47 bool "Magic Panel Release 2 board"
7d236662 48 select CPU_SH3
dd84058d
MY
49
50config TARGET_MS7720SE
51 bool "Support ms7720se"
7d236662 52 select CPU_SH3
dd84058d
MY
53
54config TARGET_SHMIN
0e29429f 55 bool "SHMIN"
7d236662 56 select CPU_SH3
dd84058d
MY
57
58config TARGET_ESPT
0e29429f 59 bool "Data Technology ESPT-GIGA board"
7d236662 60 select CPU_SH4
dd84058d
MY
61
62config TARGET_MS7722SE
0e29429f 63 bool "SolutionEngine 7722"
7d236662 64 select CPU_SH4
dd84058d
MY
65
66config TARGET_MS7750SE
0e29429f 67 bool "SolutionEngine 7750"
7d236662 68 select CPU_SH4
dd84058d
MY
69
70config TARGET_AP_SH4A_4A
0e29429f 71 bool "ALPHAPROJECT AP-SH4A-4A"
f97eeba4 72 select CPU_SH4A
dd84058d
MY
73
74config TARGET_AP325RXA
0e29429f 75 bool "Renesas AP-325RXA"
7d236662 76 select CPU_SH4
dd84058d
MY
77
78config TARGET_ECOVEC
0e29429f 79 bool "EcoVec"
f97eeba4 80 select CPU_SH4A
dd84058d
MY
81
82config TARGET_MIGOR
0e29429f 83 bool "Migo-R"
7d236662 84 select CPU_SH4
dd84058d
MY
85
86config TARGET_R0P7734
87 bool "Support r0p7734"
f97eeba4 88 select CPU_SH4A
dd84058d
MY
89
90config TARGET_R2DPLUS
0e29429f 91 bool "Renesas R2D-PLUS"
7d236662 92 select CPU_SH4
dd84058d
MY
93
94config TARGET_R7780MP
0e29429f 95 bool "R7780MP board"
f97eeba4 96 select CPU_SH4A
dd84058d
MY
97
98config TARGET_SH7752EVB
0e29429f 99 bool "SH7752EVB"
f97eeba4 100 select CPU_SH4A
dd84058d
MY
101
102config TARGET_SH7753EVB
0e29429f 103 bool "SH7753EVB"
7d236662 104 select CPU_SH4
dd84058d
MY
105
106config TARGET_SH7757LCR
0e29429f 107 bool "SH7757LCR"
f97eeba4 108 select CPU_SH4A
dd84058d
MY
109
110config TARGET_SH7763RDP
0e29429f 111 bool "SH7763RDP"
7d236662 112 select CPU_SH4
dd84058d
MY
113
114config TARGET_SH7785LCR
0e29429f 115 bool "SH7785LCR"
f97eeba4 116 select CPU_SH4A
dd84058d
MY
117
118endchoice
119
887363b5
MY
120config SYS_ARCH
121 default "sh"
122
123config SYS_CPU
124 default "sh2" if CPU_SH2
125 default "sh3" if CPU_SH3
126 default "sh4" if CPU_SH4
127
2a728f3a
SG
128source "arch/sh/lib/Kconfig"
129
dd84058d
MY
130source "board/alphaproject/ap_sh4a_4a/Kconfig"
131source "board/espt/Kconfig"
132source "board/mpr2/Kconfig"
133source "board/ms7720se/Kconfig"
134source "board/ms7722se/Kconfig"
135source "board/ms7750se/Kconfig"
136source "board/renesas/MigoR/Kconfig"
137source "board/renesas/ap325rxa/Kconfig"
138source "board/renesas/ecovec/Kconfig"
139source "board/renesas/r0p7734/Kconfig"
140source "board/renesas/r2dplus/Kconfig"
141source "board/renesas/r7780mp/Kconfig"
142source "board/renesas/rsk7203/Kconfig"
143source "board/renesas/rsk7264/Kconfig"
144source "board/renesas/rsk7269/Kconfig"
145source "board/renesas/sh7752evb/Kconfig"
146source "board/renesas/sh7753evb/Kconfig"
147source "board/renesas/sh7757lcr/Kconfig"
148source "board/renesas/sh7763rdp/Kconfig"
149source "board/renesas/sh7785lcr/Kconfig"
150source "board/shmin/Kconfig"
151
152endmenu