blob: 97260dfefb98a35c5aedb47a18a5a8591b29d64f [file] [log] [blame]
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09001if RCAR_32
2
Marek Vasutb606e1b2018-01-07 19:37:06 +01003config RCAR_GEN2
4 bool "Renesas RCar Gen2"
5
6config R8A7740
7 bool "Renesas SoC R8A7740"
8
9config R8A7790
10 bool "Renesas SoC R8A7790"
11 select RCAR_GEN2
12
13config R8A7791
14 bool "Renesas SoC R8A7791"
15 select RCAR_GEN2
16
17config R8A7792
18 bool "Renesas SoC R8A7792"
19 select RCAR_GEN2
20
21config R8A7793
22 bool "Renesas SoC R8A7793"
23 select RCAR_GEN2
24
25config R8A7794
26 bool "Renesas SoC R8A7794"
27 select RCAR_GEN2
28
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090029choice
Chris Brandtfc856052017-11-03 10:36:12 -050030 prompt "Renesas ARM SoCs board select"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090031 optional
32
33config TARGET_ARMADILLO_800EVA
34 bool "armadillo 800 eva board"
35
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090036config TARGET_BLANCHE
37 bool "Blanche board"
38 select DM
39 select DM_SERIAL
40
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090041config TARGET_GOSE
42 bool "Gose board"
43 select DM
44 select DM_SERIAL
45
46config TARGET_KOELSCH
47 bool "Koelsch board"
48 select DM
49 select DM_SERIAL
50
51config TARGET_LAGER
52 bool "Lager board"
53 select DM
54 select DM_SERIAL
55
56config TARGET_KZM9G
57 bool "KZM9D board"
58
59config TARGET_ALT
60 bool "Alt board"
61 select DM
62 select DM_SERIAL
63
64config TARGET_SILK
65 bool "Silk board"
66 select DM
67 select DM_SERIAL
68
69config TARGET_PORTER
70 bool "Porter board"
71 select DM
72 select DM_SERIAL
Marek Vasut9a5483e2018-04-03 12:52:48 +020073 select SUPPORT_TPL
Marek Vasut7ee37d02018-02-16 01:33:27 +010074 select SUPPORT_SPL
75 select SPL_DM if SPL
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090076
77config TARGET_STOUT
78 bool "Stout board"
79 select DM
80 select DM_SERIAL
81
82endchoice
83
84config SYS_SOC
85 default "rmobile"
86
87config RMOBILE_EXTRAM_BOOT
88 bool "Enable boot from RAM"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090089 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090090 default n
91
92choice
93 prompt "Qos setting primary"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090094 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090095 default QOS_PRI_NORMAL
96
97config QOS_PRI_NORMAL
98 bool "Non primary"
99 help
100 Select normal mode for QoS setting.
101
102config QOS_PRI_MEDIA
103 bool "Media primary"
104 help
105 Select multimedia primary mode for QoS setting.
106
107config QOS_PRI_GFX
108 bool "GFX primary"
109 help
110 Select GFX(graphics) primary mode for QoS setting.
111
112endchoice
113
114source "board/atmark-techno/armadillo-800eva/Kconfig"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900115source "board/renesas/blanche/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900116source "board/renesas/gose/Kconfig"
117source "board/renesas/koelsch/Kconfig"
118source "board/renesas/lager/Kconfig"
119source "board/kmc/kzm9g/Kconfig"
120source "board/renesas/alt/Kconfig"
121source "board/renesas/silk/Kconfig"
122source "board/renesas/porter/Kconfig"
123source "board/renesas/stout/Kconfig"
124
125endif