blob: 02de692d66f3efb6275e5c9939d613b6cd1cb86c [file] [log] [blame]
Etienne Carriere358599e2020-09-09 18:44:00 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 Linaro Limited.
4 */
5
Patrick Delaunay9f5e4aa2021-02-24 11:19:44 +01006#define LOG_CATEGORY UCLASS_SCMI_AGENT
7
Etienne Carriere358599e2020-09-09 18:44:00 +02008#include <common.h>
9#include <dm.h>
10#include <errno.h>
11#include <scmi_agent-uclass.h>
12#include <scmi_protocols.h>
Patrick Delaunay0689dc52021-02-24 11:19:45 +010013#include <dm/device_compat.h>
Etienne Carriere358599e2020-09-09 18:44:00 +020014#include <dm/device-internal.h>
15#include <linux/compat.h>
16
17/**
18 * struct error_code - Helper structure for SCMI error code conversion
19 * @scmi: SCMI error code
20 * @errno: Related standard error number
21 */
22struct error_code {
23 int scmi;
24 int errno;
25};
26
27static const struct error_code scmi_linux_errmap[] = {
28 { .scmi = SCMI_NOT_SUPPORTED, .errno = -EOPNOTSUPP, },
29 { .scmi = SCMI_INVALID_PARAMETERS, .errno = -EINVAL, },
30 { .scmi = SCMI_DENIED, .errno = -EACCES, },
31 { .scmi = SCMI_NOT_FOUND, .errno = -ENOENT, },
32 { .scmi = SCMI_OUT_OF_RANGE, .errno = -ERANGE, },
33 { .scmi = SCMI_BUSY, .errno = -EBUSY, },
34 { .scmi = SCMI_COMMS_ERROR, .errno = -ECOMM, },
35 { .scmi = SCMI_GENERIC_ERROR, .errno = -EIO, },
36 { .scmi = SCMI_HARDWARE_ERROR, .errno = -EREMOTEIO, },
37 { .scmi = SCMI_PROTOCOL_ERROR, .errno = -EPROTO, },
38};
39
40int scmi_to_linux_errno(s32 scmi_code)
41{
42 int n;
43
44 if (!scmi_code)
45 return 0;
46
47 for (n = 0; n < ARRAY_SIZE(scmi_linux_errmap); n++)
48 if (scmi_code == scmi_linux_errmap[n].scmi)
AKASHI Takahirob1d774b2023-06-13 10:30:45 +090049 return scmi_linux_errmap[n].errno;
Etienne Carriere358599e2020-09-09 18:44:00 +020050
51 return -EPROTO;
52}
53
54/*
55 * SCMI agent devices binds devices of various uclasses depeding on
56 * the FDT description. scmi_bind_protocol() is a generic bind sequence
57 * called by the uclass at bind stage, that is uclass post_bind.
58 */
59static int scmi_bind_protocols(struct udevice *dev)
60{
61 int ret = 0;
62 ofnode node;
Patrick Delaunay55b0aff2022-11-25 12:56:29 +010063 const char *name;
Etienne Carriere358599e2020-09-09 18:44:00 +020064
65 dev_for_each_subnode(node, dev) {
Etienne Carriere60388842020-09-09 18:44:04 +020066 struct driver *drv = NULL;
Etienne Carriere358599e2020-09-09 18:44:00 +020067 u32 protocol_id;
68
Simon Glass89090662022-09-06 20:27:17 -060069 if (!ofnode_is_enabled(node))
Etienne Carriere358599e2020-09-09 18:44:00 +020070 continue;
71
72 if (ofnode_read_u32(node, "reg", &protocol_id))
73 continue;
74
Patrick Delaunay55b0aff2022-11-25 12:56:29 +010075 name = ofnode_get_name(node);
Etienne Carriere358599e2020-09-09 18:44:00 +020076 switch (protocol_id) {
Etienne Carriere60388842020-09-09 18:44:04 +020077 case SCMI_PROTOCOL_ID_CLOCK:
Jonas Karlman22297582023-04-17 19:07:18 +000078 if (CONFIG_IS_ENABLED(CLK_SCMI))
Simon Glass65e25be2020-12-28 20:34:56 -070079 drv = DM_DRIVER_GET(scmi_clock);
Etienne Carriere60388842020-09-09 18:44:04 +020080 break;
Etienne Carriere34d76fe2020-09-09 18:44:06 +020081 case SCMI_PROTOCOL_ID_RESET_DOMAIN:
82 if (IS_ENABLED(CONFIG_RESET_SCMI))
Simon Glass65e25be2020-12-28 20:34:56 -070083 drv = DM_DRIVER_GET(scmi_reset_domain);
Etienne Carriere34d76fe2020-09-09 18:44:06 +020084 break;
Etienne Carriere1f213ee2021-03-08 22:38:06 +010085 case SCMI_PROTOCOL_ID_VOLTAGE_DOMAIN:
86 if (IS_ENABLED(CONFIG_DM_REGULATOR_SCMI)) {
87 node = ofnode_find_subnode(node, "regulators");
88 if (!ofnode_valid(node)) {
89 dev_err(dev, "no regulators node\n");
90 return -ENXIO;
91 }
92 drv = DM_DRIVER_GET(scmi_voltage_domain);
93 }
94 break;
Etienne Carriere358599e2020-09-09 18:44:00 +020095 default:
Etienne Carriere60388842020-09-09 18:44:04 +020096 break;
97 }
98
99 if (!drv) {
100 dev_dbg(dev, "Ignore unsupported SCMI protocol %#x\n",
101 protocol_id);
Etienne Carriere358599e2020-09-09 18:44:00 +0200102 continue;
103 }
104
Patrick Delaunay55b0aff2022-11-25 12:56:29 +0100105 ret = device_bind(dev, drv, name, NULL, node, NULL);
Etienne Carriere358599e2020-09-09 18:44:00 +0200106 if (ret)
107 break;
108 }
109
110 return ret;
111}
112
Etienne Carriere5a11df32022-05-31 18:09:20 +0200113static struct udevice *find_scmi_transport_device(struct udevice *dev)
114{
115 struct udevice *parent = dev;
116
117 do {
118 parent = dev_get_parent(parent);
119 } while (parent && device_get_uclass_id(parent) != UCLASS_SCMI_AGENT);
120
121 if (!parent)
122 dev_err(dev, "Invalid SCMI device, agent not found\n");
123
124 return parent;
125}
126
Etienne Carriere358599e2020-09-09 18:44:00 +0200127static const struct scmi_agent_ops *transport_dev_ops(struct udevice *dev)
128{
129 return (const struct scmi_agent_ops *)dev->driver->ops;
130}
131
Etienne Carriere8e968012022-05-31 18:09:21 +0200132int devm_scmi_of_get_channel(struct udevice *dev, struct scmi_channel **channel)
133{
134 struct udevice *parent;
135
136 parent = find_scmi_transport_device(dev);
137 if (!parent)
138 return -ENODEV;
139
140 if (transport_dev_ops(parent)->of_get_channel)
Patrick Delaunayeebb9672022-09-30 09:36:38 +0200141 return transport_dev_ops(parent)->of_get_channel(parent, channel);
Etienne Carriere8e968012022-05-31 18:09:21 +0200142
143 /* Drivers without a get_channel operator don't need a channel ref */
144 *channel = NULL;
145
146 return 0;
147}
148
Etienne Carriere8bcb1b42022-05-31 18:09:18 +0200149int devm_scmi_process_msg(struct udevice *dev, struct scmi_channel *channel,
150 struct scmi_msg *msg)
Etienne Carriere358599e2020-09-09 18:44:00 +0200151{
Etienne Carriere69837102022-02-21 09:22:40 +0100152 const struct scmi_agent_ops *ops;
Etienne Carriere5a11df32022-05-31 18:09:20 +0200153 struct udevice *parent;
Etienne Carriere69837102022-02-21 09:22:40 +0100154
Etienne Carriere5a11df32022-05-31 18:09:20 +0200155 parent = find_scmi_transport_device(dev);
156 if (!parent)
Etienne Carriere69837102022-02-21 09:22:40 +0100157 return -ENODEV;
Etienne Carriere69837102022-02-21 09:22:40 +0100158
159 ops = transport_dev_ops(parent);
Etienne Carriere358599e2020-09-09 18:44:00 +0200160
161 if (ops->process_msg)
Etienne Carriere8e968012022-05-31 18:09:21 +0200162 return ops->process_msg(parent, channel, msg);
Etienne Carriere358599e2020-09-09 18:44:00 +0200163
164 return -EPROTONOSUPPORT;
165}
166
167UCLASS_DRIVER(scmi_agent) = {
168 .id = UCLASS_SCMI_AGENT,
169 .name = "scmi_agent",
170 .post_bind = scmi_bind_protocols,
171};