public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Leif Lindholm" <leif@nuviainc.com>
To: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>
Cc: devel@edk2.groups.io, michael.d.kinney@intel.com,
	Ard.Biesheuvel@arm.com, thomas.abraham@arm.com
Subject: Re: [edk2-platforms] [PATCH v2 3/5] Platform/ARM/SgiPkg: Add MultiChipMode to Platform Descriptor
Date: Thu, 13 Feb 2020 17:16:16 +0000	[thread overview]
Message-ID: <20200213171616.GN23627@bivouac.eciton.net> (raw)
In-Reply-To: <1581514167-1340-4-git-send-email-vijayenthiran.subramaniam@arm.com>

On Wed, Feb 12, 2020 at 18:59:25 +0530, Vijayenthiran Subramaniam wrote:
> The 'system-id' node of HW_CONFIG device tree has been updated to have
> a new property 'multi-chip-mode' which holds the information about the
> multi-chip-mode support. To adapt to this change, add 'MultiChipMode'
> member to SGI_PLATFORM_DESCRIPTOR structure to get 'multi-chip-mode'
> property from fdt.
> 
> Signed-off-by: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>

Apart from the "i" variable:
Reviewed-by: Leif Lindholm <leif@nuviainc.com>

As long as that is the only thing that changes, please keep that R-b
when sending out v3.

/
    Leif

