All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure
@ 2012-02-15  4:01 Sachin Kamat
  2012-02-16 12:32 ` Kukjin Kim
  0 siblings, 1 reply; 4+ messages in thread
From: Sachin Kamat @ 2012-02-15  4:01 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: kgene.kim, rjw, thomas.abraham, sachin.kamat, patches

Add G2D power domain (PD) to generic power domain infrastructure.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/mach-exynos/pm_domains.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c
index 0b04af2..a84df72 100644
--- a/arch/arm/mach-exynos/pm_domains.c
+++ b/arch/arm/mach-exynos/pm_domains.c
@@ -183,6 +183,9 @@ static __init int exynos4_pm_init_power_domain(void)
 #ifdef CONFIG_S5P_DEV_CSIS1
 	exynos_pm_add_dev_to_genpd(&s5p_device_mipi_csis1, &exynos4_pd_cam);
 #endif
+#ifdef CONFIG_S5P_DEV_G2D
+	exynos_pm_add_dev_to_genpd(&s5p_device_g2d, &exynos4_pd_lcd0);
+#endif
 	return 0;
 }
 arch_initcall(exynos4_pm_init_power_domain);
-- 
1.7.4.1

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

* Re: [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure
  2012-02-15  4:01 [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure Sachin Kamat
@ 2012-02-16 12:32 ` Kukjin Kim
  2012-03-08 11:34   ` Sachin Kamat
  0 siblings, 1 reply; 4+ messages in thread
From: Kukjin Kim @ 2012-02-16 12:32 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-samsung-soc, kgene.kim, rjw, thomas.abraham, patches

On 02/15/12 13:01, Sachin Kamat wrote:
> Add G2D power domain (PD) to generic power domain infrastructure.
>
> Signed-off-by: Sachin Kamat<sachin.kamat@linaro.org>
> ---
>   arch/arm/mach-exynos/pm_domains.c |    3 +++
>   1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c
> index 0b04af2..a84df72 100644
> --- a/arch/arm/mach-exynos/pm_domains.c
> +++ b/arch/arm/mach-exynos/pm_domains.c
> @@ -183,6 +183,9 @@ static __init int exynos4_pm_init_power_domain(void)
>   #ifdef CONFIG_S5P_DEV_CSIS1
>   	exynos_pm_add_dev_to_genpd(&s5p_device_mipi_csis1,&exynos4_pd_cam);
>   #endif
> +#ifdef CONFIG_S5P_DEV_G2D
> +	exynos_pm_add_dev_to_genpd(&s5p_device_g2d,&exynos4_pd_lcd0);
> +#endif
>   	return 0;
>   }
>   arch_initcall(exynos4_pm_init_power_domain);

Hi Sachin,

OK, will apply after pick up other regarding G2D patches for arch/arm/ 
Samsung stuff.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Re: [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure
  2012-02-16 12:32 ` Kukjin Kim
@ 2012-03-08 11:34   ` Sachin Kamat
  2012-03-09 15:33     ` Kukjin Kim
  0 siblings, 1 reply; 4+ messages in thread
From: Sachin Kamat @ 2012-03-08 11:34 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: linux-samsung-soc, rjw, thomas.abraham, patches

Hi Kukjin,

This patch is also missed in your tree. Other G2D patches in arch/arm
are already there.
Please check.

Regards
Sachin


On 16/02/2012, Kukjin Kim <kgene.kim@samsung.com> wrote:
> On 02/15/12 13:01, Sachin Kamat wrote:
>> Add G2D power domain (PD) to generic power domain infrastructure.
>>
>> Signed-off-by: Sachin Kamat<sachin.kamat@linaro.org>
>> ---
>>   arch/arm/mach-exynos/pm_domains.c |    3 +++
>>   1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/mach-exynos/pm_domains.c
>> b/arch/arm/mach-exynos/pm_domains.c
>> index 0b04af2..a84df72 100644
>> --- a/arch/arm/mach-exynos/pm_domains.c
>> +++ b/arch/arm/mach-exynos/pm_domains.c
>> @@ -183,6 +183,9 @@ static __init int exynos4_pm_init_power_domain(void)
>>   #ifdef CONFIG_S5P_DEV_CSIS1
>>   	exynos_pm_add_dev_to_genpd(&s5p_device_mipi_csis1,&exynos4_pd_cam);
>>   #endif
>> +#ifdef CONFIG_S5P_DEV_G2D
>> +	exynos_pm_add_dev_to_genpd(&s5p_device_g2d,&exynos4_pd_lcd0);
>> +#endif
>>   	return 0;
>>   }
>>   arch_initcall(exynos4_pm_init_power_domain);
>
> Hi Sachin,
>
> OK, will apply after pick up other regarding G2D patches for arch/arm/
> Samsung stuff.
>
> Thanks.
>
> Best regards,
> Kgene.
> --
> Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
> SW Solution Development Team, Samsung Electronics Co., Ltd.
>


-- 
With warm regards,
Sachin

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

* Re: [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure
  2012-03-08 11:34   ` Sachin Kamat
@ 2012-03-09 15:33     ` Kukjin Kim
  0 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2012-03-09 15:33 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: Kukjin Kim, linux-samsung-soc, rjw, thomas.abraham, patches

On 03/08/12 03:34, Sachin Kamat wrote:
> Hi Kukjin,
>
> This patch is also missed in your tree. Other G2D patches in arch/arm
> are already there.
> Please check.
>
Applied this in my next/devel-samsung-pd branch.
Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

end of thread, other threads:[~2012-03-09 15:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-15  4:01 [PATCH] ARM: EXYNOS: Hook up G2D PD to generic PD infrastructure Sachin Kamat
2012-02-16 12:32 ` Kukjin Kim
2012-03-08 11:34   ` Sachin Kamat
2012-03-09 15:33     ` Kukjin Kim

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.