Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2020 Linaro Limited. |
| 4 | */ |
| 5 | |
Patrick Delaunay | 9f5e4aa | 2021-02-24 11:19:44 +0100 | [diff] [blame] | 6 | #define LOG_CATEGORY UCLASS_SCMI_AGENT |
| 7 | |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <errno.h> |
| 11 | #include <scmi_agent-uclass.h> |
| 12 | #include <scmi_protocols.h> |
Patrick Delaunay | 0689dc5 | 2021-02-24 11:19:45 +0100 | [diff] [blame^] | 13 | #include <dm/device_compat.h> |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 14 | #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 | */ |
| 22 | struct error_code { |
| 23 | int scmi; |
| 24 | int errno; |
| 25 | }; |
| 26 | |
| 27 | static 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 | |
| 40 | int 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) |
| 49 | return scmi_linux_errmap[1].errno; |
| 50 | |
| 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 | */ |
| 59 | static int scmi_bind_protocols(struct udevice *dev) |
| 60 | { |
| 61 | int ret = 0; |
| 62 | ofnode node; |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 63 | |
| 64 | dev_for_each_subnode(node, dev) { |
Etienne Carriere | 6038884 | 2020-09-09 18:44:04 +0200 | [diff] [blame] | 65 | struct driver *drv = NULL; |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 66 | u32 protocol_id; |
| 67 | |
| 68 | if (!ofnode_is_available(node)) |
| 69 | continue; |
| 70 | |
| 71 | if (ofnode_read_u32(node, "reg", &protocol_id)) |
| 72 | continue; |
| 73 | |
| 74 | switch (protocol_id) { |
Etienne Carriere | 6038884 | 2020-09-09 18:44:04 +0200 | [diff] [blame] | 75 | case SCMI_PROTOCOL_ID_CLOCK: |
| 76 | if (IS_ENABLED(CONFIG_CLK_SCMI)) |
Simon Glass | 65e25be | 2020-12-28 20:34:56 -0700 | [diff] [blame] | 77 | drv = DM_DRIVER_GET(scmi_clock); |
Etienne Carriere | 6038884 | 2020-09-09 18:44:04 +0200 | [diff] [blame] | 78 | break; |
Etienne Carriere | 34d76fe | 2020-09-09 18:44:06 +0200 | [diff] [blame] | 79 | case SCMI_PROTOCOL_ID_RESET_DOMAIN: |
| 80 | if (IS_ENABLED(CONFIG_RESET_SCMI)) |
Simon Glass | 65e25be | 2020-12-28 20:34:56 -0700 | [diff] [blame] | 81 | drv = DM_DRIVER_GET(scmi_reset_domain); |
Etienne Carriere | 34d76fe | 2020-09-09 18:44:06 +0200 | [diff] [blame] | 82 | break; |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 83 | default: |
Etienne Carriere | 6038884 | 2020-09-09 18:44:04 +0200 | [diff] [blame] | 84 | break; |
| 85 | } |
| 86 | |
| 87 | if (!drv) { |
| 88 | dev_dbg(dev, "Ignore unsupported SCMI protocol %#x\n", |
| 89 | protocol_id); |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 90 | continue; |
| 91 | } |
| 92 | |
Simon Glass | 734206d | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 93 | ret = device_bind(dev, drv, ofnode_get_name(node), NULL, node, |
| 94 | NULL); |
Etienne Carriere | 358599e | 2020-09-09 18:44:00 +0200 | [diff] [blame] | 95 | if (ret) |
| 96 | break; |
| 97 | } |
| 98 | |
| 99 | return ret; |
| 100 | } |
| 101 | |
| 102 | static const struct scmi_agent_ops *transport_dev_ops(struct udevice *dev) |
| 103 | { |
| 104 | return (const struct scmi_agent_ops *)dev->driver->ops; |
| 105 | } |
| 106 | |
| 107 | int devm_scmi_process_msg(struct udevice *dev, struct scmi_msg *msg) |
| 108 | { |
| 109 | const struct scmi_agent_ops *ops = transport_dev_ops(dev); |
| 110 | |
| 111 | if (ops->process_msg) |
| 112 | return ops->process_msg(dev, msg); |
| 113 | |
| 114 | return -EPROTONOSUPPORT; |
| 115 | } |
| 116 | |
| 117 | UCLASS_DRIVER(scmi_agent) = { |
| 118 | .id = UCLASS_SCMI_AGENT, |
| 119 | .name = "scmi_agent", |
| 120 | .post_bind = scmi_bind_protocols, |
| 121 | }; |