blob: 9ffb49c37cd6f0ebbd173b32c76aa4aa397f8e35 [file] [log] [blame]
Hou Zhiqiang45684ae2016-06-28 20:18:16 +08001/*
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>
9#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
10#include <asm/armv8/sec_firmware.h>
11#endif
12
13int psci_update_dt(void *fdt)
14{
15#ifdef CONFIG_MP
16#if defined(CONFIG_ARMV8_PSCI)
17#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
18 /*
19 * If the PSCI in SEC Firmware didn't work, avoid to update the
20 * device node of PSCI. But still return 0 instead of an error
21 * number to support detecting PSCI dynamically and then switching
22 * the SMP boot method between PSCI and spin-table.
23 */
24 if (sec_firmware_support_psci_version() == 0xffffffff)
25 return 0;
26#endif
27 fdt_psci(fdt);
28#endif
29#endif
30 return 0;
31}