]> git.sur5r.net Git - u-boot/blob - board/xilinx/zynqmp/Makefile
65bcb598cec9c7e2be7d7a261d508fe866b854ea
[u-boot] / board / xilinx / zynqmp / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2014 - 2016 Xilinx, Inc.
4 # Michal Simek <michal.simek@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 ifndef CONFIG_SPL_BUILD
28 obj-$(CONFIG_CMD_ZYNQMP) += cmds.o
29 endif
30
31 # Suppress "warning: function declaration isn't a prototype"
32 CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes
33
34 # To include xil_io.h
35 CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src)
36
37 # To suppress "warning: cast to pointer from integer of different size"
38 CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast