xref: /openbmc/u-boot/arch/arm/mach-socfpga/Makefile (revision 4765ddb0dab0ebd972f30725ca4397a93ee7272b)
1# SPDX-License-Identifier: GPL-2.0+
2#
3# (C) Copyright 2000-2003
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5#
6# Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
7
8obj-y	+= board.o
9obj-y	+= clock_manager.o
10obj-y	+= misc.o
11obj-y	+= reset_manager.o
12obj-y	+= timer.o
13
14ifdef CONFIG_TARGET_SOCFPGA_GEN5
15obj-y	+= clock_manager_gen5.o
16obj-y	+= misc_gen5.o
17obj-y	+= reset_manager_gen5.o
18obj-y	+= scan_manager.o
19obj-y	+= system_manager_gen5.o
20obj-y	+= wrap_pll_config.o
21obj-y	+= fpga_manager.o
22endif
23
24ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
25obj-y	+= clock_manager_arria10.o
26obj-y	+= misc_arria10.o
27obj-y	+= pinmux_arria10.o
28obj-y	+= reset_manager_arria10.o
29endif
30
31ifdef CONFIG_TARGET_SOCFPGA_STRATIX10
32obj-y	+= clock_manager_s10.o
33obj-y	+= mailbox_s10.o
34obj-y	+= misc_s10.o
35obj-y	+= mmu-arm64_s10.o
36obj-y	+= reset_manager_s10.o
37obj-y	+= system_manager_s10.o
38obj-y	+= wrap_pinmux_config_s10.o
39obj-y	+= wrap_pll_config_s10.o
40endif
41
42ifdef CONFIG_SPL_BUILD
43ifdef CONFIG_TARGET_SOCFPGA_GEN5
44obj-y	+= spl_gen5.o
45obj-y	+= freeze_controller.o
46obj-y	+= wrap_iocsr_config.o
47obj-y	+= wrap_pinmux_config.o
48obj-y	+= wrap_sdram_config.o
49endif
50ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
51obj-y	+= spl_a10.o
52endif
53ifdef CONFIG_TARGET_SOCFPGA_STRATIX10
54obj-y	+= spl_s10.o
55endif
56endif
57
58ifdef CONFIG_TARGET_SOCFPGA_GEN5
59# QTS-generated config file wrappers
60CFLAGS_wrap_iocsr_config.o	+= -I$(srctree)/board/$(BOARDDIR)
61CFLAGS_wrap_pinmux_config.o	+= -I$(srctree)/board/$(BOARDDIR)
62CFLAGS_wrap_pll_config.o	+= -I$(srctree)/board/$(BOARDDIR)
63CFLAGS_wrap_sdram_config.o	+= -I$(srctree)/board/$(BOARDDIR)
64endif
65