aboutsummaryrefslogtreecommitdiff
path: root/core/pldm/Makefile.inc
diff options
context:
space:
mode:
authorChristophe Lombard <clombard@linux.ibm.com>2023-08-29 11:23:27 +0200
committerReza Arbab <arbab@linux.ibm.com>2023-09-12 14:22:11 -0500
commitce16acd4390aba8661b6a9f41d025c25895a8371 (patch)
treef2548286e3fca2a0690582b319a851a527e6f635 /core/pldm/Makefile.inc
parent819a4145a85f05c465899d5777d8f94dc3619052 (diff)
downloadskiboot-ce16acd4390aba8661b6a9f41d025c25895a8371.zip
skiboot-ce16acd4390aba8661b6a9f41d025c25895a8371.tar.gz
skiboot-ce16acd4390aba8661b6a9f41d025c25895a8371.tar.bz2
core/pldm: PLDM for Platform Monitoring and Control Specification
This specification defines the functions and data structures used for discovering, describing, initializing, and accessing sensors and effecters within the management controllers and management devices of a platform management subsystem using PLDM messaging. A PDR (Platform Descriptor Record) is a set of data that is used to provide semantic information about sensors, effecters, monitored or controller entities, and functions and services within a PLDM implementation. PDRs are mostly used to support PLDM monitoring and control and platform events. The PDRs for a PLDM subsystem are collected into a single, central PDR Repository. A central repository provides a single place from which PDR information can be retrieved. The GetPDR command is used to retrieve individual PDRs from a PDR Repository. The record is identified by the PDR recordHandle value that is passed in the request. The patch dump all the PDRs within a PDR Repository. Reviewed-by: Abhishek Singh Tomar <abhishek@linux.ibm.com> Signed-off-by: Christophe Lombard <clombard@linux.ibm.com> Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
Diffstat (limited to 'core/pldm/Makefile.inc')
-rw-r--r--core/pldm/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pldm/Makefile.inc b/core/pldm/Makefile.inc
index f2328a4..933b0c6 100644
--- a/core/pldm/Makefile.inc
+++ b/core/pldm/Makefile.inc
@@ -8,6 +8,7 @@ CPPFLAGS += -I$(SRC)/pldm/include/
CPPFLAGS += -I$(SRC)/pldm/include/libpldm/oem/ibm/
PLDM_OBJS = pldm-mctp.o pldm-responder.o pldm-requester.o
+PLDM_OBJS += pldm-base-requests.o pldm-platform-requests.o
PLDM = $(PLDM_DIR)/built-in.a
$(PLDM): $(PLDM_OBJS:%=$(PLDM_DIR)/%)