• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if RCAR_32
2
3config ARCH_RMOBILE_BOARD_STRING
4	string "Renesas RCar Gen2 board name"
5	default "Board"
6
7config RCAR_GEN2
8	bool "Renesas RCar Gen2"
9	select PHY
10	select PHY_RCAR_GEN2
11
12config R8A7740
13	bool "Renesas SoC R8A7740"
14
15config R8A7790
16	bool "Renesas SoC R8A7790"
17	select RCAR_GEN2
18	select ARM_CORTEX_A15_CVE_2017_5715
19	imply CLK_R8A7790
20	imply PINCTRL_PFC_R8A7790
21
22config R8A7791
23	bool "Renesas SoC R8A7791"
24	select RCAR_GEN2
25	select ARM_CORTEX_A15_CVE_2017_5715
26	imply CLK_R8A7791
27	imply PINCTRL_PFC_R8A7791
28
29config R8A7792
30	bool "Renesas SoC R8A7792"
31	select RCAR_GEN2
32	select ARM_CORTEX_A15_CVE_2017_5715
33	imply CLK_R8A7792
34	imply PINCTRL_PFC_R8A7792
35
36config R8A7793
37	bool "Renesas SoC R8A7793"
38	select RCAR_GEN2
39	select ARM_CORTEX_A15_CVE_2017_5715
40	imply CLK_R8A7793
41	imply PINCTRL_PFC_R8A7793
42
43config R8A7794
44	bool "Renesas SoC R8A7794"
45	select RCAR_GEN2
46	imply CLK_R8A7794
47	imply PINCTRL_PFC_R8A7794
48
49choice
50	prompt "Renesas ARM SoCs board select"
51	optional
52
53config TARGET_ARMADILLO_800EVA
54	bool "armadillo 800 eva board"
55
56config TARGET_BLANCHE
57	bool "Blanche board"
58	select DM
59	select DM_SERIAL
60	imply CMD_DM
61
62config TARGET_GOSE
63	bool "Gose board"
64	select DM
65	select DM_SERIAL
66	select SPL_TINY_MEMSET
67	select SUPPORT_SPL
68	select SPL_USE_TINY_PRINTF
69	imply CMD_DM
70
71config TARGET_KOELSCH
72	bool "Koelsch board"
73	select DM
74	select DM_SERIAL
75	select SPL_TINY_MEMSET
76	select SUPPORT_SPL
77	select SPL_USE_TINY_PRINTF
78	imply CMD_DM
79
80config TARGET_LAGER
81	bool "Lager board"
82	select DM
83	select DM_SERIAL
84	select SPL_TINY_MEMSET
85	select SUPPORT_SPL
86	select SPL_USE_TINY_PRINTF
87	imply CMD_DM
88
89config TARGET_KZM9G
90	bool "KZM9D board"
91
92config TARGET_ALT
93	bool "Alt board"
94	select DM
95	select DM_SERIAL
96	select SPL_TINY_MEMSET
97	select SUPPORT_SPL
98	select SPL_USE_TINY_PRINTF
99	imply CMD_DM
100
101config TARGET_SILK
102	bool "Silk board"
103	select DM
104	select DM_SERIAL
105	select SPL_TINY_MEMSET
106	select SUPPORT_SPL
107	select SPL_USE_TINY_PRINTF
108	imply CMD_DM
109
110config TARGET_PORTER
111	bool "Porter board"
112	select DM
113	select DM_SERIAL
114	select SPL_TINY_MEMSET
115	select SUPPORT_SPL
116	select SPL_USE_TINY_PRINTF
117	imply CMD_DM
118
119config TARGET_STOUT
120	bool "Stout board"
121	select DM
122	select DM_SERIAL
123	select SPL_TINY_MEMSET
124	select SUPPORT_SPL
125	select SPL_USE_TINY_PRINTF
126	imply CMD_DM
127
128endchoice
129
130config SYS_SOC
131	default "rmobile"
132
133config RMOBILE_EXTRAM_BOOT
134	bool "Enable boot from RAM"
135	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
136	default n
137
138choice
139	prompt "Qos setting primary"
140	depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
141	default QOS_PRI_NORMAL
142
143config QOS_PRI_NORMAL
144	bool "Non primary"
145	help
146	   Select normal mode for QoS setting.
147
148config QOS_PRI_MEDIA
149	bool "Media primary"
150	help
151	   Select multimedia primary mode for QoS setting.
152
153config QOS_PRI_GFX
154	bool "GFX primary"
155	help
156	   Select GFX(graphics) primary mode for QoS setting.
157
158endchoice
159
160source "board/atmark-techno/armadillo-800eva/Kconfig"
161source "board/renesas/blanche/Kconfig"
162source "board/renesas/gose/Kconfig"
163source "board/renesas/koelsch/Kconfig"
164source "board/renesas/lager/Kconfig"
165source "board/kmc/kzm9g/Kconfig"
166source "board/renesas/alt/Kconfig"
167source "board/renesas/silk/Kconfig"
168source "board/renesas/porter/Kconfig"
169source "board/renesas/stout/Kconfig"
170
171endif
172