mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
93b283d49f
Four different boards had different options for enabling cache that were virtually all the same. This consolidates these common functions into arch/arm/cpu/arm926ejs/cache.c This also has the positive side-effect of enabling cache on the Davinci (da850) boards. Signed-off-by: Adam Ford <aford173@gmail.com> [trini: Add mach-at91 to the list of consolidations] Signed-off-by: Tom Rini <trini@konsulko.com>
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2008
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-$(CONFIG_AT91SAM9260) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9G20) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9XE) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9261) += at91sam9261_devices.o
|
|
obj-$(CONFIG_AT91SAM9G10) += at91sam9261_devices.o
|
|
obj-$(CONFIG_AT91SAM9263) += at91sam9263_devices.o
|
|
obj-$(CONFIG_AT91SAM9RL) += at91sam9rl_devices.o
|
|
obj-$(CONFIG_AT91SAM9M10G45) += at91sam9m10g45_devices.o
|
|
obj-$(CONFIG_AT91SAM9G45) += at91sam9m10g45_devices.o
|
|
obj-$(CONFIG_AT91SAM9N12) += at91sam9n12_devices.o
|
|
obj-$(CONFIG_AT91SAM9X5) += at91sam9x5_devices.o
|
|
obj-$(CONFIG_AT91_EFLASH) += eflash.o
|
|
obj-$(CONFIG_AT91_LED) += led.o
|
|
obj-y += clock.o
|
|
obj-y += cpu.o
|
|
obj-y += reset.o
|
|
ifeq ($(CONFIG_ATMEL_PIT_TIMER),)
|
|
obj-y += timer.o
|
|
endif
|
|
|
|
ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
|
obj-y += lowlevel_init.o
|
|
endif
|
|
|
|
ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
|
|
ifndef CONFIG_HAS_THUMB2
|
|
|
|
CFLAGS_cache.o := -marm
|
|
|
|
endif
|
|
endif
|