Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / board / xilinx / zynq / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6 obj-y   := board.o
7 obj-y   += ../common/board.o
8
9 ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"")
10 PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE))
11 init-objs := ps_init_gpl.o
12 spl/board/xilinx/zynq/ps_init_gpl.o board/xilinx/zynq/ps_init_gpl.o: $(PS_INIT_FILE)
13         $(CC) $(c_flags) -I $(srctree)/$(src) -c -o $@ $^
14 endif
15
16 DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
17 ifeq ($(DEVICE_TREE),)
18 DEVICE_TREE := unset
19 endif
20
21 ifeq ($(init-objs),)
22 hw-platform-y :=$(shell echo $(DEVICE_TREE))
23 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
24         $(hw-platform-y)/ps7_init_gpl.o)
25 endif
26
27 ifeq ($(init-objs),)
28 ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),)
29 init-objs := ps7_init_gpl.o
30 $(if $(CONFIG_SPL_BUILD),\
31 $(warning Put custom ps7_init_gpl.c/h to board/xilinx/zynq/custom_hw_platform/))
32 endif
33 endif
34
35 ifndef CONFIG_SPL_BUILD
36 obj-$(CONFIG_CMD_ZYNQ) += cmds.o
37 obj-$(CONFIG_CMD_ZYNQ_RSA) += bootimg.o
38 endif
39
40 obj-$(CONFIG_SPL_BUILD) += $(init-objs)
41
42 # Suppress "warning: function declaration isn't a prototype"
43 CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes
44
45 # To include xil_io.h
46 CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src)