2012-10-04 06:46:02 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012 Altera Corporation <www.altera.com>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-10-04 06:46:02 +00:00
|
|
|
#
|
|
|
|
|
2014-09-08 12:08:45 +00:00
|
|
|
obj-y += misc.o timer.o reset_manager.o system_manager.o clock_manager.o \
|
2015-12-02 19:31:32 +00:00
|
|
|
fpga_manager.o board.o
|
|
|
|
|
2015-08-01 01:42:10 +00:00
|
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o freeze_controller.o
|
2015-08-02 19:12:09 +00:00
|
|
|
|
|
|
|
# QTS-generated config file wrappers
|
2015-12-02 19:31:32 +00:00
|
|
|
obj-$(CONFIG_TARGET_SOCFPGA_GEN5) += scan_manager.o wrap_pll_config.o
|
2015-08-02 19:12:09 +00:00
|
|
|
obj-$(CONFIG_SPL_BUILD) += wrap_iocsr_config.o wrap_pinmux_config.o \
|
|
|
|
wrap_sdram_config.o
|
|
|
|
CFLAGS_wrap_iocsr_config.o += -I$(srctree)/board/$(BOARDDIR)
|
|
|
|
CFLAGS_wrap_pinmux_config.o += -I$(srctree)/board/$(BOARDDIR)
|
|
|
|
CFLAGS_wrap_pll_config.o += -I$(srctree)/board/$(BOARDDIR)
|
|
|
|
CFLAGS_wrap_sdram_config.o += -I$(srctree)/board/$(BOARDDIR)
|