diff options
author | Shelly Chang <Shelly_Chang@wiwynn.com> | 2022-04-06 15:42:12 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-04 13:22:35 +0000 |
commit | 059902882ce56502124375c9395ebe8b49640710 (patch) | |
tree | 1921e730a96dbc783a5911a566694f263c1e1ff2 /src/drivers/ocp/ewl/ocp_ewl.h | |
parent | 3bc9fbb496c7e1ae346c8d7e98d2bcabbbbe8673 (diff) |
drivers/ocp/ewl: Add EWL driver for EWL type 3 error handling
Add EWL (Enhanced Warning Log) driver which handles Intel EWL HOB
and prints EWL type 3 primarily associated with MRC training failures.
Change-Id: Ibd5b521bafd457505db4147c5d3fe41364a09045
Signed-off-by: Shelly Chang <Shelly_Chang@wiwynn.com>
Signed-off-by: Johnny Lin <johnny_lin@wiwynn.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69145
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/ocp/ewl/ocp_ewl.h')
-rw-r--r-- | src/drivers/ocp/ewl/ocp_ewl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/drivers/ocp/ewl/ocp_ewl.h b/src/drivers/ocp/ewl/ocp_ewl.h new file mode 100644 index 0000000000..38d5286d36 --- /dev/null +++ b/src/drivers/ocp/ewl/ocp_ewl.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef __OCP_EWL_H +#define __OCP_EWL_H + +#include <soc/soc_util.h> + +void get_ewl(void); + +#endif |