Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754241AbaBDLgq (ORCPT ); Tue, 4 Feb 2014 06:36:46 -0500 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:46926 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754028AbaBDLgn (ORCPT ); Tue, 4 Feb 2014 06:36:43 -0500 Date: Tue, 4 Feb 2014 12:36:40 +0100 From: Pavel Machek To: Jenny TC Cc: linux-kernel@vger.kernel.org, Dmitry Eremin-Solenikov , Anton Vorontsov , Anton Vorontsov , Kim Milo , Lee Jones , Jingoo Han , Chanwoo Choi , Sachin Kamat , Lars-Peter Clausen , Pali =?iso-8859-1?Q?Roh=E1r?= , Rhyland Klein , "Rafael J. Wysocki" , David Woodhouse , Tony Lindgren , Russell King , Sebastian Reichel , aaro.koskinen@iki.fi, Pallala Ramakrishna , freemangordon@abv.bg, linux-omap@vger.kernel.org Subject: Re: [PATCH 3/4] power_supply: Introduce PSE compliant algorithm Message-ID: <20140204113640.GD2450@amd.pavel.ucw.cz> References: <1391490780-6141-1-git-send-email-jenny.tc@intel.com> <1391490780-6141-4-git-send-email-jenny.tc@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1391490780-6141-4-git-send-email-jenny.tc@intel.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi! > --- a/drivers/power/Kconfig > +++ b/drivers/power/Kconfig > @@ -22,6 +22,19 @@ config POWER_SUPPLY_CHARGER > drivers to keep the charging logic outside and the charger driver > just need to abstract the charger hardware. > > +config POWER_SUPPLY_CHARGING_ALGO_PSE > + bool "PSE compliant charging algorithm" > + help > + Say Y here to select Product Safety Engineering (PSE) compliant > + charging algorithm. As per PSE standard the battery characteristics > + and thereby the charging rates can vary on different temperature > + zones. This config will enable PSE compliant charging algorithm with > + maintenance charging support. At runtime the algorithm will be > + selected by the psy charger driver based on the type of the battery > + charging profile. Information where to expect PSE compliant chargers would be nice. > +static inline bool __is_battery_full > + (long volt, long cur, long iterm, unsigned long cv) > +{ codingstyle. > + pr_devel("%s:current=%ld pse_mod_bprof->chrg_term_mA =%ld voltage_now=%ld full_cond=%ld", > + __func__, cur, iterm, volt * 100, (FULL_CV_MIN * cv)); > + > + return (cur > 0) && (cur <= iterm) && > + ((volt * 100) >= (FULL_CV_MIN * cv)); Codingstyle. Just run checkpatch. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/