-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simple packet header format as defined by DMTF DSP0236. Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Jeremy Kerr
authored and
David S. Miller
committed
Jul 29, 2021
1 parent
8f601a1
commit 2c8e2e9
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* Management Component Transport Protocol (MCTP) | ||
* | ||
* Copyright (c) 2021 Code Construct | ||
* Copyright (c) 2021 Google | ||
*/ | ||
|
||
#ifndef __NET_MCTP_H | ||
#define __NET_MCTP_H | ||
|
||
#include <linux/bits.h> | ||
|
||
/* MCTP packet definitions */ | ||
struct mctp_hdr { | ||
u8 ver; | ||
u8 dest; | ||
u8 src; | ||
u8 flags_seq_tag; | ||
}; | ||
|
||
#define MCTP_VER_MIN 1 | ||
#define MCTP_VER_MAX 1 | ||
|
||
/* Definitions for flags_seq_tag field */ | ||
#define MCTP_HDR_FLAG_SOM BIT(7) | ||
#define MCTP_HDR_FLAG_EOM BIT(6) | ||
#define MCTP_HDR_FLAG_TO BIT(3) | ||
#define MCTP_HDR_FLAGS GENMASK(5, 3) | ||
#define MCTP_HDR_SEQ_SHIFT 4 | ||
#define MCTP_HDR_SEQ_MASK GENMASK(1, 0) | ||
#define MCTP_HDR_TAG_SHIFT 0 | ||
#define MCTP_HDR_TAG_MASK GENMASK(2, 0) | ||
|
||
#endif /* __NET_MCTP_H */ |