blob: 1ceb329f1f716a8ee4ccfc66a9303d50fc2163c6 [file] [log] [blame]
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09001if RCAR_32
2
Marek Vasut83a64be2018-05-02 11:42:22 +02003config ARCH_RMOBILE_BOARD_STRING
4 string "Renesas RCar Gen2 board name"
5 default "Board"
6
Marek Vasutb606e1b2018-01-07 19:37:06 +01007config RCAR_GEN2
8 bool "Renesas RCar Gen2"
9
10config R8A7740
11 bool "Renesas SoC R8A7740"
12
13config R8A7790
14 bool "Renesas SoC R8A7790"
15 select RCAR_GEN2
16
17config R8A7791
18 bool "Renesas SoC R8A7791"
19 select RCAR_GEN2
20
21config R8A7792
22 bool "Renesas SoC R8A7792"
23 select RCAR_GEN2
24
25config R8A7793
26 bool "Renesas SoC R8A7793"
27 select RCAR_GEN2
28
29config R8A7794
30 bool "Renesas SoC R8A7794"
31 select RCAR_GEN2
32
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090033choice
Chris Brandtfc856052017-11-03 10:36:12 -050034 prompt "Renesas ARM SoCs board select"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090035 optional
36
37config TARGET_ARMADILLO_800EVA
38 bool "armadillo 800 eva board"
39
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090040config TARGET_BLANCHE
41 bool "Blanche board"
42 select DM
43 select DM_SERIAL
44
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090045config TARGET_GOSE
46 bool "Gose board"
47 select DM
48 select DM_SERIAL
Marek Vasut49aefe32018-04-23 20:24:10 +020049 select SUPPORT_SPL
50 select USE_TINY_PRINTF
51 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090052
53config TARGET_KOELSCH
54 bool "Koelsch board"
55 select DM
56 select DM_SERIAL
Marek Vasut7d0299c2018-04-17 14:13:11 +020057 select SUPPORT_SPL
58 select USE_TINY_PRINTF
59 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090060
61config TARGET_LAGER
62 bool "Lager board"
63 select DM
64 select DM_SERIAL
Marek Vasute6027e62018-04-23 20:24:06 +020065 select SUPPORT_SPL
66 select USE_TINY_PRINTF
67 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090068
69config TARGET_KZM9G
70 bool "KZM9D board"
71
72config TARGET_ALT
73 bool "Alt board"
74 select DM
75 select DM_SERIAL
Marek Vasutbb6d2ff2018-04-23 20:24:16 +020076 select SUPPORT_SPL
77 select USE_TINY_PRINTF
78 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090079
80config TARGET_SILK
81 bool "Silk board"
82 select DM
83 select DM_SERIAL
Marek Vasutf7aa3cd2018-04-21 16:19:56 +020084 select SUPPORT_SPL
85 select USE_TINY_PRINTF
86 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090087
88config TARGET_PORTER
89 bool "Porter board"
90 select DM
91 select DM_SERIAL
Marek Vasut7ee37d02018-02-16 01:33:27 +010092 select SUPPORT_SPL
Marek Vasut98a100e2018-04-13 15:51:13 +020093 select USE_TINY_PRINTF
Marek Vasut0e592d02018-04-13 23:13:00 +020094 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090095
96config TARGET_STOUT
97 bool "Stout board"
98 select DM
99 select DM_SERIAL
Marek Vasutec7113f2018-04-12 15:23:46 +0200100 select SUPPORT_SPL
Marek Vasut98a100e2018-04-13 15:51:13 +0200101 select USE_TINY_PRINTF
Marek Vasut0e592d02018-04-13 23:13:00 +0200102 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900103
104endchoice
105
106config SYS_SOC
107 default "rmobile"
108
109config RMOBILE_EXTRAM_BOOT
110 bool "Enable boot from RAM"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900111 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900112 default n
113
114choice
115 prompt "Qos setting primary"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900116 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900117 default QOS_PRI_NORMAL
118
119config QOS_PRI_NORMAL
120 bool "Non primary"
121 help
122 Select normal mode for QoS setting.
123
124config QOS_PRI_MEDIA
125 bool "Media primary"
126 help
127 Select multimedia primary mode for QoS setting.
128
129config QOS_PRI_GFX
130 bool "GFX primary"
131 help
132 Select GFX(graphics) primary mode for QoS setting.
133
134endchoice
135
136source "board/atmark-techno/armadillo-800eva/Kconfig"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900137source "board/renesas/blanche/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900138source "board/renesas/gose/Kconfig"
139source "board/renesas/koelsch/Kconfig"
140source "board/renesas/lager/Kconfig"
141source "board/kmc/kzm9g/Kconfig"
142source "board/renesas/alt/Kconfig"
143source "board/renesas/silk/Kconfig"
144source "board/renesas/porter/Kconfig"
145source "board/renesas/stout/Kconfig"
146
147endif