xref: /openbmc/libmctp/libmctp.h (revision b93b6112)
1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
2 
3 #ifndef _LIBMCTP_H
4 #define _LIBMCTP_H
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 #include <stdarg.h>
11 #include <stdbool.h>
12 #include <stdint.h>
13 #include <stddef.h>
14 
15 typedef uint8_t mctp_eid_t;
16 
17 /* Special Endpoint ID values */
18 #define MCTP_EID_NULL 0
19 #define MCTP_EID_BROADCAST 0xff
20 
21 /* MCTP packet definitions */
22 struct mctp_hdr {
23 	uint8_t	ver;
24 	uint8_t	dest;
25 	uint8_t	src;
26 	uint8_t	flags_seq_tag;
27 };
28 
29 /* Definitions for flags_seq_tag field */
30 #define MCTP_HDR_FLAG_SOM	(1<<7)
31 #define MCTP_HDR_FLAG_EOM	(1<<6)
32 #define MCTP_HDR_FLAG_TO	(1<<3)
33 #define MCTP_HDR_SEQ_SHIFT	(4)
34 #define MCTP_HDR_SEQ_MASK	(0x3)
35 #define MCTP_HDR_TAG_SHIFT	(0)
36 #define MCTP_HDR_TAG_MASK	(0x7)
37 
38 /* Baseline Transmission Unit and packet size */
39 #define MCTP_BTU		64
40 #define MCTP_PACKET_SIZE(unit)	((unit) + sizeof(struct mctp_hdr))
41 
42 /* packet buffers */
43 
44 struct mctp_pktbuf {
45 	size_t		start, end, size;
46 	size_t		mctp_hdr_off;
47 	struct mctp_pktbuf *next;
48 	unsigned char	data[];
49 };
50 
51 struct mctp_binding;
52 
53 struct mctp_pktbuf *mctp_pktbuf_alloc(struct mctp_binding *hw, size_t len);
54 void mctp_pktbuf_free(struct mctp_pktbuf *pkt);
55 struct mctp_hdr *mctp_pktbuf_hdr(struct mctp_pktbuf *pkt);
56 void *mctp_pktbuf_data(struct mctp_pktbuf *pkt);
57 uint8_t mctp_pktbuf_size(struct mctp_pktbuf *pkt);
58 void *mctp_pktbuf_alloc_start(struct mctp_pktbuf *pkt, size_t size);
59 void *mctp_pktbuf_alloc_end(struct mctp_pktbuf *pkt, size_t size);
60 int mctp_pktbuf_push(struct mctp_pktbuf *pkt, void *data, size_t len);
61 
62 /* MCTP core */
63 struct mctp;
64 struct mctp_bus;
65 
66 struct mctp *mctp_init(void);
67 void mctp_destroy(struct mctp *mctp);
68 
69 /* Register a binding to the MCTP core, and creates a bus (populating
70  * binding->bus).
71  *
72  * If this function is called, the MCTP stack is initialised as an 'endpoint',
73  * and will deliver local packets to a RX callback - see `mctp_set_rx_all()`
74  * below.
75  */
76 int mctp_register_bus(struct mctp *mctp,
77 		struct mctp_binding *binding,
78 		mctp_eid_t eid);
79 
80 /* Create a simple bidirectional bridge between busses.
81  *
82  * In this mode, the MCTP stack is initialised as a bridge. There is no EID
83  * defined, so no packets are considered local. Instead, all messages from one
84  * binding are forwarded to the other.
85  */
86 int mctp_bridge_busses(struct mctp *mctp,
87 		struct mctp_binding *b1, struct mctp_binding *b2);
88 
89 typedef void (*mctp_rx_fn)(uint8_t src_eid, void *data,
90 		void *msg, size_t len);
91 
92 int mctp_set_rx_all(struct mctp *mctp, mctp_rx_fn fn, void *data);
93 
94 int mctp_message_tx(struct mctp *mctp, mctp_eid_t eid,
95 		void *msg, size_t msg_len);
96 
97 /* hardware bindings */
98 struct mctp_binding {
99 	const char *name;
100 	uint8_t version;
101 	struct mctp_bus *bus;
102 	struct mctp *mctp;
103 	int pkt_size;
104 	int pkt_pad;
105 	int (*start)(struct mctp_binding *binding);
106 	int (*tx)(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
107 	mctp_rx_fn control_rx;
108 	void *control_rx_data;
109 };
110 
111 void mctp_binding_set_tx_enabled(struct mctp_binding *binding, bool enable);
112 
113 /*
114  * Receive a packet from binding to core. Takes ownership of pkt, free()-ing it
115  * after use.
116  */
117 void mctp_bus_rx(struct mctp_binding *binding, struct mctp_pktbuf *pkt);
118 
119 /* environment-specific allocation */
120 void mctp_set_alloc_ops(void *(*alloc)(size_t),
121 		void (*free)(void *),
122 		void *(realloc)(void *, size_t));
123 
124 /* environment-specific logging */
125 
126 void mctp_set_log_stdio(int level);
127 void mctp_set_log_syslog(void);
128 void mctp_set_log_custom(void (*fn)(int, const char *, va_list));
129 
130 /* these should match the syslog-standard LOG_* definitions, for
131  * easier use with syslog */
132 #define MCTP_LOG_ERR		3
133 #define MCTP_LOG_WARNING	4
134 #define MCTP_LOG_NOTICE		5
135 #define MCTP_LOG_INFO		6
136 #define MCTP_LOG_DEBUG		7
137 
138 
139 #ifdef __cplusplus
140 }
141 #endif
142 
143 #endif /* _LIBMCTP_H */
144