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 23obj-$(CONFIG_SPL_BUILD) += $(init-objs) 24 25# Suppress "warning: function declaration isn't a prototype" 26CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes 27 28# To include xil_io.h 29CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src) 30 31# To suppress "warning: cast to pointer from integer of different size" 32CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast 33