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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/include/usr/fsi/fsiif.H $ */
/* */
/* IBM CONFIDENTIAL */
/* */
/* COPYRIGHT International Business Machines Corp. 2011,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 */
#ifndef __FSI_FSIIF_H
#define __FSI_FSIIF_H
#include <stdint.h>
#include <builtins.h>
#include <errl/errlentry.H>
namespace FSI
{
/**
* @brief Initialize the FSI hardware
*
* @return errlHndl_t NULL on success
*/
errlHndl_t initializeHardware();
/**
* @brief Retrieves the status of a given port
*
* @param[in] i_fsiMaster FSI Master chip
* @param[in] i_type FSI Master Type (MFSI or cMFSI)
* @param[in] i_port Slave port number
*
* @return bool true if port sensed as active during FSI initialization
*/
bool isSlavePresent( TARGETING::Target* i_fsiMaster,
TARGETING::FSI_MASTER_TYPE i_type,
uint8_t i_port );
/**
* @brief Retrieves the FSI status of a given chip
*
* @param[in] i_target
*
* @return bool true if port sensed as active during FSI initialization
*/
bool isSlavePresent( TARGETING::Target* i_target );
/**
* Enum defining type of FFDC to collect
*/
enum fsiFFDCType_t
{
FSI_FFDC_PRESENCE_FAIL = 0,
FSI_FFDC_READWRITE_FAIL,
};
/**
* @brief Add FFDC for the target to an error log
*
* @param[in] i_ffdc_type Type of FFDC to add
* @param[in/out] i_log Error Log to add FFDC to
* @param[in] i_target FSI Target
*
* @return void
*/
void getFsiFFDC( fsiFFDCType_t i_ffdc_type,
errlHndl_t &io_log,
TARGETING::Target* i_target);
/**
* FSI Slave Registers for P8
* These registers are repeated for every master+port+cascade combo
*/
enum SlaveRegistersP8
{
// Local FSI Space
SLAVE_CFG_TABLE = 0x000000, /**< Configuration Table of CFAM */
SLAVE_PEEK_TABLE = 0x000400, /**< Peek Table */
SLAVE_REGS = 0x000800, /**< FSI Slave Register */
SLAVE_MODE_00 = SLAVE_REGS|0x00,
FSI_SHIFT_ENGINE = 0x000C00, /**< FSI Shift Engine (SCAN) */
FSI2PIB_ENGINE = 0x001000, /**< FSI2PIB Engine (SCOM) */
FSI_SCRATCHPAD = 0x001400, /**< FSI Scratchpad */
FSI_I2C_MASTER = 0x001800, /**< FSI I2C-Master */
FSI_GEMINI_MBOX = 0x002800, /**< FSI Gemini Mailbox with FSI GPx Registers */
};
}
#endif
|