blob: 7ad3e8da9f08866f4e722fee6f7e292bff9d91c5 [file] [log] [blame]
Etienne Carriere2b412082020-09-09 18:44:01 +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 Carriere2b412082020-09-09 18:44:01 +02008#include <common.h>
9#include <dm.h>
Etienne Carriere2b412082020-09-09 18:44:01 +020010#include <errno.h>
11#include <mailbox.h>
12#include <scmi_agent.h>
13#include <scmi_agent-uclass.h>
Patrick Delaunayd4c9f682021-02-24 11:19:45 +010014#include <dm/device_compat.h>
Etienne Carriere2b412082020-09-09 18:44:01 +020015#include <dm/devres.h>
16#include <linux/compat.h>
17
18#include "smt.h"
19
20#define TIMEOUT_US_10MS 10000
21
22/**
23 * struct scmi_mbox_channel - Description of an SCMI mailbox transport
24 * @smt: Shared memory buffer
25 * @mbox: Mailbox channel description
26 * @timeout_us: Timeout in microseconds for the mailbox transfer
27 */
28struct scmi_mbox_channel {
29 struct scmi_smt smt;
30 struct mbox_chan mbox;
31 ulong timeout_us;
32};
33
Etienne Carriere274c0c22022-05-31 18:09:22 +020034/**
35 * struct scmi_channel - Channel instance referenced in SCMI drivers
36 * @ref: Reference to local channel instance
37 **/
38struct scmi_channel {
39 struct scmi_mbox_channel ref;
40};
41
Etienne Carriere05440292022-05-31 18:09:19 +020042static int scmi_mbox_process_msg(struct udevice *dev,
43 struct scmi_channel *channel,
44 struct scmi_msg *msg)
Etienne Carriere2b412082020-09-09 18:44:01 +020045{
Etienne Carriere76b690a2022-05-31 18:09:29 +020046 struct scmi_mbox_channel *chan = &channel->ref;
Etienne Carriere2b412082020-09-09 18:44:01 +020047 int ret;
48
49 ret = scmi_write_msg_to_smt(dev, &chan->smt, msg);
50 if (ret)
51 return ret;
52
53 /* Give shm addr to mbox in case it is meaningful */
54 ret = mbox_send(&chan->mbox, chan->smt.buf);
55 if (ret) {
56 dev_err(dev, "Message send failed: %d\n", ret);
57 goto out;
58 }
59
60 /* Receive the response */
61 ret = mbox_recv(&chan->mbox, chan->smt.buf, chan->timeout_us);
62 if (ret) {
63 dev_err(dev, "Response failed: %d, abort\n", ret);
64 goto out;
65 }
66
67 ret = scmi_read_resp_from_smt(dev, &chan->smt, msg);
68
69out:
70 scmi_clear_smt_channel(&chan->smt);
71
72 return ret;
73}
74
Etienne Carriere274c0c22022-05-31 18:09:22 +020075static int setup_channel(struct udevice *dev, struct scmi_mbox_channel *chan)
Etienne Carriere2b412082020-09-09 18:44:01 +020076{
Etienne Carriere2b412082020-09-09 18:44:01 +020077 int ret;
78
Etienne Carriere2b412082020-09-09 18:44:01 +020079 ret = mbox_get_by_index(dev, 0, &chan->mbox);
80 if (ret) {
81 dev_err(dev, "Failed to find mailbox: %d\n", ret);
Etienne Carriereadbf0fc2021-11-08 08:56:08 +010082 return ret;
Etienne Carriere2b412082020-09-09 18:44:01 +020083 }
84
85 ret = scmi_dt_get_smt_buffer(dev, &chan->smt);
Etienne Carriere274c0c22022-05-31 18:09:22 +020086 if (ret) {
Etienne Carriere2b412082020-09-09 18:44:01 +020087 dev_err(dev, "Failed to get shm resources: %d\n", ret);
Etienne Carriere274c0c22022-05-31 18:09:22 +020088 return ret;
89 }
Etienne Carriere2b412082020-09-09 18:44:01 +020090
Etienne Carriere274c0c22022-05-31 18:09:22 +020091 chan->timeout_us = TIMEOUT_US_10MS;
92
93 return 0;
94}
95
96static int scmi_mbox_get_channel(struct udevice *dev,
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +090097 struct udevice *protocol,
Etienne Carriere274c0c22022-05-31 18:09:22 +020098 struct scmi_channel **channel)
99{
Patrick Delaunay3d8b9502022-09-30 09:36:38 +0200100 struct scmi_mbox_channel *base_chan = dev_get_plat(dev);
Etienne Carriere274c0c22022-05-31 18:09:22 +0200101 struct scmi_mbox_channel *chan;
102 int ret;
103
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +0900104 if (!dev_read_prop(protocol, "shmem", NULL)) {
Etienne Carriere274c0c22022-05-31 18:09:22 +0200105 /* Uses agent base channel */
106 *channel = container_of(base_chan, struct scmi_channel, ref);
107
108 return 0;
109 }
110
111 chan = calloc(1, sizeof(*chan));
112 if (!chan)
113 return -ENOMEM;
114
115 /* Setup a dedicated channel for the protocol */
AKASHI Takahiro589ec9a2023-10-11 19:06:55 +0900116 ret = setup_channel(protocol, chan);
Etienne Carriere274c0c22022-05-31 18:09:22 +0200117 if (ret) {
118 free(chan);
119 return ret;
120 }
121
122 *channel = (void *)chan;
123
124 return 0;
125}
126
127int scmi_mbox_of_to_plat(struct udevice *dev)
128{
129 struct scmi_mbox_channel *chan = dev_get_plat(dev);
130
131 return setup_channel(dev, chan);
Etienne Carriere2b412082020-09-09 18:44:01 +0200132}
133
134static const struct udevice_id scmi_mbox_ids[] = {
135 { .compatible = "arm,scmi" },
136 { }
137};
138
139static const struct scmi_agent_ops scmi_mbox_ops = {
Etienne Carriere274c0c22022-05-31 18:09:22 +0200140 .of_get_channel = scmi_mbox_get_channel,
Etienne Carriere2b412082020-09-09 18:44:01 +0200141 .process_msg = scmi_mbox_process_msg,
142};
143
144U_BOOT_DRIVER(scmi_mbox) = {
145 .name = "scmi-over-mailbox",
146 .id = UCLASS_SCMI_AGENT,
147 .of_match = scmi_mbox_ids,
Etienne Carriere3119e272021-11-08 08:56:09 +0100148 .plat_auto = sizeof(struct scmi_mbox_channel),
149 .of_to_plat = scmi_mbox_of_to_plat,
Etienne Carriere2b412082020-09-09 18:44:01 +0200150 .ops = &scmi_mbox_ops,
151};