imx8m: soc: enable SCTR clock before timer init
[oweals/u-boot.git] / board / xilinx / zynq / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6 obj-y   := board.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/zynq/ps_init_gpl.o board/xilinx/zynq/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)/ps7_init_gpl.c),\
19         $(hw-platform-y)/ps7_init_gpl.o)
20 endif
21
22 ifeq ($(init-objs),)
23 ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),)
24 init-objs := ps7_init_gpl.o
25 $(if $(CONFIG_SPL_BUILD),\
26 $(warning Put custom ps7_init_gpl.c/h to board/xilinx/zynq/custom_hw_platform/))
27 endif
28 endif
29
30 ifndef CONFIG_SPL_BUILD
31 obj-$(CONFIG_CMD_ZYNQ) += cmds.o
32 obj-$(CONFIG_CMD_ZYNQ_RSA) += bootimg.o
33 endif
34
35 obj-$(CONFIG_SPL_BUILD) += $(init-objs)
36
37 # Suppress "warning: function declaration isn't a prototype"
38 CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes
39
40 # To include xil_io.h
41 CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src)