[PATCH 03/13] scripts/qmp_helper: add support for FRU Memory Poison

Mauro Carvalho Chehab posted 13 patches 2 weeks, 4 days ago
Maintainers: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>, John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>
There is a newer version of this series
[PATCH 03/13] scripts/qmp_helper: add support for FRU Memory Poison
Posted by Mauro Carvalho Chehab 2 weeks, 4 days ago
This GUID record descriptor was added on UEFI 2.11.
Add support for it.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
---
 scripts/qmp_helper.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/qmp_helper.py b/scripts/qmp_helper.py
index 7e786c4adfd9..19bf641a13ce 100755
--- a/scripts/qmp_helper.py
+++ b/scripts/qmp_helper.py
@@ -736,3 +736,7 @@ class cper_guid:
     CPER_CXL_EVT_DYNA_CAP = guid(0xCA95AFA7, 0xF183, 0x4018,
                                  [0x8C, 0x2F, 0x95, 0x26,
                                   0x8E, 0x10, 0x1A, 0x2A])
+
+    CPER_FRU_MEM_POISON = guid(0x5E4706C1, 0x5356, 0x48C6,
+                               [0x93, 0x0B, 0x52, 0xF2,
+                                0x12, 0x0A, 0x44, 0x58])
-- 
2.52.0
Re: [PATCH 03/13] scripts/qmp_helper: add support for FRU Memory Poison
Posted by Jonathan Cameron via qemu development 2 weeks, 4 days ago
On Wed, 21 Jan 2026 12:25:11 +0100
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> wrote:

> This GUID record descriptor was added on UEFI 2.11.
> Add support for it.
> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Matches the spec.
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>

> ---
>  scripts/qmp_helper.py | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/scripts/qmp_helper.py b/scripts/qmp_helper.py
> index 7e786c4adfd9..19bf641a13ce 100755
> --- a/scripts/qmp_helper.py
> +++ b/scripts/qmp_helper.py
> @@ -736,3 +736,7 @@ class cper_guid:
>      CPER_CXL_EVT_DYNA_CAP = guid(0xCA95AFA7, 0xF183, 0x4018,
>                                   [0x8C, 0x2F, 0x95, 0x26,
>                                    0x8E, 0x10, 0x1A, 0x2A])
> +
> +    CPER_FRU_MEM_POISON = guid(0x5E4706C1, 0x5356, 0x48C6,
> +                               [0x93, 0x0B, 0x52, 0xF2,
> +                                0x12, 0x0A, 0x44, 0x58])