Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 NXP Semiconductor, Inc. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/psci.h> |
macro.wave.z@gmail.com | 9a56175 | 2016-12-08 11:58:25 +0800 | [diff] [blame] | 9 | #include <asm/system.h> |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 10 | #include <asm/armv8/sec_firmware.h> |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 11 | |
Yuantian Tang | 026f30e | 2017-04-19 13:27:39 +0800 | [diff] [blame] | 12 | #ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 13 | int psci_update_dt(void *fdt) |
| 14 | { |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 15 | /* |
| 16 | * If the PSCI in SEC Firmware didn't work, avoid to update the |
| 17 | * device node of PSCI. But still return 0 instead of an error |
| 18 | * number to support detecting PSCI dynamically and then switching |
| 19 | * the SMP boot method between PSCI and spin-table. |
| 20 | */ |
Yuantian Tang | 026f30e | 2017-04-19 13:27:39 +0800 | [diff] [blame] | 21 | if (sec_firmware_support_psci_version() == PSCI_INVALID_VER) |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 22 | return 0; |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 23 | fdt_psci(fdt); |
macro.wave.z@gmail.com | 9a56175 | 2016-12-08 11:58:25 +0800 | [diff] [blame] | 24 | |
| 25 | #if defined(CONFIG_ARMV8_PSCI) && !defined(CONFIG_ARMV8_SECURE_BASE) |
| 26 | /* secure code lives in RAM, keep it alive */ |
| 27 | fdt_add_mem_rsv(fdt, (unsigned long)__secure_start, |
| 28 | __secure_end - __secure_start); |
| 29 | #endif |
| 30 | |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 31 | return 0; |
| 32 | } |
Yuantian Tang | 026f30e | 2017-04-19 13:27:39 +0800 | [diff] [blame] | 33 | #endif |