mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 22:03:15 +00:00
4c158b9a7d
On DRA7xx platform, CPU Core 1 is not used in u-boot. However, in some cases it is need to make secure API calls from Core 1. This patch adds an assembly function to make a secure (SMC) call from CPU Core #1. Signed-off-by: Harinarayan Bhatta <harinarayan@ti.com> Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
18 lines
404 B
Makefile
18 lines
404 B
Makefile
#
|
|
# (C) Copyright 2000-2010
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += boot.o
|
|
obj-y += hwinit.o
|
|
obj-y += emif.o
|
|
obj-y += sdram.o
|
|
obj-y += prcm-regs.o
|
|
obj-y += hw_data.o
|
|
obj-y += abb.o
|
|
obj-y += fdt.o
|
|
obj-$(CONFIG_IODELAY_RECALIBRATION) += dra7xx_iodelay.o
|
|
obj-$(CONFIG_TI_SECURE_DEVICE) += sec-fxns.o
|
|
obj-$(CONFIG_DRA7XX) += sec_entry_cpu1.o
|