From: "Gao, Zhichao" <zhichao.gao@intel.com>
To: Sami Mujawar <sami.mujawar@arm.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Alexei.Fedorov@arm.com" <Alexei.Fedorov@arm.com>,
"pierre.gondois@arm.com" <pierre.gondois@arm.com>,
"Matteo.Carlini@arm.com" <Matteo.Carlini@arm.com>,
"Akanksha.Jain2@arm.com" <Akanksha.Jain2@arm.com>,
"Ben.Adderson@arm.com" <Ben.Adderson@arm.com>,
"Ni, Ray" <ray.ni@intel.com>, "nd@arm.com" <nd@arm.com>
Subject: Re: [PATCH v6 1/8] ShellPkg: Acpiview: Abbreviate field names to preserve alignment
Date: Tue, 19 Jul 2022 01:46:03 +0000 [thread overview]
Message-ID: <PH7PR11MB63776500E3AE0A074FB3F7DBF68F9@PH7PR11MB6377.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20220714165031.42640-2-sami.mujawar@arm.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Thanks,
Zhichao
> -----Original Message-----
> From: Sami Mujawar <sami.mujawar@arm.com>
> Sent: Friday, July 15, 2022 12:50 AM
> To: devel@edk2.groups.io
> Cc: Sami Mujawar <sami.mujawar@arm.com>; Alexei.Fedorov@arm.com;
> pierre.gondois@arm.com; Matteo.Carlini@arm.com;
> Akanksha.Jain2@arm.com; Ben.Adderson@arm.com; Ni, Ray
> <ray.ni@intel.com>; Gao, Zhichao <zhichao.gao@intel.com>; nd@arm.com
> Subject: [PATCH v6 1/8] ShellPkg: Acpiview: Abbreviate field names to
> preserve alignment
>
> Some field names in the IORT table parser were longer than the
> OUTPUT_FIELD_COLUMN_WIDTH plus indentation, resulting in loss of the
> output print alignment. Therefore, abbreviate the field names.
>
> Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
> Reviewed-by: Pierre Gondois <pierre.gondois@arm.com>
> ---
>
> Notes:
> v6:
> - No code change since v1. Including r-b and resending [SAMI]
> with v6 series.
>
> v5:
> - No code change since v1. Including r-b and resending [SAMI]
> with v5 series.
>
> v4:
> - No code change since v1. Including r-b and resending [SAMI]
> with v4 series.
>
> v3:
> - No code change since v1. Include r-b received [SAMI]
> from v2 series.
> Ref: https://edk2.groups.io/g/devel/topic/83600717#7665
> v2:
> - No code change since v1. Re-sending with v2 series. [SAMI]
>
> ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Iort/IortParser.c |
> 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git
> a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Iort/IortParser.c
> b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Iort/IortParser.c
> index
> 81bfacd83added87a867cf365a56d4b7a1410ef2..44d633c5282463078a4cc990b
> b24ca1992f95634 100644
> ---
> a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Iort/IortParser.c
> +++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Iort/IortPars
> +++ er.c
> @@ -1,11 +1,14 @@
> /** @file
> IORT table parser
>
> - Copyright (c) 2016 - 2020, ARM Limited. All rights reserved.
> + Copyright (c) 2016 - 2021, Arm Limited. All rights reserved.
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> @par Reference(s):
> - - IO Remapping Table, Platform Design Document, Revision D, March 2018
> + - IO Remapping Table, Platform Design Document, Revision D, March
> + 2018
> +
> + @par Glossary:
> + - Ref - Reference
> **/
>
> #include <IndustryStandard/IoRemappingTable.h>
> @@ -144,15 +147,15 @@ STATIC CONST ACPI_PARSER
> IortNodeSmmuV1V2Parser[] = {
> { L"Span", 8, 24, L"0x%lx", NULL, NULL, NULL, NULL },
> { L"Model", 4, 32, L"%d", NULL, NULL, NULL, NULL },
> { L"Flags", 4, 36, L"0x%x", NULL, NULL, NULL, NULL },
> - { L"Reference to Global Interrupt Array",4, 40, L"0x%x", NULL, NULL,
> NULL,
> + { L"Global Interrupt Array Ref", 4, 40, L"0x%x", NULL, NULL, NULL,
> NULL },
> { L"Number of context interrupts", 4, 44, L"%d", NULL,
> (VOID **)&InterruptContextCount, NULL, NULL },
> - { L"Reference to Context Interrupt Array",4, 48, L"0x%x", NULL,
> + { L"Context Interrupt Array Ref", 4, 48, L"0x%x", NULL,
> (VOID **)&InterruptContextOffset, NULL, NULL },
> { L"Number of PMU Interrupts", 4, 52, L"%d", NULL,
> (VOID **)&PmuInterruptCount, NULL, NULL },
> - { L"Reference to PMU Interrupt Array",4, 56, L"0x%x", NULL,
> + { L"PMU Interrupt Array Ref", 4, 56, L"0x%x", NULL,
> (VOID **)&PmuInterruptOffset, NULL, NULL },
>
> // Interrupt Array
> --
> 'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'
next prev parent reply other threads:[~2022-07-19 1:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-14 16:50 [PATCH v6 0/8] IORT Rev E.d specification updates Sami Mujawar
2022-07-14 16:50 ` [PATCH v6 1/8] ShellPkg: Acpiview: Abbreviate field names to preserve alignment Sami Mujawar
2022-07-19 1:46 ` Gao, Zhichao [this message]
2022-07-14 16:50 ` [PATCH v6 2/8] DynamicTablesPkg: Handle error when IdMappingToken is NULL Sami Mujawar
2022-07-14 16:50 ` [PATCH v6 3/8] DynamicTablesPkg: IORT set reference to Id array only if present Sami Mujawar
2022-07-14 16:50 ` [PATCH v6 4/8] DynamicTablesPkg: IORT set reference to interrupt array " Sami Mujawar
2022-07-14 16:50 ` [PATCH v6 5/8] MdePkg: IORT header update for IORT Rev E.d spec Sami Mujawar
2022-07-19 1:46 ` [edk2-devel] " Gao, Zhichao
2022-07-14 16:50 ` [PATCH v6 6/8] ShellPkg: Acpiview: IORT parser " Sami Mujawar
2022-07-18 8:48 ` Sami Mujawar
2022-07-19 1:59 ` [edk2-devel] " Gao, Zhichao
2022-07-14 16:50 ` [PATCH v6 7/8] DynamicTablesPkg: Update ArmNameSpaceObjects for IORT Rev E.d Sami Mujawar
2022-07-14 16:50 ` [PATCH v6 8/8] DynamicTablesPkg: IORT generator updates for Rev E.d spec Sami Mujawar
2022-07-18 7:42 ` [PATCH v6 0/8] IORT Rev E.d specification updates PierreGondois
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=PH7PR11MB63776500E3AE0A074FB3F7DBF68F9@PH7PR11MB6377.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox