xref: /openbmc/u-boot/arch/sh/Kconfig (revision 887363b5)
1menu "SuperH architecture"
2	depends on SH
3
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
21choice
22	prompt "Target select"
23
24config TARGET_RSK7203
25	bool "RSK+ 7203"
26	select CPU_SH2A
27
28config TARGET_RSK7264
29	bool "RSK2+SH7264"
30	select CPU_SH2A
31
32config TARGET_RSK7269
33	bool "RSK2+SH7269"
34	select CPU_SH2A
35
36config TARGET_MPR2
37	bool "Magic Panel Release 2 board"
38	select CPU_SH3
39
40config TARGET_MS7720SE
41	bool "Support ms7720se"
42	select CPU_SH3
43
44config TARGET_SHMIN
45	bool "SHMIN"
46	select CPU_SH3
47
48config TARGET_ESPT
49	bool "Data Technology ESPT-GIGA board"
50	select CPU_SH4
51
52config TARGET_MS7722SE
53	bool "SolutionEngine 7722"
54	select CPU_SH4
55
56config TARGET_MS7750SE
57	bool "SolutionEngine 7750"
58	select CPU_SH4
59
60config TARGET_AP_SH4A_4A
61	bool "ALPHAPROJECT AP-SH4A-4A"
62	select CPU_SH4
63
64config TARGET_AP325RXA
65	bool "Renesas AP-325RXA"
66	select CPU_SH4
67
68config TARGET_ECOVEC
69	bool "EcoVec"
70	select CPU_SH4
71
72config TARGET_MIGOR
73	bool "Migo-R"
74	select CPU_SH4
75
76config TARGET_R0P7734
77	bool "Support r0p7734"
78	select CPU_SH4
79
80config TARGET_R2DPLUS
81	bool "Renesas R2D-PLUS"
82	select CPU_SH4
83
84config TARGET_R7780MP
85	bool "R7780MP board"
86	select CPU_SH4
87
88config TARGET_SH7752EVB
89	bool "SH7752EVB"
90	select CPU_SH4
91
92config TARGET_SH7753EVB
93	bool "SH7753EVB"
94	select CPU_SH4
95
96config TARGET_SH7757LCR
97	bool "SH7757LCR"
98	select CPU_SH4
99
100config TARGET_SH7763RDP
101	bool "SH7763RDP"
102	select CPU_SH4
103
104config TARGET_SH7785LCR
105	bool "SH7785LCR"
106	select CPU_SH4
107
108endchoice
109
110config SYS_ARCH
111	default "sh"
112
113config SYS_CPU
114	default "sh2" if CPU_SH2
115	default "sh3" if CPU_SH3
116	default "sh4" if CPU_SH4
117
118source "board/alphaproject/ap_sh4a_4a/Kconfig"
119source "board/espt/Kconfig"
120source "board/mpr2/Kconfig"
121source "board/ms7720se/Kconfig"
122source "board/ms7722se/Kconfig"
123source "board/ms7750se/Kconfig"
124source "board/renesas/MigoR/Kconfig"
125source "board/renesas/ap325rxa/Kconfig"
126source "board/renesas/ecovec/Kconfig"
127source "board/renesas/r0p7734/Kconfig"
128source "board/renesas/r2dplus/Kconfig"
129source "board/renesas/r7780mp/Kconfig"
130source "board/renesas/rsk7203/Kconfig"
131source "board/renesas/rsk7264/Kconfig"
132source "board/renesas/rsk7269/Kconfig"
133source "board/renesas/sh7752evb/Kconfig"
134source "board/renesas/sh7753evb/Kconfig"
135source "board/renesas/sh7757lcr/Kconfig"
136source "board/renesas/sh7763rdp/Kconfig"
137source "board/renesas/sh7785lcr/Kconfig"
138source "board/shmin/Kconfig"
139
140endmenu
141