public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Nhi Pham" <nhi@os.amperecomputing.com>
To: devel@edk2.groups.io
Cc: Nhi Pham <nhi@os.amperecomputing.com>,
	Thang Nguyen <thang@os.amperecomputing.com>,
	Chuong Tran <chuong@os.amperecomputing.com>,
	Phong Vo <phong@os.amperecomputing.com>,
	Leif Lindholm <leif@nuviainc.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Ard Biesheuvel <ardb+tianocore@kernel.org>,
	Nate DeSimone <nathaniel.l.desimone@intel.com>
Subject: [edk2-platforms][PATCH v2 11/32] AmperePlatformPkg: Add AcpiPccLib to support ACPI PCCT Table
Date: Wed, 26 May 2021 17:07:03 +0700	[thread overview]
Message-ID: <20210526100724.5359-13-nhi@os.amperecomputing.com> (raw)
In-Reply-To: <20210526100724.5359-1-nhi@os.amperecomputing.com>

The AcpiPccLib provides functions to allocate and get the physical
address of PCC shared memory.

Cc: Thang Nguyen <thang@os.amperecomputing.com>
Cc: Chuong Tran <chuong@os.amperecomputing.com>
Cc: Phong Vo <phong@os.amperecomputing.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>

Signed-off-by: Nhi Pham <nhi@os.amperecomputing.com>
---
 Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec                |   2 +
 Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.inf |  41 ++++
 Silicon/Ampere/AmpereSiliconPkg/Include/Library/AcpiPccLib.h        | 166 ++++++++++++++
 Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.c   | 241 ++++++++++++++++++++
 4 files changed, 450 insertions(+)

diff --git a/Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec b/Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec
index a72205aa5316..8193ff617600 100755
--- a/Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec
+++ b/Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec
@@ -25,6 +25,8 @@ [Includes.common]
   Include                        # Root include for the package
 
 [LibraryClasses]
+  ##  @libraryclass  Provides functions to create the ACPI PCCT Table which which advertises PCC mailbox channel information.
+  AcpiPccLib|Silicon/Ampere/AmpereSiliconPkg/Include/Library/AcpiPccLib.h
 
 [Guids]
   gAmpereTokenSpaceGuid = { 0xdbd4436e, 0x89cb, 0x44dc, { 0xb5, 0xc0, 0x49, 0xc3, 0x91, 0x35, 0xbf, 0xdf } }
