sh: sh3: Remove CPU support
[oweals/u-boot.git] / arch / sh / Kconfig
1 menu "SuperH architecture"
2         depends on SH
3
4 config CPU_SH4
5         bool
6
7 config CPU_SH4A
8         bool
9         select CPU_SH4
10
11 config SH_32BIT
12         bool "32bit mode"
13         depends on CPU_SH4A
14         default n
15         help
16           SH4A has 2 physical memory maps. This use 32bit mode.
17           And this is board specific. Please check your board if you
18           want to use this.
19
20 choice
21         prompt "Target select"
22         optional
23
24 config TARGET_ESPT
25         bool "Data Technology ESPT-GIGA board"
26         select CPU_SH4
27
28 config TARGET_MS7722SE
29         bool "SolutionEngine 7722"
30         select CPU_SH4
31
32 config TARGET_MS7750SE
33         bool "SolutionEngine 7750"
34         select CPU_SH4
35
36 config TARGET_AP_SH4A_4A
37         bool "ALPHAPROJECT AP-SH4A-4A"
38         select CPU_SH4A
39
40 config TARGET_AP325RXA
41         bool "Renesas AP-325RXA"
42         select CPU_SH4
43
44 config TARGET_MIGOR
45         bool "Migo-R"
46         select CPU_SH4
47
48 config TARGET_R0P7734
49         bool "Support r0p7734"
50         select CPU_SH4A
51
52 config TARGET_R2DPLUS
53         bool "Renesas R2D-PLUS"
54         select CPU_SH4
55
56 config TARGET_R7780MP
57         bool "R7780MP board"
58         select CPU_SH4A
59
60 config TARGET_SH7752EVB
61         bool "SH7752EVB"
62         select CPU_SH4A
63
64 config TARGET_SH7753EVB
65         bool "SH7753EVB"
66         select CPU_SH4
67
68 config TARGET_SH7757LCR
69         bool "SH7757LCR"
70         select CPU_SH4A
71
72 config TARGET_SH7763RDP
73         bool "SH7763RDP"
74         select CPU_SH4
75
76 endchoice
77
78 config SYS_ARCH
79         default "sh"
80
81 config SYS_CPU
82         default "sh4" if CPU_SH4
83
84 source "arch/sh/lib/Kconfig"
85
86 source "board/alphaproject/ap_sh4a_4a/Kconfig"
87 source "board/espt/Kconfig"
88 source "board/ms7722se/Kconfig"
89 source "board/ms7750se/Kconfig"
90 source "board/renesas/MigoR/Kconfig"
91 source "board/renesas/ap325rxa/Kconfig"
92 source "board/renesas/r0p7734/Kconfig"
93 source "board/renesas/r2dplus/Kconfig"
94 source "board/renesas/r7780mp/Kconfig"
95 source "board/renesas/sh7752evb/Kconfig"
96 source "board/renesas/sh7753evb/Kconfig"
97 source "board/renesas/sh7757lcr/Kconfig"
98 source "board/renesas/sh7763rdp/Kconfig"
99
100 endmenu