All of lore.kernel.org
 help / color / mirror / Atom feed
From: MyungJoo Ham <myungjoo.ham@samsung.com>
To: Yadwinder Singh Brar <yadi.brar01@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "Mark Brown" <broonie@opensource.wolfsonmicro.com>,
	"Liam Girdwood" <lrg@ti.com>, 이종화 <jonghwa3.lee@samsung.com>,
	박경민 <kyungmin.park@samsung.com>, 변치웅 <woong.byun@samsung.com>,
	"Axel Lin" <axel.lin@gmail.com>,
	"Yadwinder Singh Brar" <yadi.brar@samsung.com>
Subject: Re: [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback.
Date: Wed, 20 Jun 2012 06:56:25 +0000 (GMT)	[thread overview]
Message-ID: <8918866.625501340175384370.JavaMail.weblogic@epml24> (raw)

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

> This patch implements the .set_ramp_delay callback to set the ramp_delay on
> hardware for BUCK2/3/4 if ramp_delay is set in regulator constraints.
> 
> This patch also do some cleaning work for unrequired members of
> struct max77686_data.
> 
> Signed-off-by: Yadwinder Singh Brar <yadi.brar@samsung.com>

I guess code-clean part may be seperated. Anyway, except that, it looks good.


Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

> ---
>  drivers/regulator/max77686.c |   37 +++++++++++++++++++++++++++++--------
>  1 files changed, 29 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c
> index a29eee3..5c2a32f 100644
> --- a/drivers/regulator/max77686.c
> +++ b/drivers/regulator/max77686.c
> @@ -65,11 +65,34 @@ enum max77686_ramp_rate {
>  };
>  
>  struct max77686_data {
> -	struct device *dev;
> -	struct max77686_dev *iodev;
>  	struct regulator_dev **rdev;
>  };
>  
> +static int max77686_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
> +{
> +	unsigned int ramp_value = RAMP_RATE_NO_CTRL;
> +
> +	switch (ramp_delay) {
> +	case 1 ... 13750:
> +		ramp_value = RAMP_RATE_13P75MV;
> +		break;
> +	case 13751 ... 27500:
> +		ramp_value = RAMP_RATE_27P5MV;
> +		break;
> +	case 27501 ... 55000:
> +		ramp_value = RAMP_RATE_55MV;
> +		break;
> +	case 55001 ... 100000:
> +		break;
> +	default:
> +		pr_warn("%s: ramp_delay: %d not supported, setting 100000\n",
> +			rdev->desc->name, ramp_delay);
> +	}
> +
> +	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
> +				  MAX77686_RAMP_RATE_MASK, ramp_value << 6);
> +}
> +
>  static struct regulator_ops max77686_ops = {
>  	.list_voltage		= regulator_list_voltage_linear,
>  	.map_voltage		= regulator_map_voltage_linear,
> @@ -90,6 +113,7 @@ static struct regulator_ops max77686_buck_dvs_ops = {
>  	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
>  	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
>  	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
> +	.set_ramp_delay		= max77686_set_ramp_delay,
>  };
>  
>  #define regulator_desc_ldo(num)		{				\
> @@ -238,20 +262,17 @@ static __devinit int max77686_pmic_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	rdev = max77686->rdev;
> -	max77686->dev = &pdev->dev;
> -	max77686->iodev = iodev;
> +	config.dev = &pdev->dev;
> +	config.regmap = iodev->regmap;
>  	platform_set_drvdata(pdev, max77686);
>  
>  	for (i = 0; i < MAX77686_REGULATORS; i++) {
> -		config.dev = max77686->dev;
> -		config.regmap = iodev->regmap;
> -		config.driver_data = max77686;
>  		config.init_data = pdata->regulators[i].initdata;
>  
>  		rdev[i] = regulator_register(&regulators[i], &config);
>  		if (IS_ERR(rdev[i])) {
>  			ret = PTR_ERR(rdev[i]);
> -			dev_err(max77686->dev,
> +			dev_err(&pdev->dev,
>  				"regulator init failed for %d\n", i);
>  				rdev[i] = NULL;
>  				goto err;
> -- 
> 1.7.0.4
> 
> 
> 
> 
>        
>   
>          
> 
ÿôèº{.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:[~2012-06-20  6:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-20  6:56 MyungJoo Ham [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-06-20  5:20 [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback Yadwinder Singh Brar
2012-06-20  7:08 ` Axel Lin
2012-06-20 10:18 ` Mark Brown

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=8918866.625501340175384370.JavaMail.weblogic@epml24 \
    --to=myungjoo.ham@samsung.com \
    --cc=axel.lin@gmail.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=jonghwa3.lee@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lrg@ti.com \
    --cc=woong.byun@samsung.com \
    --cc=yadi.brar01@gmail.com \
    --cc=yadi.brar@samsung.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.