linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: exynos: Fix wrong hwirq of RTC interrupt for Exynos3250 SoC
@ 2015-02-10  3:09 Chanwoo Choi
  2015-02-10  8:05 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 3+ messages in thread
From: Chanwoo Choi @ 2015-02-10  3:09 UTC (permalink / raw)
  To: linux-arm-kernel

This patch fixes wrong hwirq of RTC irq for Exynos3250 SoC. When entering
suspend state, 'enable_irq_wake fail' happen because of the mismatch of RTC hwirq.

	[  429.200937] Freezing user space processes ... (elapsed 0.002 seconds) done.
	[  429.203383] Freezing remaining freezable tasks ... (elapsed 0.000 seconds) done.
	[  429.209914] Suspending console(s) (use no_console_suspend to debug)
	[  429.370685] wake enabled for irq 65
	[  429.370837] wake enabled for irq 64
	[  429.370868] wake enabled for irq 79
	[snip]
	[  429.372120] s3c-rtc 10070000.rtc: enable_irq_wake failed

Fixes: a4f582f5c5fe3 (ARM: EXYNOS: Add exynos3250 suspend-to-ram support)
Cc: Kukjin Kim <kgene@kernel.org>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/suspend.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-exynos/suspend.c b/arch/arm/mach-exynos/suspend.c
index d6feef3..2b8bd67 100644
--- a/arch/arm/mach-exynos/suspend.c
+++ b/arch/arm/mach-exynos/suspend.c
@@ -92,8 +92,8 @@ static unsigned int exynos_pmu_spare3;
 static u32 exynos_irqwake_intmask = 0xffffffff;
 
 static const struct exynos_wkup_irq exynos3250_wkup_irq[] = {
-	{ 73, BIT(1) }, /* RTC alarm */
-	{ 74, BIT(2) }, /* RTC tick */
+	{ 105, BIT(1) }, /* RTC alarm */
+	{ 106, BIT(2) }, /* RTC tick */
 	{ /* sentinel */ },
 };
 
-- 
1.8.5.5

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

* [PATCH] ARM: exynos: Fix wrong hwirq of RTC interrupt for Exynos3250 SoC
  2015-02-10  3:09 [PATCH] ARM: exynos: Fix wrong hwirq of RTC interrupt for Exynos3250 SoC Chanwoo Choi
@ 2015-02-10  8:05 ` Krzysztof Kozlowski
  2015-02-26 20:59   ` Kukjin Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2015-02-10  8:05 UTC (permalink / raw)
  To: linux-arm-kernel

2015-02-10 4:09 GMT+01:00 Chanwoo Choi <cw00.choi@samsung.com>:
> This patch fixes wrong hwirq of RTC irq for Exynos3250 SoC. When entering
> suspend state, 'enable_irq_wake fail' happen because of the mismatch of RTC hwirq.
>
>         [ 429.200937] Freezing user space processes ... (elapsed 0.002 seconds) done.
>         [ 429.203383] Freezing remaining freezable tasks ... (elapsed 0.000 seconds) done.
>         [ 429.209914] Suspending console(s) (use no_console_suspend to debug)
>         [ 429.370685] wake enabled for irq 65
>         [ 429.370837] wake enabled for irq 64
>         [ 429.370868] wake enabled for irq 79
>         [snip]
>         [  429.372120] s3c-rtc 10070000.rtc: enable_irq_wake failed
>
> Fixes: a4f582f5c5fe3 (ARM: EXYNOS: Add exynos3250 suspend-to-ram support)
> Cc: Kukjin Kim <kgene@kernel.org>
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>  arch/arm/mach-exynos/suspend.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Yeah, I remember now Jonghwa's patches back in 2014 August and September :)
https://lkml.org/lkml/2014/8/26/40
https://lkml.org/lkml/2014/9/26/92

Anyway now this looks good:
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>

Best regards,
Krzysztof

>
> diff --git a/arch/arm/mach-exynos/suspend.c b/arch/arm/mach-exynos/suspend.c
> index d6feef3..2b8bd67 100644
> --- a/arch/arm/mach-exynos/suspend.c
> +++ b/arch/arm/mach-exynos/suspend.c
> @@ -92,8 +92,8 @@ static unsigned int exynos_pmu_spare3;
>  static u32 exynos_irqwake_intmask = 0xffffffff;
>
>  static const struct exynos_wkup_irq exynos3250_wkup_irq[] = {
> -       { 73, BIT(1) }, /* RTC alarm */
> -       { 74, BIT(2) }, /* RTC tick */
> +       { 105, BIT(1) }, /* RTC alarm */
> +       { 106, BIT(2) }, /* RTC tick */
>         { /* sentinel */ },
>  };
>
> --
> 1.8.5.5
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH] ARM: exynos: Fix wrong hwirq of RTC interrupt for Exynos3250 SoC
  2015-02-10  8:05 ` Krzysztof Kozlowski
@ 2015-02-26 20:59   ` Kukjin Kim
  0 siblings, 0 replies; 3+ messages in thread
From: Kukjin Kim @ 2015-02-26 20:59 UTC (permalink / raw)
  To: linux-arm-kernel

On 02/10/15 17:05, Krzysztof Kozlowski wrote:
> 2015-02-10 4:09 GMT+01:00 Chanwoo Choi <cw00.choi@samsung.com>:
>> This patch fixes wrong hwirq of RTC irq for Exynos3250 SoC. When entering
>> suspend state, 'enable_irq_wake fail' happen because of the mismatch of RTC hwirq.
>>
>>         [ 429.200937] Freezing user space processes ... (elapsed 0.002 seconds) done.
>>         [ 429.203383] Freezing remaining freezable tasks ... (elapsed 0.000 seconds) done.
>>         [ 429.209914] Suspending console(s) (use no_console_suspend to debug)
>>         [ 429.370685] wake enabled for irq 65
>>         [ 429.370837] wake enabled for irq 64
>>         [ 429.370868] wake enabled for irq 79
>>         [snip]
>>         [  429.372120] s3c-rtc 10070000.rtc: enable_irq_wake failed
>>
>> Fixes: a4f582f5c5fe3 (ARM: EXYNOS: Add exynos3250 suspend-to-ram support)
>> Cc: Kukjin Kim <kgene@kernel.org>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>  arch/arm/mach-exynos/suspend.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Yeah, I remember now Jonghwa's patches back in 2014 August and September :)
> https://lkml.org/lkml/2014/8/26/40
> https://lkml.org/lkml/2014/9/26/92
> 
> Anyway now this looks good:
> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> 
Thanks, applied.

- Kukjin

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

end of thread, other threads:[~2015-02-26 20:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-10  3:09 [PATCH] ARM: exynos: Fix wrong hwirq of RTC interrupt for Exynos3250 SoC Chanwoo Choi
2015-02-10  8:05 ` Krzysztof Kozlowski
2015-02-26 20:59   ` Kukjin Kim

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