summaryrefslogtreecommitdiffstats
path: root/src/include/usr/vpd/pvpdenums.H
blob: e432a867adb645a4c641fbef15307566eb63595a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/include/usr/vpd/pvpdenums.H $                             */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2013,2017                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#ifndef __PVPDENUMS_H
#define __PVPDENUMS_H

#include <vpd/ipvpdenums.H>

namespace PVPD
{

    /**
     * @brief Enumeration for the PVPD Records that contain
     *       the keyword enumerations below.
     *
     */
    enum pvpdRecord
    {
        PVPD_FIRST_RECORD   = 0x00,
        VINI        = PVPD_FIRST_RECORD,
        OSYS        = 0x01,
        OPFR        = 0x02,
        VNDR        = 0x03,
        // Last Record
        PVPD_LAST_RECORD,
        PVPD_TEST_RECORD,   // Test purposes ONLY!

        //Start common IPVPD enums
        PVPD_INVALID_RECORD = IPVPD::INVALID_RECORD,
    };

    /**
     * @brief Enumerations for PVPD keywords that can be
     *       accessed in the PVPD.
     */
    enum pvpdKeyword
    {
        PVPD_FIRST_KEYWORD      = 0x00,
        pdI         = PVPD_FIRST_KEYWORD,
        B3         = 0x01,
        B4         = 0x02,
        B7         = 0x03,
        CC         = 0x04,
        CE         = 0x05,
        CT         = 0x06,
        DR         = 0x07,
        ET         = 0x08,
        FN         = 0x09,
        HE         = 0x0a,
        HW         = 0x0b,
        IN         = 0x0c,
        MM         = 0x0d,
        PF         = 0x0e,
        PN         = 0x0f,
        RT         = 0x10,
        SN         = 0x11,
        SS         = 0x12,
        VD         = 0x13,
        VN         = 0x14,
        VP         = 0x15,
        VS         = 0x16,
        VZ         = 0x17,
        LX         = 0x18,
        MB         = 0x19,
        NV         = 0x1A,

        // Last Keyword
        PVPD_LAST_KEYWORD,
        PVPD_TEST_KEYWORD,  // Test purposes ONLY!

        //Start common IPVPD enums
        FULL_RECORD = IPVPD::FULL_RECORD,
        PVPD_INVALID_KEYWORD    = IPVPD::INVALID_KEYWORD,
    };

};  // end PVPD

#endif
OpenPOWER on IntegriCloud