Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
macro.wave.z@gmail.com | 51d9421 | 2016-12-08 11:58:26 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2016 Freescale Semiconductor, Inc. |
| 4 | * Author: Hongbo Zhang <hongbo.zhang@nxp.com> |
macro.wave.z@gmail.com | 51d9421 | 2016-12-08 11:58:26 +0800 | [diff] [blame] | 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 |