#pragma once #include namespace openpower { namespace vpd { namespace constants { using RecordId = uint8_t; using RecordOffset = uint16_t; using RecordSize = uint16_t; using RecordType = uint16_t; using RecordLength = uint16_t; using KwSize = uint8_t; using PoundKwSize = uint16_t; using ECCOffset = uint16_t; using ECCLength = uint16_t; using LE2ByteData = uint16_t; using DataOffset = uint16_t; static constexpr auto NEXT_64_KB = 65536; static constexpr auto MAC_ADDRESS_LEN_BYTES = 6; static constexpr auto LAST_KW = "PF"; static constexpr auto POUND_KW = '#'; static constexpr auto UUID_LEN_BYTES = 16; static constexpr auto UUID_TIME_LOW_END = 8; static constexpr auto UUID_TIME_MID_END = 13; static constexpr auto UUID_TIME_HIGH_END = 18; static constexpr auto UUID_CLK_SEQ_END = 23; static constexpr auto MB_RESULT_LEN = 19; static constexpr auto MB_LEN_BYTES = 8; static constexpr auto MB_YEAR_END = 4; static constexpr auto MB_MONTH_END = 7; static constexpr auto MB_DAY_END = 10; static constexpr auto MB_HOUR_END = 13; static constexpr auto MB_MIN_END = 16; static constexpr auto SYSTEM_OBJECT = "/system/chassis/motherboard"; static constexpr auto LOCATION_CODE_INF = "com.ibm.ipzvpd.Location"; constexpr int IPZ_DATA_START = 11; constexpr uint8_t KW_VAL_PAIR_START_TAG = 0x84; constexpr uint8_t RECORD_END_TAG = 0x78; constexpr int UNEXP_LOCATION_CODE_MIN_LENGTH = 4; constexpr uint8_t EXP_LOCATIN_CODE_MIN_LENGTH = 17; static constexpr auto SE_KWD_LENGTH = 7; static constexpr auto INVALID_NODE_NUMBER = -1; static constexpr auto RAINIER_2U = "50001001"; static constexpr auto RAINIER_4U = "50001000"; constexpr uint8_t KW_VPD_START_TAG = 0x82; constexpr uint8_t KW_VPD_END_TAG = 0x78; constexpr uint8_t ALT_KW_VAL_PAIR_START_TAG = 0x90; constexpr uint8_t KW_VAL_PAIR_END_TAG = 0x79; constexpr auto MEMORY_VPD_START_TAG = "11S"; constexpr int TWO_BYTES = 2; constexpr int KW_VPD_DATA_START = 0; constexpr auto MEMORY_VPD_DATA_START = 416; constexpr auto FORMAT_11S_LEN = 3; static constexpr auto PART_NUM_LEN = 7; static constexpr auto SERIAL_NUM_LEN = 12; static constexpr auto CCIN_LEN = 4; using namespace std::string_literals; constexpr auto pimPath = "/xyz/openbmc_project/inventory"; constexpr auto pimIntf = "xyz.openbmc_project.Inventory.Manager"; constexpr auto kwdVpdInf = "com.ibm.ipzvpd.VINI"; constexpr auto memVpdInf = "com.ibm.ipzvpd.VINI"; constexpr auto ipzVpdInf = "com.ibm.ipzvpd."; namespace lengths { enum Lengths { RECORD_NAME = 4, KW_NAME = 2, RECORD_OFFSET = 2, RECORD_MIN = 44, RECORD_LENGTH = 2, RECORD_ECC_OFFSET = 2, VHDR_ECC_LENGTH = 11, VHDR_RECORD_LENGTH = 44 }; // enum Lengths } // namespace lengths namespace offsets { enum Offsets { VHDR = 17, VHDR_TOC_ENTRY = 29, VTOC_PTR = 35, VTOC_REC_LEN = 37, VTOC_ECC_OFF = 39, VTOC_ECC_LEN = 41, VTOC_DATA = 13, VHDR_ECC = 0, VHDR_RECORD = 11 }; } // namespace offsets namespace eccStatus { enum Status { SUCCESS = 0, FAILED = -1 }; } // namespace eccStatus } // namespace constants } // namespace vpd } // namespace openpower