public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Nhi Pham" <nhi@os.amperecomputing.com>
To: quic_llindhol@quicinc.com
Cc: devel@edk2.groups.io, patches@amperecomputing.com,
	ardb+tianocore@kernel.org, Nhi Pham <nhi@os.amperecomputing.com>
Subject: Re: [edk2-platforms][PATCH 0/2] Support Ampere Altra Max processor
Date: Wed, 29 Mar 2023 11:49:01 +0700	[thread overview]
Message-ID: <f5a6b4e7-f377-5d24-b92a-2d659eefe910@amperemail.onmicrosoft.com> (raw)
In-Reply-To: <20230113042517.3107802-1-nhi@os.amperecomputing.com>

Hi Leif,

Sorry to have kept you waiting. I was not able to send the v2 out sooner 
than I wanted as the large refactor changes has been well-tested. I have 
just sent the v2. I hope all your comments are addressed.

Thanks so much.

Nhi

On 1/13/2023 11:25 AM, Nhi Pham wrote:
> This patchset adds support for Ampere Altra Max processor.
>
> Tinh Nguyen (1):
>    JadePkg: ACPI: Support ACPI tables for Ampere Altra Max
>
> Vu Nguyen (1):
>    Ampere: PCIe: Add support for Ampere Altra Max
>
>   .../AmpereAltraPkg/AmpereAltraPkg.dsc.inc     |    6 +-
>   Platform/Ampere/JadePkg/Jade.dsc              |    3 +-
>   Platform/Ampere/JadePkg/Jade.fdf              |    3 +-
>   .../JadePkg/Ac02AcpiTables/Ac02AcpiTables.inf |   20 +
>   .../Include/Library/AmpereCpuLib.h            |   31 +-
>   .../AmpereAltraPkg/Include/NVParamDef.h       |   64 +-
>   .../AmpereAltraPkg/Include/Platform/Ac01.h    |    5 +-
>   .../Library/Ac01PcieLib/PcieCore.h            |    8 +-
>   .../Drivers/AcpiPlatformDxe/AcpiMadt.c        |  103 +-
>   .../Drivers/AcpiPlatformDxe/AcpiPlatformDxe.c |   10 +-
>   .../Library/BoardPcieLib/BoardPcieLib.c       |   63 +-
>   .../Drivers/PcieInitPei/PcieInitPei.c         |   16 +-
>   .../Drivers/PcieInitPei/RootComplexNVParam.c  |  101 +-
>   .../Library/Ac01PcieLib/PcieCore.c            |  150 +-
>   .../Library/AmpereCpuLib/AmpereCpuLibCommon.c |  243 +-
>   .../Ampere/JadePkg/Ac02AcpiTables/CPU-S0.asi  | 6345 +++++++++++++++++
>   .../Ampere/JadePkg/Ac02AcpiTables/CPU-S1.asi  | 6345 +++++++++++++++++
>   .../Ampere/JadePkg/Ac02AcpiTables/CPU.asi     |  152 +
>   .../JadePkg/Ac02AcpiTables/CommonDevices.asi  |  670 ++
>   .../Ampere/JadePkg/Ac02AcpiTables/Dsdt.asl    |   39 +
>   .../JadePkg/Ac02AcpiTables/PCI-PDRC.asi       |  217 +
>   .../JadePkg/Ac02AcpiTables/PCI-S0.Rca01.asi   |  669 ++
>   .../Ampere/JadePkg/Ac02AcpiTables/PCI-S0.asi  | 2041 ++++++
>   .../Ampere/JadePkg/Ac02AcpiTables/PCI-S1.asi  | 2051 ++++++
>   .../Ampere/JadePkg/Ac02AcpiTables/PMU-S0.asi  | 1292 ++++
>   .../Ampere/JadePkg/Ac02AcpiTables/PMU-S1.asi  | 1292 ++++
>   .../Ampere/JadePkg/Ac02AcpiTables/PMU.asi     |   10 +
>   27 files changed, 21699 insertions(+), 250 deletions(-)
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/Ac02AcpiTables.inf
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/CPU-S0.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/CPU-S1.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/CPU.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/CommonDevices.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/Dsdt.asl
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PCI-PDRC.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PCI-S0.Rca01.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PCI-S0.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PCI-S1.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PMU-S0.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PMU-S1.asi
>   create mode 100644 Platform/Ampere/JadePkg/Ac02AcpiTables/PMU.asi
>

      parent reply	other threads:[~2023-03-29  4:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-13  4:25 [edk2-platforms][PATCH 0/2] Support Ampere Altra Max processor Nhi Pham
2023-01-13  4:25 ` [edk2-platforms][PATCH 1/2] Ampere: PCIe: Add support for Ampere Altra Max Nhi Pham
2023-02-15 11:59   ` Leif Lindholm
2023-02-24  3:26     ` Nhi Pham
2023-03-14 13:20       ` Leif Lindholm
2023-01-13  4:25 ` [edk2-platforms][PATCH 2/2] JadePkg: ACPI: Support ACPI tables " Nhi Pham
2023-02-15 12:03   ` [edk2-devel] " Leif Lindholm
2023-02-24  3:29     ` Nhi Pham
2023-02-24 18:03   ` Rebecca Cran
2023-03-29  4:49 ` Nhi Pham [this message]

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=f5a6b4e7-f377-5d24-b92a-2d659eefe910@amperemail.onmicrosoft.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