blob: 60329411a63620d8842f6f73c9a857399578bad0 [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 Lindgren95561752010-02-15 09:26:51 -080041
Tony Lindgren5d190c42010-12-09 15:49:23 -080042/*
43 * We use __glue to avoid errors with multiple definitions of
44 * .globl omap_irq_base as it's included from entry-armv.S but not
45 * from entry-common.S.
46 */
47#ifdef __glue
48 .pushsection .data
49 .globl omap_irq_base
50omap_irq_base:
51 .word 0
52 .popsection
53#endif
54
55 /*
56 * Configure the interrupt base on the first interrupt.
57 * See also omap_irq_base_init for setting omap_irq_base.
58 */
Tony Lindgren95561752010-02-15 09:26:51 -080059 .macro get_irqnr_preamble, base, tmp
Tony Lindgren95561752010-02-15 09:26:51 -080060 ldr \base, =omap_irq_base @ irq base address
61 ldr \base, [\base, #0] @ irq base value
Tony Lindgren95561752010-02-15 09:26:51 -080062 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -080063
64 /* Check the pending interrupts. Note that base already set */
65 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Tony Lindgren61a07c82010-02-15 09:27:25 -080066 tst \base, #0x100 @ gic address?
67 bne 4401f @ found gic
68
69 /* Handle omap2 and omap3 */
Tony Lindgrene735aa82010-02-15 09:27:25 -080070 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
71 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080072 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080073 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
74 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080075 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080076 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
77 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -0800789998:
Tony Lindgrene735aa82010-02-15 09:27:25 -080079 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
80 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Tony Lindgren61a07c82010-02-15 09:27:25 -080081 b 9999f
Tony Lindgrene735aa82010-02-15 09:27:25 -080082
Tony Lindgren61a07c82010-02-15 09:27:25 -080083 /* Handle omap4 */
844401: ldr \irqstat, [\base, #GIC_CPU_INTACK]
85 ldr \tmp, =1021
86 bic \irqnr, \irqstat, #0x1c00
87 cmp \irqnr, #29
88 cmpcc \irqnr, \irqnr
89 cmpne \irqnr, \tmp
90 cmpcs \irqnr, \irqnr
919999:
Tony Lindgrene735aa82010-02-15 09:27:25 -080092 .endm
93
94
95#else /* MULTI_OMAP2 */
96
97
98/*
99 * Optimized irq functions for omap2, 3 and 4
100 */
101
102#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren95561752010-02-15 09:26:51 -0800103 .macro get_irqnr_preamble, base, tmp
104#ifdef CONFIG_ARCH_OMAP2
105 ldr \base, =OMAP2_IRQ_BASE
106#else
107 ldr \base, =OMAP3_IRQ_BASE
108#endif
109 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -0800110
Tony Lindgren95561752010-02-15 09:26:51 -0800111 /* Check the pending interrupts. Note that base already set */
Russell Kinga09e64f2008-08-05 16:14:15 +0100112 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Russell Kinga09e64f2008-08-05 16:14:15 +0100113 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
114 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800115 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100116 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
117 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800118 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100119 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
120 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -08001219999:
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300122 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
Tony Lindgren52414732008-11-04 13:35:07 -0800123 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Russell Kinga09e64f2008-08-05 16:14:15 +0100124
125 .endm
Tony Lindgren95561752010-02-15 09:26:51 -0800126#endif
127
128
129#ifdef CONFIG_ARCH_OMAP4
130
Tony Lindgren95561752010-02-15 09:26:51 -0800131 .macro get_irqnr_preamble, base, tmp
Tony Lindgrenbe8f3172010-02-15 09:27:25 -0800132 ldr \base, =OMAP4_IRQ_BASE
Tony Lindgren95561752010-02-15 09:26:51 -0800133 .endm
134
Santosh Shilimkar44169072009-05-28 14:16:04 -0700135 /*
136 * The interrupt numbering scheme is defined in the
137 * interrupt controller spec. To wit:
138 *
139 * Interrupts 0-15 are IPI
140 * 16-28 are reserved
141 * 29-31 are local. We allow 30 to be used for the watchdog.
142 * 32-1020 are global
143 * 1021-1022 are reserved
144 * 1023 is "spurious" (no interrupt)
145 *
146 * For now, we ignore all local interrupts so only return an
147 * interrupt if it's between 30 and 1020. The test_for_ipi
148 * routine below will pick up on IPIs.
149 * A simple read from the controller will tell us the number
150 * of the highest priority enabled interrupt.
151 * We then just need to check whether it is in the
152 * valid range for an IRQ (30-1020 inclusive).
153 */
154 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Santosh Shilimkar44169072009-05-28 14:16:04 -0700155 ldr \irqstat, [\base, #GIC_CPU_INTACK]
156
157 ldr \tmp, =1021
158
159 bic \irqnr, \irqstat, #0x1c00
160
161 cmp \irqnr, #29
162 cmpcc \irqnr, \irqnr
163 cmpne \irqnr, \tmp
164 cmpcs \irqnr, \irqnr
165 .endm
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300166#endif
167#endif /* MULTI_OMAP2 */
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530168
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300169#ifdef CONFIG_SMP
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530170 /* We assume that irqstat (the raw value of the IRQ acknowledge
171 * register) is preserved from the macro above.
172 * If there is an IPI, we immediately signal end of interrupt
173 * on the controller, since this requires the original irqstat
174 * value which we won't easily be able to recreate later.
175 */
176
177 .macro test_for_ipi, irqnr, irqstat, base, tmp
178 bic \irqnr, \irqstat, #0x1c00
179 cmp \irqnr, #16
180 it cc
181 strcc \irqstat, [\base, #GIC_CPU_EOI]
182 it cs
183 cmpcs \irqnr, \irqnr
184 .endm
185
186 /* As above, this assumes that irqstat and base are preserved */
187
188 .macro test_for_ltirq, irqnr, irqstat, base, tmp
189 bic \irqnr, \irqstat, #0x1c00
190 mov \tmp, #0
191 cmp \irqnr, #29
192 itt eq
193 moveq \tmp, #1
194 streq \irqstat, [\base, #GIC_CPU_EOI]
195 cmp \tmp, #0
196 .endm
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300197#endif /* CONFIG_SMP */
Russell Kinga09e64f2008-08-05 16:14:15 +0100198
199 .macro irq_prio_table
200 .endm