blob: 05ccd25dcef3be705e5713e4c5413f0a2d6be0d0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Michal Simek04b7e622015-01-15 10:01:51 +01002#
Michal Simek72536fd2015-11-20 13:17:22 +01003# (C) Copyright 2014 - 2016 Xilinx, Inc.
Michal Simek04b7e622015-01-15 10:01:51 +01004# Michal Simek <michal.simek@xilinx.com>
Michal Simek04b7e622015-01-15 10:01:51 +01005
6obj-y := zynqmp.o
Michal Simek72536fd2015-11-20 13:17:22 +01007
Michal Simek6c7b05f2016-11-29 12:03:51 +01008hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
Michal Simek72536fd2015-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 Simekd8218792017-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 Simek72536fd2015-11-20 13:17:22 +010026
Siva Durga Prasad Paladugucad14a82018-04-19 12:37:09 +053027obj-$(CONFIG_MMC_SDHCI_ZYNQ) += tap_delays.o
28
Siva Durga Prasad Paladugub1acb652018-02-28 13:26:53 +053029ifndef CONFIG_SPL_BUILD
30obj-$(CONFIG_CMD_ZYNQMP) += cmds.o
31endif
32
Michal Simek72536fd2015-11-20 13:17:22 +010033# 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)
Michal Simekf5727ec2016-07-14 11:13:04 +020038
39# To suppress "warning: cast to pointer from integer of different size"
40CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast