devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages
@ 2013-04-26 17:39 Nishanth Menon
  2013-04-26 17:39 ` [PATCH 1/2] ARM: dts: OMAP36xx: " Nishanth Menon
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Nishanth Menon @ 2013-04-26 17:39 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren
  Cc: linux-omap, devicetree-discuss, linux-arm-kernel, Nishanth Menon

Hi,
It seems that I have not been paying close attention to
actual voltage value seen on scope to map it back to verify the validity
of the voltage value. Even though I did verify[1] that voltage did scale to
values in DT entries, the values in the case of 3630 and 4460 were lower than
what the spec voltage was as per opp_data files.

This series is based off Benoit's tree here:
http://git.kernel.org/cgit/linux/kernel/git/bcousson/linux-omap-dt.git/log/?h=for_3.10/dts

Commit ID's in the patches to indicate regressions are from there as well.
Would be good to have this fix merged to 3.10 dts entries.
I have cross verified that OMAP3430,3630,4430 and 4460 entries now match that
of corresponding opp*_data.c

My sincere apologies on the oversight.

Nishanth Menon (2):
  ARM: dts: OMAP36xx: Fix CPU OPP voltages
  ARM: dts: OMAP4460: Fix CPU OPP voltages

 arch/arm/boot/dts/omap36xx.dtsi |    6 +++---
 arch/arm/boot/dts/omap4460.dtsi |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

[1] http://marc.info/?l=linux-arm-kernel&m=136580742724210&w=2
Regards,
Nishanth Menon
-- 
1.7.9.5


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

* [PATCH 1/2] ARM: dts: OMAP36xx: Fix CPU OPP voltages
  2013-04-26 17:39 [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages Nishanth Menon
@ 2013-04-26 17:39 ` Nishanth Menon
  2013-04-26 17:39 ` [PATCH 2/2] ARM: dts: OMAP4460: " Nishanth Menon
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Nishanth Menon @ 2013-04-26 17:39 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren
  Cc: linux-omap, devicetree-discuss, linux-arm-kernel, Nishanth Menon

commit 3027e26 (ARM: dts: OMAP36xx: Add CPU OPP table)
introduced wrong OPP voltages per OPP by mistake. Sync the OPP
tables with existing OMAP36xx OPP data in
arch/arm/mach-omap2/opp3xxx_data.c

Signed-off-by: Nishanth Menon <nm@ti.com>
---
 arch/arm/boot/dts/omap36xx.dtsi |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/omap36xx.dtsi b/arch/arm/boot/dts/omap36xx.dtsi
index b89233e..f3447bc 100644
--- a/arch/arm/boot/dts/omap36xx.dtsi
+++ b/arch/arm/boot/dts/omap36xx.dtsi
@@ -20,9 +20,9 @@
 		cpu@0 {
 			operating-points = <
 				/* kHz    uV */
-				300000   975000
-				600000  1075000
-				800000  1200000
+				300000  1012500
+				600000  1200000
+				800000  1325000
 			>;
 			clock-latency = <300000>; /* From legacy driver */
 		};
-- 
1.7.9.5


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

* [PATCH 2/2] ARM: dts: OMAP4460: Fix CPU OPP voltages
  2013-04-26 17:39 [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages Nishanth Menon
  2013-04-26 17:39 ` [PATCH 1/2] ARM: dts: OMAP36xx: " Nishanth Menon
