Message ID | 20240117095714.1524808-1-lukasz.luba@arm.com (mailing list archive) |
---|---|
Headers | show |
Series | Introduce runtime modifiable Energy Model | expand |
On 17/01/2024 10:56, Lukasz Luba wrote: [...] > Changelog: > v7: > - dropped em_table_get/put() (Rafael) > - renamed memory function to em_table_alloc/free() (Rafael) > - use explicit rcu_read_lock/unlock() instead of wrappers and aligned > frameworks & drivers using EM (Rafael) > - adjusted documentation to the new functions > - fixed doxygen comments (Rafael) > - renamed 'refcount' to 'kref' (Rafael) > - changed patch headers according to comments (Rafael) > - rebased on 'next-20240112' to get Ingo's revert affecting energy_model.h > v6 [6]: > - renamed 'runtime_table' to 'em_table' (Dietmar, Rafael) > - dropped kref increment during allocation (Qais) > - renamed em_inc/dec_usage() to em_table_inc/dec() (Qais) > - fixed comment description and left old comment block with small > adjustment in em_cpu_energy() patch 15/23 (Dietmar) > - added platform name which was used for speed-up testing (Dietmar) > - changed patch header description keep it small not repeating the in-code > comment describing 'cost' in em_cpu_energy() patch 15/23 (Dietmar) > - added check and warning in em_cpu_energy() about RCU lock held (Qais, Xuewen) > - changed nr_perf_states usage in the patch 7/23 (Dietmar) > - changed documentation according to comments (Dietmar) > - changed in-code comment in patch 11/23 according to comments (Dietmar) > - changed example driver function 'ctx' argument in the documentation (Xuewen) > - changed the example driver in documentation, dropped module_exit and > added em_free_table() explicit in the update function > - fixed comments in various patch headers (Dietmar) > - fixed Doxygen comment s/@state/@table patch 4/23 (Dietmar) > - added information in the cover letter about: > -- optimization in EAS hot code path > -- follow-up patch set which adds OPP support and modifies EM for Exynos5 > - rebased on 'next-20240104' to avoid collision with other code touching > em_cpu_energy() LGTM now. I see that my comments from v5 have been addressed. Minor points which still exists for me I commented on in the individual patches. For the whole series: Reviewed-by: Dietmar Eggemann <dietmar.eggemann@arm.com> Tested-by: Dietmar Eggemann <dietmar.eggemann@arm.com> (with a simple test driver updating the EM for CPU0 on Arm64 Juno-r0)
Hi Dietmar, On 1/29/24 18:16, Dietmar Eggemann wrote: > On 17/01/2024 10:56, Lukasz Luba wrote: > > [...] > >> Changelog: >> v7: >> - dropped em_table_get/put() (Rafael) >> - renamed memory function to em_table_alloc/free() (Rafael) >> - use explicit rcu_read_lock/unlock() instead of wrappers and aligned >> frameworks & drivers using EM (Rafael) >> - adjusted documentation to the new functions >> - fixed doxygen comments (Rafael) >> - renamed 'refcount' to 'kref' (Rafael) >> - changed patch headers according to comments (Rafael) >> - rebased on 'next-20240112' to get Ingo's revert affecting energy_model.h >> v6 [6]: >> - renamed 'runtime_table' to 'em_table' (Dietmar, Rafael) >> - dropped kref increment during allocation (Qais) >> - renamed em_inc/dec_usage() to em_table_inc/dec() (Qais) >> - fixed comment description and left old comment block with small >> adjustment in em_cpu_energy() patch 15/23 (Dietmar) >> - added platform name which was used for speed-up testing (Dietmar) >> - changed patch header description keep it small not repeating the in-code >> comment describing 'cost' in em_cpu_energy() patch 15/23 (Dietmar) >> - added check and warning in em_cpu_energy() about RCU lock held (Qais, Xuewen) >> - changed nr_perf_states usage in the patch 7/23 (Dietmar) >> - changed documentation according to comments (Dietmar) >> - changed in-code comment in patch 11/23 according to comments (Dietmar) >> - changed example driver function 'ctx' argument in the documentation (Xuewen) >> - changed the example driver in documentation, dropped module_exit and >> added em_free_table() explicit in the update function >> - fixed comments in various patch headers (Dietmar) >> - fixed Doxygen comment s/@state/@table patch 4/23 (Dietmar) >> - added information in the cover letter about: >> -- optimization in EAS hot code path >> -- follow-up patch set which adds OPP support and modifies EM for Exynos5 >> - rebased on 'next-20240104' to avoid collision with other code touching >> em_cpu_energy() > > LGTM now. I see that my comments from v5 have been addressed. Minor > points which still exists for me I commented on in the individual patches. > > For the whole series: > > Reviewed-by: Dietmar Eggemann <dietmar.eggemann@arm.com> > Tested-by: Dietmar Eggemann <dietmar.eggemann@arm.com> > > (with a simple test driver updating the EM for CPU0 on Arm64 Juno-r0) Thank you for the review and testing! I'll probably have to re-base the v7 on top of some current PM branch. Regards, Lukasz
Hi Rafael, On 1/17/24 09:56, Lukasz Luba wrote: > Hi all, > > This patch set adds a new feature which allows to modify Energy Model (EM) > power values at runtime. It will allow to better reflect power model of > a recent SoCs and silicon. Different characteristics of the power usage > can be leveraged and thus better decisions made during task placement in EAS. > [snip] > > > Lukasz Luba (23): > PM: EM: Add missing newline for the message log > PM: EM: Extend em_cpufreq_update_efficiencies() argument list > PM: EM: Find first CPU active while updating OPP efficiency > PM: EM: Refactor em_pd_get_efficient_state() to be more flexible > PM: EM: Introduce em_compute_costs() > PM: EM: Check if the get_cost() callback is present in > em_compute_costs() > PM: EM: Split the allocation and initialization of the EM table > PM: EM: Introduce runtime modifiable table > PM: EM: Use runtime modified EM for CPUs energy estimation in EAS > PM: EM: Add functions for memory allocations for new EM tables > PM: EM: Introduce em_dev_update_perf_domain() for EM updates > PM: EM: Add em_perf_state_from_pd() to get performance states table > PM: EM: Add performance field to struct em_perf_state and optimize > PM: EM: Support late CPUs booting and capacity adjustment > PM: EM: Optimize em_cpu_energy() and remove division > powercap/dtpm_cpu: Use new Energy Model interface to get table > powercap/dtpm_devfreq: Use new Energy Model interface to get table > drivers/thermal/cpufreq_cooling: Use new Energy Model interface > drivers/thermal/devfreq_cooling: Use new Energy Model interface > PM: EM: Change debugfs configuration to use runtime EM table data > PM: EM: Remove old table > PM: EM: Add em_dev_compute_costs() > Documentation: EM: Update with runtime modification design > > Documentation/power/energy-model.rst | 183 ++++++++++- > drivers/powercap/dtpm_cpu.c | 39 ++- > drivers/powercap/dtpm_devfreq.c | 34 +- > drivers/thermal/cpufreq_cooling.c | 45 ++- > drivers/thermal/devfreq_cooling.c | 49 ++- > include/linux/energy_model.h | 165 ++++++---- > kernel/power/energy_model.c | 472 +++++++++++++++++++++++---- > 7 files changed, 819 insertions(+), 168 deletions(-) > The patch set went through decent review. If you don't have any issues, I will collect the tags and send the v8 which will be re-based on some recent linux next (or please tell me your preferred branch). Regards, Lukasz
Hi Lukasz, On Wed, Feb 7, 2024 at 10:15 AM Lukasz Luba <lukasz.luba@arm.com> wrote: > > Hi Rafael, > > On 1/17/24 09:56, Lukasz Luba wrote: > > Hi all, > > > > This patch set adds a new feature which allows to modify Energy Model (EM) > > power values at runtime. It will allow to better reflect power model of > > a recent SoCs and silicon. Different characteristics of the power usage > > can be leveraged and thus better decisions made during task placement in EAS. > > > > [snip] > > > > > > > Lukasz Luba (23): > > PM: EM: Add missing newline for the message log > > PM: EM: Extend em_cpufreq_update_efficiencies() argument list > > PM: EM: Find first CPU active while updating OPP efficiency > > PM: EM: Refactor em_pd_get_efficient_state() to be more flexible > > PM: EM: Introduce em_compute_costs() > > PM: EM: Check if the get_cost() callback is present in > > em_compute_costs() > > PM: EM: Split the allocation and initialization of the EM table > > PM: EM: Introduce runtime modifiable table > > PM: EM: Use runtime modified EM for CPUs energy estimation in EAS > > PM: EM: Add functions for memory allocations for new EM tables > > PM: EM: Introduce em_dev_update_perf_domain() for EM updates > > PM: EM: Add em_perf_state_from_pd() to get performance states table > > PM: EM: Add performance field to struct em_perf_state and optimize > > PM: EM: Support late CPUs booting and capacity adjustment > > PM: EM: Optimize em_cpu_energy() and remove division > > powercap/dtpm_cpu: Use new Energy Model interface to get table > > powercap/dtpm_devfreq: Use new Energy Model interface to get table > > drivers/thermal/cpufreq_cooling: Use new Energy Model interface > > drivers/thermal/devfreq_cooling: Use new Energy Model interface > > PM: EM: Change debugfs configuration to use runtime EM table data > > PM: EM: Remove old table > > PM: EM: Add em_dev_compute_costs() > > Documentation: EM: Update with runtime modification design > > > > Documentation/power/energy-model.rst | 183 ++++++++++- > > drivers/powercap/dtpm_cpu.c | 39 ++- > > drivers/powercap/dtpm_devfreq.c | 34 +- > > drivers/thermal/cpufreq_cooling.c | 45 ++- > > drivers/thermal/devfreq_cooling.c | 49 ++- > > include/linux/energy_model.h | 165 ++++++---- > > kernel/power/energy_model.c | 472 +++++++++++++++++++++++---- > > 7 files changed, 819 insertions(+), 168 deletions(-) > > > > The patch set went through decent review. If you don't have any issues, > I will collect the tags and send the v8 which will be re-based on some > recent linux next (or please tell me your preferred branch). Blease base it on 6.8-rc3.
On 2/7/24 10:31, Rafael J. Wysocki wrote: > Hi Lukasz, > > On Wed, Feb 7, 2024 at 10:15 AM Lukasz Luba <lukasz.luba@arm.com> wrote: >> >> Hi Rafael, >> >> On 1/17/24 09:56, Lukasz Luba wrote: >>> Hi all, >>> >>> This patch set adds a new feature which allows to modify Energy Model (EM) >>> power values at runtime. It will allow to better reflect power model of >>> a recent SoCs and silicon. Different characteristics of the power usage >>> can be leveraged and thus better decisions made during task placement in EAS. >>> >> >> [snip] >> >>> >>> >>> Lukasz Luba (23): >>> PM: EM: Add missing newline for the message log >>> PM: EM: Extend em_cpufreq_update_efficiencies() argument list >>> PM: EM: Find first CPU active while updating OPP efficiency >>> PM: EM: Refactor em_pd_get_efficient_state() to be more flexible >>> PM: EM: Introduce em_compute_costs() >>> PM: EM: Check if the get_cost() callback is present in >>> em_compute_costs() >>> PM: EM: Split the allocation and initialization of the EM table >>> PM: EM: Introduce runtime modifiable table >>> PM: EM: Use runtime modified EM for CPUs energy estimation in EAS >>> PM: EM: Add functions for memory allocations for new EM tables >>> PM: EM: Introduce em_dev_update_perf_domain() for EM updates >>> PM: EM: Add em_perf_state_from_pd() to get performance states table >>> PM: EM: Add performance field to struct em_perf_state and optimize >>> PM: EM: Support late CPUs booting and capacity adjustment >>> PM: EM: Optimize em_cpu_energy() and remove division >>> powercap/dtpm_cpu: Use new Energy Model interface to get table >>> powercap/dtpm_devfreq: Use new Energy Model interface to get table >>> drivers/thermal/cpufreq_cooling: Use new Energy Model interface >>> drivers/thermal/devfreq_cooling: Use new Energy Model interface >>> PM: EM: Change debugfs configuration to use runtime EM table data >>> PM: EM: Remove old table >>> PM: EM: Add em_dev_compute_costs() >>> Documentation: EM: Update with runtime modification design >>> >>> Documentation/power/energy-model.rst | 183 ++++++++++- >>> drivers/powercap/dtpm_cpu.c | 39 ++- >>> drivers/powercap/dtpm_devfreq.c | 34 +- >>> drivers/thermal/cpufreq_cooling.c | 45 ++- >>> drivers/thermal/devfreq_cooling.c | 49 ++- >>> include/linux/energy_model.h | 165 ++++++---- >>> kernel/power/energy_model.c | 472 +++++++++++++++++++++++---- >>> 7 files changed, 819 insertions(+), 168 deletions(-) >>> >> >> The patch set went through decent review. If you don't have any issues, >> I will collect the tags and send the v8 which will be re-based on some >> recent linux next (or please tell me your preferred branch). > > Blease base it on 6.8-rc3. OK, thanks