* [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs
@ 2022-07-09 14:08 Perry Yuan
2022-07-11 0:30 ` Viresh Kumar
0 siblings, 1 reply; 3+ messages in thread
From: Perry Yuan @ 2022-07-09 14:08 UTC (permalink / raw)
To: rafael.j.wysocki, viresh.kumar, Ray.Huang
Cc: Deepak.Sharma, Mario.Limonciello, Nathan.Fontenot,
Alexander.Deucher, Jinzhou.Su, Xinmei.Huang, Xiaojian.Du, Li.Meng,
linux-pm, linux-kernel, Perry Yuan
Hello,
This patchsets adds support for precision boost hardware control
for AMD processors.
Meanwhile the patchset fixs lowest perf query and desired perf scope issues.
Update transition delay and latency default value to meet SMU firmware requirement.
and do some code cleanups,
It also exports cpufreq cpu release and acquire for coming amd-pstate epp mode driver
The patch series are tested on the AMD mobile and EYPC server systems
v1->v2:
- add two new patches to remove the acpi_disabled check
- fix some typos in the commit info
- move the clamp_t() into amd_pstate_update() function
- rebased to 5.19-rc5
[1]:https://patchwork.kernel.org/project/linux-pm/list/?series=657510
Perry Yuan (14):
x86/msr: Add the MSR definition for AMD CPPC hardware control.
cpufreq: amd-pstate: enable AMD Precision Boost mode switch
cpufreq: amd-pstate: cleanup the unused and duplicated headers
declaration
cpufreq: amd-pstate: prefetch cppc_req_cached value in
amd_pstate_cpu_init()
cpufreq: amd-pstate: simplify cpudata pointer assignment
cpufreq: amd_pstate: fix wrong lowest perf fetch
cpufreq: amd_pstate: map desired perf into pstate scope for powersave
governor
cpufreq: amd-pstate: fix white-space
cpufreq: amd-pstate: update pstate frequency transition delay time
cpufreq: cpufreq: export cpufreq cpu release and acquire
cpufreq: amd-pstate: add ACPI disabled check in acpi_cpc_valid()
cpufreq: amd_pstate: update transition delay time to 1ms
arch_topology: remove the acpi_disabled check
cpufreq: CPPC: remove the acpi_disabled check
arch/x86/include/asm/msr-index.h | 3 ++
drivers/acpi/cppc_acpi.c | 3 ++
drivers/base/arch_topology.c | 2 +-
drivers/cpufreq/amd-pstate.c | 57 +++++++++++++++++++-------------
drivers/cpufreq/cppc_cpufreq.c | 2 +-
drivers/cpufreq/cpufreq.c | 2 ++
6 files changed, 44 insertions(+), 25 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs 2022-07-09 14:08 [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs Perry Yuan @ 2022-07-11 0:30 ` Viresh Kumar 2022-07-11 1:47 ` Yuan, Perry 0 siblings, 1 reply; 3+ messages in thread From: Viresh Kumar @ 2022-07-11 0:30 UTC (permalink / raw) To: Perry Yuan Cc: rafael.j.wysocki, Ray.Huang, Deepak.Sharma, Mario.Limonciello, Nathan.Fontenot, Alexander.Deucher, Jinzhou.Su, Xinmei.Huang, Xiaojian.Du, Li.Meng, linux-pm, linux-kernel On 09-07-22, 10:08, Perry Yuan wrote: > Hello, > > This patchsets adds support for precision boost hardware control > for AMD processors. > > Meanwhile the patchset fixs lowest perf query and desired perf scope issues. > Update transition delay and latency default value to meet SMU firmware requirement. > and do some code cleanups, > It also exports cpufreq cpu release and acquire for coming amd-pstate epp mode driver > > The patch series are tested on the AMD mobile and EYPC server systems Please use "--thread=shallow" option while generating patches with git, these should be part of a single thread. -- viresh ^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs 2022-07-11 0:30 ` Viresh Kumar @ 2022-07-11 1:47 ` Yuan, Perry 0 siblings, 0 replies; 3+ messages in thread From: Yuan, Perry @ 2022-07-11 1:47 UTC (permalink / raw) To: Viresh Kumar Cc: rafael.j.wysocki@intel.com, Huang, Ray, Sharma, Deepak, Limonciello, Mario, Fontenot, Nathan, Deucher, Alexander, Su, Jinzhou (Joe), Huang, Shimmer, Du, Xiaojian, Meng, Li (Jassmine), linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org [AMD Official Use Only - General] > -----Original Message----- > From: Viresh Kumar <viresh.kumar@linaro.org> > Sent: Monday, July 11, 2022 8:30 AM > To: Yuan, Perry <Perry.Yuan@amd.com> > Cc: rafael.j.wysocki@intel.com; Huang, Ray <Ray.Huang@amd.com>; > Sharma, Deepak <Deepak.Sharma@amd.com>; Limonciello, Mario > <Mario.Limonciello@amd.com>; Fontenot, Nathan > <Nathan.Fontenot@amd.com>; Deucher, Alexander > <Alexander.Deucher@amd.com>; Su, Jinzhou (Joe) <Jinzhou.Su@amd.com>; > Huang, Shimmer <Shimmer.Huang@amd.com>; Du, Xiaojian > <Xiaojian.Du@amd.com>; Meng, Li (Jassmine) <Li.Meng@amd.com>; linux- > pm@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: Re: [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs > > [CAUTION: External Email] > > On 09-07-22, 10:08, Perry Yuan wrote: > > Hello, > > > > This patchsets adds support for precision boost hardware control for > > AMD processors. > > > > Meanwhile the patchset fixs lowest perf query and desired perf scope > issues. > > Update transition delay and latency default value to meet SMU firmware > requirement. > > and do some code cleanups, > > It also exports cpufreq cpu release and acquire for coming amd-pstate > > epp mode driver > > > > The patch series are tested on the AMD mobile and EYPC server systems > > Please use "--thread=shallow" option while generating patches with git, > these should be part of a single thread. > > -- > viresh Got it, I will use this shallow thread in V3 patchset creating. Perry. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-11 1:47 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-09 14:08 [PATCH v2 00/14] AMD Pstate Enhancement And Issue Fixs Perry Yuan 2022-07-11 0:30 ` Viresh Kumar 2022-07-11 1:47 ` Yuan, Perry
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox