blob: 2cb35f356f40ae2c3b58ca0a2cff6207c7fd14e6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada573a3812017-04-14 11:10:24 +09002/*
3 * Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com>
4 *
5 * Based on drivers/firmware/psci.c from Linux:
6 * Copyright (C) 2015 ARM Limited
Masahiro Yamada573a3812017-04-14 11:10:24 +09007 */
8
9#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -060010#include <dm.h>
Masahiro Yamada573a3812017-04-14 11:10:24 +090011#include <dm/lists.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090012#include <linux/libfdt.h>
Masahiro Yamada573a3812017-04-14 11:10:24 +090013#include <linux/arm-smccc.h>
14#include <linux/errno.h>
Masahiro Yamadaaf4e6d32017-11-29 15:04:40 +090015#include <linux/printk.h>
Masahiro Yamada573a3812017-04-14 11:10:24 +090016#include <linux/psci.h>
17
18psci_fn *invoke_psci_fn;
19
20static unsigned long __invoke_psci_fn_hvc(unsigned long function_id,
21 unsigned long arg0, unsigned long arg1,
22 unsigned long arg2)
23{
24 struct arm_smccc_res res;
25
26 arm_smccc_hvc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
27 return res.a0;
28}
29
30static unsigned long __invoke_psci_fn_smc(unsigned long function_id,
31 unsigned long arg0, unsigned long arg1,
32 unsigned long arg2)
33{
34 struct arm_smccc_res res;
35
36 arm_smccc_smc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
37 return res.a0;
38}
39
40static int psci_bind(struct udevice *dev)
41{
42 /* No SYSTEM_RESET support for PSCI 0.1 */
Simon Glass911f3ae2017-05-18 20:08:57 -060043 if (device_is_compatible(dev, "arm,psci-0.2") ||
44 device_is_compatible(dev, "arm,psci-1.0")) {
Masahiro Yamada573a3812017-04-14 11:10:24 +090045 int ret;
46
47 /* bind psci-sysreset optionally */
48 ret = device_bind_driver(dev, "psci-sysreset", "psci-sysreset",
49 NULL);
50 if (ret)
Masahiro Yamadaaf4e6d32017-11-29 15:04:40 +090051 pr_debug("PSCI System Reset was not bound.\n");
Masahiro Yamada573a3812017-04-14 11:10:24 +090052 }
53
54 return 0;
55}
56
57static int psci_probe(struct udevice *dev)
58{
59 DECLARE_GLOBAL_DATA_PTR;
60 const char *method;
61
Simon Glassda409cc2017-05-17 17:18:09 -060062 method = fdt_stringlist_get(gd->fdt_blob, dev_of_offset(dev), "method",
63 0, NULL);
Masahiro Yamada573a3812017-04-14 11:10:24 +090064 if (!method) {
Masahiro Yamadaaf4e6d32017-11-29 15:04:40 +090065 pr_warn("missing \"method\" property\n");
Masahiro Yamada573a3812017-04-14 11:10:24 +090066 return -ENXIO;
67 }
68
69 if (!strcmp("hvc", method)) {
70 invoke_psci_fn = __invoke_psci_fn_hvc;
71 } else if (!strcmp("smc", method)) {
72 invoke_psci_fn = __invoke_psci_fn_smc;
73 } else {
Masahiro Yamadaaf4e6d32017-11-29 15:04:40 +090074 pr_warn("invalid \"method\" property: %s\n", method);
Masahiro Yamada573a3812017-04-14 11:10:24 +090075 return -EINVAL;
76 }
77
78 return 0;
79}
80
81static const struct udevice_id psci_of_match[] = {
82 { .compatible = "arm,psci" },
83 { .compatible = "arm,psci-0.2" },
84 { .compatible = "arm,psci-1.0" },
85 {},
86};
87
88U_BOOT_DRIVER(psci) = {
89 .name = "psci",
90 .id = UCLASS_FIRMWARE,
91 .of_match = psci_of_match,
92 .bind = psci_bind,
93 .probe = psci_probe,
94};