1 #pragma once 2 3 #include <map> 4 #include <string> 5 6 namespace openpower::dump 7 { 8 9 enum class SBETypes 10 { 11 PROC, 12 OCMB 13 }; 14 15 struct SBEAttributes 16 { 17 std::string chipName; 18 std::string dumpType; 19 std::string chipOpTimeout; 20 std::string chipOpFailure; 21 std::string noFfdc; 22 std::string sbeInternalFFDCData; 23 }; 24 25 extern const std::map<SBETypes, SBEAttributes> sbeTypeAttributes; 26 } // namespace openpower::dump 27