Hi, On Mon, Oct 19, 2020 at 7:06 AM Lukasz Luba <lukasz.luba@xxxxxxx> wrote: > > Hi all, > > The Energy Model supports power values expressed in an abstract scale. > This has an impact on Intelligent Power Allocation (IPA) and should be > documented properly. Kernel sub-systems like EAS, IPA and DTPM > (new comming PowerCap framework) would use the new flag to capture > potential miss-configuration where the devices have registered different > power scales, thus cannot operate together. > > There was a discussion below v2 of this patch series, which might help > you to get context of these changes [2]. > > The agreed approach is to have the DT as a source of power values expressed > always in milli-Watts and the only way to submit with abstract scale values > is via the em_dev_register_perf_domain() API. > > Changes: > v3: > - added boolean flag to struct em_perf_domain and registration function > indicating if EM holds real power values in milli-Watts (suggested by > Daniel and aggreed with Quentin) > - updated documentation regarding this new flag > - dropped DT binding change for 'sustainable-power' > - added more maintainers on CC (due to patch 1/4 touching different things) > v2 [2]: > - updated sustainable power section in IPA documentation > - updated DT binding for the 'sustainable-power' > v1 [1]: > - simple documenation update with new 'abstract scale' in EAS, EM, IPA > > Regards, > Lukasz Luba > > [1] https://lore.kernel.org/linux-doc/20200929121610.16060-1-lukasz.luba@xxxxxxx/ > [2] https://lore.kernel.org/lkml/20201002114426.31277-1-lukasz.luba@xxxxxxx/ > > Lukasz Luba (4): > PM / EM: Add a flag indicating units of power values in Energy Model > docs: Clarify abstract scale usage for power values in Energy Model > PM / EM: update the comments related to power scale > docs: power: Update Energy Model with new flag indicating power scale > > .../driver-api/thermal/power_allocator.rst | 13 +++++++- > Documentation/power/energy-model.rst | 30 +++++++++++++++---- > Documentation/scheduler/sched-energy.rst | 5 ++++ > drivers/cpufreq/scmi-cpufreq.c | 3 +- > drivers/opp/of.c | 2 +- > include/linux/energy_model.h | 20 ++++++++----- > kernel/power/energy_model.c | 26 ++++++++++++++-- > 7 files changed, 81 insertions(+), 18 deletions(-) While I don't feel like I have enough skin in the game to make any demands, I'm definitely not a huge fan of this series still. I am a fan of documenting reality, but (to me) trying to mix stuff like this is just going to be adding needless complexity. From where I'm standing, it's a lot more of a pain to specify these types of numbers in the firmware than it is to specify them in the device tree. They are harder to customize per board, harder to spin, and harder to specify constraints for everything in the system (all heat generators, all cooling devices, etc). ...and since we already have a way to specify this type of thing in the device tree and that's super easy for people to do, we're going to end up with weird mixes / matches of numbers coming from different locations and now we've got to figure out which numbers we can use when and which to ignore. Ick. In my opinion the only way to allow for mixing and matching the bogoWatts and real Watts would be to actually have units and the ability to provide a conversion factor somewhere. Presumably that might give you a chance of mixing and matching if someone wants to provide some stuff in device tree and get other stuff from the firmware. Heck, I guess you could even magically figure out a conversion factor if someone provides device tree numbers for something that was already registered in SCMI, assuming all the SCMI numbers are consistent with each other... -Doug -Doug