All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: S5P: Change S5P_TIMER_IRQ based to 11 for SAMSUNG S5P series.
@ 2010-01-29  0:08 Kukjin Kim
  2010-01-29  0:41 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: Kukjin Kim @ 2010-01-29  0:08 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: ben-linux, Atul Dahiya, Kukjin Kim

From: Atul Dahiya <atul.dahiya@samsung.com>

Currently, S5P_TIMER_IRQ is based at the end of VICs. This patch changes
the S5P_TIMER_IRQ base from end of VICs to 11 in ISA IRQ space.
No of VICs varies between SOCs. This causes an exception on S5P6442.

Signed-off-by: Atul Dahiya <atul.dahiya@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
---
 arch/arm/plat-s5p/include/plat/irqs.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/plat-s5p/include/plat/irqs.h b/arch/arm/plat-s5p/include/plat/irqs.h
index 878acfe..101038d 100644
--- a/arch/arm/plat-s5p/include/plat/irqs.h
+++ b/arch/arm/plat-s5p/include/plat/irqs.h
@@ -74,7 +74,7 @@
 #define S5P_IRQ_VIC0(x)		(S5P_VIC0_BASE + (x))
 #define S5P_IRQ_VIC1(x)		(S5P_VIC1_BASE + (x))
 
-#define S5P_TIMER_IRQ(x)	S5P_IRQ(64 + (x))
+#define S5P_TIMER_IRQ(x)	S5P_IRQ(11 + (x))
 
 #define IRQ_TIMER0		S5P_TIMER_IRQ(0)
 #define IRQ_TIMER1		S5P_TIMER_IRQ(1)
-- 
1.6.2.5

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

* Re: [PATCH] ARM: S5P: Change S5P_TIMER_IRQ based to 11 for SAMSUNG S5P series.
  2010-01-29  0:08 [PATCH] ARM: S5P: Change S5P_TIMER_IRQ based to 11 for SAMSUNG S5P series Kukjin Kim
@ 2010-01-29  0:41 ` Ben Dooks
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Dooks @ 2010-01-29  0:41 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: linux-samsung-soc, ben-linux, Atul Dahiya

On Fri, Jan 29, 2010 at 09:08:28AM +0900, Kukjin Kim wrote:
> From: Atul Dahiya <atul.dahiya@samsung.com>
> 
> Currently, S5P_TIMER_IRQ is based at the end of VICs. This patch changes
> the S5P_TIMER_IRQ base from end of VICs to 11 in ISA IRQ space.
> No of VICs varies between SOCs. This causes an exception on S5P6442.

It would have been nice to have included the extact warning it tripped,
to make the bug report clearer.

The main omission is that we no longer want to reserve the traditional
ISA space as done on previous architectures,so a note about the reuse
of this space would have been useful. I'll edit the commit message before
applying this.
 
> Signed-off-by: Atul Dahiya <atul.dahiya@samsung.com>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
>  arch/arm/plat-s5p/include/plat/irqs.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/plat-s5p/include/plat/irqs.h b/arch/arm/plat-s5p/include/plat/irqs.h
> index 878acfe..101038d 100644
> --- a/arch/arm/plat-s5p/include/plat/irqs.h
> +++ b/arch/arm/plat-s5p/include/plat/irqs.h
> @@ -74,7 +74,7 @@
>  #define S5P_IRQ_VIC0(x)		(S5P_VIC0_BASE + (x))
>  #define S5P_IRQ_VIC1(x)		(S5P_VIC1_BASE + (x))
>  
> -#define S5P_TIMER_IRQ(x)	S5P_IRQ(64 + (x))
> +#define S5P_TIMER_IRQ(x)	S5P_IRQ(11 + (x))
>  
>  #define IRQ_TIMER0		S5P_TIMER_IRQ(0)
>  #define IRQ_TIMER1		S5P_TIMER_IRQ(1)

-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

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

end of thread, other threads:[~2010-01-29  0:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-29  0:08 [PATCH] ARM: S5P: Change S5P_TIMER_IRQ based to 11 for SAMSUNG S5P series Kukjin Kim
2010-01-29  0:41 ` Ben Dooks

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.