mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
c16cc4f689
Activate the command poweroff by default for STM32MP1: - with PCSI from TF-A for trusted boot - with PMIC sysreset request for basic boot (SYSRESET_POWER) Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
19 lines
390 B
Makefile
19 lines
390 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2018, STMicroelectronics - All Rights Reserved
|
|
#
|
|
|
|
obj-y += cpu.o
|
|
obj-y += dram_init.o
|
|
obj-y += syscon.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
else
|
|
obj-y += bsec.o
|
|
ifndef CONFIG_STM32MP1_TRUSTED
|
|
obj-$(CONFIG_SYSRESET) += cmd_poweroff.o
|
|
endif
|
|
endif
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR) += pwr_regulator.o
|