1 #pragma once 2 3 #include <iostream> 4 5 namespace openpower 6 { 7 namespace vpd 8 { 9 namespace constants 10 { 11 12 using RecordId = uint8_t; 13 using RecordOffset = uint16_t; 14 using RecordSize = uint16_t; 15 using RecordType = uint16_t; 16 using RecordLength = uint16_t; 17 using KwSize = uint8_t; 18 using PoundKwSize = uint16_t; 19 using ECCOffset = uint16_t; 20 using ECCLength = uint16_t; 21 using LE2ByteData = uint16_t; 22 using DataOffset = uint16_t; 23 24 static constexpr auto NEXT_64_KB = 65536; 25 static constexpr auto MAC_ADDRESS_LEN_BYTES = 6; 26 static constexpr auto LAST_KW = "PF"; 27 static constexpr auto POUND_KW = '#'; 28 static constexpr auto UUID_LEN_BYTES = 16; 29 static constexpr auto UUID_TIME_LOW_END = 8; 30 static constexpr auto UUID_TIME_MID_END = 13; 31 static constexpr auto UUID_TIME_HIGH_END = 18; 32 static constexpr auto UUID_CLK_SEQ_END = 23; 33 34 static constexpr auto MB_RESULT_LEN = 19; 35 static constexpr auto MB_LEN_BYTES = 8; 36 static constexpr auto MB_YEAR_END = 4; 37 static constexpr auto MB_MONTH_END = 7; 38 static constexpr auto MB_DAY_END = 10; 39 static constexpr auto MB_HOUR_END = 13; 40 static constexpr auto MB_MIN_END = 16; 41 static constexpr auto SYSTEM_OBJECT = "/system/chassis/motherboard"; 42 static constexpr auto LOCATION_CODE_INF = "com.ibm.ipzvpd.Location"; 43 constexpr int IPZ_DATA_START = 11; 44 constexpr uint8_t KW_VAL_PAIR_START_TAG = 0x84; 45 constexpr uint8_t RECORD_END_TAG = 0x78; 46 constexpr int UNEXP_LOCATION_CODE_MIN_LENGTH = 4; 47 constexpr uint8_t EXP_LOCATIN_CODE_MIN_LENGTH = 17; 48 static constexpr auto SE_KWD_LENGTH = 7; 49 static constexpr auto INVALID_NODE_NUMBER = -1; 50 static constexpr auto RAINIER_2U = "50001001"; 51 static constexpr auto RAINIER_4U = "50001000"; 52 static constexpr auto EVEREST = "50003000"; 53 54 constexpr uint8_t KW_VPD_START_TAG = 0x82; 55 constexpr uint8_t KW_VPD_END_TAG = 0x78; 56 constexpr uint8_t ALT_KW_VAL_PAIR_START_TAG = 0x90; 57 constexpr uint8_t KW_VAL_PAIR_END_TAG = 0x79; 58 constexpr auto MEMORY_VPD_START_TAG = "11S"; 59 constexpr int TWO_BYTES = 2; 60 constexpr int KW_VPD_DATA_START = 0; 61 constexpr auto MEMORY_VPD_DATA_START = 416; 62 constexpr auto FORMAT_11S_LEN = 3; 63 static constexpr auto PART_NUM_LEN = 7; 64 static constexpr auto SERIAL_NUM_LEN = 12; 65 static constexpr auto CCIN_LEN = 4; 66 67 using namespace std::string_literals; 68 constexpr auto pimPath = "/xyz/openbmc_project/inventory"; 69 constexpr auto pimIntf = "xyz.openbmc_project.Inventory.Manager"; 70 constexpr auto kwdVpdInf = "com.ibm.ipzvpd.VINI"; 71 constexpr auto memVpdInf = "com.ibm.ipzvpd.VINI"; 72 constexpr auto ipzVpdInf = "com.ibm.ipzvpd."; 73 constexpr auto offsetJsonDirectory = "/var/lib/vpd/"; 74 constexpr auto mapperObjectPath = "/xyz/openbmc_project/object_mapper"; 75 constexpr auto mapperInterface = "xyz.openbmc_project.ObjectMapper"; 76 constexpr auto mapperDestination = "xyz.openbmc_project.ObjectMapper"; 77 constexpr auto loggerObjectPath = "/xyz/openbmc_project/logging"; 78 constexpr auto loggerCreateInterface = "xyz.openbmc_project.Logging.Create"; 79 constexpr auto errIntfForBlankSystemVPD = "com.ibm.VPD.Error.BlankSystemVPD"; 80 constexpr auto errIntfForInvalidVPD = "com.ibm.VPD.Error.InvalidVPD"; 81 constexpr auto errIntfForStreamFail = "com.ibm.VPD.Error.InavlidEepromPath"; 82 constexpr auto errIntfForEccCheckFail = "com.ibm.VPD.Error.EccCheckFailed"; 83 constexpr auto errIntfForJsonFailure = "com.ibm.VPD.Error.InvalidJson"; 84 constexpr auto errIntfForBusFailure = "com.ibm.VPD.Error.DbusFailure"; 85 constexpr auto motherBoardInterface = 86 "xyz.openbmc_project.Inventory.Item.Board.Motherboard"; 87 88 namespace lengths 89 { 90 enum Lengths 91 { 92 RECORD_NAME = 4, 93 KW_NAME = 2, 94 RECORD_OFFSET = 2, 95 RECORD_MIN = 44, 96 RECORD_LENGTH = 2, 97 RECORD_ECC_OFFSET = 2, 98 VHDR_ECC_LENGTH = 11, 99 VHDR_RECORD_LENGTH = 44 100 }; // enum Lengths 101 } // namespace lengths 102 103 namespace offsets 104 { 105 enum Offsets 106 { 107 VHDR = 17, 108 VHDR_TOC_ENTRY = 29, 109 VTOC_PTR = 35, 110 VTOC_REC_LEN = 37, 111 VTOC_ECC_OFF = 39, 112 VTOC_ECC_LEN = 41, 113 VTOC_DATA = 13, 114 VHDR_ECC = 0, 115 VHDR_RECORD = 11 116 }; 117 } // namespace offsets 118 119 namespace eccStatus 120 { 121 enum Status 122 { 123 SUCCESS = 0, 124 FAILED = -1 125 }; 126 } // namespace eccStatus 127 } // namespace constants 128 } // namespace vpd 129 } // namespace openpower 130