mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
ac337168ad
This patch defines the 2 flush_dcache_range and invalidate_dcache_range functions for all the powerpc architecture. Their implementation is borrowed from the kernel's misc_32.S file and replace the ones from mpc86xx and ppc4xx since they were equivalent. This is a fix for the problem introduced by this patch: http://patchwork.ozlabs.org/patch/448849/ Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: York Sun <yorksun@freescale.com>
26 lines
502 B
Makefile
26 lines
502 B
Makefile
#
|
|
# (C) Copyright 2003-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
extra-y += traps.o
|
|
obj-y += io.o
|
|
obj-y += firmware_sc_task_bestcomm.impl.o
|
|
obj-y += i2c.o
|
|
obj-y += cpu.o
|
|
obj-y += cpu_init.o
|
|
obj-y += ide.o
|
|
obj-y += interrupts.o
|
|
obj-y += loadtask.o
|
|
obj-y += pci_mpc5200.o
|
|
obj-y += serial.o
|
|
obj-y += speed.o
|
|
obj-$(CONFIG_CMD_USB) += usb_ohci.o
|
|
obj-$(CONFIG_CMD_USB) += usb.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl_boot.o
|
|
endif
|