Prepare v2023.10
[platform/kernel/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
8 ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"")
9 PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE))
10 init-objs := ps_init_gpl.o
11 spl/board/xilinx/zynq/ps_init_gpl.o board/xilinx/zynq/ps_init_gpl.o: $(PS_INIT_FILE)
12         $(CC) $(c_flags) -I $(srctree)/$(src) -c -o $@ $^
13 endif
14
15 DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
16 ifeq ($(DEVICE_TREE),)
17 DEVICE_TREE := unset
18 endif
19
20 ifeq ($(init-objs),)
21 hw-platform-y :=$(shell echo $(DEVICE_TREE))
22 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
23         $(hw-platform-y)/ps7_init_gpl.o)
24 endif
25
26 ifeq ($(init-objs),)
27 ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),)
28 init-objs := ps7_init_gpl.o
29 $(if $(CONFIG_SPL_BUILD),\
30 $(warning Put custom ps7_init_gpl.c/h to board/xilinx/zynq/custom_hw_platform/))
31 endif
32 endif
33
34 ifndef CONFIG_SPL_BUILD
35 obj-$(CONFIG_CMD_ZYNQ) += cmds.o
36 obj-$(CONFIG_CMD_ZYNQ_RSA) += bootimg.o
37 endif
38
39 obj-$(CONFIG_SPL_BUILD) += $(init-objs)
40
41 # Suppress "warning: function declaration isn't a prototype"
42 CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes
43
44 # To include xil_io.h
45 CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src)