mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: MyungJoo Ham <myungjoo.ham@samsung.com>
To: "dirk.brandewie@gmail.com" <dirk.brandewie@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "cbouatmailru@gmail.com" <cbouatmailru@gmail.com>,
	김동근 <dg77.kim@samsung.com>, 박경민 <kyungmin.park@samsung.com>,
	"Jason.Wortham@maxim-ic.com" <Jason.Wortham@maxim-ic.com>
Subject: Re: [PATCH v2 1/6] max17042: Move power suppply registration to a worker thread
Date: Mon, 12 Dec 2011 01:54:48 +0000 (GMT)	[thread overview]
Message-ID: <17667221.478131323654888104.JavaMail.weblogic@epml26> (raw)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 4342 bytes --]

Sender : dirk.brandewie@gmail.com<dirk.brandewie@gmail.com>
Date : 2011-12-10 03:08 (GMT+09:00)
Title : [PATCH v2 1/6] max17042: Move power suppply registration to a worker thread
> From: Dirk Brandewie <dirk.brandewie@gmail.com>
> 
> This patch move the final registration of the battery to a worker
> thread in preperation for adding the POR proceedure recommended by
> maxim. This is needed since the Maxim init proceedure requires two
> long delays totaling 850ms. This patch will reduce the impact on
> system boot time.  The battery will not be available to the power
> supply subsystem until the init proceedure is complete
> 
> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>

The commit message is not updated for v2 patchset. 

Besides, (sorry to report this now, I've just reminded this.) MAX17042 has a POR status bit according to the manual describing STATUS register (0x00). You need to do POR reset only when it is actually POR to MAX17042, not to CPU. At normal CPU shutdown/boot-up, POR procedure is not required as MAX17042 is not "rebooted". It is required only when the battery is suspected to be replaced. Thus, I tihink scheduling work and waiting for init_complete is required if POR is true.

Cheers!
MyungJoo

> ---
>  drivers/power/max17042_battery.c |   48 ++++++++++++++++++++++++++------------
>  1 files changed, 33 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/power/max17042_battery.c b/drivers/power/max17042_battery.c
> index 9f0183c..16f3934 100644
> --- a/drivers/power/max17042_battery.c
> +++ b/drivers/power/max17042_battery.c
> @@ -34,6 +34,8 @@ struct max17042_chip {
>  	struct i2c_client *client;
>  	struct power_supply battery;
>  	struct max17042_platform_data *pdata;
> +	struct work_struct work;
> +	int    init_complete;
>  };
>  
>  static int max17042_write_reg(struct i2c_client *client, u8 reg, u16 value)
> @@ -86,6 +88,9 @@ static int max17042_get_property(struct power_supply *psy,
>  	struct max17042_chip *chip = container_of(psy,
>  				struct max17042_chip, battery);
>  
> +	if (!chip->init_complete)
> +		return -EAGAIN;
> +
>  	switch (psp) {
>  	case POWER_SUPPLY_PROP_PRESENT:
>  		val->intval = max17042_read_reg(chip->client,
> @@ -180,6 +185,31 @@ static int max17042_get_property(struct power_supply *psy,
>  	return 0;
>  }
>  
> +static void max17042_init_worker(struct work_struct *work)
> +{
> +	struct max17042_chip *chip = container_of(work,
> +				struct max17042_chip, work);
> +	struct i2c_client *client = chip->client;
> +	int ret;
> +
> +
> +	/* Initialize registers according to values from the platform data */
> +	if (chip->pdata->init_data)
> +		max17042_set_reg(client, chip->pdata->init_data,
> +				 chip->pdata->num_init_data);
> +
> +	if (!chip->pdata->enable_current_sense) {
> +		max17042_write_reg(client, MAX17042_CGAIN, 0x0000);
> +		max17042_write_reg(client, MAX17042_MiscCFG, 0x0003);
> +		max17042_write_reg(client, MAX17042_LearnCFG, 0x0007);
> +	} else {
> +		if (chip->pdata->r_sns == 0)
> +			chip->pdata->r_sns = MAX17042_DEFAULT_SNS_RESISTOR;
> +	}
> +
> +	chip->init_complete = 1;
> +}
> +
>  static int __devinit max17042_probe(struct i2c_client *client,
>  			const struct i2c_device_id *id)
>  {
> @@ -214,24 +244,12 @@ static int __devinit max17042_probe(struct i2c_client *client,
>  	if (ret) {
>  		dev_err(&client->dev, "failed: power supply register\n");
>  		kfree(chip);
> -		return ret;
> -	}
> -
> -	/* Initialize registers according to values from the platform data */
> -	if (chip->pdata->init_data)
> -		max17042_set_reg(client, chip->pdata->init_data,
> -				 chip->pdata->num_init_data);
> -
> -	if (!chip->pdata->enable_current_sense) {
> -		max17042_write_reg(client, MAX17042_CGAIN, 0x0000);
> -		max17042_write_reg(client, MAX17042_MiscCFG, 0x0003);
> -		max17042_write_reg(client, MAX17042_LearnCFG, 0x0007);
>  	} else {
> -		if (chip->pdata->r_sns == 0)
> -			chip->pdata->r_sns = MAX17042_DEFAULT_SNS_RESISTOR;
> +		INIT_WORK(&chip->work, max17042_init_worker);
> +		schedule_work(&chip->work);
>  	}
>  
> -	return 0;
> +	return ret;
>  }
>  
>  static int __devexit max17042_remove(struct i2c_client *client)
> -- 
> 1.7.7.3
> 
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

             reply	other threads:[~2011-12-12  1:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-12  1:54 MyungJoo Ham [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-12-09 18:08 [PATCH v2 0/6] MAX17042 add support for maxim POR procedure dirk.brandewie
2011-12-09 18:08 ` [PATCH v2 1/6] max17042: Move power suppply registration to a worker thread dirk.brandewie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=17667221.478131323654888104.JavaMail.weblogic@epml26 \
    --to=myungjoo.ham@samsung.com \
    --cc=Jason.Wortham@maxim-ic.com \
    --cc=cbouatmailru@gmail.com \
    --cc=dg77.kim@samsung.com \
    --cc=dirk.brandewie@gmail.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome