1# 2# Copyright (C) 2024 Marek Vasut <marek.vasut+renesas@mailbox.org> 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7# R-Car SoCs 8ifndef CONFIG_RZA1 9ifndef CONFIG_RZG2L 10 11# 32 bit SoCs 12ifdef CONFIG_RCAR_32 13ifdef CONFIG_RCAR_GEN2 14endif 15endif 16 17# 64 bit SoCs 18ifdef CONFIG_RCAR_64 19ifdef CONFIG_XPL_BUILD 20obj-y += rcar64-spl.o 21else 22obj-y += rcar64-common.o 23endif 24 25ifdef CONFIG_RCAR_GEN3 26ifdef CONFIG_XPL_BUILD 27obj-y += gen3-spl.o 28else 29obj-y += gen3-common.o 30ifdef CONFIG_R8A77970 31obj-y += v3-common.o 32endif 33ifdef CONFIG_R8A77980 34obj-y += v3-common.o 35endif 36endif 37endif 38 39ifdef CONFIG_RCAR_GEN4 40ifdef CONFIG_XPL_BUILD 41obj-y += gen4-spl.o 42else 43obj-y += gen4-common.o 44endif 45endif 46endif 47 48endif 49endif 50 51# RZ/A1 SoCs 52ifdef CONFIG_RZA1 53obj-y += rza1-common.o 54obj-y += rza1-lowlevel_init.o 55endif 56