1if RMOBILE
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_GOSE
11	bool "Gose board"
12	select DM
13	select DM_SERIAL
14
15config TARGET_KOELSCH
16	bool "Koelsch board"
17	select DM
18	select DM_SERIAL
19
20config TARGET_LAGER
21	bool "Lager board"
22	select DM
23	select DM_SERIAL
24
25config TARGET_KZM9G
26	bool "KZM9D board"
27
28config TARGET_ALT
29	bool "Alt board"
30	select DM
31	select DM_SERIAL
32
33config TARGET_SILK
34	bool "Silk board"
35	select DM
36	select DM_SERIAL
37
38config TARGET_PORTER
39	bool "Porter board"
40	select DM
41	select DM_SERIAL
42
43endchoice
44
45config SYS_SOC
46	default "rmobile"
47
48config RMOBILE_EXTRAM_BOOT
49	bool "Enable boot from RAM"
50	depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK
51	default n
52
53choice
54	prompt "Qos setting primary"
55	depends on TARGET_ALT || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
56	default QOS_PRI_NORMAL
57
58config QOS_PRI_NORMAL
59	bool "Non primary"
60	help
61	   Select normal mode for QoS setting.
62
63config QOS_PRI_MEDIA
64	bool "Media primary"
65	help
66	   Select multimedia primary mode for QoS setting.
67
68config QOS_PRI_GFX
69	bool "GFX primary"
70	help
71	   Select GFX(graphics) primary mode for QoS setting.
72
73endchoice
74
75source "board/atmark-techno/armadillo-800eva/Kconfig"
76source "board/renesas/gose/Kconfig"
77source "board/renesas/koelsch/Kconfig"
78source "board/renesas/lager/Kconfig"
79source "board/kmc/kzm9g/Kconfig"
80source "board/renesas/alt/Kconfig"
81source "board/renesas/silk/Kconfig"
82source "board/renesas/porter/Kconfig"
83
84endif
85