mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
f698e9f39a
PAMU driver basic support for usage in Secure Boot.
In secure boot PAMU is not in bypass mode. Hence to use
any peripheral (SEC Job ring in our case), PAMU has to be
configured.
The patch reverts commit 7cad2e38d6
.
The Header file pamu.h and few functions in driver have been derived
from Freescale Libos.
Signed-off-by: Ruchika Gupta <ruchika.gupta@nxp.com>
Signed-off-by: Aneesh Bansal <aneesh.bansal@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
29 lines
487 B
Makefile
29 lines
487 B
Makefile
#
|
|
# Copyright 2009-2010 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
|
|
MINIMAL=
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
ifdef CONFIG_SPL_INIT_MINIMAL
|
|
MINIMAL=y
|
|
endif
|
|
endif
|
|
|
|
ifdef MINIMAL
|
|
|
|
obj-$(CONFIG_FSL_LAW) += law.o
|
|
|
|
else
|
|
obj-$(CONFIG_MPC85xx) += cpu.o
|
|
obj-$(CONFIG_MPC86xx) += cpu.o
|
|
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
|
|
obj-$(CONFIG_SYS_SRIO) += srio.o
|
|
obj-$(CONFIG_FSL_LAW) += law.o
|
|
obj-$(CONFIG_FSL_CORENET) += fsl_pamu.o pamu_table.o
|
|
|
|
endif
|