2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2015-02-05 05:42:58 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
|
2017-01-27 21:53:48 +00:00
|
|
|
obj-y += boards.o
|
2017-01-15 05:59:09 +00:00
|
|
|
obj-y += spl_board_init.o
|
2017-01-15 05:59:04 +00:00
|
|
|
obj-y += memconf.o
|
2017-01-15 05:59:09 +00:00
|
|
|
obj-y += bcu/
|
2017-02-13 16:24:25 +00:00
|
|
|
obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc-boot-mode.o
|
2015-02-05 05:42:58 +00:00
|
|
|
|
|
|
|
else
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2017-01-21 09:05:26 +00:00
|
|
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
|
2015-02-05 05:42:58 +00:00
|
|
|
obj-y += dram_init.o
|
2016-09-13 16:06:08 +00:00
|
|
|
obj-y += board_init.o
|
2014-10-03 10:21:06 +00:00
|
|
|
obj-$(CONFIG_BOARD_LATE_INIT) += board_late_init.o
|
2017-04-20 07:54:42 +00:00
|
|
|
ifndef CONFIG_SYSRESET
|
2015-02-05 05:42:58 +00:00
|
|
|
obj-y += reset.o
|
2017-04-20 07:54:42 +00:00
|
|
|
endif
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2017-01-15 05:59:10 +00:00
|
|
|
obj-$(CONFIG_MICRO_SUPPORT_CARD) += sbc/ micro-support-card.o
|
|
|
|
obj-y += pinctrl-glue.o
|
2017-02-13 16:24:24 +00:00
|
|
|
obj-$(CONFIG_MMC) += mmc-first-dev.o
|
2018-07-19 07:28:25 +00:00
|
|
|
obj-y += fdt-fixup.o
|
2017-01-15 05:59:10 +00:00
|
|
|
|
2015-02-05 05:42:58 +00:00
|
|
|
endif
|
|
|
|
|
2017-01-21 09:05:26 +00:00
|
|
|
obj-y += soc-info.o
|
2017-02-13 16:24:26 +00:00
|
|
|
obj-y += boot-device/
|
2016-09-16 18:33:10 +00:00
|
|
|
obj-y += clk/
|
2016-02-05 04:20:31 +00:00
|
|
|
obj-y += dram/
|
2015-02-05 05:42:58 +00:00
|
|
|
|
2016-03-18 07:41:52 +00:00
|
|
|
obj-$(CONFIG_DEBUG_UART_UNIPHIER) += debug-uart/
|
2016-02-26 09:59:44 +00:00
|
|
|
|
2018-04-26 12:51:26 +00:00
|
|
|
obj-$(CONFIG_CPU_V7A) += arm32/
|
2016-04-21 05:43:18 +00:00
|
|
|
obj-$(CONFIG_ARM64) += arm64/
|