blob: 347be5cc93c32d5fdad35ece673484288bc5e990 [file] [log] [blame]
Marek Vasut276dad42025-01-29 18:04:28 +01001#
2# board/renesas/whitehawk/Makefile
3#
4# Copyright (C) 2024 Marek Vasut <marek.vasut+renesas@mailbox.org>
5#
6# SPDX-License-Identifier: GPL-2.0+
7#
8
9# R-Car SoCs
10ifndef CONFIG_RZG2L
11
12# 32 bit SoCs
13ifdef CONFIG_RCAR_32
14ifdef CONFIG_RCAR_GEN2
15endif
16endif
17
18# 64 bit SoCs
19ifdef CONFIG_RCAR_64
Marek Vasutecc23132025-01-29 18:04:34 +010020ifdef CONFIG_XPL_BUILD
21obj-y += rcar64-spl.o
22else
Marek Vasutfc756d72025-01-29 18:04:29 +010023obj-y += rcar64-common.o
Marek Vasut276dad42025-01-29 18:04:28 +010024endif
25
26ifdef CONFIG_RCAR_GEN3
27ifdef CONFIG_XPL_BUILD
28obj-y += gen3-spl.o
29else
30obj-y += gen3-common.o
31ifdef CONFIG_R8A77970
32obj-y += v3-common.o
33endif
34ifdef CONFIG_R8A77980
35obj-y += v3-common.o
36endif
37endif
38endif
39
40ifdef CONFIG_RCAR_GEN4
41ifdef CONFIG_XPL_BUILD
42obj-y += gen4-spl.o
43else
44obj-y += gen4-common.o
45endif
46endif
47endif
48
49endif