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