1 #pragma once
2 namespace openpower::dump::SBE
3 {
4 // Dump type to the sbe_dump chipop
5 constexpr auto SBE_DUMP_TYPE_HOSTBOOT = 0x5;
6 constexpr auto SBE_DUMP_TYPE_HARDWARE = 0x1;
7 
8 // SBE dump type
9 constexpr auto SBE_DUMP_TYPE_SBE = 0xA;
10 
11 // Clock state requested
12 // Collect the dump with clocks on
13 constexpr auto SBE_CLOCK_ON = 0x1;
14 
15 // Collect the dumps with clock off
16 constexpr auto SBE_CLOCK_OFF = 0x2;
17 
18 } // namespace openpower::dump::SBE
19