blob: 4fd6b1bdcb2bff0b3968e52d20c8814c6d66a18a [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
22 .macro disable_fiq
23 .endm
24
Russell Kinga09e64f2008-08-05 16:14:15 +010025 .macro arch_ret_to_user, tmp1, tmp2
26 .endm
27
Tony Lindgren95561752010-02-15 09:26:51 -080028#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
29
30#define OMAP2_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE)
31#define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE)
32#define INTCPS_SIR_IRQ_OFFSET 0x0040 /* Active interrupt offset */
33#define ACTIVEIRQ_MASK 0x7f /* Active interrupt bits */
34
35 .pushsection .data
36omap_irq_base: .word 0
37 .popsection
38
39#if defined(CONFIG_ARCH_OMAP2) && defined(CONFIG_ARCH_OMAP3)
40 /* Configure the interrupt base on the first interrupt */
41 .macro get_irqnr_preamble, base, tmp
429:
43 ldr \base, =omap_irq_base @ irq base address
44 ldr \base, [\base, #0] @ irq base value
45 cmp \base, #0 @ already configured?
46 bne 9998f @ nothing to do
47
48 mrc p15, 0, \tmp, c0, c0, 0 @ get processor revision
49 and \tmp, \tmp, #0x000f0000 @ only check architecture
50 cmp \tmp, #0x00060000 @ is v6?
51 beq 2400f @ found v6 so it's omap24xx
52 cmp \tmp, #0x000f0000 @ is cortex?
53 beq 3400f @ found v7 so it's omap34xx
542400: ldr \base, =OMAP2_IRQ_BASE
55 ldr \tmp, =omap_irq_base
56 str \base, [\tmp, #0]
57 b 9b
583400: ldr \base, =OMAP3_IRQ_BASE
59 ldr \tmp, =omap_irq_base
60 str \base, [\tmp, #0]
61 b 9b
629998:
63 .endm
64#else
65 .macro get_irqnr_preamble, base, tmp
66#ifdef CONFIG_ARCH_OMAP2
67 ldr \base, =OMAP2_IRQ_BASE
68#else
69 ldr \base, =OMAP3_IRQ_BASE
70#endif
71 .endm
72#endif
73 /* Check the pending interrupts. Note that base already set */
Russell Kinga09e64f2008-08-05 16:14:15 +010074 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
Russell Kinga09e64f2008-08-05 16:14:15 +010075 ldr \irqnr, [\base, #0x98] /* IRQ pending reg 1 */
76 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -080077 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +010078 ldr \irqnr, [\base, #0xb8] /* IRQ pending reg 2 */
79 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -080080 bne 9999f
Russell Kinga09e64f2008-08-05 16:14:15 +010081 ldr \irqnr, [\base, #0xd8] /* IRQ pending reg 3 */
82 cmp \irqnr, #0x0
Tony Lindgren95561752010-02-15 09:26:51 -0800839999:
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030084 ldrne \irqnr, [\base, #INTCPS_SIR_IRQ_OFFSET]
Tony Lindgren52414732008-11-04 13:35:07 -080085 and \irqnr, \irqnr, #ACTIVEIRQ_MASK /* Clear spurious bits */
Russell Kinga09e64f2008-08-05 16:14:15 +010086
87 .endm
Tony Lindgren95561752010-02-15 09:26:51 -080088#endif
89
90
91#ifdef CONFIG_ARCH_OMAP4
92
Santosh Shilimkar233fd642009-10-19 15:25:31 -070093#define OMAP44XX_VA_GIC_CPU_BASE OMAP2_L4_IO_ADDRESS(OMAP44XX_GIC_CPU_BASE)
Tony Lindgrene4e7a132009-10-19 15:25:26 -070094
Tony Lindgren95561752010-02-15 09:26:51 -080095 .macro get_irqnr_preamble, base, tmp
96 .endm
97
Santosh Shilimkar44169072009-05-28 14:16:04 -070098 /*
99 * The interrupt numbering scheme is defined in the
100 * interrupt controller spec. To wit:
101 *
102 * Interrupts 0-15 are IPI
103 * 16-28 are reserved
104 * 29-31 are local. We allow 30 to be used for the watchdog.
105 * 32-1020 are global
106 * 1021-1022 are reserved
107 * 1023 is "spurious" (no interrupt)
108 *
109 * For now, we ignore all local interrupts so only return an
110 * interrupt if it's between 30 and 1020. The test_for_ipi
111 * routine below will pick up on IPIs.
112 * A simple read from the controller will tell us the number
113 * of the highest priority enabled interrupt.
114 * We then just need to check whether it is in the
115 * valid range for an IRQ (30-1020 inclusive).
116 */
117 .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
118 ldr \base, =OMAP44XX_VA_GIC_CPU_BASE
119 ldr \irqstat, [\base, #GIC_CPU_INTACK]
120
121 ldr \tmp, =1021
122
123 bic \irqnr, \irqstat, #0x1c00
124
125 cmp \irqnr, #29
126 cmpcc \irqnr, \irqnr
127 cmpne \irqnr, \tmp
128 cmpcs \irqnr, \irqnr
129 .endm
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530130
131 /* We assume that irqstat (the raw value of the IRQ acknowledge
132 * register) is preserved from the macro above.
133 * If there is an IPI, we immediately signal end of interrupt
134 * on the controller, since this requires the original irqstat
135 * value which we won't easily be able to recreate later.
136 */
137
138 .macro test_for_ipi, irqnr, irqstat, base, tmp
139 bic \irqnr, \irqstat, #0x1c00
140 cmp \irqnr, #16
141 it cc
142 strcc \irqstat, [\base, #GIC_CPU_EOI]
143 it cs
144 cmpcs \irqnr, \irqnr
145 .endm
146
147 /* As above, this assumes that irqstat and base are preserved */
148
149 .macro test_for_ltirq, irqnr, irqstat, base, tmp
150 bic \irqnr, \irqstat, #0x1c00
151 mov \tmp, #0
152 cmp \irqnr, #29
153 itt eq
154 moveq \tmp, #1
155 streq \irqstat, [\base, #GIC_CPU_EOI]
156 cmp \tmp, #0
157 .endm
Santosh Shilimkar44169072009-05-28 14:16:04 -0700158#endif
Russell Kinga09e64f2008-08-05 16:14:15 +0100159
160 .macro irq_prio_table
161 .endm