All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/5] regulator: Modify ramp_delay value for s5m8767a
@ 2012-06-13  8:27 Sangbeom Kim
  2012-06-13 17:59 ` Mark Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Sangbeom Kim @ 2012-06-13  8:27 UTC (permalink / raw)
  To: 'Mark Brown', 'Liam Girdwood'; +Cc: linux-kernel, sbkim01

As s5m8767a is revisioned, ramp_delay register is changed.
5mV/uS, 10mV/uS, 25mV/uS, 50mV/uS, 100mV/uS ramp delay can be selected.

Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
---
 drivers/regulator/s5m8767.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c
index ce9dda2..924968a 100644
--- a/drivers/regulator/s5m8767.c
+++ b/drivers/regulator/s5m8767.c
@@ -681,9 +681,13 @@ static __devinit int s5m8767_pmic_probe(struct platform_device *pdev)
 	if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
 		|| s5m8767->buck4_ramp) {
 		switch (s5m8767->ramp_delay) {
-		case 15:
+		case 5:
 			s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
-					0xc0, 0xf0);
+					0x40, 0xf0);
+			break;
+		case 10:
+			s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
+					0x90, 0xf0);
 			break;
 		case 25:
 			s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 3/5] regulator: Modify ramp_delay value for s5m8767a
  2012-06-13  8:27 [PATCH 3/5] regulator: Modify ramp_delay value for s5m8767a Sangbeom Kim
@ 2012-06-13 17:59 ` Mark Brown
  0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2012-06-13 17:59 UTC (permalink / raw)
  To: Sangbeom Kim; +Cc: 'Liam Girdwood', linux-kernel, sbkim01

[-- Attachment #1: Type: text/plain, Size: 386 bytes --]

On Wed, Jun 13, 2012 at 05:27:54PM +0900, Sangbeom Kim wrote:
> As s5m8767a is revisioned, ramp_delay register is changed.
> 5mV/uS, 10mV/uS, 25mV/uS, 50mV/uS, 100mV/uS ramp delay can be selected.

This is fine but I'll wait until the preceeding patch has appeared in an
-rc before applying as there's a code dependency and the prior patch is
a bugfix which I'll send to Linus for 3.5.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-06-13 17:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-13  8:27 [PATCH 3/5] regulator: Modify ramp_delay value for s5m8767a Sangbeom Kim
2012-06-13 17:59 ` Mark Brown

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.