linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem
@ 2013-08-23  7:16 Rahul Sharma
  2013-08-29  2:24 ` Mike Turquette
  0 siblings, 1 reply; 3+ messages in thread
From: Rahul Sharma @ 2013-08-23  7:16 UTC (permalink / raw)
  To: linux-arm-kernel

parent of hdmi and mixer block is mentioned as aclk200 which is
not correct. It is clocked by the ouput of aclk200_disp1. Hence
parent for mixer and hdmi clocks is changed to aclk200_disp1.

Signed-off-by: Rahul Sharma <rahul.sharma@samsung.com>
---
This set is based on Mike's clk-next branch at
https://git.linaro.org/gitweb?p=people/mturquette/linux.git

 drivers/clk/samsung/clk-exynos5250.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/samsung/clk-exynos5250.c b/drivers/clk/samsung/clk-exynos5250.c
index a9916a4..d90e593 100644
--- a/drivers/clk/samsung/clk-exynos5250.c
+++ b/drivers/clk/samsung/clk-exynos5250.c
@@ -489,8 +489,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
 	GATE(mie1, "mie1", "aclk200", GATE_IP_DISP1, 1, 0, 0),
 	GATE(dsim0, "dsim0", "aclk200", GATE_IP_DISP1, 3, 0, 0),
 	GATE(dp, "dp", "aclk200", GATE_IP_DISP1, 4, 0, 0),
-	GATE(mixer, "mixer", "aclk200", GATE_IP_DISP1, 5, 0, 0),
-	GATE(hdmi, "hdmi", "aclk200", GATE_IP_DISP1, 6, 0, 0),
+	GATE(mixer, "mixer", "mout_aclk200_disp1", GATE_IP_DISP1, 5, 0, 0),
+	GATE(hdmi, "hdmi", "mout_aclk200_disp1", GATE_IP_DISP1, 6, 0, 0),
 	GATE(g2d, "g2d", "aclk200", GATE_IP_ACP, 3, 0, 0),
 };
 
-- 
1.7.10.4

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

* [PATCH] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem
  2013-08-23  7:16 [PATCH] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem Rahul Sharma
@ 2013-08-29  2:24 ` Mike Turquette
  2013-08-29  3:21   ` Rahul Sharma
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Turquette @ 2013-08-29  2:24 UTC (permalink / raw)
  To: linux-arm-kernel

Quoting Rahul Sharma (2013-08-23 00:16:59)
> parent of hdmi and mixer block is mentioned as aclk200 which is
> not correct. It is clocked by the ouput of aclk200_disp1. Hence
> parent for mixer and hdmi clocks is changed to aclk200_disp1.
> 
> Signed-off-by: Rahul Sharma <rahul.sharma@samsung.com>

Taken into clk-next.

Thanks,
Mike

> ---
> This set is based on Mike's clk-next branch at
> https://git.linaro.org/gitweb?p=people/mturquette/linux.git
> 
>  drivers/clk/samsung/clk-exynos5250.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/samsung/clk-exynos5250.c b/drivers/clk/samsung/clk-exynos5250.c
> index a9916a4..d90e593 100644
> --- a/drivers/clk/samsung/clk-exynos5250.c
> +++ b/drivers/clk/samsung/clk-exynos5250.c
> @@ -489,8 +489,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
>         GATE(mie1, "mie1", "aclk200", GATE_IP_DISP1, 1, 0, 0),
>         GATE(dsim0, "dsim0", "aclk200", GATE_IP_DISP1, 3, 0, 0),
>         GATE(dp, "dp", "aclk200", GATE_IP_DISP1, 4, 0, 0),
> -       GATE(mixer, "mixer", "aclk200", GATE_IP_DISP1, 5, 0, 0),
> -       GATE(hdmi, "hdmi", "aclk200", GATE_IP_DISP1, 6, 0, 0),
> +       GATE(mixer, "mixer", "mout_aclk200_disp1", GATE_IP_DISP1, 5, 0, 0),
> +       GATE(hdmi, "hdmi", "mout_aclk200_disp1", GATE_IP_DISP1, 6, 0, 0),
>         GATE(g2d, "g2d", "aclk200", GATE_IP_ACP, 3, 0, 0),
>  };
>  
> -- 
> 1.7.10.4

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

* [PATCH] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem
  2013-08-29  2:24 ` Mike Turquette
@ 2013-08-29  3:21   ` Rahul Sharma
  0 siblings, 0 replies; 3+ messages in thread
From: Rahul Sharma @ 2013-08-29  3:21 UTC (permalink / raw)
  To: linux-arm-kernel

Thanks Mike.

On 29 August 2013 07:54, Mike Turquette <mturquette@linaro.org> wrote:
> Quoting Rahul Sharma (2013-08-23 00:16:59)
>> parent of hdmi and mixer block is mentioned as aclk200 which is
>> not correct. It is clocked by the ouput of aclk200_disp1. Hence
>> parent for mixer and hdmi clocks is changed to aclk200_disp1.
>>
>> Signed-off-by: Rahul Sharma <rahul.sharma@samsung.com>
>
> Taken into clk-next.
>
> Thanks,
> Mike
>
>> ---
>> This set is based on Mike's clk-next branch at
>> https://git.linaro.org/gitweb?p=people/mturquette/linux.git
>>
>>  drivers/clk/samsung/clk-exynos5250.c |    4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/clk/samsung/clk-exynos5250.c b/drivers/clk/samsung/clk-exynos5250.c
>> index a9916a4..d90e593 100644
>> --- a/drivers/clk/samsung/clk-exynos5250.c
>> +++ b/drivers/clk/samsung/clk-exynos5250.c
>> @@ -489,8 +489,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
>>         GATE(mie1, "mie1", "aclk200", GATE_IP_DISP1, 1, 0, 0),
>>         GATE(dsim0, "dsim0", "aclk200", GATE_IP_DISP1, 3, 0, 0),
>>         GATE(dp, "dp", "aclk200", GATE_IP_DISP1, 4, 0, 0),
>> -       GATE(mixer, "mixer", "aclk200", GATE_IP_DISP1, 5, 0, 0),
>> -       GATE(hdmi, "hdmi", "aclk200", GATE_IP_DISP1, 6, 0, 0),
>> +       GATE(mixer, "mixer", "mout_aclk200_disp1", GATE_IP_DISP1, 5, 0, 0),
>> +       GATE(hdmi, "hdmi", "mout_aclk200_disp1", GATE_IP_DISP1, 6, 0, 0),
>>         GATE(g2d, "g2d", "aclk200", GATE_IP_ACP, 3, 0, 0),
>>  };
>>
>> --
>> 1.7.10.4

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

end of thread, other threads:[~2013-08-29  3:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-23  7:16 [PATCH] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem Rahul Sharma
2013-08-29  2:24 ` Mike Turquette
2013-08-29  3:21   ` Rahul Sharma

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).