aboutsummaryrefslogtreecommitdiff
path: root/libmctp/README.skiboot
diff options
context:
space:
mode:
authorChristophe Lombard <clombard@linux.ibm.com>2023-06-20 16:52:05 +0200
committerReza Arbab <arbab@linux.ibm.com>2023-09-12 14:22:11 -0500
commitb9b330a0090d7092dffab2b8137da154c7248ad9 (patch)
treedf99eb84ab3f1c64897a3224af40a4e110b4af37 /libmctp/README.skiboot
parenta55d0672d62aaf6eb77dcbc6461d35b751b56c41 (diff)
downloadskiboot-b9b330a0090d7092dffab2b8137da154c7248ad9.zip
skiboot-b9b330a0090d7092dffab2b8137da154c7248ad9.tar.gz
skiboot-b9b330a0090d7092dffab2b8137da154c7248ad9.tar.bz2
libmctp: Import libmctp library handling MCTP protocol
The Management Component Transport Protocol (MCTP) is a protocol defined by the DMTF Platform Management Component Intercommunications sub-team of the DMTF Pre-OS Workgroup. MCTP is designed to support communications between different intelligent hardware components that make up a platform management subsystem that is provides monitoring and control functions inside a managed system. DMTF standard "DSP2016" This library is intended to be a portable implementation of the Management Component Transport Protocol (MCTP), as defined by DMTF standard "DSP0236", plus transport binding specifications. MCTP has been designed to carry multiple types of manageability-related traffic across a common medium. The base MCTP specifications define message types for supporting the initialization and configuration of MCTP itself, and to support vendor-specific messages over MCTP. Other message types, such as message types to support a Platform Level Data Model (PLDM). The source is located here: https://github.com/openbmc/libmctp and use as is, without any update. The libmctp code is integrated into the folder ./libmctp as a set of sources, compiled if the compiler flag CONFIG_PLDM is set. A config file is required. Not being generated automatically by 'configure', it must be edited manually to match the environment. Signed-off-by: Christophe Lombard <clombard@linux.ibm.com> Acked-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
Diffstat (limited to 'libmctp/README.skiboot')
-rw-r--r--libmctp/README.skiboot15
1 files changed, 15 insertions, 0 deletions
diff --git a/libmctp/README.skiboot b/libmctp/README.skiboot
new file mode 100644
index 0000000..cbdcb7a
--- /dev/null
+++ b/libmctp/README.skiboot
@@ -0,0 +1,15 @@
+skiboot/libmctp/ is a minimally modified version of upstream libmctp
+that is distributed with the openbmc project hosted at
+https://github.com/openbmc/libmctp.git
+
+This version is taken from libmctp.git commit 4df106db7766d ("astlpc: Add
+mctp_astlpc_tx_done() API") by copying most
+of files from the libmctp/ directory.
+
+The only modifications from the upstream source are the additions of
+this file, Makefile.inc which has been derived from the original
+Makefile.inc, astlpc.c (compilation error when MCTP_HAVE_FILEIO is
+undefined) and the removal of several unnecessary folders and files.
+
+Local libmctp changes should be kept to a minimum, and submitted
+upstream if possible.