summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/mvpd_accessors/setMvpdRing.H
blob: 0b9c667191c14cb81a94d8e76896cd8453c01df3 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hwpf/hwp/mvpd_accessors/setMvpdRing.H $               */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* 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 otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
// $Id: setMvpdRing.H,v 1.2 2013/01/25 21:12:40 whs Exp $
/**
 *  @file setMvpdRing.H
 *
 *  @brief Prototype for setMvpdRing() -
 *          get a repair ring from a MVPD record
 */

 #ifndef    _HWP_SETMVPDRING_
 #define    _HWP_SETMVPDRING_

 #include   <fapi.H>

// function pointer typedef definition for HWP call support
typedef fapi::ReturnCode (*setMvpdRing_FP_t) 
        (fapi::MvpdRecord,fapi::MvpdKeyword, const fapi::Target &,
         const uint8_t, const uint8_t, uint8_t *, uint32_t);

extern "C"
{

/**
 * @brief   set specified ring from MVPD for the specified target CPU.
 *
 * A Ring Id Chiplet Id should be unique in the mvpd Record.
 * The code does not validate. No assumption should be made on which would
 * be updated if there are multiple.
 *
 * The set ring can be the same size or smaller than an existing ring.
 * The ring can be larger than the existing ring or can be added (was
 * not there before) if there is room in the record. 
 *
 * @param i_record          -   Record enumerator
 * @param i_keyword         -   Keyword enumerator
 * Supported Rings are:
 *                   MVPD_RECORD_CP00 - MVPD_KEYWORD_PDR
 *                   MVPD_RECORD_CP00 - MVPD_KEYWORD_PDG
 * @param i_fapiTarget      -   cpu target
 * @param i_chipletId       -   Chiplet ID
 * @param i_ringId          -   Ring ID
 * @param i_pRingBuf        -   pointer to a buffer allocated by the caller
 *                              to with the ring header and data to set.
 *                              Can not be NULL. 
 * @param i_rRingBufsize    -   size of ring buffer that the caller has
 *                              allocated.
 *                              The buffer contains the CompressedScanData
 *                              structure followed by compressed data. The 
 *                              caller does compression and decompression.
 *                              The header needs to include the RS4 magic 
 *                              number. The ring ID and chiplet ID must match
 *                              the passed parameters. The size must match the
 *                              parameter size. 
 *
 *  Buffer:   io_rRingBufsize returns xNN.
 *    byte x0  CompressedScanData structure (rs4 header)
 *    byte x18 compressed data (sizeof CompressedScanData is 0x18)
 *    byte xNN last byte of compressed data*
 *
 * @return fapi::ReturnCode -   FAPI_RC_SUCCESS if success,
 *                              relevant error code for failure.
 */
fapi::ReturnCode setMvpdRing(   fapi::MvpdRecord i_record,
                                fapi::MvpdKeyword i_keyword,
                                const fapi::Target  &i_fapiTarget,
                                const uint8_t       i_chipletId,
                                const uint8_t       i_ringId,
                                uint8_t             *i_pRingBuf,
                                uint32_t            i_rRingBufsize );

}

#endif
OpenPOWER on IntegriCloud