xref: /openbmc/u-boot/board/xilinx/zynqmp/Makefile (revision bbf5b252)
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
7obj-y	+= ../common/board.o
8
9ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"")
10PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE))
11init-objs := ps_init_gpl.o
12spl/board/xilinx/zynqmp/ps_init_gpl.o board/xilinx/zynqmp/ps_init_gpl.o: $(PS_INIT_FILE)
13	$(CC) $(c_flags) -I $(srctree)/$(src) -c -o $@ $^
14endif
15
16ifeq ($(init-objs),)
17hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
18init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/psu_init_gpl.c),\
19	$(hw-platform-y)/psu_init_gpl.o)
20endif
21
22ifeq ($(init-objs),)
23ifneq ($(wildcard $(srctree)/$(src)/psu_init_gpl.c),)
24init-objs := psu_init_gpl.o
25$(if $(CONFIG_SPL_BUILD),\
26$(warning Put custom psu_init_gpl.c/h to board/xilinx/zynqmp/custom_hw_platform/))
27endif
28endif
29
30ifdef_any_of = $(filter-out undefined,$(foreach v,$(1),$(origin $(v))))
31
32ifneq ($(call ifdef_any_of, CONFIG_ZYNQMP_PSU_INIT_ENABLED CONFIG_SPL_BUILD),)
33obj-y += $(init-objs)
34endif
35
36obj-$(CONFIG_MMC_SDHCI_ZYNQ) += tap_delays.o
37
38ifndef CONFIG_SPL_BUILD
39obj-$(CONFIG_CMD_ZYNQMP) += cmds.o
40endif
41
42# Suppress "warning: function declaration isn't a prototype"
43CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes
44
45# To include xil_io.h
46CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src)
47
48# To suppress "warning: cast to pointer from integer of different size"
49CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast
50