mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
214ffae02d
The deep sleep function of LS1 platform, is mapped into PSCI system suspend function, this patch adds implementation of it. Signed-off-by: Hongbo Zhang <hongbo.zhang@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
20 lines
415 B
Makefile
20 lines
415 B
Makefile
#
|
|
# Copyright 2014 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += cpu.o
|
|
obj-y += clock.o
|
|
obj-y += timer.o
|
|
obj-y += fsl_epu.o
|
|
obj-y += soc.o
|
|
|
|
obj-$(CONFIG_SCSI_AHCI_PLAT) += ls102xa_sata.o
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += fsl_ls1_serdes.o ls102xa_serdes.o
|
|
obj-$(CONFIG_SPL) += spl.o
|
|
|
|
ifdef CONFIG_ARMV7_PSCI
|
|
obj-y += psci.o ls102xa_psci.o
|
|
endif
|