@ 2013-04-26 17:39 ` Nishanth Menon
  2013-05-05 15:04 ` [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 " Nishanth Menon
  2013-05-08 23:14 ` Tony Lindgren
  3 siblings, 0 replies; 5+ messages in thread
From: Nishanth Menon @ 2013-04-26 17:39 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren
  Cc: linux-omap, devicetree-discuss, linux-arm-kernel, Nishanth Menon

commit d16fb25 (ARM: dts: OMAP4460: Add CPU OPP table)
introduced wrong OPP voltages per OPP by mistake. Sync the OPP
tables with existing OMAP4460 OPP data in
arch/arm/mach-omap2/opp4xxx_data.c

Signed-off-by: Nishanth Menon <nm@ti.com>
---
 arch/arm/boot/dts/omap4460.dtsi |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/omap4460.dtsi b/arch/arm/boot/dts/omap4460.dtsi
index 7c2c23c..2cf227c 100644
--- a/arch/arm/boot/dts/omap4460.dtsi
+++ b/arch/arm/boot/dts/omap4460.dtsi
@@ -15,9 +15,9 @@
 		cpu@0 {
 			operating-points = <
 				/* kHz    uV */
-				350000   975000
-				700000  1075000
-				920000  1200000
+				350000  1025000
+				700000  1200000
+				920000  1313000
 			>;
 			clock-latency = <300000>; /* From legacy driver */
 		};
-- 
1.7.9.5


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

* Re: [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages
  2013-04-26 17:39 [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages Nishanth Menon
  2013-04-26 17:39 ` [PATCH 1/2] ARM: dts: OMAP36xx: " Nishanth Menon
  2013-04-26 17:39 ` [PATCH 2/2] ARM: dts: OMAP4460: " Nishanth Menon
@ 2013-05-05 15:04 ` Nishanth Menon
  2013-05-08 23:14 ` Tony Lindgren
  3 siblings, 0 replies; 5+ messages in thread
From: Nishanth Menon @ 2013-05-05 15:04 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren
  Cc: Nishanth Menon, devicetree-discuss, linux-arm-kernel

Tony/Benoit,
gentle offline ping for this series?
https://patchwork.kernel.org/patch/2494481/
https://patchwork.kernel.org/patch/2494491/
Regards,
Nishanth Menon
On 04/26/2013 12:39 PM, Nishanth Menon wrote:
> Hi,
> It seems that I have not been paying close attention to
> actual voltage value seen on scope to map it back to verify the validity
> of the voltage value. Even though I did verify[1] that voltage did scale to
> values in DT entries, the values in the case of 3630 and 4460 were lower than
> what the spec voltage was as per opp_data files.
>
> This series is based off Benoit's tree here:
> http://git.kernel.org/cgit/linux/kernel/git/bcousson/linux-omap-dt.git/log/?h=for_3.10/dts
>
> Commit ID's in the patches to indicate regressions are from there as well.
> Would be good to have this fix merged to 3.10 dts entries.
> I have cross verified that OMAP3430,3630,4430 and 4460 entries now match that
> of corresponding opp*_data.c
>
> My sincere apologies on the oversight.
>
> Nishanth Menon (2):
>    ARM: dts: OMAP36xx: Fix CPU OPP voltages
>    ARM: dts: OMAP4460: Fix CPU OPP voltages
>
>   arch/arm/boot/dts/omap36xx.dtsi |    6 +++---
>   arch/arm/boot/dts/omap4460.dtsi |    6 +++---
>   2 files changed, 6 insertions(+), 6 deletions(-)
>
> [1] http://marc.info/?l=linux-arm-kernel&m=136580742724210&w=2
> Regards,
> Nishanth Menon
>

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

* Re: [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages
  2013-04-26 17:39 [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages Nishanth Menon
                   ` (2 preceding siblings ...)
  2013-05-05 15:04 ` [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 " Nishanth Menon
@ 2013-05-08 23:14 ` Tony Lindgren
  3 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2013-05-08 23:14 UTC (permalink / raw)
  To: Nishanth Menon
  Cc: Benoît Cousson, linux-omap, devicetree-discuss,
	linux-arm-kernel

* Nishanth Menon <nm@ti.com> [130426 10:44]:
> Hi,
> It seems that I have not been paying close attention to
> actual voltage value seen on scope to map it back to verify the validity
> of the voltage value. Even though I did verify[1] that voltage did scale to
> values in DT entries, the values in the case of 3630 and 4460 were lower than
> what the spec voltage was as per opp_data files.
> 
> This series is based off Benoit's tree here:
> http://git.kernel.org/cgit/linux/kernel/git/bcousson/linux-omap-dt.git/log/?h=for_3.10/dts
> 
> Commit ID's in the patches to indicate regressions are from there as well.
> Would be good to have this fix merged to 3.10 dts entries.
> I have cross verified that OMAP3430,3630,4430 and 4460 entries now match that
> of corresponding opp*_data.c
> 
> My sincere apologies on the oversight.
> 
> Nishanth Menon (2):
>   ARM: dts: OMAP36xx: Fix CPU OPP voltages
>   ARM: dts: OMAP4460: Fix CPU OPP voltages
> 
>  arch/arm/boot/dts/omap36xx.dtsi |    6 +++---
>  arch/arm/boot/dts/omap4460.dtsi |    6 +++---
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> [1] http://marc.info/?l=linux-arm-kernel&m=136580742724210&w=2

Thanks applying both into omap-for-v3.10/dt-fixes.

Regards,

Tony

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

end of thread, other threads:[~2013-05-08 23:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-26 17:39 [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 Fix CPU OPP voltages Nishanth Menon
2013-04-26 17:39 ` [PATCH 1/2] ARM: dts: OMAP36xx: " Nishanth Menon
2013-04-26 17:39 ` [PATCH 2/2] ARM: dts: OMAP4460: " Nishanth Menon
2013-05-05 15:04 ` [PATCH 0/2] ARM: dts: OMAP36xx/OMAP4460 " Nishanth Menon
2013-05-08 23:14 ` 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).