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