* second round of amd-pstate changess for 6.12 (second try)
@ 2024-09-11 16:01 Mario Limonciello
2024-09-11 20:13 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Mario Limonciello @ 2024-09-11 16:01 UTC (permalink / raw)
To: Rafael J. Wysocki; +Cc: Linux PM
The following changes since commit 6b612d1bac67b0f483fde7779a45f6310274d4eb:
cpufreq: ti-cpufreq: Use socinfo to get revision in AM62 family
(2024-09-04 20:43:59 +0530)
are available in the Git repository at:
ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/superm1/linux.git
tags/amd-pstate-v6.12-2024-09-11
for you to fetch changes up to
93497752dfed196b41d2804503e80b9a04318adb:
cpufreq/amd-pstate-ut: Fix an "Uninitialized variables" issue
(2024-09-11 10:53:03 -0500)
----------------------------------------------------------------
second round of amd-pstate changes for 6.12 (second try):
* Move the calculation of the AMD boost numerator outside of
amd-pstate, correcting acpi-cpufreq on systems with preferred cores
* Harden preferred core detection to avoid potential false positives
* Add extra unit test coverage for mode state machine
----------------------------------------------------------------
Mario Limonciello (13):
x86/amd: Move amd_get_highest_perf() from amd.c to cppc.c
ACPI: CPPC: Adjust return code for inline functions in
!CONFIG_ACPI_CPPC_LIB
x86/amd: Rename amd_get_highest_perf() to
amd_get_boost_ratio_numerator()
ACPI: CPPC: Drop check for non zero perf ratio
ACPI: CPPC: Adjust debug messages in amd_set_max_freq_ratio() to warn
x86/amd: Move amd_get_highest_perf() out of amd-pstate
x86/amd: Detect preferred cores in amd_get_boost_ratio_numerator()
cpufreq: amd-pstate: Merge amd_pstate_highest_perf_set() into
amd_get_boost_ratio_numerator()
cpufreq: amd-pstate: Optimize amd_pstate_update_limits()
cpufreq: amd-pstate: Add documentation for `amd_pstate_hw_prefcore`
amd-pstate: Add missing documentation for
`amd_pstate_prefcore_ranking`
cpufreq/amd-pstate: Export symbols for changing modes
cpufreq/amd-pstate-ut: Add test case for mode switches
Qianqiang Liu (1):
cpufreq/amd-pstate-ut: Fix an "Uninitialized variables" issue
Documentation/admin-guide/pm/amd-pstate.rst | 15 ++++++++++++++-
arch/x86/include/asm/processor.h | 3 ---
arch/x86/kernel/acpi/cppc.c | 172
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
arch/x86/kernel/cpu/amd.c | 16 ----------------
drivers/cpufreq/acpi-cpufreq.c | 12 +++++++++---
drivers/cpufreq/amd-pstate-ut.c | 41
++++++++++++++++++++++++++++++++++++++++-
drivers/cpufreq/amd-pstate.c | 151
+++++++++++++++++++++++++++++++++++++++----------------------------------------------------------------------------------------------------------------
drivers/cpufreq/amd-pstate.h | 14 ++++++++++++++
include/acpi/cppc_acpi.h | 41
++++++++++++++++++++++++++++-------------
9 files changed, 305 insertions(+), 160 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: second round of amd-pstate changess for 6.12 (second try)
2024-09-11 16:01 second round of amd-pstate changess for 6.12 (second try) Mario Limonciello
@ 2024-09-11 20:13 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2024-09-11 20:13 UTC (permalink / raw)
To: Mario Limonciello; +Cc: Rafael J. Wysocki, Linux PM
Hi Mario,
On Wed, Sep 11, 2024 at 6:01 PM Mario Limonciello
<mario.limonciello@amd.com> wrote:
>
> The following changes since commit 6b612d1bac67b0f483fde7779a45f6310274d4eb:
>
> cpufreq: ti-cpufreq: Use socinfo to get revision in AM62 family
> (2024-09-04 20:43:59 +0530)
>
> are available in the Git repository at:
>
>
> ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/superm1/linux.git
> tags/amd-pstate-v6.12-2024-09-11
>
>
>
> for you to fetch changes up to
> 93497752dfed196b41d2804503e80b9a04318adb:
>
> cpufreq/amd-pstate-ut: Fix an "Uninitialized variables" issue
> (2024-09-11 10:53:03 -0500)
>
> ----------------------------------------------------------------
> second round of amd-pstate changes for 6.12 (second try):
>
> * Move the calculation of the AMD boost numerator outside of
> amd-pstate, correcting acpi-cpufreq on systems with preferred cores
> * Harden preferred core detection to avoid potential false positives
> * Add extra unit test coverage for mode state machine
>
>
>
>
> ----------------------------------------------------------------
> Mario Limonciello (13):
> x86/amd: Move amd_get_highest_perf() from amd.c to cppc.c
> ACPI: CPPC: Adjust return code for inline functions in
> !CONFIG_ACPI_CPPC_LIB
> x86/amd: Rename amd_get_highest_perf() to
> amd_get_boost_ratio_numerator()
> ACPI: CPPC: Drop check for non zero perf ratio
> ACPI: CPPC: Adjust debug messages in amd_set_max_freq_ratio() to warn
> x86/amd: Move amd_get_highest_perf() out of amd-pstate
> x86/amd: Detect preferred cores in amd_get_boost_ratio_numerator()
> cpufreq: amd-pstate: Merge amd_pstate_highest_perf_set() into
> amd_get_boost_ratio_numerator()
> cpufreq: amd-pstate: Optimize amd_pstate_update_limits()
> cpufreq: amd-pstate: Add documentation for `amd_pstate_hw_prefcore`
> amd-pstate: Add missing documentation for
> `amd_pstate_prefcore_ranking`
> cpufreq/amd-pstate: Export symbols for changing modes
> cpufreq/amd-pstate-ut: Add test case for mode switches
>
> Qianqiang Liu (1):
> cpufreq/amd-pstate-ut: Fix an "Uninitialized variables" issue
>
> Documentation/admin-guide/pm/amd-pstate.rst | 15 ++++++++++++++-
> arch/x86/include/asm/processor.h | 3 ---
> arch/x86/kernel/acpi/cppc.c | 172
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
> arch/x86/kernel/cpu/amd.c | 16 ----------------
> drivers/cpufreq/acpi-cpufreq.c | 12 +++++++++---
> drivers/cpufreq/amd-pstate-ut.c | 41
> ++++++++++++++++++++++++++++++++++++++++-
> drivers/cpufreq/amd-pstate.c | 151
> +++++++++++++++++++++++++++++++++++++++----------------------------------------------------------------------------------------------------------------
> drivers/cpufreq/amd-pstate.h | 14 ++++++++++++++
> include/acpi/cppc_acpi.h | 41
> ++++++++++++++++++++++++++++-------------
> 9 files changed, 305 insertions(+), 160 deletions(-)
Pulled and added to the linux-next branch in linux-pm.git, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-11 20:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-11 16:01 second round of amd-pstate changess for 6.12 (second try) Mario Limonciello
2024-09-11 20:13 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox