blob: ee6286366df7883f6bb8c41281dbce772e00ab62 [file] [log] [blame]
Etienne Carriere358599e2020-09-09 18:44:00 +02001/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2/*
3 * Copyright (c) 2015-2019, Arm Limited and Contributors. All rights reserved.
4 * Copyright (C) 2019-2020, Linaro Limited
5 *
6 * An SCMI agent device represent on communication path from a
7 * device driver to the remote SCMI server which driver sends
8 * messages to and receives response messages from.
9 */
10#ifndef SCMI_AGENT_H
11#define SCMI_AGENT_H
12
13#include <asm/types.h>
14
15struct udevice;
Etienne Carriere8bcb1b42022-05-31 18:09:18 +020016struct scmi_channel;
Etienne Carriere358599e2020-09-09 18:44:00 +020017
18/*
19 * struct scmi_msg - Context of a SCMI message sent and the response received
20 *
21 * @protocol_id: SCMI protocol ID
22 * @message_id: SCMI message ID for a defined protocol ID
23 * @in_msg: Pointer to the message payload sent by the driver
24 * @in_msg_sz: Byte size of the message payload sent
25 * @out_msg: Pointer to buffer to store response message payload
26 * @out_msg_sz: Byte size of the response buffer and response payload
27 */
28struct scmi_msg {
29 unsigned int protocol_id;
30 unsigned int message_id;
31 u8 *in_msg;
32 size_t in_msg_sz;
33 u8 *out_msg;
34 size_t out_msg_sz;
35};
36
37/* Helper macro to match a message on input/output array references */
38#define SCMI_MSG_IN(_protocol, _message, _in_array, _out_array) \
39 (struct scmi_msg){ \
40 .protocol_id = (_protocol), \
41 .message_id = (_message), \
42 .in_msg = (uint8_t *)&(_in_array), \
43 .in_msg_sz = sizeof(_in_array), \
44 .out_msg = (uint8_t *)&(_out_array), \
45 .out_msg_sz = sizeof(_out_array), \
46 }
47
48/**
Etienne Carriere8e968012022-05-31 18:09:21 +020049 * devm_scmi_of_get_channel() - Get SCMI channel handle from SCMI agent DT node
50 *
51 * @dev: Device requesting a channel
52 * @channel: Output reference to the SCMI channel upon success
53 * @return 0 on success and a negative errno on failure
54 */
55int devm_scmi_of_get_channel(struct udevice *dev, struct scmi_channel **channel);
56
57/**
Etienne Carriere5ddbbd12021-11-08 08:56:07 +010058 * devm_scmi_process_msg() - Send and process an SCMI message
Etienne Carriere358599e2020-09-09 18:44:00 +020059 *
Etienne Carriere5ddbbd12021-11-08 08:56:07 +010060 * Send a message to an SCMI server through a target SCMI agent device.
Etienne Carriere358599e2020-09-09 18:44:00 +020061 * Caller sets scmi_msg::out_msg_sz to the output message buffer size.
62 * On return, scmi_msg::out_msg_sz stores the response payload size.
63 *
Etienne Carriere69837102022-02-21 09:22:40 +010064 * @dev: SCMI device
Etienne Carriere8bcb1b42022-05-31 18:09:18 +020065 * @channel: Communication channel for the device
Etienne Carriere358599e2020-09-09 18:44:00 +020066 * @msg: Message structure reference
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010067 * Return: 0 on success and a negative errno on failure
Etienne Carriere358599e2020-09-09 18:44:00 +020068 */
Etienne Carriere8bcb1b42022-05-31 18:09:18 +020069int devm_scmi_process_msg(struct udevice *dev, struct scmi_channel *channel,
70 struct scmi_msg *msg);
Etienne Carriere358599e2020-09-09 18:44:00 +020071
72/**
73 * scmi_to_linux_errno() - Convert an SCMI error code into a Linux errno code
74 *
75 * @scmi_errno: SCMI error code value
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010076 * Return: 0 for successful status and a negative errno otherwise
Etienne Carriere358599e2020-09-09 18:44:00 +020077 */
78int scmi_to_linux_errno(s32 scmi_errno);
79
80#endif /* SCMI_H */