xref: /openbmc/u-boot/arch/arm/mach-rmobile/Kconfig.32 (revision e6027e6f45ff6924ee5b068f3fff628ecaacadc9)
1if RCAR_32
2
3config 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
29choice
30	prompt "Renesas ARM SoCs board select"
31	optional
32
33config TARGET_ARMADILLO_800EVA
34	bool "armadillo 800 eva board"
35
36config TARGET_BLANCHE
37	bool "Blanche board"
38	select DM
39	select DM_SERIAL
40
41config 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	select SUPPORT_SPL
51	select USE_TINY_PRINTF
52	select SPL_TINY_MEMSET
53
54config TARGET_LAGER
55	bool "Lager board"
56	select DM
57	select DM_SERIAL
58	select SUPPORT_SPL
59	select USE_TINY_PRINTF
60	select SPL_TINY_MEMSET
61
62config TARGET_KZM9G
63	bool "KZM9D board"
64
65config TARGET_ALT
66	bool "Alt board"
67	select DM
68	select DM_SERIAL
69
70config TARGET_SILK
71	bool "Silk board"
72	select DM
73	select DM_SERIAL
74	select SUPPORT_SPL
75	select USE_TINY_PRINTF
76	select SPL_TINY_MEMSET
77
78config TARGET_PORTER
79	bool "Porter board"
80	select DM
81	select DM_SERIAL
82	select SUPPORT_SPL
83	select USE_TINY_PRINTF
84	select SPL_TINY_MEMSET
85
86config TARGET_STOUT
87	bool "Stout board"
88	select DM
89	select DM_SERIAL
90	select SUPPORT_SPL
91	select USE_TINY_PRINTF
92	select SPL_TINY_MEMSET
93
94endchoice
95
96config SYS_SOC
97	default "rmobile"
98
99config RMOBILE_EXTRAM_BOOT
100	bool "Enable boot from RAM"
101	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
102	default n
103
104choice
105	prompt "Qos setting primary"
106	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
107	default QOS_PRI_NORMAL
108
109config QOS_PRI_NORMAL
110	bool "Non primary"
111	help
112	   Select normal mode for QoS setting.
113
114config QOS_PRI_MEDIA
115	bool "Media primary"
116	help
117	   Select multimedia primary mode for QoS setting.
118
119config QOS_PRI_GFX
120	bool "GFX primary"
121	help
122	   Select GFX(graphics) primary mode for QoS setting.
123
124endchoice
125
126source "board/atmark-techno/armadillo-800eva/Kconfig"
127source "board/renesas/blanche/Kconfig"
128source "board/renesas/gose/Kconfig"
129source "board/renesas/koelsch/Kconfig"
130source "board/renesas/lager/Kconfig"
131source "board/kmc/kzm9g/Kconfig"
132source "board/renesas/alt/Kconfig"
133source "board/renesas/silk/Kconfig"
134source "board/renesas/porter/Kconfig"
135source "board/renesas/stout/Kconfig"
136
137endif
138