summaryrefslogtreecommitdiffstats
path: root/include/fsp-elog.h
blob: ce3813af974e9e92421d3cb1765207c0fd7c43ed (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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/* Copyright 2013-2014 IBM 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.
 */
#include <opal.h>
#ifndef __ELOG_H
#define __ELOG_H

#define ELOG_TYPE_PEL			0
#define MAX_RETRIES			3

/* Component IDs */
/* In PEL error log format, Creator ID is hypervisor
 * But we can have various component ID to distinguish
 * which component in hypervisor is reporting the error
 * This is 2 bytes long,
 *	first byte corresponds to Component IDs
 *	Second byte is reserved for the Reason code.
 * Component ID is mapped to readable 4-digit ascii
 * character name in FSP and displayed.
 */
/* SAPPHIRE components */
#define OPAL_CODEUPDATE			0x4355	/* CU */
#define OPAL_CONSOLE			0x434E	/* CN */
#define OPAL_CEC			0x4345	/* CE */
#define OPAL_CHIP			0x4348	/* CH */
#define OPAL_ELOG			0x454C	/* EL */
#define OPAL_NVRAM			0x4E56	/* NV */
#define OPAL_RTC			0x5254	/* RT */
#define OPAL_SURVEILLANCE		0x5355	/* SU */
#define OPAL_SYSPARAM			0x5350	/* SP */
#define OPAL_LPC			0x4C50	/* LP */
#define OPAL_UART			0x5541	/* UA */
#define OPAL_OCC			0x4F43	/* OC */
#define OPAL_OP_PANEL			0x4F50	/* OP */
#define OPAL_PHB3			0x5048	/* PH */
#define OPAL_PSI			0x5053	/* PS */
#define OPAL_VPD			0x5650	/* VP */
#define OPAL_XSCOM			0x5853	/* XS */
#define OPAL_PCI			0x5043	/* PC */
#define OPAL_MISC			0x4D49	/* MI */
#define OPAL_ATTN			0x4154	/* AT */
#define OPAL_MEM_ERR			0x4D45	/* ME */
#define OPAL_CENTAUR			0x4354	/* CT */
#define OPAL_MFSI			0x4D46	/* MF */
#define OPAL_DUMP			0x4455	/* DU */
#define OPAL_LED			0x4C45	/* LE */
#define OPAL_SENSOR			0x5345	/* SE */
#define OPAL_SLW			0x534C	/* SL */
#define OPAL_FSP			0x4650	/* FP */

/* SAPPHIRE SRC componenet ID*/
#define OPAL_CU				0x1000
#define OPAL_CN				0x2000
#define OPAL_CE				0x3000
#define OPAL_CH				0x4000
#define OPAL_EL				0x5000
#define OPAL_NV				0x6000
#define OPAL_RT				0x7000
#define OPAL_SU				0x8000
#define OPAL_SP				0x9000
#define OPAL_LP				0xa000
#define OPAL_UA				0xb000
#define OPAL_OC				0xc000
#define OPAL_OP				0xd000
#define OPAL_PH				0xe000
#define OPAL_PS				0xf000
#define OPAL_VP				0x1000
#define OPAL_XS				0x1100
#define OPAL_PC				0x1200
#define OPAL_MI				0x1300
#define OPAL_AT				0x1400
#define OPAL_ME				0x1500
#define OPAL_CT				0x1600
#define OPAL_MF				0x1700
#define OPAL_DU				0x1800
#define OPAL_LE				0x1900
#define OPAL_SE				0x2000
#define OPAL_SL				0x2100
#define OPAL_FP				0x2200

enum opal_reasoncode {
/* code update */
	OPAL_RC_CU_FLASH        = OPAL_CU | 0x10,
	OPAL_RC_CU_INIT         = OPAL_CU | 0x11,
	OPAL_RC_CU_SG_LIST      = OPAL_CU | 0x12,
	OPAL_RC_CU_COMMIT	= OPAL_CU | 0x13,
	OPAL_RC_CU_MSG		= OPAL_CU | 0x14,
	OPAL_RC_CU_NOTIFY       = OPAL_CU | 0x15,
	OPAL_RC_CU_MARKER_LID	= OPAL_CU | 0x16,
/* NVRAM */
	OPAL_RC_NVRAM_INIT      = OPAL_NV | 0x10,
	OPAL_RC_NVRAM_OPEN	= OPAL_NV | 0x11,
	OPAL_RC_NVRAM_SIZE      = OPAL_NV | 0x12,
	OPAL_RC_NVRAM_WRITE     = OPAL_NV | 0x13,
	OPAL_RC_NVRAM_READ      = OPAL_NV | 0x14,
/* CENTAUR */
	OPAL_RC_CENTAUR_INIT    = OPAL_CT | 0x10,
	OPAL_RC_CENTAUR_RW_ERR  = OPAL_CT | 0x11,
/* MFSI */
	OPAL_RC_MFSI_RW_ERR     = OPAL_MF | 0x10,
/* UART */
	OPAL_RC_UART_INIT       = OPAL_UA | 0x10,
/* OCC */
	OPAL_RC_OCC_RESET       = OPAL_OC | 0x10,
	OPAL_RC_OCC_LOAD        = OPAL_OC | 0x11,
	OPAL_RC_OCC_PSTATE_INIT = OPAL_OC | 0x12,
/* RTC	*/
	OPAL_RC_RTC_READ	= OPAL_RT | 0x10,
	OPAL_RC_RTC_TOD		= OPAL_RT | 0x11,
/* SURVEILLANCE */
	OPAL_RC_SURVE_INIT      = OPAL_SU | 0x10,
	OPAL_RC_SURVE_STATUS	= OPAL_SU | 0x11,
	OPAL_RC_SURVE_ACK	= OPAL_SU | 0x12,
/* SYSPARAM */
	OPAL_RC_SYSPARM_INIT    = OPAL_SP | 0x10,
	OPAL_RC_SYSPARM_MSG     = OPAL_SP | 0x11,
/* LPC */
	OPAL_RC_LPC_READ        = OPAL_LP | 0x10,
	OPAL_RC_LPC_WRITE       = OPAL_LP | 0x11,
/* OP_PANEL */
	OPAL_RC_PANEL_WRITE     = OPAL_OP | 0x10,
/* PSI */
	OPAL_RC_PSI_INIT        = OPAL_PS | 0x10,
	OPAL_RC_PSI_IRQ_RESET   = OPAL_PS | 0x11,
/* XSCOM */
	OPAL_RC_XSCOM_RW		= OPAL_XS | 0x10,
	OPAL_RC_XSCOM_INDIRECT_RW	= OPAL_XS | 0x11,
	OPAL_RC_XSCOM_RESET		= OPAL_XS | 0x12,
/* PCI */
	OPAL_RC_PCI_INIT_SLOT   = OPAL_PC | 0x10,
	OPAL_RC_PCI_ADD_SLOT    = OPAL_PC | 0x11,
	OPAL_RC_PCI_SCAN        = OPAL_PC | 0x12,
	OPAL_RC_PCI_RESET_PHB   = OPAL_PC | 0x10,
/* ATTN */
	OPAL_RC_ATTN		= OPAL_AT | 0x10,
/* MEM_ERR */
	OPAL_RC_MEM_ERR_RES	= OPAL_ME | 0x10,
	OPAL_RC_MEM_ERR_DEALLOC	= OPAL_ME | 0x11,
/* DUMP */
	OPAL_RC_DUMP_INIT	= OPAL_DU | 0x10,
	OPAL_RC_DUMP_LIST	= OPAL_DU | 0x11,
	OPAL_RC_DUMP_ACK	= OPAL_DU | 0x12,
	OPAL_RC_DUMP_MDST_INIT	= OPAL_DU | 0x13,
	OPAL_RC_DUMP_MDST_UPDATE = OPAL_DU | 0x14,
/* LED	*/
	OPAL_RC_LED_SPCN	= OPAL_LE | 0x10,
	OPAL_RC_LED_BUFF	= OPAL_LE | 0x11,
	OPAL_RC_LED_LC		= OPAL_LE | 0x12,
	OPAL_RC_LED_STATE	= OPAL_LE | 0x13,
	OPAL_RC_LED_SUPPORT	= OPAL_LE | 0x14,
/* SENSOR */
	OPAL_RC_SENSOR_INIT	= OPAL_SE | 0x10,
	OPAL_RC_SENSOR_READ	= OPAL_SE | 0x11,
	OPAL_RC_SENSOR_ASYNC_COMPLETE
				= OPAL_SE | 0x12,
/* SLW */
	OPAL_RC_SLW_INIT	= OPAL_SL | 0x10,
	OPAL_RC_SLW_SET		= OPAL_SL | 0x11,
	OPAL_RC_SLW_GET		= OPAL_SL | 0x12,
	OPAL_RC_SLW_REG		= OPAL_SL | 0x13,
/* FSP	*/
	OPAL_RC_FSP_POLL_TIMEOUT
				= OPAL_FP | 0x10,
};

/* Data Structures for PEL data. */

#define PRIVATE_HEADER_SECTION_SIZE		48
#define USER_HEADER_SECTION_SIZE		24
#define SRC_SECTION_SIZE			80
#define SRC_SUBSECTION_SIZE			 4
#define SRC_LENGTH				72
#define OPAL_MAX_SRC_BYTES			32
#define EXTENDED_HEADER_SECTION_SIZE		76
#define MTMS_SECTION_SIZE			28
#define IO_EVENT_SECTION_SIZE			16

#define OPAL_ELOG_VERSION		1
#define OPAL_ELOG_SST			0
#define OPAL_SRC_MAX_WORD_COUNT		8

#define OPAL_SRC_FORMAT         0x80
#define OPAL_FAILING_SUBSYSTEM  0x82

#define OPAL_SYS_MODEL_LEN      8
#define OPAL_SYS_SERIAL_LEN     12
#define OPAL_VER_LEN            16
#define OPAL_SYMPID_LEN         80
#define OPAL_RC_NONE		0

#define OPAL_IO_MAX_RPC_DATA	216
#define OPAL_SRC_SEC_VER	0x02
#define OPAL_EXT_HRD_VER	0x01

/* Error log reporting action */
#define ERRL_ACTION_REPORT     0x2000
#define ERRL_ACTION_NONE       0x0000

enum elogSectionId {
	ELOG_SID_PRIVATE_HEADER                 = 0x5048, /* PH */
	ELOG_SID_USER_HEADER                    = 0x5548, /* UH */
	ELOG_SID_EXTENDED_HEADER                = 0x4548, /* EH */
	ELOG_SID_PRIMARY_SRC                    = 0x5053, /* PS */
	ELOG_SID_MACHINE_TYPE                   = 0x4D54, /* MT */
	ELOG_SID_SECONDARY_SRC                  = 0x5353, /* SS */
	ELOG_SID_CALL_HOME                      = 0x4348, /* CH */
	ELOG_SID_DUMP_LOCATOR                   = 0x4448, /* DH */
	ELOG_SID_SOFTWARE_ERROR			= 0x5357, /* SW */
	ELOG_SID_PARTITION                      = 0x4C50, /* LP */
	ELOG_SID_LOGICAL_RESOURCE               = 0x4C52, /* LR */
	ELOG_SID_HMC_ID                         = 0x484D, /* HM */
	ELOG_SID_EPOW                           = 0x4550, /* EP */
	ELOG_SID_IO_EVENT                       = 0x4945, /* IE */
	ELOG_SID_MFG_INFORMATION                = 0x4D49, /* MI */
	ELOG_SID_USER_DEFINED                   = 0x5544  /* UD */
};

struct opal_v6_header {
	enum elogSectionId id:16;	/* section id */
	uint16_t    length;		/* section length */
	uint8_t    version;		/* section version */
	uint8_t    subtype;		/* section sub-type id */
	uint16_t   component_id;	/* component id of section creator */
};

/* opal_srctype */
#define OPAL_SRC_TYPE_ERROR 0xBB

#define OPAL_CID_SAPPHIRE	'K'	/* creator ID for sapphire log */
#define OPAL_CID_POWERNV	'P'	/* creator ID for powernv log */

/* Origin of error, elog_origin */
#define ORG_SAPPHIRE	1
#define ORG_POWERNV	2

/*struct opal_private head section_ */
struct opal_private_header_section {

	struct opal_v6_header v6header;
	uint32_t create_date;
	uint32_t create_time;
	uint32_t commit_date;
	uint32_t commit_time;

	uint32_t creator_id:8;		/* subsystem component id */
	uint32_t reserved_0:16;
	uint32_t section_count:8;	/* number of sections in log */
	uint32_t reserved_1;
	uint32_t creator_subid_hi;
	uint32_t creator_subid_lo;
	uint32_t plid;			/* platform log id */
	uint32_t log_entry_id;		/* Unique log entry id */
};

/* opal user header section */
struct opal_user_header_section {

	struct opal_v6_header v6header;

	uint8_t subsystem_id;	/* subsystem id */
	uint8_t event_scope;
	uint8_t event_severity;
	uint8_t event_type;	/* error/event severity */

	uint32_t reserved_0;
	uint16_t reserved_1;
	uint16_t action_flags;	/* error action code */
	uint32_t reserved_2;
};

struct opal_src_section {
	struct opal_v6_header v6header;
	uint8_t		version;
	uint8_t		flags;
	uint8_t		reserved_0;
	uint8_t		wordcount;
	uint16_t	reserved_1;
	uint16_t	srclength;
	uint32_t	hexwords[OPAL_SRC_MAX_WORD_COUNT];
	char		srcstring[OPAL_MAX_SRC_BYTES];
};

struct opal_extended_header_section {
	struct	opal_v6_header v6header;
	char	model[OPAL_SYS_MODEL_LEN];
	char	serial_no[OPAL_SYS_SERIAL_LEN];
	char	opal_release_version[OPAL_VER_LEN];
	char	opal_subsys_version[OPAL_VER_LEN];
	uint16_t reserved_0;
	uint32_t extended_header_date;
	uint32_t extended_header_time;
	uint16_t reserved_1;
	uint8_t reserved_2;
	uint8_t opal_symid_len;
	char	opalsymid[OPAL_SYMPID_LEN];
};

/* opal MTMS section */
struct opal_mtms_section {
	struct opal_v6_header v6header;
	char        model[OPAL_SYS_MODEL_LEN];
	char        serial_no[OPAL_SYS_SERIAL_LEN];
};

/* User defined section */
struct opal_user_section {
	struct opal_v6_header v6header;
	char dump[1];
};

struct opal_err_info {
	uint32_t reason_code;
	uint8_t err_type;
	uint16_t cmp_id;
	uint8_t subsystem;
	uint8_t sev;
	uint8_t event_subtype;
	void (*call_out)(struct opal_errorlog *buf, void *data, uint16_t size);
};

#define DEFINE_LOG_ENTRY(reason, type, id, subsys,			\
severity, subtype, callout_func) struct opal_err_info err_##reason =	\
{ .reason_code = reason, .err_type = type, .cmp_id = id,		\
.subsystem = subsys, .sev = severity, .event_subtype = subtype,		\
.call_out = callout_func }

#define e_info(reason_code) err_##reason_code

struct opal_errorlog *opal_elog_create(struct opal_err_info *e_info);

int opal_elog_update_user_dump(struct opal_errorlog *buf, unsigned char *data,
						uint32_t tag, uint16_t size);

int elog_fsp_commit(struct opal_errorlog *buf);

/* This is wrapper around the error log function, which creates
 * and commits the error to FSP.
 * Used for simple error logging
 */
void log_simple_error(struct opal_err_info *e_info, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
void log_error(struct opal_err_info *e_info, void *data, uint16_t size,
		const char *fmt, ...) __attribute__ ((format (printf, 4, 5)));

#endif /* __ELOG_H */
OpenPOWER on IntegriCloud