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