blob: 80f35130500099d135a22e36e1f1e2e8630549a1 [file] [log] [blame]
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +01001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
2#ifndef _LIBMCTP_CMDS_H
3#define _LIBMCTP_CMDS_H
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#include "libmctp.h"
10
11/*
12 * Helper structs and functions for MCTP control messages.
13 * See DSP0236 v1.3.0 sec. 11 for reference.
14 */
15
16struct mctp_ctrl_msg_hdr {
17 uint8_t ic_msg_type;
18 uint8_t rq_dgram_inst;
19 uint8_t command_code;
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010020};
21
Andrew Jeffery87375382020-06-19 17:20:17 +093022#define MCTP_CTRL_HDR_MSG_TYPE 0
23#define MCTP_CTRL_HDR_FLAG_REQUEST (1 << 7)
24#define MCTP_CTRL_HDR_FLAG_DGRAM (1 << 6)
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010025#define MCTP_CTRL_HDR_INSTANCE_ID_MASK 0x1F
26
27/*
28 * MCTP Control Command IDs
29 * See DSP0236 v1.3.0 Table 12.
30 */
Andrew Jeffery87375382020-06-19 17:20:17 +093031#define MCTP_CTRL_CMD_RESERVED 0x00
32#define MCTP_CTRL_CMD_SET_ENDPOINT_ID 0x01
33#define MCTP_CTRL_CMD_GET_ENDPOINT_ID 0x02
34#define MCTP_CTRL_CMD_GET_ENDPOINT_UUID 0x03
35#define MCTP_CTRL_CMD_GET_VERSION_SUPPORT 0x04
36#define MCTP_CTRL_CMD_GET_MESSAGE_TYPE_SUPPORT 0x05
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010037#define MCTP_CTRL_CMD_GET_VENDOR_MESSAGE_SUPPORT 0x06
Andrew Jeffery87375382020-06-19 17:20:17 +093038#define MCTP_CTRL_CMD_RESOLVE_ENDPOINT_ID 0x07
39#define MCTP_CTRL_CMD_ALLOCATE_ENDPOINT_IDS 0x08
40#define MCTP_CTRL_CMD_ROUTING_INFO_UPDATE 0x09
41#define MCTP_CTRL_CMD_GET_ROUTING_TABLE_ENTRIES 0x0A
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010042#define MCTP_CTRL_CMD_PREPARE_ENDPOINT_DISCOVERY 0x0B
Andrew Jeffery87375382020-06-19 17:20:17 +093043#define MCTP_CTRL_CMD_ENDPOINT_DISCOVERY 0x0C
44#define MCTP_CTRL_CMD_DISCOVERY_NOTIFY 0x0D
45#define MCTP_CTRL_CMD_GET_NETWORK_ID 0x0E
46#define MCTP_CTRL_CMD_QUERY_HOP 0x0F
47#define MCTP_CTRL_CMD_RESOLVE_UUID 0x10
48#define MCTP_CTRL_CMD_QUERY_RATE_LIMIT 0x11
49#define MCTP_CTRL_CMD_REQUEST_TX_RATE_LIMIT 0x12
50#define MCTP_CTRL_CMD_UPDATE_RATE_LIMIT 0x13
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010051#define MCTP_CTRL_CMD_QUERY_SUPPORTED_INTERFACES 0x14
Andrew Jeffery87375382020-06-19 17:20:17 +093052#define MCTP_CTRL_CMD_MAX 0x15
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010053/* 0xF0 - 0xFF are transport specific */
54#define MCTP_CTRL_CMD_FIRST_TRANSPORT 0xF0
Andrew Jeffery87375382020-06-19 17:20:17 +093055#define MCTP_CTRL_CMD_LAST_TRANSPORT 0xFF
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010056
57/*
58 * MCTP Control Completion Codes
59 * See DSP0236 v1.3.0 Table 13.
60 */
Andrew Jeffery87375382020-06-19 17:20:17 +093061#define MCTP_CTRL_CC_SUCCESS 0x00
62#define MCTP_CTRL_CC_ERROR 0x01
63#define MCTP_CTRL_CC_ERROR_INVALID_DATA 0x02
64#define MCTP_CTRL_CC_ERROR_INVALID_LENGTH 0x03
65#define MCTP_CTRL_CC_ERROR_NOT_READY 0x04
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010066#define MCTP_CTRL_CC_ERROR_UNSUPPORTED_CMD 0x05
67/* 0x80 - 0xFF are command specific */
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif /* _LIBMCTP_CMDS_H */