diff --git a/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.inf b/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.inf
new file mode 100755
index 000000000000..9f38e1e77145
--- /dev/null
+++ b/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.inf
@@ -0,0 +1,41 @@
+## @file
+#
+# Copyright (c) 2020 - 2021, Ampere Computing LLC. All rights reserved.<BR>
+#
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+##
+
+[Defines]
+  INF_VERSION                   = 0x0001001B
+  BASE_NAME                     = AcpiPccLib
+  FILE_GUID                     = 790519F0-F344-11E3-AC10-0800200C9A66
+  MODULE_TYPE                   = BASE
+  VERSION_STRING                = 1.0
+  LIBRARY_CLASS                 = AcpiPccLib
+
+[Sources.common]
+  AcpiPccLib.c
+
+[Packages]
+  ArmPkg/ArmPkg.dec
+  ArmPlatformPkg/ArmPlatformPkg.dec
+  MdePkg/MdePkg.dec
+  Silicon/Ampere/AmpereAltraPkg/AmpereAltraPkg.dec
+  Silicon/Ampere/AmpereSiliconPkg/AmpereSiliconPkg.dec
+
+[LibraryClasses]
+  ArmLib
+  BaseLib
+  BaseMemoryLib
+  DebugLib
+  IoLib
+  MailboxInterfaceLib
+  PrintLib
+  SystemFirmwareInterfaceLib
+  TimerLib
+  UefiBootServicesTableLib
+
+[Pcd]
+  gAmpereTokenSpaceGuid.PcdPmproDbBaseReg
+  gAmpereTokenSpaceGuid.PcdSmproDbBaseReg
diff --git a/Silicon/Ampere/AmpereSiliconPkg/Include/Library/AcpiPccLib.h b/Silicon/Ampere/AmpereSiliconPkg/Include/Library/AcpiPccLib.h
new file mode 100644
index 000000000000..d8ae48e7612a
--- /dev/null
+++ b/Silicon/Ampere/AmpereSiliconPkg/Include/Library/AcpiPccLib.h
@@ -0,0 +1,166 @@
+/** @file
+
+  Copyright (c) 2020 - 2021, Ampere Computing LLC. All rights reserved.<BR>
+
+  SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef ACPI_PCC_LIB_H_
+#define ACPI_PCC_LIB_H_
+
+#include <Library/MailboxInterfaceLib.h>
+#include <Library/SystemFirmwareInterfaceLib.h>
+
+// Send a message with dummy payload is to advertise the shared memory address
+#define DB_PCC_PAYLOAD_DUMMY         0x0F000000
+
+#define DB_PCC_MSG_PAYLOAD_SIZE      12 // Number of Bytes
+
+//
+// ACPI Platform Communication Channel (PCC)
+//
+#define ACPI_PCC_SUBSPACE_SHARED_MEM_SIGNATURE  0x50434300 // "PCC"
+#define ACPI_PCC_SUBSPACE_SHARED_MEM_SIZE       0x4000     // Number of Bytes
+
+//
+// Reserved Doorbell Mask
+// Bit 0 --> 31 correspond to Doorbell 0 --> 31
+//
+// List of reserved Doorbells
+//  1. Doorbell 4: PCIe Hot-plug
+//
+#define ACPI_PCC_AVAILABLE_DOORBELL_MASK        0xEFFFEFFF
+#define ACPI_PCC_NUMBER_OF_RESERVED_DOORBELLS   1
+
+// Supported doorbells in the platform
+#define ACPI_PCC_MAX_DOORBELL              (NUMBER_OF_DOORBELLS_PER_SOCKET * PLATFORM_CPU_MAX_SOCKET)
+
+// Valid doorbells for use
+#define ACPI_PCC_MAX_SUBPACE_PER_SOCKET    (NUMBER_OF_DOORBELLS_PER_SOCKET - ACPI_PCC_NUMBER_OF_RESERVED_DOORBELLS)
+#define ACPI_PCC_MAX_SUBPACE               (ACPI_PCC_MAX_SUBPACE_PER_SOCKET * PLATFORM_CPU_MAX_SOCKET)
+
+#define ACPI_PCC_NOMINAL_LATENCY_US                1000 // us
+#define ACPI_PCC_MAX_PERIODIC_ACCESS_RATE          0    // no limitation
+#define ACPI_PCC_MIN_REQ_TURNAROUND_TIME_US        0
+
+// Polling interval for PCC Command Complete
+#define ACPI_PCC_COMMAND_POLL_INTERVAL_US          10
+
+#define ACPI_PCC_COMMAND_POLL_COUNT  (ACPI_PCC_NOMINAL_LATENCY_US / ACPI_PCC_COMMAND_POLL_INTERVAL_US)
+
+//
+// PCC subspace 2 (PMpro Doorbell Channel 2) is used for ACPI CPPC
+//
+#define ACPI_PCC_CPPC_DOORBELL_ID                  (PMproDoorbellChannel2)
+
+#define ACPI_PCC_CPPC_NOMINAL_LATENCY_US           100
+#define ACPI_PCC_CPPC_MIN_REQ_TURNAROUND_TIME_US   110
+
+
+/**
+  Allocate memory pages for the PCC shared memory region.
+
+  @param  PccSharedMemoryPtr     Pointer to the shared memory address.
+  @param  NumberOfSubspaces      Number of subspaces slot in the shared memory region.
+
+  @retval EFI_SUCCESS            Send the message successfully.
+  @retval EFI_INVALID_PARAMETER  TheNumberOfSubspaces is out of the valid range.
+  @retval Otherwise              Return errors from call to gBS->AllocatePages().
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccAllocateSharedMemory (
+  OUT EFI_PHYSICAL_ADDRESS *PccSharedMemPointer,
+  IN  UINT16               NumberOfSubspaces
+  );
+
+/**
+  Free the whole shared memory region that is allocated by
+  the AcpiPccAllocateSharedMemory() function.
+
+**/
+VOID
+EFIAPI
+AcpiPccFreeSharedMemory (
+  VOID
+  );
+
+/**
+  Send a PCC message to the platform (SMpro/PMpro).
+
+  @param  Socket    The Socket ID.
+  @param  Doorbell  The Doorbell index from supported Doorbells per socket.
+  @param  Subspace  The Subspace index in the shared memory region.
+
+  @retval EFI_SUCCESS            Send the message successfully.
+  @retval EFI_INVALID_PARAMETER  The Socket, Doorbell or Subspace is out of the valid range.
+                                 The data buffer is NULL or the size of data buffer is zero.
+  @retval EFI_NOT_READY          The shared memory region is NULL.
+  @retval EFI_TIMEOUT            Timeout occurred when polling the PCC Command Complete bit.
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccSendMessage (
+  IN UINT8  Socket,
+  IN UINT16 Doorbell,
+  IN UINT16 Subspace,
+  IN VOID   *DataBuffer,
+  IN UINT32 DataSize
+  );
+
+/**
+  Initialize the shared memory in the SMpro/PMpro Doorbell handler.
+  This function is to advertise the shared memory region address to the platform (SMpro/PMpro).
+
+  @param  Socket    The Socket ID.
+  @param  Doorbell  The Doorbell index from supported Doorbells per socket.
+  @param  Subspace  The Subspace index in the shared memory region.
+
+  @retval EFI_SUCCESS            Initialize successfully.
+  @retval EFI_INVALID_PARAMETER  The Socket, Doorbell or Subspace is out of the valid range.
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccInitSharedMemory (
+  IN UINT8  Socket,
+  IN UINT16 Doorbell,
+  IN UINT16 Subspace
+  );
+
+/**
+  Unmask the Doorbell interrupt.
+
+  @param  Socket    The Socket ID.
+  @param  Doorbell  The Doorbell index from supported Doorbells per socket.
+
+  @retval EFI_SUCCESS            Unmask the Doorbell interrupt successfully.
+  @retval EFI_INVALID_PARAMETER  The Socket or Doorbell is out of the valid range.
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccUnmaskDoorbellInterrupt (
+  IN UINT8  Socket,
+  IN UINT16 Doorbell
+  );
+
+/**
+  Check whether the Doorbell is reserved or not.
+
+  @param  Doorbell   The Doorbell index from supported Doorbells.
+
+  @retval TRUE         The Doorbell is reserved for private use or invalid.
+  @retval FALSE        The Doorbell is available.
+
+**/
+BOOLEAN
+EFIAPI
+AcpiPccIsDoorbellReserved (
+  IN UINT16 Doorbell
+  );
+
+#endif /* ACPI_PCC_LIB_H_ */
diff --git a/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.c b/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.c
new file mode 100644
index 000000000000..48e0b9e876ef
--- /dev/null
+++ b/Platform/Ampere/AmperePlatformPkg/Library/AcpiPccLib/AcpiPccLib.c
@@ -0,0 +1,241 @@
+/** @file
+
+  Copyright (c) 2020 - 2021, Ampere Computing LLC. All rights reserved.<BR>
+
+  SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#include <Uefi.h>
+
+#include <IndustryStandard/Acpi.h>
+#include <Library/AcpiPccLib.h>
+#include <Library/ArmLib.h>
+#include <Library/BaseMemoryLib.h>
+#include <Library/DebugLib.h>
+#include <Library/IoLib.h>
+#include <Library/PrintLib.h>
+#include <Library/TimerLib.h>
+#include <Library/UefiBootServicesTableLib.h>
+#include <Platform/Ac01.h>
+
+STATIC EFI_PHYSICAL_ADDRESS mPccSharedMemoryAddress;
+STATIC UINTN                mPccSharedMemorySize;
+
+EFI_STATUS
+AcpiPccGetSharedMemoryAddress (
+  IN  UINT8  Socket,
+  IN  UINT16 Subspace,
+  OUT VOID   **SharedMemoryAddress
+  )
+{
+  if (Socket >= PLATFORM_CPU_MAX_SOCKET
+      || Subspace >= ACPI_PCC_MAX_SUBPACE)
+  {
+    return EFI_INVALID_PARAMETER;
+  }
+
+  if (mPccSharedMemoryAddress == 0) {
+    return EFI_NOT_READY;
+  }
+
+  *SharedMemoryAddress = (VOID *)(mPccSharedMemoryAddress + ACPI_PCC_SUBSPACE_SHARED_MEM_SIZE * Subspace);
+
+  return EFI_SUCCESS;
+}
+
+/**
+  Allocate memory pages for the PCC shared memory region.
+
+  @param  PccSharedMemoryPtr     Pointer to the shared memory address.
+  @param  NumberOfSubspaces      Number of subspaces slot in the shared memory region.
+
+  @retval EFI_SUCCESS            Send the message successfully.
+  @retval EFI_INVALID_PARAMETER  TheNumberOfSubspaces is out of the valid range.
+  @retval Otherwise              Return errors from call to gBS->AllocatePages().
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccAllocateSharedMemory (
+  OUT EFI_PHYSICAL_ADDRESS *PccSharedMemoryPtr,
+  IN  UINT16               NumberOfSubspaces
+  )
+{
+  EFI_STATUS Status;
+
+  if (NumberOfSubspaces > ACPI_PCC_MAX_SUBPACE) {
+    return EFI_INVALID_PARAMETER;
+  }
+
+  mPccSharedMemorySize = ACPI_PCC_SUBSPACE_SHARED_MEM_SIZE * NumberOfSubspaces;
+
+  Status = gBS->AllocatePages (
+                  AllocateAnyPages,
+                  EfiRuntimeServicesData,
+                  EFI_SIZE_TO_PAGES (mPccSharedMemorySize),
+                  &mPccSharedMemoryAddress
+                  );
+  if (EFI_ERROR (Status)) {
+    DEBUG ((DEBUG_ERROR, "Failed to allocate PCC shared memory\n"));
+    mPccSharedMemorySize = 0;
+    return Status;
+  }
+
+  *PccSharedMemoryPtr = mPccSharedMemoryAddress;
+
+  return EFI_SUCCESS;
+}
+
+/**
+  Free the whole shared memory region that is allocated by
+  the AcpiPccAllocateSharedMemory() function.
+
+**/
+VOID
+EFIAPI
+AcpiPccFreeSharedMemory (
+  VOID
+  )
+{
+  if (mPccSharedMemoryAddress != 0 && mPccSharedMemorySize != 0)
+  {
+    gBS->FreePages (
+           mPccSharedMemoryAddress,
+           EFI_SIZE_TO_PAGES (mPccSharedMemorySize)
+           );
+
+    mPccSharedMemoryAddress = 0;
+  }
+}
+
+/**
+  Initialize the shared memory in the SMpro/PMpro Doorbell handler.
+  This function is to advertise the shared memory region address to the platform (SMpro/PMpro).
+
+  @param  Socket    The Socket ID.
+  @param  Doorbell  The Doorbell index from supported Doorbells per socket.
+  @param  Subspace  The Subspace index in the shared memory region.
+
+  @retval EFI_SUCCESS            Initialize successfully.
+  @retval EFI_INVALID_PARAMETER  The Socket, Doorbell or Subspace is out of the valid range.
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccInitSharedMemory (
+  IN UINT8  Socket,
+  IN UINT16 Doorbell,
+  IN UINT16 Subspace
+  )
+{
+  EFI_STATUS                                            Status;
+  EFI_ACPI_6_3_PCCT_GENERIC_SHARED_MEMORY_REGION_HEADER *PcctSharedMemoryRegion;
+  UINT32                                                CommunicationData;
+  UINTN                                                 Timeout;
+
+  if (Socket >= PLATFORM_CPU_MAX_SOCKET
+      || Doorbell >= NUMBER_OF_DOORBELLS_PER_SOCKET
+      || Subspace >= ACPI_PCC_MAX_SUBPACE)
+  {
+    return EFI_INVALID_PARAMETER;
+  }
+
+  Status = AcpiPccGetSharedMemoryAddress (Socket, Subspace, (VOID **)&PcctSharedMemoryRegion);
+  if (EFI_ERROR (Status)) {
+    return Status;
+  }
+
+  //
+  // Zero shared memory region for each PCC subspace
+  //
+  SetMem (
+    (VOID *)PcctSharedMemoryRegion,
+    sizeof (EFI_ACPI_6_3_PCCT_GENERIC_SHARED_MEMORY_REGION_HEADER) + DB_PCC_MSG_PAYLOAD_SIZE,
+    0
+    );
+
+  // Advertise shared memory address to Platform (SMpro/PMpro)
+  // by ringing the doorbell with dummy PCC message
+  //
+  CommunicationData = DB_PCC_PAYLOAD_DUMMY;
+
+  //
+  // Write Data into Communication Space Region
+  //
+  CopyMem ((VOID *)(PcctSharedMemoryRegion + 1), &CommunicationData, sizeof (CommunicationData));
+
+  PcctSharedMemoryRegion->Status.CommandComplete = 0;
+  PcctSharedMemoryRegion->Signature = ACPI_PCC_SUBSPACE_SHARED_MEM_SIGNATURE | Subspace;
+
+  Status = MailboxMsgSetPccSharedMem (Socket, Doorbell, TRUE, (UINT64)PcctSharedMemoryRegion);
+  if (EFI_ERROR (Status)) {
+    DEBUG ((DEBUG_ERROR, "%a: Failed to send mailbox message!\n", __FUNCTION__));
+    ASSERT_EFI_ERROR (Status);
+    return Status;
+  }
+
+  //
+  // Polling CMD_COMPLETE bit
+  //
+  Timeout = ACPI_PCC_COMMAND_POLL_COUNT;
+  while (PcctSharedMemoryRegion->Status.CommandComplete != 1) {
+    if (--Timeout <= 0) {
+      DEBUG ((DEBUG_ERROR, "%a - Timeout occurred when polling the PCC Status Complete\n", __FUNCTION__));
+      return EFI_TIMEOUT;
+    }
+    MicroSecondDelay (ACPI_PCC_COMMAND_POLL_INTERVAL_US);
+  }
+
+  return EFI_SUCCESS;
+}
+
+/**
+  Unmask the Doorbell interrupt.
+
+  @param  Socket    The Socket ID.
+  @param  Doorbell  The Doorbell index from supported Doorbells per socket.
+
+  @retval EFI_SUCCESS            Unmask the Doorbell interrupt successfully.
+  @retval EFI_INVALID_PARAMETER  The Socket or Doorbell is out of the valid range.
+
+**/
+EFI_STATUS
+EFIAPI
+AcpiPccUnmaskDoorbellInterrupt (
+  IN UINT8  Socket,
+  IN UINT16 Doorbell
+  )
+{
+  return MailboxUnmaskInterrupt (Socket, Doorbell);
+}
+
+/**
+  Check whether the Doorbell is reserved or not.
+
+  @param  Doorbell   The Doorbell index from supported Doorbells.
+
+  @retval TRUE         The Doorbell is reserved for private use or invalid.
+  @retval FALSE        The Doorbell is available.
+
+**/
+BOOLEAN
+EFIAPI
+AcpiPccIsDoorbellReserved (
+  IN UINT16 Doorbell
+  )
+{
+  if (Doorbell >= ACPI_PCC_MAX_DOORBELL) {
+    ASSERT (FALSE);
+    return TRUE;
+  }
+
+  if (((1 << Doorbell) & ACPI_PCC_AVAILABLE_DOORBELL_MASK) == 0) {
+    //
+    // The doorbell is reserved for private use.
+    //
+    return TRUE;
+  }
+
+  return FALSE;
+}
-- 
2.17.1


  parent reply	other threads:[~2021-05-26 10:11 UTC|newest]

