blob: ac35d07ebaffd2e6a9c839cced7f9b52dffb1796 [file] [log] [blame]
Etienne Carrierea26d0ec2020-09-09 18:44:02 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 Linaro Limited.
4 */
5
Patrick Delaunay5dd84d42021-02-24 11:19:44 +01006#define LOG_CATEGORY UCLASS_SCMI_AGENT
7
Etienne Carrierea26d0ec2020-09-09 18:44:02 +02008#include <dm.h>
9#include <errno.h>
10#include <scmi_agent.h>
11#include <scmi_agent-uclass.h>
12#include <dm/devres.h>
Patrick Delaunay2f7d3a12021-02-24 11:19:43 +010013#include <dm/device_compat.h>
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020014#include <dm/device-internal.h>
15#include <linux/arm-smccc.h>
16#include <linux/compat.h>
17
18#include "smt.h"
19
20#define SMCCC_RET_NOT_SUPPORTED ((unsigned long)-1)
21
22/**
23 * struct scmi_smccc_channel - Description of an SCMI SMCCC transport
24 * @func_id: SMCCC function ID used by the SCMI transport
25 * @smt: Shared memory buffer
26 */
27struct scmi_smccc_channel {
28 ulong func_id;
29 struct scmi_smt smt;
30};
31
Etienne Carrieref28df1d2022-05-31 18:09:23 +020032/**
33 * struct scmi_channel - Channel instance referenced in SCMI drivers
34 * @ref: Reference to local channel instance
35 **/
36struct scmi_channel {
37 struct scmi_smccc_channel ref;
38};
39
Etienne Carriere05440292022-05-31 18:09:19 +020040static int scmi_smccc_process_msg(struct udevice *dev,
41 struct scmi_channel *channel,
42 struct scmi_msg *msg)
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020043{
Etienne Carriere76b690a2022-05-31 18:09:29 +020044 struct scmi_smccc_channel *chan = &channel->ref;
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020045 struct arm_smccc_res res;
46 int ret;
47
48 ret = scmi_write_msg_to_smt(dev, &chan->smt, msg);
49 if (ret)
50 return ret;
51
52 arm_smccc_smc(chan->func_id, 0, 0, 0, 0, 0, 0, 0, &res);
53 if (res.a0 == SMCCC_RET_NOT_SUPPORTED)
54 ret = -ENXIO;
55 else
56 ret = scmi_read_resp_from_smt(dev, &chan->smt, msg);
57
58 scmi_clear_smt_channel(&chan->smt);
59
60 return ret;
61}
62
Etienne Carrieref28df1d2022-05-31 18:09:23 +020063static int setup_channel(struct udevice *dev, struct scmi_smccc_channel *chan)
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020064{
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020065 u32 func_id;
66 int ret;
67
68 if (dev_read_u32(dev, "arm,smc-id", &func_id)) {
69 dev_err(dev, "Missing property func-id\n");
70 return -EINVAL;
71 }
72
73 chan->func_id = func_id;
74
75 ret = scmi_dt_get_smt_buffer(dev, &chan->smt);
Etienne Carrieref6942352021-11-08 08:56:11 +010076 if (ret)
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020077 dev_err(dev, "Failed to get smt resources: %d\n", ret);
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020078
Etienne Carrieref6942352021-11-08 08:56:11 +010079 return ret;
Etienne Carrierea26d0ec2020-09-09 18:44:02 +020080}
81
Etienne Carrieref28df1d2022-05-31 18:09:23 +020082static int scmi_smccc_get_channel(struct udevice *dev,
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +090083 struct udevice *protocol,
Etienne Carrieref28df1d2022-05-31 18:09:23 +020084 struct scmi_channel **channel)
85{
Patrick Delaunay3d8b9502022-09-30 09:36:38 +020086 struct scmi_smccc_channel *base_chan = dev_get_plat(dev);
Etienne Carrieref28df1d2022-05-31 18:09:23 +020087 struct scmi_smccc_channel *chan;
88 u32 func_id;
89 int ret;
90
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +090091 if (dev_read_u32(protocol, "arm,smc-id", &func_id)) {
Etienne Carrieref28df1d2022-05-31 18:09:23 +020092 /* Uses agent base channel */
93 *channel = container_of(base_chan, struct scmi_channel, ref);
94
95 return 0;
96 }
97
98 /* Setup a dedicated channel */
99 chan = calloc(1, sizeof(*chan));
100 if (!chan)
101 return -ENOMEM;
102
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +0900103 ret = setup_channel(protocol, chan);
Etienne Carrieref28df1d2022-05-31 18:09:23 +0200104 if (ret) {
105 free(chan);
106 return ret;
107 }
108
109 *channel = container_of(chan, struct scmi_channel, ref);
110
111 return 0;
112}
113
114static int scmi_smccc_of_to_plat(struct udevice *dev)
115{
116 struct scmi_smccc_channel *chan = dev_get_plat(dev);
117
118 return setup_channel(dev, chan);
119}
120
Etienne Carrierea26d0ec2020-09-09 18:44:02 +0200121static const struct udevice_id scmi_smccc_ids[] = {
122 { .compatible = "arm,scmi-smc" },
123 { }
124};
125
126static const struct scmi_agent_ops scmi_smccc_ops = {
Etienne Carrieref28df1d2022-05-31 18:09:23 +0200127 .of_get_channel = scmi_smccc_get_channel,
Etienne Carrierea26d0ec2020-09-09 18:44:02 +0200128 .process_msg = scmi_smccc_process_msg,
129};
130
131U_BOOT_DRIVER(scmi_smccc) = {
132 .name = "scmi-over-smccc",
133 .id = UCLASS_SCMI_AGENT,
134 .of_match = scmi_smccc_ids,
Etienne Carriere213d5cf2021-11-08 08:56:10 +0100135 .plat_auto = sizeof(struct scmi_smccc_channel),
136 .of_to_plat = scmi_smccc_of_to_plat,
Etienne Carrierea26d0ec2020-09-09 18:44:02 +0200137 .ops = &scmi_smccc_ops,
138};