2018-05-06 17:58:06 -04:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2009-06-20 11:01:53 +02:00
|
|
|
#
|
|
|
|
# (C) Copyright 2009
|
|
|
|
# Marvell Semiconductor <www.marvell.com>
|
|
|
|
# Written-by: Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
|
2013-10-17 17:34:49 +09:00
|
|
|
obj-y = cpu.o
|
|
|
|
obj-y += cache.o
|
2023-03-11 11:57:01 +01:00
|
|
|
obj-y += lowlevel.o
|
2014-10-22 12:13:05 +02:00
|
|
|
obj-y += mpp.o
|
2015-10-23 18:06:42 +02: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
|