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