File: fsp-diag.c

package info (click to toggle)
skiboot 7.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 35,624 kB
  • sloc: ansic: 221,198; sh: 11,580; cpp: 5,767; python: 3,421; makefile: 1,773; asm: 1,503; perl: 1,479; tcl: 1,188; pascal: 107
file content (46 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download | duplicates (10)
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
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/*
 * Code for handling FSP_MCLASS_DIAG messages (cmd 0xee)
 * Receiving a high level ack timeout is likely indicative of a firmware bug
 *
 * Copyright 2013-2014 IBM Corp.
 */

#include <skiboot.h>
#include <fsp.h>
#include <lock.h>
#include <processor.h>
#include <timebase.h>
#include <opal.h>
#include <fsp-sysparam.h>

static bool fsp_diag_msg(u32 cmd_sub_mod, struct fsp_msg *msg)
{

	if (cmd_sub_mod == FSP_RSP_DIAG_LINK_ERROR) {
		printf("FIXME: Unhandled FSP_MCLASS_DIAG Link Error Report\n");
		return false;
	}

	if (cmd_sub_mod != FSP_RSP_DIAG_ACK_TIMEOUT) {
		printf("BUG: Unhandled subcommand: 0x%x (New FSP spec?)\n",
		       cmd_sub_mod);
		return false;
	}

	printf("BUG: High Level ACK timeout (FSP_MCLASS_DIAG) for 0x%x\n",
	       fsp_msg_get_data_word(msg, 0) & 0xffff0000);

	return true;
}

static struct fsp_client fsp_diag = {
	.message = fsp_diag_msg,
};

/* This is called at boot time */
void fsp_init_diag(void)
{
	/* Register for the diag event */
	fsp_register_client(&fsp_diag, FSP_MCLASS_DIAG);
}