1if 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
10config TARGET_BLANCHE
11	bool "Blanche board"
12	select DM
13	select DM_SERIAL
14
15config 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"
60	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
61	default n
62
63choice
64	prompt "Qos setting primary"
65	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
66	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"
86source "board/renesas/blanche/Kconfig"
87source "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
97