mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
ddf013458d
Similar to what is done with OMAP5 class boards we need to perform fixups common to this SoC class, add support for this here and add HS fixups. Signed-off-by: Andrew F. Davis <afd@ti.com>
30 lines
677 B
Makefile
30 lines
677 B
Makefile
#
|
|
# Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AM33XX) += clock_am33xx.o
|
|
obj-$(CONFIG_TI814X) += clock_ti814x.o
|
|
obj-$(CONFIG_AM43XX) += clock_am43xx.o
|
|
|
|
ifneq ($(CONFIG_AM43XX)$(CONFIG_AM33XX),)
|
|
obj-y += clock.o
|
|
endif
|
|
|
|
obj-$(CONFIG_TI816X) += clock_ti816x.o
|
|
obj-y += sys_info.o
|
|
obj-y += ddr.o
|
|
ifeq ($(CONFIG_TI816X)$(CONFIG_SKIP_LOWLEVEL_INIT),)
|
|
obj-y += emif4.o
|
|
endif
|
|
obj-$(CONFIG_TI816X) += ti816x_emif4.o
|
|
obj-y += board.o
|
|
obj-y += mux.o
|
|
obj-y += prcm-regs.o
|
|
obj-y += hw_data.o
|
|
obj-y += fdt.o
|
|
|
|
obj-$(CONFIG_CLOCK_SYNTHESIZER) += clk_synthesizer.o
|
|
|
|
obj-$(CONFIG_AM33XX_CHILISOM) += chilisom.o
|