Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | # |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 3 | # (C) Copyright 2014 - 2016 Xilinx, Inc. |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 4 | # Michal Simek <michal.simek@xilinx.com> |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 5 | |
| 6 | obj-y := zynqmp.o |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 7 | |
Michal Simek | 6c7b05f | 2016-11-29 12:03:51 +0100 | [diff] [blame] | 8 | hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE)) |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 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 | |
Michal Simek | d821879 | 2017-07-12 13:21:27 +0200 | [diff] [blame] | 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 |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 26 | |
Siva Durga Prasad Paladugu | cad14a8 | 2018-04-19 12:37:09 +0530 | [diff] [blame] | 27 | obj-$(CONFIG_MMC_SDHCI_ZYNQ) += tap_delays.o |
| 28 | |
Siva Durga Prasad Paladugu | b1acb65 | 2018-02-28 13:26:53 +0530 | [diff] [blame] | 29 | ifndef CONFIG_SPL_BUILD |
| 30 | obj-$(CONFIG_CMD_ZYNQMP) += cmds.o |
| 31 | endif |
| 32 | |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 33 | # Suppress "warning: function declaration isn't a prototype" |
| 34 | CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes |
| 35 | |
| 36 | # To include xil_io.h |
| 37 | CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src) |
Michal Simek | f5727ec | 2016-07-14 11:13:04 +0200 | [diff] [blame] | 38 | |
| 39 | # To suppress "warning: cast to pointer from integer of different size" |
| 40 | CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast |