blob: 07453842394508168f7d6b60f2f49420d96615ad [file] [log] [blame]
Deepak Kodihallic6e8fb52019-05-02 08:35:31 -05001#pragma once
2
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05003#include "common/utils.hpp"
George Liue53193f2020-02-24 09:23:26 +08004#include "libpldmresponder/pdr_utils.hpp"
Deepak Kodihallic6e8fb52019-05-02 08:35:31 -05005
6#include <stdint.h>
7
George Liue53193f2020-02-24 09:23:26 +08008using namespace pldm::responder::pdr_utils;
9
Deepak Kodihallic6e8fb52019-05-02 08:35:31 -050010namespace pldm
11{
12
13namespace responder
14{
15
16namespace pdr
17{
George Liue53193f2020-02-24 09:23:26 +080018
Sampa Misra12afe112020-05-25 11:40:44 -050019constexpr uint8_t BmcMctpEid = 8;
20constexpr uint8_t BmcPldmTerminusHandle = 1;
21constexpr uint8_t BmcTerminusId = 1;
22
George Liue53193f2020-02-24 09:23:26 +080023/** @brief Build (if not built already) and retrieve PDR by the PDR types
24 *
25 * @param[in] dir - directory housing platform specific PDR JSON files
26 * @param[in] pdrType - the type of PDRs
27 *
28 * @return Repo - Instance of pdr::Repo
29 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -060030void getRepoByType(const Repo& inRepo, Repo& outRepo, Type pdrType);
George Liue53193f2020-02-24 09:23:26 +080031
32/** @brief Get the record of PDR by the record handle
33 *
34 * @param[in] pdrRepo - pdr::RepoInterface
35 * @param[in] recordHandle - The recordHandle value for the PDR to be
36 * retrieved.
37 * @param[out] pdrEntry - PDR entry structure reference
38 *
39 * @return pldm_pdr_record - Instance of pdr::RepoInterface
40 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -060041const pldm_pdr_record* getRecordByHandle(const RepoInterface& pdrRepo,
George Liue53193f2020-02-24 09:23:26 +080042 RecordHandle recordHandle,
43 PdrEntry& pdrEntry);
Deepak Kodihallic6e8fb52019-05-02 08:35:31 -050044
45} // namespace pdr
46} // namespace responder
47} // namespace pldm