blob: 96ee97539ee0b61c58f4456d22376099386b2e51 [file] [log] [blame]
Jeremy Kerr3d36ee22019-05-30 11:15:37 +08001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +08002
3#ifndef _LIBMCTP_H
4#define _LIBMCTP_H
5
Deepak Kodihallib11ad2c2019-02-28 03:42:22 -06006#ifdef __cplusplus
7extern "C" {
8#endif
9
Jeremy Kerrc7e764a2019-05-28 16:49:03 +080010#include <stdarg.h>
Jeremy Kerr1cd31182019-02-27 18:01:00 +080011#include <stdbool.h>
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080012#include <stdint.h>
Jeremy Kerrf9ffd592019-03-06 09:09:38 +080013#include <stddef.h>
Matt Johnstona3830d22025-01-13 14:22:11 +080014#include <stdalign.h>
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080015
16typedef uint8_t mctp_eid_t;
17
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010018/* Special Endpoint ID values */
Patrick Williamsa721c2d2022-12-04 14:30:26 -060019#define MCTP_EID_NULL 0
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010020#define MCTP_EID_BROADCAST 0xff
21
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080022/* MCTP packet definitions */
23struct mctp_hdr {
Patrick Williamsa721c2d2022-12-04 14:30:26 -060024 uint8_t ver;
25 uint8_t dest;
26 uint8_t src;
27 uint8_t flags_seq_tag;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080028};
29
30/* Definitions for flags_seq_tag field */
Sumanth Bhatf39c3852022-01-10 17:04:10 +053031#define MCTP_HDR_FLAG_SOM (1 << 7)
32#define MCTP_HDR_FLAG_EOM (1 << 6)
33#define MCTP_HDR_FLAG_TO (1 << 3)
34#define MCTP_HDR_TO_SHIFT (3)
35#define MCTP_HDR_TO_MASK (1)
36#define MCTP_HDR_SEQ_SHIFT (4)
37#define MCTP_HDR_SEQ_MASK (0x3)
38#define MCTP_HDR_TAG_SHIFT (0)
39#define MCTP_HDR_TAG_MASK (0x7)
40
Rashmica Guptaf2988972022-11-09 12:26:44 +110041#define MCTP_MESSAGE_TO_SRC true
42#define MCTP_MESSAGE_TO_DST false
43#define MCTP_MESSAGE_CAPTURE_OUTGOING true
44#define MCTP_MESSAGE_CAPTURE_INCOMING false
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080045
Andrew Jeffery73c268e2020-01-30 10:16:09 +103046/* Baseline Transmission Unit and packet size */
Patrick Williamsa721c2d2022-12-04 14:30:26 -060047#define MCTP_BTU 64
48#define MCTP_PACKET_SIZE(unit) ((unit) + sizeof(struct mctp_hdr))
49#define MCTP_BODY_SIZE(unit) ((unit) - sizeof(struct mctp_hdr))
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080050
51/* packet buffers */
52
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080053struct mctp_pktbuf {
Patrick Williamsa721c2d2022-12-04 14:30:26 -060054 size_t start, end, size;
55 size_t mctp_hdr_off;
Matt Johnston4a09e1d2024-09-13 14:55:58 +080056 bool alloc;
Patrick Williamsa721c2d2022-12-04 14:30:26 -060057 unsigned char data[];
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080058};
59
Matt Johnston4a09e1d2024-09-13 14:55:58 +080060#define MCTP_PKTBUF_SIZE(payload) \
61 (MCTP_PACKET_SIZE(payload) + sizeof(struct mctp_pktbuf))
Matt Johnstona3830d22025-01-13 14:22:11 +080062#define PKTBUF_STORAGE_ALIGN __attribute((aligned(alignof(struct mctp_pktbuf))))
Matt Johnston4a09e1d2024-09-13 14:55:58 +080063
64struct mctp;
65struct mctp_bus;
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080066struct mctp_binding;
67
Matt Johnston4a09e1d2024-09-13 14:55:58 +080068/* Initialise a mctp_pktbuf in static storage. Should not be freed.
69 * Storage must be sized to fit the binding,
Matt Johnstona3830d22025-01-13 14:22:11 +080070 * MCTP_PKTBUF_SIZE(binding->pkt_size + binding->pkt_header + binding->pkt_trailer).
71 * storage must be aligned to alignof(struct mctp_pktbuf),
72 * use PKTBUF_STORAGE_ALIGN macro */
Matt Johnston4a09e1d2024-09-13 14:55:58 +080073struct mctp_pktbuf *mctp_pktbuf_init(struct mctp_binding *binding,
74 void *storage);
75/* Allocate and initialise a mctp_pktbuf. Should be freed with
76 * mctp_pktbuf_free */
77struct mctp_pktbuf *mctp_pktbuf_alloc(struct mctp_binding *binding, size_t len);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080078void mctp_pktbuf_free(struct mctp_pktbuf *pkt);
79struct mctp_hdr *mctp_pktbuf_hdr(struct mctp_pktbuf *pkt);
80void *mctp_pktbuf_data(struct mctp_pktbuf *pkt);
Matt Johnston4a09e1d2024-09-13 14:55:58 +080081size_t mctp_pktbuf_size(const struct mctp_pktbuf *pkt);
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080082void *mctp_pktbuf_alloc_start(struct mctp_pktbuf *pkt, size_t size);
83void *mctp_pktbuf_alloc_end(struct mctp_pktbuf *pkt, size_t size);
Matt Johnstondfbf0fd2024-10-28 14:40:29 +080084int mctp_pktbuf_push(struct mctp_pktbuf *pkt, const void *data, size_t len);
Andrew Jefferyeba19a32021-03-09 23:09:40 +103085void *mctp_pktbuf_pop(struct mctp_pktbuf *pkt, size_t len);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080086
87/* MCTP core */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080088
Matt Johnston722d0db2024-09-13 15:51:30 +080089/* Allocate and setup a MCTP instance */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080090struct mctp *mctp_init(void);
Matt Johnston722d0db2024-09-13 15:51:30 +080091/* Cleanup and deallocate a MCTP instance from mctp_init() */
92void mctp_destroy(struct mctp *mctp);
93
94/* Setup a MCTP instance */
Matt Johnstonf9b99f12024-09-17 16:48:34 +080095int mctp_setup(struct mctp *mctp, size_t struct_mctp_size);
Matt Johnston722d0db2024-09-13 15:51:30 +080096/* Release resource of a MCTP instance */
97void mctp_cleanup(struct mctp *mctp);
98
Sumanth Bhat2c820c52020-07-02 00:26:25 +053099void mctp_set_max_message_size(struct mctp *mctp, size_t message_size);
Rashmica Guptaf2988972022-11-09 12:26:44 +1100100typedef void (*mctp_capture_fn)(struct mctp_pktbuf *pkt, bool outgoing,
101 void *user);
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600102void mctp_set_capture_handler(struct mctp *mctp, mctp_capture_fn fn,
103 void *user);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800104
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800105/* Register a binding to the MCTP core, and creates a bus (populating
106 * binding->bus).
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800107 *
108 * If this function is called, the MCTP stack is initialised as an 'endpoint',
109 * and will deliver local packets to a RX callback - see `mctp_set_rx_all()`
110 * below.
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800111 */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600112int mctp_register_bus(struct mctp *mctp, struct mctp_binding *binding,
113 mctp_eid_t eid);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800114
Andrew Jeffery2094c3c2021-08-26 12:32:46 +0930115void mctp_unregister_bus(struct mctp *mctp, struct mctp_binding *binding);
116
Matt Johnston4058b2c2024-11-07 14:53:50 +0800117int mctp_bus_set_eid(struct mctp_binding *binding, mctp_eid_t eid);
118
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800119/* Create a simple bidirectional bridge between busses.
120 *
121 * In this mode, the MCTP stack is initialised as a bridge. There is no EID
122 * defined, so no packets are considered local. Instead, all messages from one
123 * binding are forwarded to the other.
124 */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600125int mctp_bridge_busses(struct mctp *mctp, struct mctp_binding *b1,
126 struct mctp_binding *b2);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800127
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530128typedef void (*mctp_rx_fn)(uint8_t src_eid, bool tag_owner, uint8_t msg_tag,
129 void *data, void *msg, size_t len);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800130
131int mctp_set_rx_all(struct mctp *mctp, mctp_rx_fn fn, void *data);
132
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800133/* Transmit a message.
134 * @msg: The message buffer to send. Must be suitable for
135 * free(), or the custom mctp_set_alloc_ops() m_msg_free.
136 * The mctp stack will take ownership of the buffer
137 * and release it when message transmission is complete or fails.
138 *
139 * If an asynchronous binding is being used, it will return -EBUSY if
140 * a message is already pending for transmission (msg will be freed as usual).
141 * Asynchronous users can test mctp_is_tx_ready() prior to sending.
142 */
143int mctp_message_tx_alloced(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
144 uint8_t msg_tag, void *msg, size_t msg_len);
145
146/* Transmit a message.
147 * @msg: The message buffer to send. Ownership of this buffer
148 * remains with the caller (a copy is made internally with __mctp_msg_alloc).
149 *
150 * If an asynchronous binding is being used, it will return -EBUSY if
151 * a message is already pending for transmission.
152 * Asynchronous users can test mctp_is_tx_ready() prior to sending.
153 *
154 * This is equivalent to duplicating `msg` then calling mctp_message_tx_alloc().
155 */
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530156int mctp_message_tx(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800157 uint8_t msg_tag, const void *msg, size_t msg_len);
158
Matt Johnston61c95992024-09-16 16:50:35 +0800159/* Transmit a request message.
160 * @msg: The message buffer to send. Must be suitable for
161 * free(), or the custom mctp_set_alloc_ops() m_msg_free.
162 *
163 * A tag with Tag Owner bit set will allocated for the sent message,
164 * and returned to the caller (TO bit is unset in the returned @alloc_msg_tag).
165 * alloc_msg_tag may be NULL to ignore the returned tag.
166 * If no tags are spare -EBUSY will be returned.
167 *
168 * If an asynchronous binding is being used, it will return -EBUSY if
169 * a message is already pending for transmission (msg will be freed).
170 * Asynchronous users can test mctp_is_tx_ready() prior to sending.
171 */
172int mctp_message_tx_request(struct mctp *mctp, mctp_eid_t eid, void *msg,
173 size_t msg_len, uint8_t *alloc_msg_tag);
174
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800175bool mctp_is_tx_ready(struct mctp *mctp, mctp_eid_t eid);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800176
177/* hardware bindings */
Andrew Jeffery0721f582022-09-29 12:12:39 +0930178
179/**
180 * @tx: Binding function to transmit one packet on the interface
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800181 * @tx_storage: A buffer for transmitting packets. Must be sized
Matt Johnstona3830d22025-01-13 14:22:11 +0800182 * as MCTP_PKTBUF_SIZE(mtu) and 8 byte aligned.
Andrew Jeffery0721f582022-09-29 12:12:39 +0930183 * Return:
184 * * 0 - Success, pktbuf can be released
185 * * -EMSGSIZE - Packet exceeds binding MTU, pktbuf must be dropped
186 * * -EBUSY - Packet unable to be transmitted, pktbuf must be retained
187 */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800188struct mctp_binding {
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +0100189 const char *name;
190 uint8_t version;
191 struct mctp_bus *bus;
192 struct mctp *mctp;
Andrew Jefferye889b192021-03-12 12:19:33 +1030193 size_t pkt_size;
Andrew Jeffery39da3d02021-03-12 16:51:26 +1030194 size_t pkt_header;
195 size_t pkt_trailer;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800196 void *tx_storage;
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +0100197 int (*start)(struct mctp_binding *binding);
198 int (*tx)(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
199 mctp_rx_fn control_rx;
200 void *control_rx_data;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800201};
202
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800203void mctp_binding_set_tx_enabled(struct mctp_binding *binding, bool enable);
204
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800205/*
206 * Receive a packet from binding to core. Takes ownership of pkt, free()-ing it
207 * after use.
208 */
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800209void mctp_bus_rx(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800210
211/* environment-specific allocation */
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800212void mctp_set_alloc_ops(void *(*m_alloc)(size_t), void (*m_free)(void *),
213 void *(*m_msg_alloc)(size_t, void *),
214 void (*m_msg_free)(void *, void *));
215/* Gets/sets context that will be passed to custom m_msg_ ops */
216void *mctp_get_alloc_ctx(struct mctp *mctp);
217void mctp_set_alloc_ctx(struct mctp *mctp, void *ctx);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800218
Jeremy Kerrc7e764a2019-05-28 16:49:03 +0800219/* environment-specific logging */
Jeremy Kerrcc49e162019-05-30 21:11:16 +0800220
Jeremy Kerrc7e764a2019-05-28 16:49:03 +0800221void mctp_set_log_stdio(int level);
222void mctp_set_log_syslog(void);
223void mctp_set_log_custom(void (*fn)(int, const char *, va_list));
224
Jeremy Kerrcc49e162019-05-30 21:11:16 +0800225/* these should match the syslog-standard LOG_* definitions, for
226 * easier use with syslog */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600227#define MCTP_LOG_ERR 3
228#define MCTP_LOG_WARNING 4
229#define MCTP_LOG_NOTICE 5
230#define MCTP_LOG_INFO 6
231#define MCTP_LOG_DEBUG 7
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800232
Matt Johnston44e64df2024-11-05 16:59:42 +0800233/* Environment-specific time functionality */
234/* The `now` callback returns a timestamp in milliseconds.
235 * Timestamps should be monotonically increasing, and can have an arbitrary
236 * origin. (As long as returned timestamps aren't too close to UINT64_MAX, not
237 * a problem forany reasonable implementation). */
238void mctp_set_now_op(struct mctp *mctp, uint64_t (*now)(void *), void *ctx);
239/* Returns a timestamp in milliseconds */
240uint64_t mctp_now(struct mctp *mctp);
241
Matt Johnston4058b2c2024-11-07 14:53:50 +0800242int mctp_control_handler_enable(struct mctp *mctp);
243void mctp_control_handler_disable(struct mctp *mctp);
244
245/* Add/remove message types to be reported by Get MCTP Version Support.
246 * Control type is added automatically for the control handler */
247int mctp_control_add_type(struct mctp *mctp, uint8_t msg_type);
248void mctp_control_remove_type(struct mctp *mctp, uint8_t msg_type);
249
Deepak Kodihallib11ad2c2019-02-28 03:42:22 -0600250#ifdef __cplusplus
251}
252#endif
253
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800254#endif /* _LIBMCTP_H */