> ---
>  Platform/ARM/SgiPkg/Include/SgiPlatform.h                    |  4 ++++
>  Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c        | 13 ++++++++++---
>  Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c |  8 ++++++++
>  3 files changed, 22 insertions(+), 3 deletions(-)
> 
> diff --git a/Platform/ARM/SgiPkg/Include/SgiPlatform.h b/Platform/ARM/SgiPkg/Include/SgiPlatform.h
> index e4a2e8cc0971..7c9322d1cda9 100644
> --- a/Platform/ARM/SgiPkg/Include/SgiPlatform.h
> +++ b/Platform/ARM/SgiPkg/Include/SgiPlatform.h
> @@ -79,10 +79,14 @@
>  #define SGI_CONFIG_SHIFT                          0x1C
>  #define SGI_PART_NUM_MASK                         0xFFF
>  
> +#define MULTI_CHIP_MODE_DISABLED                  0x0
> +#define MULTI_CHIP_MODE_ENABLED                   0x1
> +
>  // ARM platform description data.
>  typedef struct {
>    UINTN  PlatformId;
>    UINTN  ConfigId;
> +  UINTN  MultiChipMode;
>  } SGI_PLATFORM_DESCRIPTOR;
>  
>  #endif // __SGI_PLATFORM_H__
> diff --git a/Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c b/Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c
> index 4ab0dd768cd1..a2250a37bb57 100644
> --- a/Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c
> +++ b/Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c
> @@ -17,10 +17,10 @@ typedef struct {
>  } SGI_PLATFORM_ACPI_TABLE_GUID_LOOKUP;
>  
>  // Macro to construct the SGI_PLATFORM_ACPI_TABLE_GUID_LOOKUP structure
> -#define ACPI_GUID_LOOKUP(PART_NUM, CONFIG_NUM, GUID)                           \
> +#define ACPI_GUID_LOOKUP(PART_NUM, CONFIG_NUM, MULTI_CHIP_MODE, GUID)          \
>  {                                                                              \
>    {                                                                            \
> -    PART_NUM, CONFIG_NUM                                                       \
> +    PART_NUM, CONFIG_NUM, MULTI_CHIP_MODE                                      \
>    },                                                                           \
>    GUID                                                                         \
>  }                                                                              \
> @@ -29,14 +29,17 @@ STATIC SGI_PLATFORM_ACPI_TABLE_GUID_LOOKUP AcpiTableGuidLookup[] = {
>    ACPI_GUID_LOOKUP (
>        SGI575_PART_NUM,
>        SGI575_CONF_NUM,
> +      MULTI_CHIP_MODE_DISABLED,
>        &gSgi575AcpiTablesFileGuid),
>    ACPI_GUID_LOOKUP (
>        RD_N1E1_EDGE_PART_NUM,
>        RD_N1_EDGE_CONF_ID,
> +      MULTI_CHIP_MODE_DISABLED,
>        &gRdN1EdgeAcpiTablesFileGuid),
>    ACPI_GUID_LOOKUP (
>        RD_N1E1_EDGE_PART_NUM,
>        RD_E1_EDGE_CONF_ID,
> +      MULTI_CHIP_MODE_DISABLED,
>        &gRdE1EdgeAcpiTablesFileGuid),
>  };
>  
> @@ -58,6 +61,7 @@ ArmSgiPkgEntryPoint (
>    UINT8                   i;
>    UINT32                  ConfigId;
>    UINT32                  PartNum;
> +  UINT32                  MultiChipMode;
>  
>    SystemIdHob = GetFirstGuidHob (&gArmSgiPlatformIdDescriptorGuid);
>    if (SystemIdHob == NULL) {
> @@ -69,13 +73,16 @@ ArmSgiPkgEntryPoint (
>  
>    PartNum = HobData->PlatformId;
>    ConfigId = HobData->ConfigId;
> +  MultiChipMode = HobData->MultiChipMode;
>  
>    Status = EFI_UNSUPPORTED;
>  
>    // Walk through the AcpiTableGuidLookup lookup array
>    for (i = 0; i < ARRAY_SIZE (AcpiTableGuidLookup); i++) {
>      if ((PartNum == AcpiTableGuidLookup[i].SgiPlafromDescriptor.PlatformId) &&
> -        (ConfigId == AcpiTableGuidLookup[i].SgiPlafromDescriptor.ConfigId)) {
> +        (ConfigId == AcpiTableGuidLookup[i].SgiPlafromDescriptor.ConfigId)  &&
> +        (MultiChipMode ==
> +         AcpiTableGuidLookup[i].SgiPlafromDescriptor.MultiChipMode)) {
>        Status = LocateAndInstallAcpiFromFv (AcpiTableGuidLookup[i].AcpiTableGuid);
>        break;
>      }
> diff --git a/Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c b/Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c
> index 4daa1832dfaf..7df52cc4fd7c 100644
> --- a/Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c
> +++ b/Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c
> @@ -75,6 +75,14 @@ GetSgiSystemId (
>  
>    HobData->ConfigId = fdt32_to_cpu (*Property);
>  
> +  Property = fdt_getprop (NtFwCfgDtBlob, Offset, "multi-chip-mode", NULL);
> +  if (Property == NULL) {
> +    DEBUG ((DEBUG_WARN, "multi-chip-mode property not found\n"));
> +    HobData->MultiChipMode = 0;
> +  } else {
> +    HobData->MultiChipMode = fdt32_to_cpu (*Property);
> +  }
> +
>    return EFI_SUCCESS;
>  }
>  
> -- 
> 2.7.4
> 

  reply	other threads:[~2020-02-13 17:16 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-12 13:29 [edk2-platforms] [PATCH v2 0/5] Platform/ARM/SgiPkg: Add support for RD-N1-Edge-Dual platform Vijayenthiran Subramaniam
2020-02-12 13:29 ` [edk2-platforms] [PATCH v2 1/5] Platform/ARM/SgiPkg: Disable use of deprecated APIs Vijayenthiran Subramaniam
2020-02-13 16:56   ` Leif Lindholm
2020-02-12 13:29 ` [edk2-platforms] [PATCH v2 2/5] Platform/ARM/SgiPkg: Use lookup table to install ACPI table Vijayenthiran Subramaniam
2020-02-13 17:14   ` Leif Lindholm
2020-02-12 13:29 ` [edk2-platforms] [PATCH v2 3/5] Platform/ARM/SgiPkg: Add MultiChipMode to Platform Descriptor Vijayenthiran Subramaniam
2020-02-13 17:16   ` Leif Lindholm [this message]
2020-02-12 13:29 ` [edk2-platforms] [PATCH v2 4/5] Platform/ARM/Sgi: Add ACPI tables for dual-chip RD-N1-Edge platform Vijayenthiran Subramaniam
2020-02-13 17:22   ` Leif Lindholm
2020-02-12 13:29 ` [edk2-platforms] [PATCH v2 5/5] Platform/ARM/Sgi: Add initial support for RD-N1-Edge-Dual platform Vijayenthiran Subramaniam
2020-02-13 17:23   ` Leif Lindholm
2020-02-13 17:31 ` [edk2-platforms] [PATCH v2 0/5] Platform/ARM/SgiPkg: Add " Leif Lindholm
2020-02-14 13:52   ` [edk2-devel] " Vijayenthiran Subramaniam

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=20200213171616.GN23627@bivouac.eciton.net \
    --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