Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2020 Linaro Limited. |
| 4 | */ |
| 5 | |
Patrick Delaunay | 5dd84d4 | 2021-02-24 11:19:44 +0100 | [diff] [blame] | 6 | #define LOG_CATEGORY UCLASS_SCMI_AGENT |
| 7 | |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <errno.h> |
| 11 | #include <scmi_agent.h> |
| 12 | #include <scmi_agent-uclass.h> |
| 13 | #include <dm/devres.h> |
Patrick Delaunay | 2f7d3a1 | 2021-02-24 11:19:43 +0100 | [diff] [blame] | 14 | #include <dm/device_compat.h> |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 15 | #include <dm/device-internal.h> |
| 16 | #include <linux/arm-smccc.h> |
| 17 | #include <linux/compat.h> |
| 18 | |
| 19 | #include "smt.h" |
| 20 | |
| 21 | #define SMCCC_RET_NOT_SUPPORTED ((unsigned long)-1) |
| 22 | |
| 23 | /** |
| 24 | * struct scmi_smccc_channel - Description of an SCMI SMCCC transport |
| 25 | * @func_id: SMCCC function ID used by the SCMI transport |
| 26 | * @smt: Shared memory buffer |
| 27 | */ |
| 28 | struct scmi_smccc_channel { |
| 29 | ulong func_id; |
| 30 | struct scmi_smt smt; |
| 31 | }; |
| 32 | |
Etienne Carriere | f28df1d | 2022-05-31 18:09:23 +0200 | [diff] [blame] | 33 | /** |
| 34 | * struct scmi_channel - Channel instance referenced in SCMI drivers |
| 35 | * @ref: Reference to local channel instance |
| 36 | **/ |
| 37 | struct scmi_channel { |
| 38 | struct scmi_smccc_channel ref; |
| 39 | }; |
| 40 | |
Etienne Carriere | 0544029 | 2022-05-31 18:09:19 +0200 | [diff] [blame] | 41 | static int scmi_smccc_process_msg(struct udevice *dev, |
| 42 | struct scmi_channel *channel, |
| 43 | struct scmi_msg *msg) |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 44 | { |
Etienne Carriere | 76b690a | 2022-05-31 18:09:29 +0200 | [diff] [blame] | 45 | struct scmi_smccc_channel *chan = &channel->ref; |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 46 | struct arm_smccc_res res; |
| 47 | int ret; |
| 48 | |
| 49 | ret = scmi_write_msg_to_smt(dev, &chan->smt, msg); |
| 50 | if (ret) |
| 51 | return ret; |
| 52 | |
| 53 | arm_smccc_smc(chan->func_id, 0, 0, 0, 0, 0, 0, 0, &res); |
| 54 | if (res.a0 == SMCCC_RET_NOT_SUPPORTED) |
| 55 | ret = -ENXIO; |
| 56 | else |
| 57 | ret = scmi_read_resp_from_smt(dev, &chan->smt, msg); |
| 58 | |
| 59 | scmi_clear_smt_channel(&chan->smt); |
| 60 | |
| 61 | return ret; |
| 62 | } |
| 63 | |
Etienne Carriere | f28df1d | 2022-05-31 18:09:23 +0200 | [diff] [blame] | 64 | static int setup_channel(struct udevice *dev, struct scmi_smccc_channel *chan) |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 65 | { |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 66 | u32 func_id; |
| 67 | int ret; |
| 68 | |
| 69 | if (dev_read_u32(dev, "arm,smc-id", &func_id)) { |
| 70 | dev_err(dev, "Missing property func-id\n"); |
| 71 | return -EINVAL; |
| 72 | } |
| 73 | |
| 74 | chan->func_id = func_id; |
| 75 | |
| 76 | ret = scmi_dt_get_smt_buffer(dev, &chan->smt); |
Etienne Carriere | f694235 | 2021-11-08 08:56:11 +0100 | [diff] [blame] | 77 | if (ret) |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 78 | dev_err(dev, "Failed to get smt resources: %d\n", ret); |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 79 | |
Etienne Carriere | f694235 | 2021-11-08 08:56:11 +0100 | [diff] [blame] | 80 | return ret; |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 81 | } |
| 82 | |
Etienne Carriere | f28df1d | 2022-05-31 18:09:23 +0200 | [diff] [blame] | 83 | static int scmi_smccc_get_channel(struct udevice *dev, |
| 84 | struct scmi_channel **channel) |
| 85 | { |
Patrick Delaunay | 3d8b950 | 2022-09-30 09:36:38 +0200 | [diff] [blame] | 86 | struct scmi_smccc_channel *base_chan = dev_get_plat(dev); |
Etienne Carriere | f28df1d | 2022-05-31 18:09:23 +0200 | [diff] [blame] | 87 | struct scmi_smccc_channel *chan; |
| 88 | u32 func_id; |
| 89 | int ret; |
| 90 | |
| 91 | if (dev_read_u32(dev, "arm,smc-id", &func_id)) { |
| 92 | /* 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 | |
| 103 | ret = setup_channel(dev, chan); |
| 104 | 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 | |
| 114 | static 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 Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 121 | static const struct udevice_id scmi_smccc_ids[] = { |
| 122 | { .compatible = "arm,scmi-smc" }, |
| 123 | { } |
| 124 | }; |
| 125 | |
| 126 | static const struct scmi_agent_ops scmi_smccc_ops = { |
Etienne Carriere | f28df1d | 2022-05-31 18:09:23 +0200 | [diff] [blame] | 127 | .of_get_channel = scmi_smccc_get_channel, |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 128 | .process_msg = scmi_smccc_process_msg, |
| 129 | }; |
| 130 | |
| 131 | U_BOOT_DRIVER(scmi_smccc) = { |
| 132 | .name = "scmi-over-smccc", |
| 133 | .id = UCLASS_SCMI_AGENT, |
| 134 | .of_match = scmi_smccc_ids, |
Etienne Carriere | 213d5cf | 2021-11-08 08:56:10 +0100 | [diff] [blame] | 135 | .plat_auto = sizeof(struct scmi_smccc_channel), |
| 136 | .of_to_plat = scmi_smccc_of_to_plat, |
Etienne Carriere | a26d0ec | 2020-09-09 18:44:02 +0200 | [diff] [blame] | 137 | .ops = &scmi_smccc_ops, |
| 138 | }; |