blob: a8835f6571cefeb2430430b5324c37828fca5140 [file] [log] [blame]
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09001if RCAR_32
2
Marek Vasutb606e1b2018-01-07 19:37:06 +01003config 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
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090029choice
Chris Brandtfc856052017-11-03 10:36:12 -050030 prompt "Renesas ARM SoCs board select"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090031 optional
32
33config TARGET_ARMADILLO_800EVA
34 bool "armadillo 800 eva board"
35
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090036config TARGET_BLANCHE
37 bool "Blanche board"
38 select DM
39 select DM_SERIAL
40
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090041config 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
Marek Vasut7d0299c2018-04-17 14:13:11 +020050 select SUPPORT_SPL
51 select USE_TINY_PRINTF
52 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090053
54config TARGET_LAGER
55 bool "Lager board"
56 select DM
57 select DM_SERIAL
58
59config TARGET_KZM9G
60 bool "KZM9D board"
61
62config TARGET_ALT
63 bool "Alt board"
64 select DM
65 select DM_SERIAL
66
67config TARGET_SILK
68 bool "Silk board"
69 select DM
70 select DM_SERIAL
Marek Vasutf7aa3cd2018-04-21 16:19:56 +020071 select SUPPORT_SPL
72 select USE_TINY_PRINTF
73 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090074
75config TARGET_PORTER
76 bool "Porter board"
77 select DM
78 select DM_SERIAL
Marek Vasut7ee37d02018-02-16 01:33:27 +010079 select SUPPORT_SPL
Marek Vasut98a100e2018-04-13 15:51:13 +020080 select USE_TINY_PRINTF
Marek Vasut0e592d02018-04-13 23:13:00 +020081 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090082
83config TARGET_STOUT
84 bool "Stout board"
85 select DM
86 select DM_SERIAL
Marek Vasutec7113f2018-04-12 15:23:46 +020087 select SUPPORT_SPL
Marek Vasut98a100e2018-04-13 15:51:13 +020088 select USE_TINY_PRINTF
Marek Vasut0e592d02018-04-13 23:13:00 +020089 select SPL_TINY_MEMSET
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090090
91endchoice
92
93config SYS_SOC
94 default "rmobile"
95
96config RMOBILE_EXTRAM_BOOT
97 bool "Enable boot from RAM"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090098 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090099 default n
100
101choice
102 prompt "Qos setting primary"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900103 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900104 default QOS_PRI_NORMAL
105
106config QOS_PRI_NORMAL
107 bool "Non primary"
108 help
109 Select normal mode for QoS setting.
110
111config QOS_PRI_MEDIA
112 bool "Media primary"
113 help
114 Select multimedia primary mode for QoS setting.
115
116config QOS_PRI_GFX
117 bool "GFX primary"
118 help
119 Select GFX(graphics) primary mode for QoS setting.
120
121endchoice
122
123source "board/atmark-techno/armadillo-800eva/Kconfig"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900124source "board/renesas/blanche/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900125source "board/renesas/gose/Kconfig"
126source "board/renesas/koelsch/Kconfig"
127source "board/renesas/lager/Kconfig"
128source "board/kmc/kzm9g/Kconfig"
129source "board/renesas/alt/Kconfig"
130source "board/renesas/silk/Kconfig"
131source "board/renesas/porter/Kconfig"
132source "board/renesas/stout/Kconfig"
133
134endif