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