devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v
@ 2017-10-09  5:53 Kishon Vijay Abraham I
  2017-10-09  5:53 ` [PATCH 1/2] ARM: dts: dra7: Increase max-voltage of pbias regulator Kishon Vijay Abraham I
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Kishon Vijay Abraham I @ 2017-10-09  5:53 UTC (permalink / raw)
  To: Tony Lindgren, Rob Herring, Mark Rutland
  Cc: Russell King, linux-omap-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, nsekhar-l0cyMroinI0,
	Kishon Vijay Abraham I

Max voltage of pbias was set to 3.0v because of an error in TRM in
omap5/dra7 SoCs. It's now corrected to be 3.3v.

Corresponding change in pbias regulator driver is already merged in
ulf -next
commit 27eae9d4b9d4cd9c204ef81f46078d91362ed41c
Author: Ravikumar Kattekola <rk-l0cyMroinI0@public.gmane.org>
Date:   Thu Aug 31 15:48:45 2017 +0530

    regulator: pbias: Select voltage table based on max-voltage
    
    Reference manuals of OMAP5x and DRA7x have been updated to reflect
    the PBIAS regulator max-voltage as 3.3V instead of 3.0V, while OMAP3x
    and OMAP4x are still quoting 3.0V. So, as of now, the pbias driver
    needs to support both 3.0V and 3.3V IO voltage based on the max-voltage
    supported by the PBIAS regulator.
    
    Document reference:
    SWPU249AF - OMAP543x Technical reference manual - August 2016
    SPRUI30C – DRA75x, DRA74x Technical reference manual November 2016
    
    Tested on:
    DRA75x PG 2.0 REV H EVM
    
    Signed-off-by: Ravikumar Kattekola <rk-l0cyMroinI0@public.gmane.org>
    Signed-off-by: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
    Signed-off-by: Kishon Vijay Abraham I <kishon-l0cyMroinI0@public.gmane.org>
    Signed-off-by: Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

Ravikumar Kattekola (2):
  ARM: dts: dra7: Increase max-voltage of pbias regulator
  ARM: dts: omap5: Increase max-voltage of pbias regulator

 arch/arm/boot/dts/dra7.dtsi  | 2 +-
 arch/arm/boot/dts/omap5.dtsi | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.11.0

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 1/2] ARM: dts: dra7: Increase max-voltage of pbias regulator
  2017-10-09  5:53 [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Kishon Vijay Abraham I
@ 2017-10-09  5:53 ` Kishon Vijay Abraham I
  2017-10-09  5:53 ` [PATCH 2/2] ARM: dts: omap5: " Kishon Vijay Abraham I
  2017-10-11 15:46 ` [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Kishon Vijay Abraham I @ 2017-10-09  5:53 UTC (permalink / raw)
  To: Tony Lindgren, Rob Herring, Mark Rutland
  Cc: Russell King, linux-omap, devicetree, linux-arm-kernel,
	linux-kernel, nsekhar, Ravikumar Kattekola,
	Kishon Vijay Abraham I

From: Ravikumar Kattekola <rk@ti.com>

As per recent TRM, PBIAS cell on dra7 devices supports
3.3v and not 3.0v as documented earlier.

Update PBIAS regulator max voltage to match this.

Document reference:
SPRUI30C – DRA75x, DRA74x Technical reference manual- November 2016

Tested on:
DRA75x PG 2.0 REV H EVM

Signed-off-by: Ravikumar Kattekola <rk@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/dra7.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 02a136a4661a..14d75c589369 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -170,7 +170,7 @@
 						pbias_mmc_reg: pbias_mmc_omap5 {
 							regulator-name = "pbias_mmc_omap5";
 							regulator-min-microvolt = <1800000>;
-							regulator-max-microvolt = <3000000>;
+							regulator-max-microvolt = <3300000>;
 						};
 					};
 
-- 
2.11.0

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

* [PATCH 2/2] ARM: dts: omap5: Increase max-voltage of pbias regulator
  2017-10-09  5:53 [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Kishon Vijay Abraham I
  2017-10-09  5:53 ` [PATCH 1/2] ARM: dts: dra7: Increase max-voltage of pbias regulator Kishon Vijay Abraham I
@ 2017-10-09  5:53 ` Kishon Vijay Abraham I
  2017-10-11 15:46 ` [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Kishon Vijay Abraham I @ 2017-10-09  5:53 UTC (permalink / raw)
  To: Tony Lindgren, Rob Herring, Mark Rutland
  Cc: Russell King, linux-omap, devicetree, linux-arm-kernel,
	linux-kernel, nsekhar, Ravikumar Kattekola,
	Kishon Vijay Abraham I

From: Ravikumar Kattekola <rk@ti.com>

As per recent TRM, PBIAS cell on omap5 devices supports
3.3v and not 3.0v as documented earlier.

Update PBIAS regulator max voltage to match this.

Document reference:
SWPU249AF - OMAP543x Technical reference manual August 2016

Signed-off-by: Ravikumar Kattekola <rk@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/omap5.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index eaff2a5751dd..e6af460ee301 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -194,7 +194,7 @@
 						pbias_mmc_reg: pbias_mmc_omap5 {
 							regulator-name = "pbias_mmc_omap5";
 							regulator-min-microvolt = <1800000>;
-							regulator-max-microvolt = <3000000>;
+							regulator-max-microvolt = <3300000>;
 						};
 					};
 				};
-- 
2.11.0

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

* Re: [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v
  2017-10-09  5:53 [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Kishon Vijay Abraham I
  2017-10-09  5:53 ` [PATCH 1/2] ARM: dts: dra7: Increase max-voltage of pbias regulator Kishon Vijay Abraham I
  2017-10-09  5:53 ` [PATCH 2/2] ARM: dts: omap5: " Kishon Vijay Abraham I
@ 2017-10-11 15:46 ` Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2017-10-11 15:46 UTC (permalink / raw)
  To: Kishon Vijay Abraham I
  Cc: Rob Herring, Mark Rutland, Russell King, linux-omap, devicetree,
	linux-arm-kernel, linux-kernel, nsekhar

* Kishon Vijay Abraham I <kishon@ti.com> [171008 22:54]:
> Max voltage of pbias was set to 3.0v because of an error in TRM in
> omap5/dra7 SoCs. It's now corrected to be 3.3v.
> 
> Corresponding change in pbias regulator driver is already merged in
> ulf -next
> commit 27eae9d4b9d4cd9c204ef81f46078d91362ed41c

Thanks applying both into omap-for-v4.15/dt.

Regards,

Tony

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

end of thread, other threads:[~2017-10-11 15:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-09  5:53 [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Kishon Vijay Abraham I
2017-10-09  5:53 ` [PATCH 1/2] ARM: dts: dra7: Increase max-voltage of pbias regulator Kishon Vijay Abraham I
2017-10-09  5:53 ` [PATCH 2/2] ARM: dts: omap5: " Kishon Vijay Abraham I
2017-10-11 15:46 ` [PATCH 0/2] dra7/omap5: Increase max-voltage of pbias to 3.3v Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).