public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 1/1] DynamicTablesPkg: Fix generated _HID value for SBSA
@ 2021-04-07 14:43 PierreGondois
  2021-04-07 16:02 ` [edk2-devel] " Sami Mujawar
  0 siblings, 1 reply; 2+ messages in thread
From: PierreGondois @ 2021-04-07 14:43 UTC (permalink / raw)
  To: devel, Sami.Mujawar, Alexei.Fedorov

From: Pierre Gondois <Pierre.Gondois@arm.com>

SSDT tables describing an SBSA compatible serial port receive an '_HID'
value of 'ARMH0011'. This value represents a PL011 serial port.

This patch:
 - Generates an 'ARMHB000' instead
 - References the 'ACPI for Arm Components 1.0 - 2020' document
   specifying the '_HID' values to use.

Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
---
The changes can be seen at: https://github.com/PierreARM/edk2/tree/1699_Fix_serial_port_hid_v1

 .../Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
index 3c4356097c3b..f5e4a5a99f49 100644
--- a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
+++ b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
@@ -8,6 +8,7 @@
   @par Reference(s):
   - Arm Server Base Boot Requirements (SBBR), s4.2.1.8 "SPCR".
   - Microsoft Debug Port Table 2 (DBG2) Specification - December 10, 2015.
+  - ACPI for Arm Components 1.0 - 2020
 **/
 
 #include <IndustryStandard/DebugPort2Table.h>
@@ -165,7 +166,7 @@ FixupIds (
     case EFI_ACPI_DBG2_PORT_SUBTYPE_SERIAL_ARM_SBSA_GENERIC_UART:
     case EFI_ACPI_DBG2_PORT_SUBTYPE_SERIAL_ARM_SBSA_GENERIC_UART_2X:
     {
-      HidString = "ARMH0011";
+      HidString = "ARMHB000";
       CidString = "";
       break;
     }
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [edk2-devel] [PATCH v1 1/1] DynamicTablesPkg: Fix generated _HID value for SBSA
  2021-04-07 14:43 [PATCH v1 1/1] DynamicTablesPkg: Fix generated _HID value for SBSA PierreGondois
@ 2021-04-07 16:02 ` Sami Mujawar
  0 siblings, 0 replies; 2+ messages in thread
From: Sami Mujawar @ 2021-04-07 16:02 UTC (permalink / raw)
  To: devel@edk2.groups.io, Pierre Gondois, Alexei Fedorov, nd

Hi Pierre,

Thank you for this patch.

Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>

Regards,

Sami Mujawar

On 07/04/2021, 15:44, "devel@edk2.groups.io on behalf of PierreGondois via groups.io" <devel@edk2.groups.io on behalf of pierre.gondois=arm.com@groups.io> wrote:

    From: Pierre Gondois <Pierre.Gondois@arm.com>

    SSDT tables describing an SBSA compatible serial port receive an '_HID'
    value of 'ARMH0011'. This value represents a PL011 serial port.

    This patch:
     - Generates an 'ARMHB000' instead
     - References the 'ACPI for Arm Components 1.0 - 2020' document
       specifying the '_HID' values to use.

    Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
    ---
    The changes can be seen at: https://github.com/PierreARM/edk2/tree/1699_Fix_serial_port_hid_v1

     .../Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c     | 3 ++-
     1 file changed, 2 insertions(+), 1 deletion(-)

    diff --git a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
    index 3c4356097c3b..f5e4a5a99f49 100644
    --- a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
    +++ b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c
    @@ -8,6 +8,7 @@
       @par Reference(s):
       - Arm Server Base Boot Requirements (SBBR), s4.2.1.8 "SPCR".
       - Microsoft Debug Port Table 2 (DBG2) Specification - December 10, 2015.
    +  - ACPI for Arm Components 1.0 - 2020
     **/

     #include <IndustryStandard/DebugPort2Table.h>
    @@ -165,7 +166,7 @@ FixupIds (
         case EFI_ACPI_DBG2_PORT_SUBTYPE_SERIAL_ARM_SBSA_GENERIC_UART:
         case EFI_ACPI_DBG2_PORT_SUBTYPE_SERIAL_ARM_SBSA_GENERIC_UART_2X:
         {
    -      HidString = "ARMH0011";
    +      HidString = "ARMHB000";
           CidString = "";
           break;
         }
    --
    2.17.1



    



IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-07 16:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-07 14:43 [PATCH v1 1/1] DynamicTablesPkg: Fix generated _HID value for SBSA PierreGondois
2021-04-07 16:02 ` [edk2-devel] " Sami Mujawar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox