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