mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
7584f2e0fb
Boards with OMAP3530 SoC fail to boot since commit bd2c4522c2
("ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)")
because it enabled the use of Thumb2 for the SPL.
Experiments have shown that the deadlock happens in the
prcm_init() function from 'arch/arm/mach-omap2/omap3/clock.c'.
This patch enforces the compilation of clock.c source file in
ARM mode and makes the deadlock disappear. We are yet to figure
out the root cause of the problem. Still this is somewhat
better than having non-bootable boards for years.
Signed-off-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
24 lines
532 B
Makefile
24 lines
532 B
Makefile
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# If clock.c is compiled for Thumb2, then it fails on OMAP3530
|
|
CFLAGS_clock.o += -marm
|
|
|
|
obj-y := lowlevel_init.o
|
|
|
|
obj-y += board.o
|
|
obj-y += boot.o
|
|
obj-y += clock.o
|
|
obj-y += sys_info.o
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_SPL_OMAP3_ID_NAND) += spl_id_nand.o
|
|
endif
|
|
|
|
obj-$(CONFIG_DRIVER_TI_EMAC) += emac.o
|
|
obj-$(CONFIG_EMIF4) += emif4.o
|
|
obj-$(CONFIG_SDRC) += sdrc.o
|
|
obj-$(CONFIG_USB_MUSB_AM35X) += am35x_musb.o
|