mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
7de4703691
1. add basic psci support for imx7 chip. 2. support cpu_on and cpu_off. 3. switch to non-secure mode when boot linux kernel. 4. set csu allow accessing all peripherial register in non-secure mode. Signed-off-by: Frank Li <Frank.Li@freescale.com> Signed-off-by: Peng Fan <Peng.Fan@freescale.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com>
12 lines
192 B
Makefile
12 lines
192 B
Makefile
#
|
|
# (C) Copyright 2015 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
#
|
|
|
|
obj-y := soc.o clock.o clock_slice.o
|
|
|
|
ifdef CONFIG_ARMV7_PSCI
|
|
obj-y += psci-mx7.o psci.o
|
|
endif
|