1# SPDX-License-Identifier: GPL-2.0+ 2# 3# (C) Copyright 2014 - 2016 Xilinx, Inc. 4# Michal Simek <michal.simek@xilinx.com> 5 6obj-y := zynqmp.o 7obj-y += ../common/board.o 8 9ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"") 10PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE)) 11init-objs := ps_init_gpl.o 12spl/board/xilinx/zynqmp/ps_init_gpl.o board/xilinx/zynqmp/ps_init_gpl.o: $(PS_INIT_FILE) 13 $(CC) $(c_flags) -I $(srctree)/$(src) -c -o $@ $^ 14endif 15 16ifeq ($(init-objs),) 17hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE)) 18init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/psu_init_gpl.c),\ 19 $(hw-platform-y)/psu_init_gpl.o) 20endif 21 22ifeq ($(init-objs),) 23ifneq ($(wildcard $(srctree)/$(src)/psu_init_gpl.c),) 24init-objs := psu_init_gpl.o 25$(if $(CONFIG_SPL_BUILD),\ 26$(warning Put custom psu_init_gpl.c/h to board/xilinx/zynqmp/custom_hw_platform/)) 27endif 28endif 29 30ifdef_any_of = $(filter-out undefined,$(foreach v,$(1),$(origin $(v)))) 31 32ifneq ($(call ifdef_any_of, CONFIG_ZYNQMP_PSU_INIT_ENABLED CONFIG_SPL_BUILD),) 33obj-y += $(init-objs) 34endif 35 36ifdef CONFIG_SPL_BUILD 37ifneq ($(CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE),"") 38obj-$(CONFIG_SPL_BUILD) += pm_cfg_obj.o 39$(obj)/pm_cfg_obj.o: $(shell cd $(srctree); readlink -f $(CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE)) FORCE 40endif 41endif 42 43obj-$(CONFIG_MMC_SDHCI_ZYNQ) += tap_delays.o 44 45ifndef CONFIG_SPL_BUILD 46obj-$(CONFIG_CMD_ZYNQMP) += cmds.o 47endif 48 49# Suppress "warning: function declaration isn't a prototype" 50CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes 51 52# To include xil_io.h 53CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src) 54 55# To suppress "warning: cast to pointer from integer of different size" 56CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast 57