1# SPDX-License-Identifier: GPL-2.0+ 2# 3# (C) Copyright 2000-2006 4# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 6obj-y := board.o 7 8ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"") 9PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE)) 10init-objs := ps_init_gpl.o 11spl/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 $@ $^ 13endif 14 15DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%) 16ifeq ($(DEVICE_TREE),) 17DEVICE_TREE := unset 18endif 19 20ifeq ($(init-objs),) 21hw-platform-y :=$(shell echo $(DEVICE_TREE)) 22init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\ 23 $(hw-platform-y)/ps7_init_gpl.o) 24endif 25 26ifeq ($(init-objs),) 27ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),) 28init-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/)) 31endif 32endif 33 34ifndef CONFIG_SPL_BUILD 35obj-$(CONFIG_CMD_ZYNQ) += cmds.o 36obj-$(CONFIG_CMD_ZYNQ_RSA) += bootimg.o 37endif 38 39obj-$(CONFIG_SPL_BUILD) += $(init-objs) 40 41# Suppress "warning: function declaration isn't a prototype" 42CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes 43 44# To include xil_io.h 45CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src) 46