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