blob: ce8fe4993905b5fe25f7d96d532813159942431f [file] [log] [blame]
Etienne Carriere2b412082020-09-09 18:44:01 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2015-2019, Arm Limited and Contributors. All rights reserved.
4 * Copyright (C) 2019-2020 Linaro Limited.
5 */
6
7#include <common.h>
8#include <cpu_func.h>
9#include <dm.h>
10#include <errno.h>
11#include <scmi_agent.h>
12#include <asm/cache.h>
13#include <asm/system.h>
14#include <dm/ofnode.h>
15#include <linux/compat.h>
16#include <linux/io.h>
17#include <linux/ioport.h>
18
19#include "smt.h"
20
21/**
22 * Get shared memory configuration defined by the referred DT phandle
23 * Return with a errno compliant value.
24 */
25int scmi_dt_get_smt_buffer(struct udevice *dev, struct scmi_smt *smt)
26{
27 int ret;
28 struct ofnode_phandle_args args;
29 struct resource resource;
30 fdt32_t faddr;
31 phys_addr_t paddr;
32
33 ret = dev_read_phandle_with_args(dev, "shmem", NULL, 0, 0, &args);
34 if (ret)
35 return ret;
36
37 ret = ofnode_read_resource(args.node, 0, &resource);
38 if (ret)
39 return ret;
40
41 faddr = cpu_to_fdt32(resource.start);
42 paddr = ofnode_translate_address(args.node, &faddr);
43
44 smt->size = resource_size(&resource);
45 if (smt->size < sizeof(struct scmi_smt_header)) {
46 dev_err(dev, "Shared memory buffer too small\n");
47 return -EINVAL;
48 }
49
50 smt->buf = devm_ioremap(dev, paddr, smt->size);
51 if (!smt->buf)
52 return -ENOMEM;
53
54#ifdef CONFIG_ARM
55 if (dcache_status())
56 mmu_set_region_dcache_behaviour((uintptr_t)smt->buf,
57 smt->size, DCACHE_OFF);
58#endif
59
60 return 0;
61}
62
63/**
64 * Write SCMI message @msg into a SMT shared buffer @smt.
65 * Return 0 on success and with a negative errno in case of error.
66 */
67int scmi_write_msg_to_smt(struct udevice *dev, struct scmi_smt *smt,
68 struct scmi_msg *msg)
69{
70 struct scmi_smt_header *hdr = (void *)smt->buf;
71
72 if ((!msg->in_msg && msg->in_msg_sz) ||
73 (!msg->out_msg && msg->out_msg_sz))
74 return -EINVAL;
75
76 if (!(hdr->channel_status & SCMI_SHMEM_CHAN_STAT_CHANNEL_FREE)) {
77 dev_dbg(dev, "Channel busy\n");
78 return -EBUSY;
79 }
80
81 if (smt->size < (sizeof(*hdr) + msg->in_msg_sz) ||
82 smt->size < (sizeof(*hdr) + msg->out_msg_sz)) {
83 dev_dbg(dev, "Buffer too small\n");
84 return -ETOOSMALL;
85 }
86
87 /* Load message in shared memory */
88 hdr->channel_status &= ~SCMI_SHMEM_CHAN_STAT_CHANNEL_FREE;
89 hdr->length = msg->in_msg_sz + sizeof(hdr->msg_header);
90 hdr->msg_header = SMT_HEADER_TOKEN(0) |
91 SMT_HEADER_MESSAGE_TYPE(0) |
92 SMT_HEADER_PROTOCOL_ID(msg->protocol_id) |
93 SMT_HEADER_MESSAGE_ID(msg->message_id);
94
95 memcpy_toio(hdr->msg_payload, msg->in_msg, msg->in_msg_sz);
96
97 return 0;
98}
99
100/**
101 * Read SCMI message from a SMT shared buffer @smt and copy it into @msg.
102 * Return 0 on success and with a negative errno in case of error.
103 */
104int scmi_read_resp_from_smt(struct udevice *dev, struct scmi_smt *smt,
105 struct scmi_msg *msg)
106{
107 struct scmi_smt_header *hdr = (void *)smt->buf;
108
109 if (!(hdr->channel_status & SCMI_SHMEM_CHAN_STAT_CHANNEL_FREE)) {
110 dev_err(dev, "Channel unexpectedly busy\n");
111 return -EBUSY;
112 }
113
114 if (hdr->channel_status & SCMI_SHMEM_CHAN_STAT_CHANNEL_ERROR) {
115 dev_err(dev, "Channel error reported, reset channel\n");
116 return -ECOMM;
117 }
118
119 if (hdr->length > msg->out_msg_sz + sizeof(hdr->msg_header)) {
120 dev_err(dev, "Buffer to small\n");
121 return -ETOOSMALL;
122 }
123
124 /* Get the data */
125 msg->out_msg_sz = hdr->length - sizeof(hdr->msg_header);
126 memcpy_fromio(msg->out_msg, hdr->msg_payload, msg->out_msg_sz);
127
128 return 0;
129}
130
131/**
132 * Clear SMT flags in shared buffer to allow further message exchange
133 */
134void scmi_clear_smt_channel(struct scmi_smt *smt)
135{
136 struct scmi_smt_header *hdr = (void *)smt->buf;
137
138 hdr->channel_status &= ~SCMI_SHMEM_CHAN_STAT_CHANNEL_ERROR;
139}