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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
/* IBM_PROLOG_BEGIN_TAG
* This is an automatically generated prolog.
*
* $Source: src/usr/initservice/istepdispatcher/splesscommon.H $
*
* IBM CONFIDENTIAL
*
* COPYRIGHT International Business Machines Corp. 2011-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_TAG
*/
#ifndef __ISTEPDISP_SPLESS_COMMON_H
#define __ISTEPDISP_SPLESS_COMMON_H
/**
* @file splesscommon.H
*
* Prototypes for routines to access SPLESS Command and
* and SPLESS Status interfaces
*
* Currently SPLess only supports the one command 0x00, this rewrite will
* allow support of other SPLess commands.
*
*/
/******************************************************************************/
// Includes
/******************************************************************************/
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/mmio.h> // mmio_scratch_read()
#include <devicefw/userif.H> // deviceRead(), deviceWrite()
#include <targeting/common/attributes.H> // ISTEP_MODE attribute
#include <targeting/common/targetservice.H>
/******************************************************************************/
// SPLESS Command and Status Prototypes
/******************************************************************************/
/**
* @namespace SPLESS
*
* Contains functions to manipulate the SPLESS Command Register
*
*/
namespace SPLESS
{
const uint64_t ISTEP_MODE_SPLESS_SIGNATURE = 0x4057b0074057b007;
const uint64_t ISTEP_MODE_FSP_SIGNATURE = 0x700b7504700b7504;
const uint64_t RUN_ALL_MODE_SIGNATURE = 0xBADC0FFEE0DDF00D;
const uint32_t MBOX_SCRATCH_REG0 = 0x00050038;
const uint32_t MBOX_SCRATCH_REG1 = 0x00050039;
const uint32_t MBOX_SCRATCH_REG2 = 0x0005003a;
const uint32_t MBOX_SCRATCH_REG3 = 0x0005003b;
/**
* @enum
* SPLess Task return codes
*
* task return codes for SPless single step
* @note future errors will be passed from task_create() and task_exec()
* and should be documented in errno.h
*
*/
enum {
SPLESS_TASKRC_INVALID_ISTEP = -3, // invalid istep or substep
SPLESS_TASKRC_LAUNCH_FAIL = -4, // failed to launch the task
SPLESS_TASKRC_RETURNED_ERRLOG = -5, // istep returned an errorlog
SPLESS_TASKRC_TERMINATED = -6, // terminated the polling loop
SPLESS_TASKRC_FAIL_LOADMODULE = -7, // failed to load module
SPLESS_INVALID_COMMAND = 10, // invalid command from user console
SPLESS_AT_BREAK_POINT = 11, // at breakpoint
SPLESS_NOT_AT_BREAK_POINT = 12, // resume command w/o breakpoint
SPLESS_SHUTTING_DOWN = 13, // shutdown command issued
SPLESS_SENDRCV_FAILED = 14, // could not send cmd to IstepDisp
SPLESS_TASKRC_INVALID_RECV_TYPE = 15, // received wrong message type
SPLESS_TRACE_BUFFERS_CLEARED = 16, // trace buffers cleared
};
/**
* @note SPLess commands, and masks for the status.
*
*/
//const uint8_t SPLESS_SINGLE_ISTEP_CMD = 0x00;
//const uint8_t SPLESS_RESUME_ISTEP_CMD = 0x01;
//const uint8_t SPLESS_CLEAR_TRACE_CMD = 0x02;
//const uint8_t SPLESS_SHUTDOWN_CMD = 0x03;
//const uint64_t SPLESS_SINGLE_STEP_STS_MASK = 0x00000000ffffffff;
/**
* @brief init ISTEP_MODE attribute
*
* @return nothing
*
*/
bool SPLessAttached( );
/**
* @brief init ISTEP_MODE attribute
*
* @return nothing
*
*/
void initIStepMode( );
/**
* @struct CommandHdr
*
* Command Header for all SPless commands. 2 bytes long.
* Bit numbers are in ppc notation, where bit 0 is the most significant bit.
* Go Bit : bit 0 (ppc notation, msbit)
* - set to 1 by the user to start the IStep
* - cleared to 0 by HostBoot
* Reserved: bit 1: always 0
* Sequence #: bits 2-7
* Command Number: bits 8:15
*
*
*/
struct CommandHdr
{
bool gobit:1;
uint8_t readbit:1;
uint8_t seqnum:6;
uint8_t cmdnum;
} __attribute__((packed));
/**
* @union SPLessCmd
*
* 64-bit "template" struct for the SPLess command.
* This will be read in and used to extract the header info, then "cast"
* to the correct command.
*/
union SPLessCmd
{
uint64_t val64;
struct
{
uint32_t hi32;
uint32_t lo32;
} __attribute__((packed));
struct
{
CommandHdr hdr;
uint8_t istep;
uint8_t substep;
uint32_t reserved2;
} __attribute__((packed));
// init struct to 0
SPLessCmd() : val64(0) {};
} ;
/**
* @brief Read the command register and return a filled-in SPLessCmd struct
*
* @param[in,out] io_rcmd - reference to a SPLessCmd struct
*
* @return none
*/
void readCmd( SPLessCmd &io_rcmd );
/**
* @brief Write a filled-in command struct to the command reg.
*
* Normally the user writes the command reg; this is only used to
* init the command reg at the beginning
*
* @param[in] i_rcmd - reference to a filled-in SPLessCmd reg
*
* @return none
*/
void writeCmd( SPLessCmd &io_rcmd );
/******************************************************************************/
// SPLESS Status Prototypes
/******************************************************************************/
/**
* @struct StatusHdr
*
* header for the Status Reg returned by all SPLess Commands.
*
* Bit numbers are in ppc notation, where bit 0 is the most significant bit.
* * Running bit, bit 0 (ppc notation, msbit):
* = 1 when IStep is running
* = 0 when IStep is finished
* Ready bit, bit 1:
* = 1 when IStep Dispatcher is ready to run individual ISteps
* = 0 if IStep Dispatcher is not ready:
* - System has not loaded the IStep Dispatcher yet
* - IStep Mode Flag = 0
* Sequence # : bits 2-7 - echoes the sequence number in the associated
* command frame.
* Status : returned status for the command, from IStepDisp.
* For example:
* -EINVAL IStep number is invalid
* -ENOENT, -ENOEXEC (return code from kernel) IStep could not
* be launched as a task or as a function within a task
*/
struct StatusHdr
{
bool runningbit:1;
bool readybit:1;
uint8_t seqnum:6;
int8_t status;
} __attribute__((packed));
/**
* @union SPLessSts
*
* Send HostBoot Status to the user console
*
*/
union SPLessSts {
uint64_t val64;
struct
{
uint32_t hi32;
uint32_t lo32;
} __attribute((packed));
struct {
StatusHdr hdr;
uint8_t istep;
uint8_t substep;
uint32_t istepStatus;
} __attribute__((packed));
// init struct to 0
SPLessSts() : val64(0) {};
} ;
/**
* @brief Read the SPLess Status reg and return a filled in struct.
*
* @param[in,out] io_rsts - ref SPLessSts struct
*
* @return none.
*/
void readSts( SPLessSts &io_rsts );
/**
* @brief Write a filled in SPLessSts struct to the SPLess Status Reg
*
* @param[in,out] io_rsts
*
* @return none
*/
void writeSts( SPLessSts &io_rsts );
} // namespace
#endif
|