blob: 89588aaf729f172f924e18607719042d474bdb79 [file] [log] [blame]
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09001if RCAR_32
2
3choice
4 prompt "Renesus ARM SoCs board select"
5 optional
6
7config TARGET_ARMADILLO_800EVA
8 bool "armadillo 800 eva board"
9
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090010config TARGET_BLANCHE
11 bool "Blanche board"
12 select DM
13 select DM_SERIAL
14
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090015config TARGET_GOSE
16 bool "Gose board"
17 select DM
18 select DM_SERIAL
19
20config TARGET_KOELSCH
21 bool "Koelsch board"
22 select DM
23 select DM_SERIAL
24
25config TARGET_LAGER
26 bool "Lager board"
27 select DM
28 select DM_SERIAL
29
30config TARGET_KZM9G
31 bool "KZM9D board"
32
33config TARGET_ALT
34 bool "Alt board"
35 select DM
36 select DM_SERIAL
37
38config TARGET_SILK
39 bool "Silk board"
40 select DM
41 select DM_SERIAL
42
43config TARGET_PORTER
44 bool "Porter board"
45 select DM
46 select DM_SERIAL
47
48config TARGET_STOUT
49 bool "Stout board"
50 select DM
51 select DM_SERIAL
52
53endchoice
54
55config SYS_SOC
56 default "rmobile"
57
58config RMOBILE_EXTRAM_BOOT
59 bool "Enable boot from RAM"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090060 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090061 default n
62
63choice
64 prompt "Qos setting primary"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090065 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090066 default QOS_PRI_NORMAL
67
68config QOS_PRI_NORMAL
69 bool "Non primary"
70 help
71 Select normal mode for QoS setting.
72
73config QOS_PRI_MEDIA
74 bool "Media primary"
75 help
76 Select multimedia primary mode for QoS setting.
77
78config QOS_PRI_GFX
79 bool "GFX primary"
80 help
81 Select GFX(graphics) primary mode for QoS setting.
82
83endchoice
84
85source "board/atmark-techno/armadillo-800eva/Kconfig"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090086source "board/renesas/blanche/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090087source "board/renesas/gose/Kconfig"
88source "board/renesas/koelsch/Kconfig"
89source "board/renesas/lager/Kconfig"
90source "board/kmc/kzm9g/Kconfig"
91source "board/renesas/alt/Kconfig"
92source "board/renesas/silk/Kconfig"
93source "board/renesas/porter/Kconfig"
94source "board/renesas/stout/Kconfig"
95
96endif