Kconfig 2.3 KB
Newer Older
1 2 3 4 5 6
menu "SuperH architecture"
	depends on SH

config SYS_ARCH
	default "sh"

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
config CPU_SH2
	bool

config CPU_SH2A
	bool
	select CPU_SH2

config CPU_SH3
	bool

config CPU_SH4
	bool

config CPU_SH4A
	bool
	select CPU_SH4

24 25 26 27
choice
	prompt "Target select"

config TARGET_RSK7203
28
	bool "RSK+ 7203"
29
	select CPU_SH2A
30 31

config TARGET_RSK7264
32
	bool "RSK2+SH7264"
33
	select CPU_SH2A
34 35

config TARGET_RSK7269
36
	bool "RSK2+SH7269"
37
	select CPU_SH2A
38 39

config TARGET_MPR2
40
	bool "Magic Panel Release 2 board"
41
	select CPU_SH3
42 43 44

config TARGET_MS7720SE
	bool "Support ms7720se"
45
	select CPU_SH3
46 47

config TARGET_SHMIN
48
	bool "SHMIN"
49
	select CPU_SH3
50 51

config TARGET_ESPT
52
	bool "Data Technology ESPT-GIGA board"
53
	select CPU_SH4
54 55

config TARGET_MS7722SE
56
	bool "SolutionEngine 7722"
57
	select CPU_SH4
58 59

config TARGET_MS7750SE
60
	bool "SolutionEngine 7750"
61
	select CPU_SH4
62 63

config TARGET_AP_SH4A_4A
64
	bool "ALPHAPROJECT AP-SH4A-4A"
65
	select CPU_SH4
66 67

config TARGET_AP325RXA
68
	bool "Renesas AP-325RXA"
69
	select CPU_SH4
70 71

config TARGET_ECOVEC
72
	bool "EcoVec"
73
	select CPU_SH4
74 75

config TARGET_MIGOR
76
	bool "Migo-R"
77
	select CPU_SH4
78 79 80

config TARGET_R0P7734
	bool "Support r0p7734"
81
	select CPU_SH4
82 83

config TARGET_R2DPLUS
84
	bool "Renesas R2D-PLUS"
85
	select CPU_SH4
86 87

config TARGET_R7780MP
88
	bool "R7780MP board"
89
	select CPU_SH4
90 91

config TARGET_SH7752EVB
92
	bool "SH7752EVB"
93
	select CPU_SH4
94 95

config TARGET_SH7753EVB
96
	bool "SH7753EVB"
97
	select CPU_SH4
98 99

config TARGET_SH7757LCR
100
	bool "SH7757LCR"
101
	select CPU_SH4
102 103

config TARGET_SH7763RDP
104
	bool "SH7763RDP"
105
	select CPU_SH4
106 107

config TARGET_SH7785LCR
108
	bool "SH7785LCR"
109
	select CPU_SH4
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

endchoice

source "board/alphaproject/ap_sh4a_4a/Kconfig"
source "board/espt/Kconfig"
source "board/mpr2/Kconfig"
source "board/ms7720se/Kconfig"
source "board/ms7722se/Kconfig"
source "board/ms7750se/Kconfig"
source "board/renesas/MigoR/Kconfig"
source "board/renesas/ap325rxa/Kconfig"
source "board/renesas/ecovec/Kconfig"
source "board/renesas/r0p7734/Kconfig"
source "board/renesas/r2dplus/Kconfig"
source "board/renesas/r7780mp/Kconfig"
source "board/renesas/rsk7203/Kconfig"
source "board/renesas/rsk7264/Kconfig"
source "board/renesas/rsk7269/Kconfig"
source "board/renesas/sh7752evb/Kconfig"
source "board/renesas/sh7753evb/Kconfig"
source "board/renesas/sh7757lcr/Kconfig"
source "board/renesas/sh7763rdp/Kconfig"
source "board/renesas/sh7785lcr/Kconfig"
source "board/shmin/Kconfig"

endmenu