]> git.sur5r.net Git - u-boot/blob - board/xilinx/zynqmp/Makefile
75aab92f047321eebbb59b4da8b72be25742d364
[u-boot] / board / xilinx / zynqmp / Makefile
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
8 obj-y   := zynqmp.o
9
10 hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
11
12 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/psu_init_gpl.c),\
13         $(hw-platform-y)/psu_init_gpl.o)
14
15 ifeq ($(init-objs),)
16 ifneq ($(wildcard $(srctree)/$(src)/psu_init_gpl.c),)
17 init-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/))
20 endif
21 endif
22
23 ifdef_any_of = $(filter-out undefined,$(foreach v,$(1),$(origin $(v))))
24
25 ifneq ($(call ifdef_any_of, CONFIG_ZYNQMP_PSU_INIT_ENABLED CONFIG_SPL_BUILD),)
26 obj-y += $(init-objs)
27 endif
28
29 # Suppress "warning: function declaration isn't a prototype"
30 CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes
31
32 # To include xil_io.h
33 CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src)
34
35 # To suppress "warning: cast to pointer from integer of different size"
36 CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast