summaryrefslogtreecommitdiffstats
path: root/src/import/chips/common/utils/chipids.H
blob: 6e05e21dd08b5b4fd650051a653219419cafc641 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/import/chips/common/utils/chipids.H $                     */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2018,2019                        */
/* [+] 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                                                     */
/**
 * Contains constants for defined chip ids (aka. CFAM IDs, IDEC, etc)
 * for supported chips in POWER systems
 */

#ifndef _CHIPIDS_H
#define _CHIPIDS_H

#include <stdint.h>

// Standard chip ids
namespace POWER_CHIPID
{

/**
 * The format for all CFAM-based chips is:  MLmCC049
 *   M.m = Major.minor DD level, e.g. DD1.3
 *   L = Location
 *   CC = Unique chip id
 *
 * See https://eclipz.pok.ibm.com/sys/ras/docs/cfam_ids.txt
 */

/**
 * Extract the chipid from the full 32-bit CFAM ID
 * @param[in]  i_cfamId : 32-bit register data
 * @return 32-bit chipid value
 */
inline uint32_t extract_chipid32( uint32_t i_cfamId )
{
    return (i_cfamId & 0x0F0FF000);
};

/**
 * Extract the smaller chipid from the full 32-bit CFAM ID
 * @param[in]  i_cfamId : 32-bit register data
 * @return Left-justified 16-bit chipid value
 */
inline uint16_t extract_chipid16( uint32_t i_cfamId )
{
    return static_cast<uint16_t>((i_cfamId & 0x0F0FF000) >> 12);
};

/**
 * Extract the DD level from the full 32-bit CFAM ID
 * @param[in]  i_cfamId : 32-bit register data
 * @return Right-justified (1 byte) M.m DD level
 */
inline uint32_t extract_ddlevel( uint32_t i_cfamId )
{
    uint32_t l_major = 0xF0000000 & i_cfamId;
    uint32_t l_minor = 0x00F00000 & i_cfamId;
    return ((l_major >> 24) | (l_minor >> 20));
};


// Full 32-bit value with empty nibbles for DD level
constexpr uint32_t NIMBUS       = 0x020D1049;
constexpr uint32_t CUMULUS      = 0x020D4049;
constexpr uint32_t AXONE        = 0x020D9049;
constexpr uint32_t CENTAUR      = 0x06039049;
constexpr uint32_t EXPLORER     = 0x060D2000;
constexpr uint32_t GEMINI       = 0x060DC000;

// Shorter 16-bit value (drops Major nibble and 049)
constexpr uint32_t NIMBUS_16       = 0x20D1;
constexpr uint32_t CUMULUS_16      = 0x20D4;
constexpr uint32_t AXONE_16        = 0x20D9;
constexpr uint32_t CENTAUR_16      = 0x6039;
constexpr uint32_t EXPLORER_16     = 0x60D2;
constexpr uint32_t GEMINI_16       = 0x60DC;

}; //namespace


// OpenCAPI ids
namespace POWER_OCID
{

// Device IDs
constexpr uint16_t EXPLORER     = 0x0636;


// Vendor IDs
constexpr uint16_t VENDOR_IBM   = 0x1014;

}; //namespace


// DMB (Differential Memory Buffer) IDs
namespace DDIMM_DMB_ID
{

// DDR4 DDIMM - Bytes [198][199]
constexpr uint16_t EXPLORER    = 0x8029;
constexpr uint16_t GEMINI      = 0x80A4;

};

#endif /* _CHIPIDS_H */
OpenPOWER on IntegriCloud