blob: 825fe1eefb3cc04610f1d5321e837a18258d31df [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hou Zhiqiang45684ae2016-06-28 20:18:16 +08002/*
3 * Copyright 2016 NXP Semiconductor, Inc.
Hou Zhiqiang45684ae2016-06-28 20:18:16 +08004 */
5
6#include <common.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +09007#include <linux/libfdt.h>
Hou Zhiqiang45684ae2016-06-28 20:18:16 +08008#include <fdt_support.h>
9#include <linux/sizes.h>
10#include <linux/kernel.h>
11#include <asm/psci.h>
12#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
13#include <asm/armv8/sec_firmware.h>
14#endif
15
16int fdt_psci(void *fdt)
17{
macro.wave.z@gmail.com9a561752016-12-08 11:58:25 +080018#if defined(CONFIG_ARMV7_PSCI) || defined(CONFIG_ARMV8_PSCI) || \
Hou Zhiqiangdaa92642017-01-16 17:31:48 +080019 defined(CONFIG_SEC_FIRMWARE_ARMV8_PSCI)
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080020 int nodeoff;
21 unsigned int psci_ver = 0;
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080022 int tmp;
23
24 nodeoff = fdt_path_offset(fdt, "/cpus");
25 if (nodeoff < 0) {
26 printf("couldn't find /cpus\n");
27 return nodeoff;
28 }
29
30 /* add 'enable-method = "psci"' to each cpu node */
31 for (tmp = fdt_first_subnode(fdt, nodeoff);
32 tmp >= 0;
33 tmp = fdt_next_subnode(fdt, tmp)) {
34 const struct fdt_property *prop;
35 int len;
36
37 prop = fdt_get_property(fdt, tmp, "device_type", &len);
38 if (!prop)
39 continue;
40 if (len < 4)
41 continue;
42 if (strcmp(prop->data, "cpu"))
43 continue;
44
45 /*
46 * Not checking rv here, our approach is to skip over errors in
47 * individual cpu nodes, hopefully some of the nodes are
48 * processed correctly and those will boot
49 */
50 fdt_setprop_string(fdt, tmp, "enable-method", "psci");
51 }
52
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080053 nodeoff = fdt_path_offset(fdt, "/psci");
54 if (nodeoff >= 0)
55 goto init_psci_node;
56
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080057 nodeoff = fdt_path_offset(fdt, "/");
58 if (nodeoff < 0)
59 return nodeoff;
60
61 nodeoff = fdt_add_subnode(fdt, nodeoff, "psci");
62 if (nodeoff < 0)
63 return nodeoff;
64
65init_psci_node:
66#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
67 psci_ver = sec_firmware_support_psci_version();
macro.wave.z@gmail.com9a561752016-12-08 11:58:25 +080068#elif defined(CONFIG_ARMV7_PSCI_1_0) || defined(CONFIG_ARMV8_PSCI)
Hou Zhiqiangbded2182016-07-29 18:26:37 +080069 psci_ver = ARM_PSCI_VER_1_0;
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080070#endif
Andre Heider678382c2018-02-09 08:10:22 +010071 if (psci_ver >= ARM_PSCI_VER_1_0) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080072 tmp = fdt_setprop_string(fdt, nodeoff,
73 "compatible", "arm,psci-1.0");
74 if (tmp)
75 return tmp;
Andre Heider678382c2018-02-09 08:10:22 +010076 }
77
78 if (psci_ver >= ARM_PSCI_VER_0_2) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080079 tmp = fdt_appendprop_string(fdt, nodeoff,
80 "compatible", "arm,psci-0.2");
81 if (tmp)
82 return tmp;
Andre Heider678382c2018-02-09 08:10:22 +010083 }
84
85#ifndef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
Hou Zhiqiang2c774162016-07-29 18:26:36 +080086 /*
87 * The Secure firmware framework isn't able to support PSCI version 0.1.
88 */
Andre Heider678382c2018-02-09 08:10:22 +010089 if (psci_ver < ARM_PSCI_VER_0_2) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080090 tmp = fdt_appendprop_string(fdt, nodeoff,
91 "compatible", "arm,psci");
92 if (tmp)
93 return tmp;
94 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_suspend",
95 ARM_PSCI_FN_CPU_SUSPEND);
96 if (tmp)
97 return tmp;
98 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_off",
99 ARM_PSCI_FN_CPU_OFF);
100 if (tmp)
101 return tmp;
102 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_on",
103 ARM_PSCI_FN_CPU_ON);
104 if (tmp)
105 return tmp;
106 tmp = fdt_setprop_u32(fdt, nodeoff, "migrate",
107 ARM_PSCI_FN_MIGRATE);
108 if (tmp)
109 return tmp;
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800110 }
Andre Heider678382c2018-02-09 08:10:22 +0100111#endif
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800112
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800113 tmp = fdt_setprop_string(fdt, nodeoff, "method", "smc");
114 if (tmp)
115 return tmp;
116
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800117#endif
118 return 0;
119}