Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 3 | #include "common/utils.hpp" |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 4 | #include "libpldmresponder/pdr_utils.hpp" |
Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 5 | |
| 6 | #include <stdint.h> |
| 7 | |
Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 8 | namespace pldm |
| 9 | { |
| 10 | |
| 11 | namespace responder |
| 12 | { |
| 13 | |
| 14 | namespace pdr |
| 15 | { |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 16 | |
Sampa Misra | 12afe11 | 2020-05-25 11:40:44 -0500 | [diff] [blame] | 17 | constexpr uint8_t BmcMctpEid = 8; |
| 18 | constexpr uint8_t BmcPldmTerminusHandle = 1; |
| 19 | constexpr uint8_t BmcTerminusId = 1; |
| 20 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 21 | /** @brief Build (if not built already) and retrieve PDR by the PDR types |
| 22 | * |
| 23 | * @param[in] dir - directory housing platform specific PDR JSON files |
| 24 | * @param[in] pdrType - the type of PDRs |
| 25 | * |
| 26 | * @return Repo - Instance of pdr::Repo |
| 27 | */ |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 28 | void getRepoByType(const pldm::responder::pdr_utils::Repo& inRepo, |
| 29 | pldm::responder::pdr_utils::Repo& outRepo, |
| 30 | pldm::responder::pdr_utils::Type pdrType); |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 31 | |
| 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 | */ |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 41 | const pldm_pdr_record* |
| 42 | getRecordByHandle(const pldm::responder::pdr_utils::RepoInterface& pdrRepo, |
| 43 | pldm::responder::pdr_utils::RecordHandle recordHandle, |
| 44 | pldm::responder::pdr_utils::PdrEntry& pdrEntry); |
Deepak Kodihalli | c6e8fb5 | 2019-05-02 08:35:31 -0500 | [diff] [blame] | 45 | |
| 46 | } // namespace pdr |
| 47 | } // namespace responder |
| 48 | } // namespace pldm |