1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright 2016 Freescale Semiconductor, Inc. 4 * Author: Hongbo Zhang <hongbo.zhang (at) nxp.com> 5 * This file implements LS102X platform PSCI SYSTEM-SUSPEND function 6 */ 7 8 #include <config.h> 9 #include <linux/linkage.h> 10 #include <asm/psci.h> 11 12 .pushsection ._secure.text, "ax" 13 14 .globl psci_version 15 psci_version: 16 ldr w0, =0x00010000 /* PSCI v1.0 */ 17 ret 18 19 .popsection 20