blob: 65bcb598cec9c7e2be7d7a261d508fe866b854ea [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Michal Simek84c72042015-01-15 10:01:51 +01002#
Michal Simeke6a9ed02015-11-20 13:17:22 +01003# (C) Copyright 2014 - 2016 Xilinx, Inc.
Michal Simek84c72042015-01-15 10:01:51 +01004# Michal Simek <michal.simek@xilinx.com>
Michal Simek84c72042015-01-15 10:01:51 +01005
6obj-y := zynqmp.o
Michal Simeke6a9ed02015-11-20 13:17:22 +01007
Michal Simekfde6cac2016-11-29 12:03:51 +01008hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
Michal Simeke6a9ed02015-11-20 13:17:22 +01009
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
Michal Simekfd1b6352017-07-12 13:21:27 +020021ifdef_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
Michal Simeke6a9ed02015-11-20 13:17:22 +010026
Siva Durga Prasad Paladuguc436bf92018-02-28 13:26:53 +053027ifndef CONFIG_SPL_BUILD
28obj-$(CONFIG_CMD_ZYNQMP) += cmds.o
29endif
30
Michal Simeke6a9ed02015-11-20 13:17:22 +010031# Suppress "warning: function declaration isn't a prototype"
32CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes
33
34# To include xil_io.h
35CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src)
Michal Simekb6f40482016-07-14 11:13:04 +020036
37# To suppress "warning: cast to pointer from integer of different size"
38CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast