public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti, set-rate-parent to dss_dss_clk
@ 2014-05-21 12:16 Tomi Valkeinen
  2014-05-21 12:16 ` [PATCH 2/2] ARM: dts: am43xx-clocks.dtsi: add ti, set-rate-parent to display clock path Tomi Valkeinen
  2014-05-23  9:33 ` [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti,set-rate-parent to dss_dss_clk Tero Kristo
  0 siblings, 2 replies; 3+ messages in thread
From: Tomi Valkeinen @ 2014-05-21 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

Add ti,set-rate-parent to dss_dss_clk so that the DSS driver can
set the rate.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti•com>
---
 arch/arm/boot/dts/omap54xx-clocks.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/omap54xx-clocks.dtsi b/arch/arm/boot/dts/omap54xx-clocks.dtsi
index d487fdab3921..d44bdaa8fe68 100644
--- a/arch/arm/boot/dts/omap54xx-clocks.dtsi
+++ b/arch/arm/boot/dts/omap54xx-clocks.dtsi
@@ -851,6 +851,7 @@
 		clocks = <&dpll_per_h12x2_ck>;
 		ti,bit-shift = <8>;
 		reg = <0x1420>;
+		ti,set-rate-parent;
 	};
 
 	dss_sys_clk: dss_sys_clk {
-- 
1.9.1

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

* [PATCH 2/2] ARM: dts: am43xx-clocks.dtsi: add ti, set-rate-parent to display clock path
  2014-05-21 12:16 [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti, set-rate-parent to dss_dss_clk Tomi Valkeinen
@ 2014-05-21 12:16 ` Tomi Valkeinen
  2014-05-23  9:33 ` [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti,set-rate-parent to dss_dss_clk Tero Kristo
  1 sibling, 0 replies; 3+ messages in thread
From: Tomi Valkeinen @ 2014-05-21 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

We need set-rate-parent flags for the display's clock path so that the
DSS driver can change the clock rate of the PLL.

This patchs adds the ti,set-rate-parent flag to disp_clk and
dpll_disp_m2_ck clock nodes.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti•com>
---
 arch/arm/boot/dts/am43xx-clocks.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/boot/dts/am43xx-clocks.dtsi b/arch/arm/boot/dts/am43xx-clocks.dtsi
index 142009cc9332..a6f7ee74990f 100644
--- a/arch/arm/boot/dts/am43xx-clocks.dtsi
+++ b/arch/arm/boot/dts/am43xx-clocks.dtsi
@@ -229,6 +229,7 @@
 		reg = <0x2e30>;
 		ti,index-starts-at-one;
 		ti,invert-autoidle-bit;
+		ti,set-rate-parent;
 	};
 
 	dpll_per_ck: dpll_per_ck {
@@ -511,6 +512,7 @@
 		compatible = "ti,mux-clock";
 		clocks = <&dpll_disp_m2_ck>, <&dpll_core_m5_ck>, <&dpll_per_m2_ck>;
 		reg = <0x4244>;
+		ti,set-rate-parent;
 	};
 
 	dpll_extdev_ck: dpll_extdev_ck {
-- 
1.9.1

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

* [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti,set-rate-parent to dss_dss_clk
  2014-05-21 12:16 [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti, set-rate-parent to dss_dss_clk Tomi Valkeinen
  2014-05-21 12:16 ` [PATCH 2/2] ARM: dts: am43xx-clocks.dtsi: add ti, set-rate-parent to display clock path Tomi Valkeinen
@ 2014-05-23  9:33 ` Tero Kristo
  1 sibling, 0 replies; 3+ messages in thread
From: Tero Kristo @ 2014-05-23  9:33 UTC (permalink / raw)
  To: linux-arm-kernel

On 05/21/2014 03:16 PM, Tomi Valkeinen wrote:
> Add ti,set-rate-parent to dss_dss_clk so that the DSS driver can
> set the rate.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti•com>

Both patches queued for 3.16, thanks.

-Tero

> ---
>   arch/arm/boot/dts/omap54xx-clocks.dtsi | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/boot/dts/omap54xx-clocks.dtsi b/arch/arm/boot/dts/omap54xx-clocks.dtsi
> index d487fdab3921..d44bdaa8fe68 100644
> --- a/arch/arm/boot/dts/omap54xx-clocks.dtsi
> +++ b/arch/arm/boot/dts/omap54xx-clocks.dtsi
> @@ -851,6 +851,7 @@
>   		clocks = <&dpll_per_h12x2_ck>;
>   		ti,bit-shift = <8>;
>   		reg = <0x1420>;
> +		ti,set-rate-parent;
>   	};
>
>   	dss_sys_clk: dss_sys_clk {
>

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

end of thread, other threads:[~2014-05-23  9:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 12:16 [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti, set-rate-parent to dss_dss_clk Tomi Valkeinen
2014-05-21 12:16 ` [PATCH 2/2] ARM: dts: am43xx-clocks.dtsi: add ti, set-rate-parent to display clock path Tomi Valkeinen
2014-05-23  9:33 ` [PATCH 1/2] ARM: dts: omap5-clocks.dtsi: add ti,set-rate-parent to dss_dss_clk Tero Kristo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox