public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Thomas Abraham" <thomas.abraham@arm.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	Pranav Madhu <Pranav.Madhu@arm.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>,
	Sami Mujawar <Sami.Mujawar@arm.com>, nd <nd@arm.com>
Subject: Re: [edk2-devel] [edk2-platforms][PATCH V1 00/17] Enable idle state and CPPC support for RD platform
Date: Mon, 3 May 2021 14:29:00 +0000	[thread overview]
Message-ID: <PAXPR08MB67970FA3BE05E19EF6A671DB9D5B9@PAXPR08MB6797.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <20210428123600.2385-1-pranav.madhu@arm.com>

On 4/28/21 6:05 PM, Pranav Madhu via groups.io wrote:
> Low Power Idle (LPI) and Collaborative Processor Performance Control
> (CPPC) are two power management mechanisms described in ACPI 6.4
> specification. OSPM uses the _LPI object to select a local power state
> for each level of processor hierarchy in the system. Collaborative
> processor performance control (CPPC) defines an abstracted and flexible
> mechanism for OSPM to collaborate with an entity in the platform to
> manage the performance of a processor. In this patch series, CPPC
> support depends on the availability of Activity Monitor Unit (AMU)
> extension for CPU performance monitoring as defined in the Arm v8.4
> architecture reference manuals. So CPPC is supported for RD-V1 and
> RD-N2 platforms.
> 
> This patch series adds LPI support for all the Neoverse reference
> design platforms. CPPC support is added for RD-V1, RD-V1-MC and
> RD-N2 platforms.
> 
> This patch series should be applied on top of the patch series
> https://edk2.groups.io/g/devel/message/74539
> 
> Link to github branch with the patches in this series -
> https://github.com/Pranav-Madhu/edk2-
> platforms/tree/topics/rd_power_management

For this series:
Reviewed-by: Thomas Abraham <thomas.abraham@arm.com>

> 
> Pranav Madhu (17):
>   Platform/Sgi: Macro definitions for ACPI _OSC
>   Platform/Sgi: Add CPU container for SGI-575
>   Platform/Sgi: Low Power Idle states for SGI-575
>   Platform/Sgi: Add CPU container for RD-N1-Edge
>   Platform/Sgi: Low Power Idle states for RD-N1-Edge
>   Platform/Sgi: Add DSDT ACPI table for RD-N1-Edge dual-chip platform
>   Platform/Sgi: Low Power Idle States for RD-N1-Edge dual-chip
>   Platform/Sgi: Add CPU container for RD-V1 platform
>   Platform/Sgi: Low Power Idle states for RD-V1 platform
>   Platform/Sgi: Macro definitions for ACPI CPPC
>   Platform/Sgi: ACPI CPPC support for RD-V1
>   Platform/Sgi: Add CPU container for RD-V1 quad-chip platform
>   Platform/Sgi: Low Power Idle States for RD-V1 quad-chip platform
>   Platform/Sgi: ACPI CPPC support for RD-V1 quad-chip platform
>   Platform/Sgi: Add CPU container for RD-N2 platform
>   Platform/Sgi: Low Power Idle States for RD-N2
>   Platform/Sgi: ACPI CPPC support for RD-N2
> 
>  .../AcpiTables/RdN1EdgeX2AcpiTables.inf       |   2 +-
>  Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h   |  69 +++
>  .../ARM/SgiPkg/AcpiTables/RdN1Edge/Dsdt.asl   | 218 +++++--
>  .../ARM/SgiPkg/AcpiTables/RdN1EdgeX2/Dsdt.asl | 298 ++++++++++
>  Platform/ARM/SgiPkg/AcpiTables/RdN2/Dsdt.asl  | 540 ++++++++++++++++--
>  Platform/ARM/SgiPkg/AcpiTables/RdV1/Dsdt.asl  | 470 +++++++++++++--
>  .../ARM/SgiPkg/AcpiTables/RdV1Mc/Dsdt.asl     | 481 ++++++++++++++--
>  .../ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl     | 215 +++++--
>  8 files changed, 2072 insertions(+), 221 deletions(-)
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN1EdgeX2/Dsdt.asl
> 
> --
> 2.17.1
> 
> 
> 
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#74541): https://edk2.groups.io/g/devel/message/74541
> Mute This Topic: https://groups.io/mt/82428254/1785010
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub
> [thomas.abraham@arm.com]
> -=-=-=-=-=-=
> 


      parent reply	other threads:[~2021-05-03 14:29 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-28 12:35 [edk2-platforms][PATCH V1 00/17] Enable idle state and CPPC support for RD platform Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 01/17] Platform/Sgi: Macro definitions for ACPI _OSC Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 02/17] Platform/Sgi: Add CPU container for SGI-575 Pranav Madhu
2021-05-10  9:12   ` Sami Mujawar
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 03/17] Platform/Sgi: Low Power Idle states " Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 04/17] Platform/Sgi: Add CPU container for RD-N1-Edge Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 05/17] Platform/Sgi: Low Power Idle states " Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 06/17] Platform/Sgi: Add DSDT ACPI table for RD-N1-Edge dual-chip platform Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 07/17] Platform/Sgi: Low Power Idle States for RD-N1-Edge dual-chip Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 08/17] Platform/Sgi: Add CPU container for RD-V1 platform Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 09/17] Platform/Sgi: Low Power Idle states " Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 10/17] Platform/Sgi: Macro definitions for ACPI CPPC Pranav Madhu
2021-05-10  9:12   ` Sami Mujawar
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 11/17] Platform/Sgi: ACPI CPPC support for RD-V1 Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 12/17] Platform/Sgi: Add CPU container for RD-V1 quad-chip platform Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 13/17] Platform/Sgi: Low Power Idle States " Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 14/17] Platform/Sgi: ACPI CPPC support " Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 15/17] Platform/Sgi: Add CPU container for RD-N2 platform Pranav Madhu
2021-04-28 12:35 ` [edk2-platforms][PATCH V1 16/17] Platform/Sgi: Low Power Idle States for RD-N2 Pranav Madhu
2021-04-28 12:36 ` [edk2-platforms][PATCH V1 17/17] Platform/Sgi: ACPI CPPC support " Pranav Madhu
2021-05-03 14:29 ` Thomas Abraham [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=PAXPR08MB67970FA3BE05E19EF6A671DB9D5B9@PAXPR08MB6797.eurprd08.prod.outlook.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