blob: 2e358df3fe19e3ca9dd169f74f1bae287cc4bef7 [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 .pushsection .data
42omap_irq_base: .word 0
43 .popsection
44
Tony Lindgren95561752010-02-15 09:26:51 -080045 /* Configure the interrupt base on the first interrupt */
46 .macro get_irqnr_preamble, base, tmp
479:
48 ldr \base, =omap_irq_base @ irq base address
49 ldr \base, [\base, #0] @ irq base value
50 cmp \base, #0 @ already configured?
Tony Lindgren61a07c82010-02-15 09:27:25 -080051 bne 9997f @ nothing to do
Tony Lindgren95561752010-02-15 09:26:51 -080052
53 mrc p15, 0, \tmp, c0, c0, 0 @ get processor revision
54 and \tmp, \tmp, #0x000f0000 @ only check architecture
Tony Lindgren67d24822010-04-21 15:27:25 -070055 cmp \tmp, #0x00070000 @ is v6?
Tony Lindgren95561752010-02-15 09:26:51 -080056 beq 2400f @ found v6 so it's omap24xx
Tony Lindgren61a07c82010-02-15 09:27:25 -080057 mrc p15, 0, \tmp, c0, c0, 0 @ get processor revision
58 and \tmp, \tmp, #0x000000f0 @ check cortex 8 or 9
59 cmp \tmp, #0x00000080 @ cortex A-8?
60 beq 3400f @ found A-8 so it's omap34xx
61 cmp \tmp, #0x00000090 @ cortex A-9?
62 beq 4400f @ found A-9 so it's omap44xx
Tony Lindgren95561752010-02-15 09:26:51 -0800632400: ldr \base, =OMAP2_IRQ_BASE
64 ldr \tmp, =omap_irq_base
65 str \base, [\tmp, #0]
66 b 9b
673400: ldr \base, =OMAP3_IRQ_BASE
68 ldr \tmp, =omap_irq_base
69 str \base, [\tmp, #0]
70 b 9b
Tony Lindgren61a07c82010-02-15 09:27:25 -0800714400: ldr \base, =OMAP4_IRQ_BASE
72 ldr \tmp, =omap_irq_base
73 str \base, [\tmp, #0]
74 b 9b
759997:
Tony Lindgren95561752010-02-15 09:26:51 -080076 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -080077
78 /* Check the pending interrupts. Note that base already set */
79 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Tony Lindgren61a07c82010-02-15 09:27:25 -080080 tst \base, #0x100 @ gic address?
81 bne 4401f @ found gic
82
83 /* Handle omap2 and omap3 */
Tony Lindgrene735aa82010-02-15 09:27:25 -080084 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
85 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080086 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080087 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
88 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -080089 bne 9998f
Tony Lindgrene735aa82010-02-15 09:27:25 -080090 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
91 cmp \irqnr, #0x0
Tony Lindgren61a07c82010-02-15 09:27:25 -0800929998:
Tony Lindgrene735aa82010-02-15 09:27:25 -080093 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
94 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Tony Lindgren61a07c82010-02-15 09:27:25 -080095 b 9999f
Tony Lindgrene735aa82010-02-15 09:27:25 -080096
Tony Lindgren61a07c82010-02-15 09:27:25 -080097 /* Handle omap4 */
984401: ldr \irqstat, [\base, #GIC_CPU_INTACK]
99 ldr \tmp, =1021
100 bic \irqnr, \irqstat, #0x1c00
101 cmp \irqnr, #29
102 cmpcc \irqnr, \irqnr
103 cmpne \irqnr, \tmp
104 cmpcs \irqnr, \irqnr
1059999:
Tony Lindgrene735aa82010-02-15 09:27:25 -0800106 .endm
107
Magnus Damme745a662010-11-16 01:07:19 +0100108#ifdef CONFIG_SMP
109 /* We assume that irqstat (the raw value of the IRQ acknowledge
110 * register) is preserved from the macro above.
111 * If there is an IPI, we immediately signal end of interrupt
112 * on the controller, since this requires the original irqstat
113 * value which we won't easily be able to recreate later.
114 */
115
116 .macro test_for_ipi, irqnr, irqstat, base, tmp
117 bic \irqnr, \irqstat, #0x1c00
118 cmp \irqnr, #16
119 it cc
120 strcc \irqstat, [\base, #GIC_CPU_EOI]
121 it cs
122 cmpcs \irqnr, \irqnr
123 .endm
124
125 /* As above, this assumes that irqstat and base are preserved */
126
127 .macro test_for_ltirq, irqnr, irqstat, base, tmp
128 bic \irqnr, \irqstat, #0x1c00
129 mov \tmp, #0
130 cmp \irqnr, #29
131 itt eq
132 moveq \tmp, #1
133 streq \irqstat, [\base, #GIC_CPU_EOI]
134 cmp \tmp, #0
135 .endm
136#endif /* CONFIG_SMP */
Tony Lindgrene735aa82010-02-15 09:27:25 -0800137
138#else /* MULTI_OMAP2 */
139
140
141/*
142 * Optimized irq functions for omap2, 3 and 4
143 */
144
145#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren95561752010-02-15 09:26:51 -0800146 .macro get_irqnr_preamble, base, tmp
147#ifdef CONFIG_ARCH_OMAP2
148 ldr \base, =OMAP2_IRQ_BASE
149#else
150 ldr \base, =OMAP3_IRQ_BASE
151#endif
152 .endm
Tony Lindgrene735aa82010-02-15 09:27:25 -0800153
Tony Lindgren95561752010-02-15 09:26:51 -0800154 /* Check the pending interrupts. Note that base already set */
Russell Kinga09e64f2008-08-05 16:14:15 +0100155 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Russell Kinga09e64f2008-08-05 16:14:15 +0100156 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
157 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800158 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100159 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
160 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800161 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +0100162 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
163 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -08001649999:
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300165 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
Tony Lindgren52414732008-11-04 13:35:07 -0800166 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Russell Kinga09e64f2008-08-05 16:14:15 +0100167
168 .endm
Tony Lindgren95561752010-02-15 09:26:51 -0800169#endif
170
171
172#ifdef CONFIG_ARCH_OMAP4
Magnus Damme745a662010-11-16 01:07:19 +0100173#include <asm/hardware/entry-macro-gic.S>
Tony Lindgren95561752010-02-15 09:26:51 -0800174
Tony Lindgren95561752010-02-15 09:26:51 -0800175 .macro get_irqnr_preamble, base, tmp
Tony Lindgrenbe8f3172010-02-15 09:27:25 -0800176 ldr \base, =OMAP4_IRQ_BASE
Tony Lindgren95561752010-02-15 09:26:51 -0800177 .endm
178
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300179#endif
Magnus Damme745a662010-11-16 01:07:19 +0100180
Tony Lindgrenc45bd372010-08-16 09:21:20 +0300181#endif /* MULTI_OMAP2 */
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530182
Russell Kinga09e64f2008-08-05 16:14:15 +0100183 .macro irq_prio_table
184 .endm