From bd35208a250f52efeaddbbbd5c80e6ad4ae7bc21 Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Fri, 7 Aug 2020 13:08:23 +0900 Subject: [PATCH] scripts: pmqos: Add new Doze mode Add new Doze scenario which handles h/w resources like CPU frequency when right after LCD off and before entering the suspend-to-RAM for reducing the idle power-consumption. [How to hanel 'Doze' mode] - Enable 'Doze' mode dbus-send --system --type=method_call --print-reply --reply-timeout=5000 \ --dest=org.tizen.system.pass /Org/Tizen/System/Pass/Pmqos \ org.tizen.system.pass.pmqos.SetScenario \ string:Doze int32:1; - Disable 'Doze' mode dbus-send --system --type=method_call --print-reply --reply-timeout=5000 \ --dest=org.tizen.system.pass /Org/Tizen/System/Pass/Pmqos \ org.tizen.system.pass.pmqos.SetScenario \ string:Doze int32:0; Change-Id: I536acbb36f663e4ad0ffa474f0a0981351428f0e Signed-off-by: Chanwoo Choi --- scripts/pass-pmqos.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/pass-pmqos.conf b/scripts/pass-pmqos.conf index be9a4ef..c616e62 100644 --- a/scripts/pass-pmqos.conf +++ b/scripts/pass-pmqos.conf @@ -2,7 +2,7 @@ # set to "yes" scenario_support (Default value is no) # set scenario_num to be tested scenario_support=yes -scenario_num=2 +scenario_num=3 # describe the scenario section as follows #[Scenario0] @@ -19,3 +19,7 @@ support=yes [Scenario1] name=UltraPowerSaving support=yes + +[Scenario2] +name=Doze +support=yes -- 2.7.4