xref: /openbmc/openpower-hw-diags/util/pldm.hpp (revision 36b043e996a7b71fefd448f3fcc257a21fd53547)
1 #pragma once
2 
3 #include <libpldm/instance-id.h>
4 
5 namespace util
6 {
7 namespace pldm
8 {
9 /*
10  *  @brief HRESET the SBE
11  *
12  *  @pre Host must be running
13  *
14  *  @param[in] sbeInstance - SBE to target (0 based)
15  *
16  *  @return true if HRESET successful
17  *
18  */
19 bool hresetSbe(unsigned int sbeInstance);
20 
21 } // namespace pldm
22 } // namespace util
23