linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string
@ 2014-08-13  0:11 Kevin Hilman
  2014-08-18 16:29 ` Kukjin Kim
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Kevin Hilman @ 2014-08-13  0:11 UTC (permalink / raw)
  To: daniel.lezcano
  Cc: t.figa, k.chander, kgene.kim, linaro-kernel, Rafael J. Wysocki,
	Lorenzo Pieralisi, open list:CPUIDLE DRIVERS,
	open list:CPUIDLE DRIVER -..., open list

Exynos 5800 is big.LITTLE SoC compatible with the 5420.  Add the
compatible string so this driver works on the 5800.

Tested on exynos5800-peach-pi (aka Samsung Chromebook2)

Signed-off-by: Kevin Hilman <khilman@linaro.org>
---
 drivers/cpuidle/cpuidle-big_little.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpuidle/cpuidle-big_little.c b/drivers/cpuidle/cpuidle-big_little.c
index 0a1f827308db..bf3ab66fdaaf 100644
--- a/drivers/cpuidle/cpuidle-big_little.c
+++ b/drivers/cpuidle/cpuidle-big_little.c
@@ -166,6 +166,7 @@ static int __init bl_idle_driver_init(struct cpuidle_driver *drv, int match_id)
 static const struct of_device_id compatible_machine_match[] = {
 	{ .compatible = "arm,vexpress,v2p-ca15_a7" },
 	{ .compatible = "samsung,exynos5420" },
+	{ .compatible = "samsung,exynos5800" },
 	{},
 };
 
-- 
1.9.2


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

* Re: [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string
  2014-08-13  0:11 [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string Kevin Hilman
@ 2014-08-18 16:29 ` Kukjin Kim
  2014-08-18 16:36 ` Kukjin Kim
  2014-08-21  1:49 ` Daniel Lezcano
  2 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2014-08-18 16:29 UTC (permalink / raw)
  To: Kevin Hilman
  Cc: k.chander, Lorenzo Pieralisi, CPUIDLE DRIVERS, t.figa,
	daniel.lezcano, Rafael J. Wysocki, open list, kgene.kim,
	linaro-kernel, open list:CPUIDLE DRIVER -...

On 08/12/14 19:11, Kevin Hilman wrote:
> Exynos 5800 is big.LITTLE SoC compatible with the 5420.  Add the
> compatible string so this driver works on the 5800.
>
> Tested on exynos5800-peach-pi (aka Samsung Chromebook2)
>
> Signed-off-by: Kevin Hilman<khilman@linaro.org>

Acked-by: Kukjin Kim <kgene.kim@samsung.com>

Thanks,
Kukjin

> ---
>   drivers/cpuidle/cpuidle-big_little.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/cpuidle/cpuidle-big_little.c b/drivers/cpuidle/cpuidle-big_little.c
> index 0a1f827308db..bf3ab66fdaaf 100644
> --- a/drivers/cpuidle/cpuidle-big_little.c
> +++ b/drivers/cpuidle/cpuidle-big_little.c
> @@ -166,6 +166,7 @@ static int __init bl_idle_driver_init(struct cpuidle_driver *drv, int match_id)
>   static const struct of_device_id compatible_machine_match[] = {
>   	{ .compatible = "arm,vexpress,v2p-ca15_a7" },
>   	{ .compatible = "samsung,exynos5420" },
> +	{ .compatible = "samsung,exynos5800" },
>   	{},
>   };
>

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

* Re: [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string
  2014-08-13  0:11 [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string Kevin Hilman
  2014-08-18 16:29 ` Kukjin Kim
@ 2014-08-18 16:36 ` Kukjin Kim
  2014-08-21  1:49 ` Daniel Lezcano
  2 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2014-08-18 16:36 UTC (permalink / raw)
  To: Kevin Hilman
  Cc: k.chander, Lorenzo Pieralisi, CPUIDLE DRIVERS, t.figa,
	daniel.lezcano, Rafael J. Wysocki, open list, kgene.kim,
	linaro-kernel, open list:CPUIDLE DRIVER -...

On 08/12/14 19:11, Kevin Hilman wrote:
> Exynos 5800 is big.LITTLE SoC compatible with the 5420.  Add the
> compatible string so this driver works on the 5800.
>
> Tested on exynos5800-peach-pi (aka Samsung Chromebook2)
>
> Signed-off-by: Kevin Hilman<khilman@linaro.org>

Acked-by: Kukjin Kim <kgene.kim@samsung.com>

Thanks,
Kukjin

> ---
>   drivers/cpuidle/cpuidle-big_little.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/cpuidle/cpuidle-big_little.c b/drivers/cpuidle/cpuidle-big_little.c
> index 0a1f827308db..bf3ab66fdaaf 100644
> --- a/drivers/cpuidle/cpuidle-big_little.c
> +++ b/drivers/cpuidle/cpuidle-big_little.c
> @@ -166,6 +166,7 @@ static int __init bl_idle_driver_init(struct cpuidle_driver *drv, int match_id)
>   static const struct of_device_id compatible_machine_match[] = {
>   	{ .compatible = "arm,vexpress,v2p-ca15_a7" },
>   	{ .compatible = "samsung,exynos5420" },
> +	{ .compatible = "samsung,exynos5800" },
>   	{},
>   };
>

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

* Re: [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string
  2014-08-13  0:11 [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string Kevin Hilman
  2014-08-18 16:29 ` Kukjin Kim
  2014-08-18 16:36 ` Kukjin Kim
@ 2014-08-21  1:49 ` Daniel Lezcano
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Lezcano @ 2014-08-21  1:49 UTC (permalink / raw)
  To: Kevin Hilman
  Cc: k.chander, Lorenzo Pieralisi, CPUIDLE DRIVERS, t.figa,
	Rafael J. Wysocki, open list, kgene.kim,
	open list:CPUIDLE DRIVER -..., linaro-kernel

On 08/13/2014 02:11 AM, Kevin Hilman wrote:
> Exynos 5800 is big.LITTLE SoC compatible with the 5420.  Add the
> compatible string so this driver works on the 5800.
>
> Tested on exynos5800-peach-pi (aka Samsung Chromebook2)
>
> Signed-off-by: Kevin Hilman <khilman@linaro.org>
> ---

Thanks.

I will apply it to my tree.

>   drivers/cpuidle/cpuidle-big_little.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/cpuidle/cpuidle-big_little.c b/drivers/cpuidle/cpuidle-big_little.c
> index 0a1f827308db..bf3ab66fdaaf 100644
> --- a/drivers/cpuidle/cpuidle-big_little.c
> +++ b/drivers/cpuidle/cpuidle-big_little.c
> @@ -166,6 +166,7 @@ static int __init bl_idle_driver_init(struct cpuidle_driver *drv, int match_id)
>   static const struct of_device_id compatible_machine_match[] = {
>   	{ .compatible = "arm,vexpress,v2p-ca15_a7" },
>   	{ .compatible = "samsung,exynos5420" },
> +	{ .compatible = "samsung,exynos5800" },
>   	{},
>   };
>
>


-- 
  <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2014-08-21  1:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-13  0:11 [PATCH] cpuidle: big.LITTLE: add Exynos5800 compatible string Kevin Hilman
2014-08-18 16:29 ` Kukjin Kim
2014-08-18 16:36 ` Kukjin Kim
2014-08-21  1:49 ` Daniel Lezcano

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