blob: fc7703ebcfb3317f983361e8d383bc69785779bc (
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
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/include/usr/hwpf/hwp/dimmBadDqBitmapAccessHwp.H $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2012
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
/**
* @file dimmBadDqBitmapAccessHwp.H
*
* @brief FW Team HWP that accesses the Bad DQ Bitmap.
*/
/*
* Change Log ******************************************************************
* Flag Defect/Feature User Date Description
* ------ -------------- ---------- ----------- ----------------------------
* mjjones 02/17/2012 Created.
*/
#ifndef DIMMBADDQBITMAPACCESSHWP_H_
#define DIMMBADDQBITMAPACCESSHWP_H_
#include <fapi.H>
#include <dimmConsts.H>
typedef fapi::ReturnCode (*dimmBadDqBitmapAccessHwp_FP_t)(
const fapi::Target &,
const uint8_t (&)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE],
const bool);
extern "C"
{
/**
* @brief FW Team HWP that accesses the Bad DQ Bitmap. It accesses the raw data
* from DIMM SPD and does any necessary processing to turn it into a
* bitmap from a Centaur DQ point of view. If the data in SPD is not
* valid then it has never been written and all zeroes are returned (no
* bad DQs).
*
* This HWP should be called by HWP/PLAT code to access the BAD DQ Bitmap
*
* Note that the MSB of each byte corresponds to the lowest DQ.
* if (data[1][0] == 0x80) then rank 1, Centaur DQ0 is bad
* if (data[1][0] == 0x40) then rank 1, Centaur DQ1 is bad
* if (data[1][1] == 0x20) then rank 1, Centaur DQ10 is bad
*
* @param[in] i_dimm Reference to DIMM Target
* @param[io] io_data Reference to bad DQ bitmap data for the DIMM.
* @param[in] i_get True if getting DQ Bitmap data. False if setting data.
*
* @return ReturnCode
*/
fapi::ReturnCode dimmBadDqBitmapAccessHwp(
const fapi::Target & i_dimm,
uint8_t (&io_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE],
const bool i_get);
}
#endif
|