blob: 31badc5a47dd672723724c8680e1acf29094de47 [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"
Marek Vasut4f109892018-08-08 15:06:03 +02009 select PHY
10 select PHY_RCAR_GEN2
Tom Rini1c34f782022-11-19 18:45:32 -050011 select TMU_TIMER
Marek Vasutb606e1b2018-01-07 19:37:06 +010012
13config R8A7740
14 bool "Renesas SoC R8A7740"
15
16config R8A7790
17 bool "Renesas SoC R8A7790"
18 select RCAR_GEN2
Marek Vasuta6759e32018-06-30 08:07:41 +020019 select ARM_CORTEX_A15_CVE_2017_5715
Marek Vasut46467ce2019-02-18 13:20:48 +010020 imply CLK_R8A7790
Marek Vasut669367f2019-02-18 13:22:03 +010021 imply PINCTRL_PFC_R8A7790
Marek Vasutb606e1b2018-01-07 19:37:06 +010022
23config R8A7791
24 bool "Renesas SoC R8A7791"
25 select RCAR_GEN2
Marek Vasuta6759e32018-06-30 08:07:41 +020026 select ARM_CORTEX_A15_CVE_2017_5715
Marek Vasut46467ce2019-02-18 13:20:48 +010027 imply CLK_R8A7791
Marek Vasut669367f2019-02-18 13:22:03 +010028 imply PINCTRL_PFC_R8A7791
Marek Vasutb606e1b2018-01-07 19:37:06 +010029
30config R8A7792
31 bool "Renesas SoC R8A7792"
32 select RCAR_GEN2
Marek Vasuta6759e32018-06-30 08:07:41 +020033 select ARM_CORTEX_A15_CVE_2017_5715
Marek Vasut46467ce2019-02-18 13:20:48 +010034 imply CLK_R8A7792
Marek Vasut669367f2019-02-18 13:22:03 +010035 imply PINCTRL_PFC_R8A7792
Marek Vasutb606e1b2018-01-07 19:37:06 +010036
37config R8A7793
38 bool "Renesas SoC R8A7793"
39 select RCAR_GEN2
Marek Vasuta6759e32018-06-30 08:07:41 +020040 select ARM_CORTEX_A15_CVE_2017_5715
Marek Vasut46467ce2019-02-18 13:20:48 +010041 imply CLK_R8A7793
Marek Vasut669367f2019-02-18 13:22:03 +010042 imply PINCTRL_PFC_R8A7793
Marek Vasutb606e1b2018-01-07 19:37:06 +010043
44config R8A7794
45 bool "Renesas SoC R8A7794"
46 select RCAR_GEN2
Marek Vasut46467ce2019-02-18 13:20:48 +010047 imply CLK_R8A7794
Marek Vasut669367f2019-02-18 13:22:03 +010048 imply PINCTRL_PFC_R8A7794
Marek Vasutb606e1b2018-01-07 19:37:06 +010049
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090050choice
Chris Brandtfc856052017-11-03 10:36:12 -050051 prompt "Renesas ARM SoCs board select"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090052 optional
53
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090054config TARGET_BLANCHE
55 bool "Blanche board"
56 select DM
57 select DM_SERIAL
Michal Simek08a00cb2018-07-23 15:55:14 +020058 imply CMD_DM
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +090059
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090060config TARGET_GOSE
61 bool "Gose board"
62 select DM
63 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +020064 select SPL_TINY_MEMSET
Marek Vasut49aefe32018-04-23 20:24:10 +020065 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -060066 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +020067 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090068
69config TARGET_KOELSCH
70 bool "Koelsch board"
71 select DM
72 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +020073 select SPL_TINY_MEMSET
Marek Vasut7d0299c2018-04-17 14:13:11 +020074 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -060075 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +020076 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090077
78config TARGET_LAGER
79 bool "Lager board"
80 select DM
81 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +020082 select SPL_TINY_MEMSET
Marek Vasute6027e62018-04-23 20:24:06 +020083 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -060084 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +020085 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090086
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090087config TARGET_ALT
88 bool "Alt board"
89 select DM
90 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +020091 select SPL_TINY_MEMSET
Marek Vasutbb6d2ff2018-04-23 20:24:16 +020092 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -060093 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +020094 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090095
96config TARGET_SILK
97 bool "Silk board"
98 select DM
99 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +0200100 select SPL_TINY_MEMSET
Marek Vasutf7aa3cd2018-04-21 16:19:56 +0200101 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -0600102 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +0200103 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900104
105config TARGET_PORTER
106 bool "Porter board"
107 select DM
108 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +0200109 select SPL_TINY_MEMSET
Marek Vasut7ee37d02018-02-16 01:33:27 +0100110 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -0600111 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +0200112 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900113
114config TARGET_STOUT
115 bool "Stout board"
116 select DM
117 select DM_SERIAL
Michal Simek5ed063d2018-07-23 15:55:13 +0200118 select SPL_TINY_MEMSET
Marek Vasutec7113f2018-04-12 15:23:46 +0200119 select SUPPORT_SPL
Simon Glass27084c02019-09-25 08:56:27 -0600120 select SPL_USE_TINY_PRINTF
Michal Simek08a00cb2018-07-23 15:55:14 +0200121 imply CMD_DM
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900122
123endchoice
124
Tom Rini1c34f782022-11-19 18:45:32 -0500125config TMU_TIMER
126 bool
127
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900128config SYS_SOC
129 default "rmobile"
130
131config RMOBILE_EXTRAM_BOOT
132 bool "Enable boot from RAM"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900133 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900134
135choice
136 prompt "Qos setting primary"
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900137 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900138 default QOS_PRI_NORMAL
139
140config QOS_PRI_NORMAL
141 bool "Non primary"
142 help
143 Select normal mode for QoS setting.
144
145config QOS_PRI_MEDIA
146 bool "Media primary"
147 help
148 Select multimedia primary mode for QoS setting.
149
150config QOS_PRI_GFX
151 bool "GFX primary"
152 help
153 Select GFX(graphics) primary mode for QoS setting.
154
155endchoice
156
masakazu.mochizuki.wd@hitachi.com6f107e42016-04-12 17:11:41 +0900157source "board/renesas/blanche/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900158source "board/renesas/gose/Kconfig"
159source "board/renesas/koelsch/Kconfig"
160source "board/renesas/lager/Kconfig"
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +0900161source "board/renesas/alt/Kconfig"
162source "board/renesas/silk/Kconfig"
163source "board/renesas/porter/Kconfig"
164source "board/renesas/stout/Kconfig"
165
166endif