From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id EAB22740039 for ; Fri, 10 May 2024 12:23:01 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=avjo6opXVGdDrCeFpsvK+kCc8FHJjozaACFla/QfSpw=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1715343780; v=1; b=v9NoF/qXHv2MZdk1UR+Vf795sn04XKejrhZF6MQPnVnpIEtT0Gw7BjJMrSuGQuYdGID16eNb n8z6P7A0JIxEqgerPeN6ryOGsEzjSB0LRS4R4Ft6bgfwIu+5Uyleg/r9VrpNu4ql1YLaIs2PBXv WM7TbuKuX8ocQ7ip7a2eO5FRf/IhoHI5UbV1g02bLwXUyyZeyjIDw19Ab9Kjq8MfCiLFnkVE9Mz RMPXrk+jQjZ33kzjUeiCAxtqOFmgkaSNkegDwYdPpfayJlc2zWWLxR4oPKhnHjjYEOZazzEfgLS GRIKRtPO5wBGoKPVH8FUSNEvE1B15uHTkXtYIL+rk5LSQ== X-Received: by 127.0.0.2 with SMTP id wPN1YY7687511xqK9ZI9uPtW; Fri, 10 May 2024 05:23:00 -0700 X-Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.11333.1715343779431271995 for ; Fri, 10 May 2024 05:22:59 -0700 X-Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6E85F106F; Fri, 10 May 2024 05:23:24 -0700 (PDT) X-Received: from e129823.cambridge.arm.com (e129823.arm.com [10.1.197.6]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id E51DA3F6A8; Fri, 10 May 2024 05:22:57 -0700 (PDT) From: "levi.yun" To: devel@edk2.groups.io Cc: yeoreum.yun@arm.com, sami.mujawar@arm.com, pierre.gondois@arm.com, zhiguang.liu@intel.com, dandan.bi@intel.com, gaoliming@byosoft.com.cn, zhichao.gao@intel.com, nd@arm.com Subject: [edk2-devel] [PATCH v1 0/4] Add EINJ table parser. Date: Fri, 10 May 2024 13:22:53 +0100 Message-Id: <20240510122257.2457623-1-yeoreum.yun@arm.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Fri, 10 May 2024 05:22:59 -0700 Resent-From: yeoreum.yun@arm.com Reply-To: devel@edk2.groups.io,yeoreum.yun@arm.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: txEbdKkzCmDOadA8iU2Cjeqfx7686176AA= Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b="v9NoF/qX"; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=arm.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io Add Error Injection Table (EINJ) parser for AcpiView and add some missing Error Injection Action definitions in each Acpi* headers. The changes can be seen at: https://github.com/LeviYeoReum/edk2/tree/levi/3075_einj_table_v1 levi.yun (4): MdePkg/Include/IndustryStandard: Update SET_ERROR_TYPE_WITH_ADDRESS Error Injection Actions MdePkg/Include/IndustryStandard: Update GET_EXECUTE_OPERATION_TIMINGS Error Injection Actions MdePkg/Include/IndustryStandard: Update EINJ information according to ACPI 6.5 ShellPkg/Acpiview: Add EINJ Parser ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib= .inf | 1 + MdePkg/Include/IndustryStandard/Acpi51.h = | 1 + MdePkg/Include/IndustryStandard/Acpi60.h = | 1 + MdePkg/Include/IndustryStandard/Acpi61.h = | 2 + MdePkg/Include/IndustryStandard/Acpi62.h = | 2 + MdePkg/Include/IndustryStandard/Acpi63.h = | 2 + MdePkg/Include/IndustryStandard/Acpi64.h = | 2 + MdePkg/Include/IndustryStandard/Acpi65.h = | 6 +- ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h = | 21 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Einj/EinjParser.c = | 358 ++++++++++++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib= .c | 1 + 11 files changed, 396 insertions(+), 1 deletion(-) create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/= Einj/EinjParser.c -- Guid("CE165669-3EF3-493F-B85D-6190EE5B9759") -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#118814): https://edk2.groups.io/g/devel/message/118814 Mute This Topic: https://groups.io/mt/106019470/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-