2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2009-06-20 09:01:53 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2009
|
|
|
|
# Marvell Semiconductor <www.marvell.com>
|
|
|
|
# Written-by: Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-y = cpu.o
|
|
|
|
obj-y += cache.o
|
2023-03-11 10:57:01 +00:00
|
|
|
obj-y += lowlevel.o
|
2014-10-22 10:13:05 +00:00
|
|
|
obj-y += mpp.o
|
2015-10-23 16:06:42 +00:00
|
|
|
|
|
|
|
# cpu.o and cache.o contain CP15 instructions which cannot be run in
|
|
|
|
# Thumb state, so build them for ARM state even with CONFIG_SYS_THUMB_BUILD
|
|
|
|
|
|
|
|
CFLAGS_cpu.o := -marm
|
|
|
|
CFLAGS_cache.o := -marm
|