blob: 81985a665cb3ee420357bb53ea19b7268e9ab3ca [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * arch/arm/plat-omap/include/mach/entry-macro.S
3 *
4 * Low-level IRQ helper macros for OMAP-based platforms
5 *
Santosh Shilimkar44169072009-05-28 14:16:04 -07006 * Copyright (C) 2009 Texas Instruments
7 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
8 *
Russell Kinga09e64f2008-08-05 16:14:15 +01009 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13#include <mach/hardware.h>
14#include <mach/io.h>
15#include <mach/irqs.h>
Santosh Shilimkar44169072009-05-28 14:16:04 -070016#include <asm/hardware/gic.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010017
Tony Lindgrence491cf2009-10-20 09:40:47 -070018#include <plat/omap24xx.h>
19#include <plat/omap34xx.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070020#include <plat/omap44xx.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021
Tony Lindgrene735aa82010-02-15 09:27:25 -080022#include <plat/multi.h>
23
Tony Lindgren95d2b4e2010-02-15 09:27:24 -080024#define OMAP2_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE)
25#define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE)
26#define OMAP4_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP44XX_GIC_CPU_BASE)
27#define INTCPS_SIR_IRQ_OFFSET 0x0040 /* omap2/3 active interrupt offset */
28#define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */
29
Russell Kinga09e64f2008-08-05 16:14:15 +010030 .macro disable_fiq
31 .endm
32
Russell Kinga09e64f2008-08-05 16:14:15 +010033 .macro arch_ret_to_user, tmp1, tmp2
34 .endm
35
Tony Lindgrene735aa82010-02-15 09:27:25 -080036/*
37 * Unoptimized irq functions for multi-omap2, 3 and 4
38 */
Tony Lindgren95561752010-02-15 09:26:51 -080039
Tony Lindgrene735aa82010-02-15 09:27:25 -080040#ifdef MULTI_OMAP2
Tony Lindgren5d190c42010-12-09 15:49:23 -080041 /*
42 * Configure the interrupt base on the first interrupt.
43 * See also omap_irq_base_init for setting omap_irq_base.
44 */
Tony Lindgren95561752010-02-15 09:26:51 -080045 .macro get_irqnr_preamble, base, tmp
Tony Lindgren95561752010-02-15 09:26:51 -080046 ldr \base, =omap_irq_base @ irq base address
47 ldr \base, [\base, #0] @ irq base value
Tony Lindgren95561752010-02-15 09:26:51 -080048 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -080049
50 /* Check the pending interrupts. Note that base already set */
51 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Tony Lindgren61a07c82010-02-15 09:27:25 -080052 tst \base, #0x100 @ gic address?
53 bne 4401f @ found gic
54
55 /* Handle omap2 and omap3 */
Tony Lindgrene735aa82010-02-15 09:27:25 -080056 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
57 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080058 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080059 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
60 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080061 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080062 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
63 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -0800649998:
Tony Lindgrene735aa82010-02-15 09:27:25 -080065 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
66 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Tony Lindgren61a07c82010-02-15 09:27:25 -080067 b 9999f
Tony Lindgrene735aa82010-02-15 09:27:25 -080068
Tony Lindgren61a07c82010-02-15 09:27:25 -080069 /* Handle omap4 */
704401: ldr \irqstat, [\base, #GIC_CPU_INTACK]
71 ldr \tmp, =1021
72 bic \irqnr, \irqstat, #0x1c00
73 cmp \irqnr, #29
74 cmpcc \irqnr, \irqnr
75 cmpne \irqnr, \tmp
76 cmpcs \irqnr, \irqnr
779999:
Tony Lindgrene735aa82010-02-15 09:27:25 -080078 .endm
79
Magnus Damme745a662010-11-16 01:07:19 +010080#ifdef CONFIG_SMP
81 /* We assume that irqstat (the raw value of the IRQ acknowledge
82 * register) is preserved from the macro above.
83 * If there is an IPI, we immediately signal end of interrupt
84 * on the controller, since this requires the original irqstat
85 * value which we won't easily be able to recreate later.
86 */
87
88 .macro test_for_ipi, irqnr, irqstat, base, tmp
89 bic \irqnr, \irqstat, #0x1c00
90 cmp \irqnr, #16
91 it cc
92 strcc \irqstat, [\base, #GIC_CPU_EOI]
93 it cs
94 cmpcs \irqnr, \irqnr
95 .endm
96
97 /* As above, this assumes that irqstat and base are preserved */
98
99 .macro test_for_ltirq, irqnr, irqstat, base, tmp
100 bic \irqnr, \irqstat, #0x1c00
101 mov \tmp, #0
102 cmp \irqnr, #29
103 itt eq
104 moveq \tmp, #1
105 streq \irqstat, [\base, #GIC_CPU_EOI]
106 cmp \tmp, #0
107 .endm
108#endif /* CONFIG_SMP */
Tony Lindgrene735aa82010-02-15 09:27:25 -0800109
110#else /* MULTI_OMAP2 */
111
112
113/*
114 * Optimized irq functions for omap2, 3 and 4
115 */
116
117#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren95561752010-02-15 09:26:51 -0800118 .macro get_irqnr_preamble, base, tmp
119#ifdef CONFIG_ARCH_OMAP2
120 ldr \base, =OMAP2_IRQ_BASE
121#else
122 ldr \base, =OMAP3_IRQ_BASE
123#endif
124 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -0800125
Tony Lindgren95561752010-02-15 09:26:51 -0800126 /* Check the pending interrupts. Note that base already set */
Russell Kinga09e64f2008-08-05 16:14:15 +0100127 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Russell Kinga09e64f2008-08-05 16:14:15 +0100128 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
129 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800130 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100131 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
132 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800133 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100134 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
135 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -08001369999:
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300137 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
Tony Lindgren52414732008-11-04 13:35:07 -0800138 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Russell Kinga09e64f2008-08-05 16:14:15 +0100139
140 .endm
Tony Lindgren95561752010-02-15 09:26:51 -0800141#endif
142
143
144#ifdef CONFIG_ARCH_OMAP4
Russell King7627dc82010-12-05 08:51:38 +0000145#define HAVE_GET_IRQNR_PREAMBLE
Magnus Damme745a662010-11-16 01:07:19 +0100146#include <asm/hardware/entry-macro-gic.S>
Tony Lindgren95561752010-02-15 09:26:51 -0800147
Tony Lindgren95561752010-02-15 09:26:51 -0800148 .macro get_irqnr_preamble, base, tmp
Tony Lindgrenbe8f3172010-02-15 09:27:25 -0800149 ldr \base, =OMAP4_IRQ_BASE
Tony Lindgren95561752010-02-15 09:26:51 -0800150 .endm
151
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300152#endif
Magnus Damme745a662010-11-16 01:07:19 +0100153
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300154#endif /* MULTI_OMAP2 */
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530155
Russell Kinga09e64f2008-08-05 16:14:15 +0100156 .macro irq_prio_table
157 .endm