* Re: [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback.
@ 2012-06-20 6:56 MyungJoo Ham
0 siblings, 0 replies; 4+ messages in thread
From: MyungJoo Ham @ 2012-06-20 6:56 UTC (permalink / raw)
To: Yadwinder Singh Brar, linux-kernel@vger.kernel.org
Cc: Mark Brown, Liam Girdwood, 이종화,
박경민, 변치웅, Axel Lin,
Yadwinder Singh Brar
[-- 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(®ulators[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¥
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback.
@ 2012-06-20 5:20 Yadwinder Singh Brar
2012-06-20 7:08 ` Axel Lin
2012-06-20 10:18 ` Mark Brown
0 siblings, 2 replies; 4+ messages in thread
From: Yadwinder Singh Brar @ 2012-06-20 5:20 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Liam Girdwood, Jonghwa Lee, Myungjoo Ham,
Kyungmin Park, Chiwoong Byun, Axel Lin, Yadwinder Singh Brar
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>
---
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(®ulators[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
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback.
2012-06-20 5:20 Yadwinder Singh Brar
@ 2012-06-20 7:08 ` Axel Lin
2012-06-20 10:18 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Axel Lin @ 2012-06-20 7:08 UTC (permalink / raw)
To: Yadwinder Singh Brar
Cc: linux-kernel, Mark Brown, Liam Girdwood, Jonghwa Lee,
Myungjoo Ham, Kyungmin Park, Chiwoong Byun, Yadwinder Singh Brar
2012/6/20 Yadwinder Singh Brar <yadi.brar01@gmail.com>:
> 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>
> ---
> 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);
Hi Yadwinder,
I'm a bit confused about this default setting.
If set_ramp_delay() is not called, the default setting for BUCK234 is
MAX77686_DVS_RAMP_DELAY (27500 uV/uS).
So why you set default to 100000 here.
Regards,
Axel
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback.
2012-06-20 5:20 Yadwinder Singh Brar
2012-06-20 7:08 ` Axel Lin
@ 2012-06-20 10:18 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2012-06-20 10:18 UTC (permalink / raw)
To: Yadwinder Singh Brar
Cc: linux-kernel, Liam Girdwood, Jonghwa Lee, Myungjoo Ham,
Kyungmin Park, Chiwoong Byun, Axel Lin, Yadwinder Singh Brar
[-- Attachment #1: Type: text/plain, Size: 571 bytes --]
On Wed, Jun 20, 2012 at 10:50:51AM +0530, Yadwinder Singh Brar wrote:
> 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.
Applied, thanks. It does seem reasonable to set the fastest ramp if the
ramp rate requested is over the maximum rate suported.
> This patch also do some cleaning work for unrequired members of
> struct max77686_data.
As Myungjoo said this really should have been split into a separate
patch, please don't do this in future. One patch per change.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-06-20 10:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-20 6:56 [PATCH v2] regulator: max77686: Implement .set_ramp_delay() callback MyungJoo Ham
-- strict thread matches above, loose matches on Subject: below --
2012-06-20 5:20 Yadwinder Singh Brar
2012-06-20 7:08 ` Axel Lin
2012-06-20 10:18 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox