[edk2-devel] [edk2-platforms][PATCH V4 02/11] Platform/Sgi: Add GetProductId API for SGI/RD Platforms

Pranav Madhu pranav.madhu at arm.com
Mon May 24 14:28:07 UTC 2021


Add GetProductId API for SGI/RD Platform. The API returns a product id
in integer format based on the platform description data. The product id
is required for other drivers such as SMBIOS.

Signed-off-by: Pranav Madhu <pranav.madhu at arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar at arm.com>
---
 Platform/ARM/SgiPkg/Include/SgiPlatform.h             | 30 +++++++
 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c | 86 +++++++++++++++++++-
 2 files changed, 115 insertions(+), 1 deletion(-)

diff --git a/Platform/ARM/SgiPkg/Include/SgiPlatform.h b/Platform/ARM/SgiPkg/Include/SgiPlatform.h
index 1c5366878712..4999c9870b49 100644
--- a/Platform/ARM/SgiPkg/Include/SgiPlatform.h
+++ b/Platform/ARM/SgiPkg/Include/SgiPlatform.h
@@ -68,4 +68,34 @@ typedef struct {
   UINTN  MultiChipMode;
 } SGI_PLATFORM_DESCRIPTOR;
 
+// Arm SGI/RD Product IDs
+typedef enum {
+  UnknownId = 0,
+  Sgi575,
+  RdN1Edge,
+  RdN1EdgeX2,
+  RdE1Edge,
+  RdV1,
+  RdV1Mc,
+  RdN2
+} ARM_RD_PRODUCT_ID;
+
+// Arm ProductId look-up table
+typedef struct {
+  UINTN  ProductId;
+  UINTN  PlatformId;
+  UINTN  ConfigId;
+  UINTN  MultiChipMode;
+} SGI_PRODUCT_ID_LOOKUP;
+
+/**
+  Derermine the product ID.
+
+  Determine the product ID by using the data in the Platform ID Descriptor HOB
+  to lookup for a matching product ID.
+
+  @retval Zero           Failed identify platform.
+  @retval Others         ARM_RD_PRODUCT_ID of the identified platform.
+**/
+UINT8 SgiGetProductId (VOID);
 #endif // __SGI_PLATFORM_H__
diff --git a/Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c b/Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c
index 9731d7cccede..f27c949dbc24 100644
--- a/Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c
+++ b/Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c
@@ -1,6 +1,6 @@
 /** @file
 *
-*  Copyright (c) 2018, ARM Limited. All rights reserved.
+*  Copyright (c) 2018-2021, ARM Limited. All rights reserved.
 *
 *  SPDX-License-Identifier: BSD-2-Clause-Patent
 *
@@ -8,9 +8,12 @@
 
 #include <Library/ArmPlatformLib.h>
 #include <Library/BaseLib.h>
+#include <Library/HobLib.h>
 #include <Ppi/ArmMpCoreInfo.h>
 #include <Ppi/SgiPlatformId.h>
 
+#include "SgiPlatform.h"
+
 UINT64 NtFwConfigDtBlob;
 STATIC SGI_NT_FW_CONFIG_INFO_PPI mNtFwConfigDtInfoPpi;
 
@@ -21,6 +24,51 @@ STATIC ARM_CORE_INFO mCoreInfoTable[] = {
   },
 };
 
+STATIC CONST SGI_PRODUCT_ID_LOOKUP SgiProductIdLookup[] = {
+  {
+    Sgi575,
+    SGI575_PART_NUM,
+    SGI575_CONF_NUM,
+    0
+  },
+  {
+    RdN1Edge,
+    RD_N1E1_EDGE_PART_NUM,
+    RD_N1_EDGE_CONF_ID,
+    0
+  },
+  {
+    RdN1EdgeX2,
+    RD_N1E1_EDGE_PART_NUM,
+    RD_N1_EDGE_CONF_ID,
+    1
+  },
+  {
+    RdE1Edge,
+    RD_N1E1_EDGE_PART_NUM,
+    RD_E1_EDGE_CONF_ID,
+    0
+  },
+  {
+    RdV1,
+    RD_V1_PART_NUM,
+    RD_V1_CONF_ID,
+    0
+  },
+  {
+    RdV1Mc,
+    RD_V1_PART_NUM,
+    RD_V1_MC_CONF_ID,
+    1
+  },
+  {
+    RdN2,
+    RD_N2_PART_NUM,
+    RD_N2_CONF_ID,
+    0
+  }
+};
+
 EFI_BOOT_MODE
 ArmPlatformGetBootMode (
   VOID
@@ -75,3 +123,39 @@ ArmPlatformGetPlatformPpiList (
   *PpiListSize = sizeof (gPlatformPpiTable);
   *PpiList = gPlatformPpiTable;
 }
+
+/**
+  Derermine the product ID.
+
+  Determine the product ID by using the data in the Platform ID Descriptor HOB
+  to lookup for a matching product ID.
+
+  @retval Zero           Failed identify platform.
+  @retval Others         ARM_RD_PRODUCT_ID of the identified platform.
+**/
+UINT8
+SgiGetProductId (
+  VOID
+  )
+{
+  VOID *SystemIdHob;
+  UINT8 Idx;
+  SGI_PLATFORM_DESCRIPTOR *HobData;
+
+  SystemIdHob = GetFirstGuidHob (&gArmSgiPlatformIdDescriptorGuid);
+  if (SystemIdHob == NULL) {
+    return UnknownId;
+  }
+
+  HobData = (SGI_PLATFORM_DESCRIPTOR *)GET_GUID_HOB_DATA (SystemIdHob);
+
+  for (Idx = 0; Idx < ARRAY_SIZE (SgiProductIdLookup); Idx++) {
+    if ((HobData->PlatformId == SgiProductIdLookup[Idx].PlatformId) &&
+        (HobData->ConfigId == SgiProductIdLookup[Idx].ConfigId) &&
+        (HobData->MultiChipMode == SgiProductIdLookup[Idx].MultiChipMode)) {
+      return SgiProductIdLookup[Idx].ProductId;
+    }
+  }
+
+  return UnknownId;
+}
-- 
2.17.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#75524): https://edk2.groups.io/g/devel/message/75524
Mute This Topic: https://groups.io/mt/83052321/1813853
Group Owner: devel+owner at edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [edk2-devel-archive at redhat.com]
-=-=-=-=-=-=-=-=-=-=-=-






More information about the edk2-devel-archive mailing list