26d64b973ba2e716e2d72c6916b3884ff583c281
[project/bcm63xx/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_MS7722SE
25 bool "SolutionEngine 7722"
26 select CPU_SH4
27
28 config TARGET_MS7750SE
29 bool "SolutionEngine 7750"
30 select CPU_SH4
31
32 config TARGET_AP_SH4A_4A
33 bool "ALPHAPROJECT AP-SH4A-4A"
34 select CPU_SH4A
35
36 config TARGET_AP325RXA
37 bool "Renesas AP-325RXA"
38 select CPU_SH4
39
40 config TARGET_MIGOR
41 bool "Migo-R"
42 select CPU_SH4
43
44 config TARGET_R0P7734
45 bool "Support r0p7734"
46 select CPU_SH4A
47
48 config TARGET_R2DPLUS
49 bool "Renesas R2D-PLUS"
50 select CPU_SH4
51
52 config TARGET_R7780MP
53 bool "R7780MP board"
54 select CPU_SH4A
55
56 config TARGET_SH7752EVB
57 bool "SH7752EVB"
58 select CPU_SH4A
59
60 config TARGET_SH7753EVB
61 bool "SH7753EVB"
62 select CPU_SH4
63
64 config TARGET_SH7757LCR
65 bool "SH7757LCR"
66 select CPU_SH4A
67
68 config TARGET_SH7763RDP
69 bool "SH7763RDP"
70 select CPU_SH4
71
72 endchoice
73
74 config SYS_ARCH
75 default "sh"
76
77 config SYS_CPU
78 default "sh4" if CPU_SH4
79
80 source "arch/sh/lib/Kconfig"
81
82 source "board/alphaproject/ap_sh4a_4a/Kconfig"
83 source "board/ms7722se/Kconfig"
84 source "board/ms7750se/Kconfig"
85 source "board/renesas/MigoR/Kconfig"
86 source "board/renesas/ap325rxa/Kconfig"
87 source "board/renesas/r0p7734/Kconfig"
88 source "board/renesas/r2dplus/Kconfig"
89 source "board/renesas/r7780mp/Kconfig"
90 source "board/renesas/sh7752evb/Kconfig"
91 source "board/renesas/sh7753evb/Kconfig"
92 source "board/renesas/sh7757lcr/Kconfig"
93 source "board/renesas/sh7763rdp/Kconfig"
94
95 endmenu