blob: 246f3c7cb84a1a0ef57ec0e956099c45f223b0f5 [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;
Stephen Warren326bd722018-06-22 13:03:17 -060070#elif defined(CONFIG_ARMV7_PSCI_0_2)
71 psci_ver = ARM_PSCI_VER_0_2;
Hou Zhiqiang45684ae2016-06-28 20:18:16 +080072#endif
Andre Heider678382c2018-02-09 08:10:22 +010073 if (psci_ver >= ARM_PSCI_VER_1_0) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080074 tmp = fdt_setprop_string(fdt, nodeoff,
75 "compatible", "arm,psci-1.0");
76 if (tmp)
77 return tmp;
Andre Heider678382c2018-02-09 08:10:22 +010078 }
79
80 if (psci_ver >= ARM_PSCI_VER_0_2) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080081 tmp = fdt_appendprop_string(fdt, nodeoff,
82 "compatible", "arm,psci-0.2");
83 if (tmp)
84 return tmp;
Andre Heider678382c2018-02-09 08:10:22 +010085 }
86
87#ifndef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
Hou Zhiqiang2c774162016-07-29 18:26:36 +080088 /*
89 * The Secure firmware framework isn't able to support PSCI version 0.1.
90 */
Andre Heider678382c2018-02-09 08:10:22 +010091 if (psci_ver < ARM_PSCI_VER_0_2) {
Hou Zhiqiang2c774162016-07-29 18:26:36 +080092 tmp = fdt_appendprop_string(fdt, nodeoff,
93 "compatible", "arm,psci");
94 if (tmp)
95 return tmp;
96 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_suspend",
97 ARM_PSCI_FN_CPU_SUSPEND);
98 if (tmp)
99 return tmp;
100 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_off",
101 ARM_PSCI_FN_CPU_OFF);
102 if (tmp)
103 return tmp;
104 tmp = fdt_setprop_u32(fdt, nodeoff, "cpu_on",
105 ARM_PSCI_FN_CPU_ON);
106 if (tmp)
107 return tmp;
108 tmp = fdt_setprop_u32(fdt, nodeoff, "migrate",
109 ARM_PSCI_FN_MIGRATE);
110 if (tmp)
111 return tmp;
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800112 }
Andre Heider678382c2018-02-09 08:10:22 +0100113#endif
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800114
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800115 tmp = fdt_setprop_string(fdt, nodeoff, "method", "smc");
116 if (tmp)
117 return tmp;
118
Stephen Warren74c69cd2018-06-22 13:03:18 -0600119 tmp = fdt_setprop_string(fdt, nodeoff, "status", "okay");
120 if (tmp)
121 return tmp;
122
Hou Zhiqiang45684ae2016-06-28 20:18:16 +0800123#endif
124 return 0;
125}