From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: [PATCH 11/12] cpuidle: mvebu: Add initial cpu idle support for Armada 370/XP SoC Date: Mon, 26 Aug 2013 20:28:01 -0700 Message-ID: <87d2oz7qym.fsf@linaro.org> References: <1377240797-4047-1-git-send-email-gregory.clement@free-electrons.com> <1377240797-4047-12-git-send-email-gregory.clement@free-electrons.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1377240797-4047-12-git-send-email-gregory.clement@free-electrons.com> (Gregory CLEMENT's message of "Fri, 23 Aug 2013 08:53:16 +0200") List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Gregory CLEMENT Cc: Lior Amsalem , Andrew Lunn , Ike Pan , Atsushi Yamagata , Nadav Haklai , David Marlin , Yehuda Yitschak , Tawfik Bayouk , Dan Frazier , Daniel Lezcano , Eran Ben-Avi , Ezequiel Garcia , Leif Lindholm , Sebastian Hesselbarth , Tomonori Kimura , Jason Cooper , Nobuhiro Iwamatsu , linux-pm@vger.kernel.org, Jon Masters , "Rafael J. Wysocki" , Hironobu Shibata , linux-arm-kernel@lists.infradead.org, Thomas Petazzoni List-Id: linux-pm@vger.kernel.org Hi Gregory, Gregory CLEMENT writes: > Add wfi/cpu idle/cpu deep idle power states support for Armada XP SoC. > > All the latencies and the power consumption values used at the > "armada_370_xp_idle_driver" structure are preliminary and will be > modified in the future after running some measurements and analysis. > > Based on the work of Nadav Haklai. > > Signed-off-by: Nadav Haklai > Signed-off-by: Gregory CLEMENT [...] > +int pm_support = WFI; > +static int __init pm_enable_setup(char *str) > +{ > + if (!strncmp(str, "wfi", 3)) > + pm_support = WFI; > + else if (!strncmp(str, "idle", 4)) > + pm_support = MV_CPU_IDLE; > + else if (!strncmp(str, "deepidle", 6)) > + pm_support = MV_CPU_DEEP_IDLE; > + else if (!strncmp(str, "off", 3)) > + pm_support = DISABLED; > + > + return 1; > +} > +__setup("pm_level=", pm_enable_setup); Why is this new (but undocumented) kernel commandline needed when there is already a way to configure the deepest C state from userspace? (c.f. the 'disable' file under /sys/devices/system/cpu/cpuX/cpuidle/stateY) Kevin