blob: 82b681d870fb216bc32f6a271c6fa2bb10a1800f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00002#
3# (C) Copyright 2000-2003
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5#
Ley Foon Tand89e9792017-04-26 02:44:48 +08006# Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
Dinh Nguyen77754402012-10-04 06:46:02 +00007
Ley Foon Tand89e9792017-04-26 02:44:48 +08008obj-y += board.o
9obj-y += clock_manager.o
Ley Foon Tand89e9792017-04-26 02:44:48 +080010obj-y += misc.o
Dinh Nguyene5ad7d92015-12-02 13:31:32 -060011
Ley Foon Tand89e9792017-04-26 02:44:48 +080012ifdef CONFIG_TARGET_SOCFPGA_GEN5
13obj-y += clock_manager_gen5.o
14obj-y += misc_gen5.o
15obj-y += reset_manager_gen5.o
16obj-y += scan_manager.o
17obj-y += system_manager_gen5.o
Ley Foon Tan73aede52018-05-24 00:17:29 +080018obj-y += timer.o
Ley Foon Tand89e9792017-04-26 02:44:48 +080019obj-y += wrap_pll_config.o
Tien Fong Chee6867e192017-07-26 13:05:38 +080020obj-y += fpga_manager.o
Ley Foon Tand89e9792017-04-26 02:44:48 +080021endif
Ley Foon Tan827e6a72017-04-26 02:44:38 +080022
Ley Foon Tand89e9792017-04-26 02:44:48 +080023ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
24obj-y += clock_manager_arria10.o
25obj-y += misc_arria10.o
26obj-y += pinmux_arria10.o
27obj-y += reset_manager_arria10.o
28endif
Marek Vasutca62d2e2015-08-02 21:12:09 +020029
Ley Foon Tan508791a2018-05-18 22:05:22 +080030ifdef CONFIG_TARGET_SOCFPGA_STRATIX10
31obj-y += clock_manager_s10.o
Chee Hong Angac0c1fd2020-12-24 18:20:58 +080032obj-y += lowlevel_init_soc64.o
Ley Foon Tana280e9d2018-05-24 00:17:25 +080033obj-y += mailbox_s10.o
Ley Foon Tand5591302018-05-24 00:17:24 +080034obj-y += misc_s10.o
Ley Foon Tan914a84e2018-05-24 00:17:26 +080035obj-y += mmu-arm64_s10.o
Ley Foon Tan3607a802018-05-18 22:05:23 +080036obj-y += reset_manager_s10.o
Ley Foon Tan73175d02018-05-18 22:05:24 +080037obj-y += system_manager_s10.o
Ley Foon Tan73aede52018-05-24 00:17:29 +080038obj-y += timer_s10.o
Ley Foon Tan73175d02018-05-18 22:05:24 +080039obj-y += wrap_pinmux_config_s10.o
Ley Foon Tan508791a2018-05-18 22:05:22 +080040obj-y += wrap_pll_config_s10.o
41endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080042
Ley Foon Tanb4a20cb2019-11-27 15:55:23 +080043ifdef CONFIG_TARGET_SOCFPGA_AGILEX
44obj-y += clock_manager_agilex.o
Chee Hong Angac0c1fd2020-12-24 18:20:58 +080045obj-y += lowlevel_init_soc64.o
Ley Foon Tana76b7112019-11-27 15:55:32 +080046obj-y += mailbox_s10.o
47obj-y += misc_s10.o
48obj-y += mmu-arm64_s10.o
49obj-y += reset_manager_s10.o
50obj-y += system_manager_s10.o
51obj-y += timer_s10.o
52obj-y += wrap_pinmux_config_s10.o
53obj-y += wrap_pll_config_s10.o
Ley Foon Tanb4a20cb2019-11-27 15:55:23 +080054endif
55
Ley Foon Tand89e9792017-04-26 02:44:48 +080056ifdef CONFIG_SPL_BUILD
Ley Foon Tand89e9792017-04-26 02:44:48 +080057ifdef CONFIG_TARGET_SOCFPGA_GEN5
Ley Foon Tanc859f2a2018-05-24 00:17:27 +080058obj-y += spl_gen5.o
Ley Foon Tand89e9792017-04-26 02:44:48 +080059obj-y += freeze_controller.o
60obj-y += wrap_iocsr_config.o
61obj-y += wrap_pinmux_config.o
62obj-y += wrap_sdram_config.o
63endif
Ley Foon Tanc859f2a2018-05-24 00:17:27 +080064ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
65obj-y += spl_a10.o
66endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080067ifdef CONFIG_TARGET_SOCFPGA_STRATIX10
Ley Foon Tan8b7962a2019-11-27 15:55:15 +080068obj-y += firewall.o
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080069obj-y += spl_s10.o
70endif
Ley Foon Tan594cacf2019-11-27 15:55:29 +080071ifdef CONFIG_TARGET_SOCFPGA_AGILEX
Ley Foon Tana76b7112019-11-27 15:55:32 +080072obj-y += firewall.o
Ley Foon Tan594cacf2019-11-27 15:55:29 +080073obj-y += spl_agilex.o
74endif
Chee Hong Ang0eebfab2020-12-24 18:21:00 +080075else
Siew Chin Lim2e54a1d2020-12-24 18:21:02 +080076obj-$(CONFIG_SPL_ATF) += secure_reg_helper.o
Chee Hong Ang0eebfab2020-12-24 18:21:00 +080077obj-$(CONFIG_SPL_ATF) += smc_api.o
Ley Foon Tand89e9792017-04-26 02:44:48 +080078endif
79
80ifdef CONFIG_TARGET_SOCFPGA_GEN5
Marek Vasutca62d2e2015-08-02 21:12:09 +020081# QTS-generated config file wrappers
Marek Vasutca62d2e2015-08-02 21:12:09 +020082CFLAGS_wrap_iocsr_config.o += -I$(srctree)/board/$(BOARDDIR)
83CFLAGS_wrap_pinmux_config.o += -I$(srctree)/board/$(BOARDDIR)
84CFLAGS_wrap_pll_config.o += -I$(srctree)/board/$(BOARDDIR)
85CFLAGS_wrap_sdram_config.o += -I$(srctree)/board/$(BOARDDIR)
Ley Foon Tand89e9792017-04-26 02:44:48 +080086endif