Thread overview: 87+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 10:06 [edk2-platforms][PATCH v2 00/32] Add new Ampere Mt. Jade platform Nhi Pham
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 01/32] Ampere: Initial support for Ampere Altra processor and " Nhi Pham
2021-06-04 23:04   ` Leif Lindholm
2021-06-09  4:50     ` Nhi Pham
2021-06-09 12:40       ` Leif Lindholm
2021-06-15 16:46     ` Nhi Pham
2021-05-26 10:06 ` [PATCH 1/1] UsbCdcNetDxe: Remove reading connection status in SNP GetStatus Nhi Pham
2021-05-26 10:23   ` [edk2-devel] " Nhi Pham
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 02/32] AmpereAltraPkg: Add MmCommunication modules Nhi Pham
2021-06-04 23:05   ` Leif Lindholm
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 03/32] AmperePlatformPkg: Implement FailSafe library Nhi Pham
2021-06-04 23:07   ` Leif Lindholm
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 04/32] AmperePlatformPkg: Add FailSafe and WDT support Nhi Pham
2021-06-04 23:12   ` Leif Lindholm
2021-06-15 16:47     ` Nhi Pham
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 05/32] AmpereAltraPkg: Add DwI2cLib library Nhi Pham
2021-06-04 23:21   ` Leif Lindholm
2021-06-15 16:47     ` Nhi Pham
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 06/32] AmpereAltraPkg: Add DwGpioLib library Nhi Pham
2021-06-04 23:22   ` Leif Lindholm
2021-05-26 10:06 ` [edk2-platforms][PATCH v2 07/32] JadePkg: Implement RealTimeClockLib for PCF85063 Nhi Pham
2021-06-04 23:26   ` Leif Lindholm
2021-06-15 16:48     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 08/32] AmpereAltraPkg: Add BootProgress support Nhi Pham
2021-06-04 23:27   ` Leif Lindholm
2021-06-15 16:48     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 09/32] AmpereAltraPkg: Support non-volatile variables Nhi Pham
2021-06-04 23:36   ` Leif Lindholm
2021-06-15 16:48     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 10/32] AmpereSiliconPkg: Add PlatformManagerUiLib library instance Nhi Pham
2021-06-04 23:37   ` Leif Lindholm
2021-05-26 10:07 ` Nhi Pham [this message]
2021-06-04 23:44   ` [edk2-platforms][PATCH v2 11/32] AmperePlatformPkg: Add AcpiPccLib to support ACPI PCCT Table Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 12/32] AmperePlatformPkg: Add AcpiHelperLib to update ACPI DSDT table Nhi Pham
2021-06-04 23:47   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 13/32] AmpereAltraPkg, JadePkg: Add ACPI support Nhi Pham
2021-06-04 23:50   ` Leif Lindholm
2021-06-15 16:49     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 14/32] AmpereAltraPkg: Add PcieCoreLib library instance Nhi Pham
2021-06-05  0:05   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 15/32] JadePkg: Add PcieBoardLib " Nhi Pham
2021-06-07 22:45   ` Leif Lindholm
2021-06-15 16:50     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 16/32] AmpereAltraPkg: Add PciHostBridge driver Nhi Pham
2021-06-08 22:26   ` Leif Lindholm
2021-06-09  5:29   ` Ard Biesheuvel
2021-06-15 15:54     ` Nhi Pham
2021-06-16 14:20       ` Ard Biesheuvel
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 17/32] JadePkg: Enable PCIe-related libraries and device drivers Nhi Pham
2021-06-07 22:51   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 18/32] JadePkg: Add ASpeed GOP driver Nhi Pham
2021-06-07 22:51   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 19/32] AmpereAltraPkg: Add Random Number Generator Support Nhi Pham
2021-06-08 11:13   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 20/32] JadePkg: Add SMBIOS tables support Nhi Pham
2021-06-07 23:00   ` Leif Lindholm
2021-06-15 16:51     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 21/32] AmpereAltraPkg: Add DebugInfoPei module Nhi Pham
2021-06-07 23:08   ` Leif Lindholm
2021-06-15 16:51     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 22/32] AmpereAltraPkg: Add platform info screen Nhi Pham
2021-06-07 23:10   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 23/32] AmpereAltraPkg: Add configuration screen for memory Nhi Pham
2021-06-07 23:14   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 24/32] AmpereAltraPkg: Add configuration screen for CPU Nhi Pham
2021-06-07 23:15   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 25/32] AmpereAltraPkg: Add configuration screen for ACPI Nhi Pham
2021-06-07 23:20   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 26/32] AmpereAltraPkg: Add configuration screen for RAS Nhi Pham
2021-06-07 23:22   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 27/32] AmpereAltraPkg: Add configuration screen for Watchdog timer Nhi Pham
2021-06-07 23:24   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 28/32] AmpereAltraPkg: Add configuration screen for Pcie Devices Nhi Pham
2021-06-07 23:34   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 29/32] JadePkg: Recover boot options when NVRAM cleared Nhi Pham
2021-06-07 23:46   ` Leif Lindholm
2021-06-15 16:52     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 30/32] AmpereSiliconPkg: Implement PlatformBootManagerLib for LinuxBoot Nhi Pham
2021-06-07 23:50   ` Leif Lindholm
2021-06-09 15:21     ` Nhi Pham
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 31/32] Platform/Ampere: Introduce the LinuxBootPkg Nhi Pham
2021-06-07 23:51   ` Leif Lindholm
2021-05-26 10:07 ` [edk2-platforms][PATCH v2 32/32] AmpereAltraPkg,JadePkg: Support LinuxBoot DSC/FDF build for Jade platform Nhi Pham
2021-06-07 23:58   ` Leif Lindholm
2021-06-09 15:20     ` Nhi Pham
2021-05-27 12:56 ` [edk2-platforms][PATCH v2 00/32] Add new Ampere Mt. " Leif Lindholm
2021-06-04 13:54 ` Leif Lindholm

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=20210526100724.5359-13-nhi@os.amperecomputing.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