Deepak Kodihalli | 1ea0233 | 2016-11-20 22:50:39 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | namespace openpower |
| 4 | { |
| 5 | namespace vpd |
| 6 | { |
| 7 | |
| 8 | /** @brief OpenPOWER VPD records we're interested in */ |
| 9 | enum class Record |
| 10 | { |
| 11 | VINI, /**< Initial information, common to all OpenPOWER FRUs */ |
| 12 | OPFR, /**< OpenPOWER FRU information, common to all OpenPOWER FRUs */ |
| 13 | OSYS /**< Information specific to a system board */ |
| 14 | }; |
| 15 | |
| 16 | namespace record |
| 17 | { |
| 18 | |
| 19 | /** @brief OpenPOWER VPD keywords we're interested in */ |
| 20 | enum class Keyword |
| 21 | { |
| 22 | DR, /**< FRU name/description */ |
| 23 | PN, /**< FRU part number */ |
| 24 | SN, /**< FRU serial number */ |
| 25 | CC, /**< Customer Card Identification Number (CCIN) */ |
| 26 | HW, /**< FRU version */ |
| 27 | B1, /**< MAC Address */ |
| 28 | VN, /**< FRU manufacturer name */ |
| 29 | MB, /**< FRU manufacture date */ |
| 30 | MM /**< FRU model */ |
| 31 | }; |
| 32 | |
| 33 | } // namespace record |
| 34 | } // namespace vpd |
| 35 | } // namespace openpower |