blob: 75aab92f047321eebbb59b4da8b72be25742d364 [file] [log] [blame]
Michal Simek84c72042015-01-15 10:01:51 +01001#
Michal Simeke6a9ed02015-11-20 13:17:22 +01002# (C) Copyright 2014 - 2016 Xilinx, Inc.
Michal Simek84c72042015-01-15 10:01:51 +01003# Michal Simek <michal.simek@xilinx.com>
4#
5# SPDX-License-Identifier: GPL-2.0+
6#
7
8obj-y := zynqmp.o
Michal Simeke6a9ed02015-11-20 13:17:22 +01009
Michal Simekfde6cac2016-11-29 12:03:51 +010010hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
Michal Simeke6a9ed02015-11-20 13:17:22 +010011
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
Michal Simekfd1b6352017-07-12 13:21:27 +020023ifdef_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
Michal Simeke6a9ed02015-11-20 13:17:22 +010028
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)
Michal Simekb6f40482016-07-14 11:13:04 +020034
35# To suppress "warning: cast to pointer from integer of different size"
36CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast