• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * arch/arm/mach-lpc32xx/include/mach/entry-macro.S
3 *
4 * Author: Kevin Wells <kevin.wells@nxp.com>
5 *
6 * Copyright (C) 2010 NXP Semiconductors
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 */
18
19#include <mach/hardware.h>
20#include <mach/platform.h>
21
22#define LPC32XX_INTC_MASKED_STATUS_OFS	0x8
23
24	.macro  get_irqnr_preamble, base, tmp
25	ldr	\base, =IO_ADDRESS(LPC32XX_MIC_BASE)
26	.endm
27
28/*
29 * Return IRQ number in irqnr. Also return processor Z flag status in CPSR
30 * as set if an interrupt is pending.
31 */
32	.macro	get_irqnr_and_base, irqnr, irqstat, base, tmp
33	ldr	\irqstat, [\base, #LPC32XX_INTC_MASKED_STATUS_OFS]
34	clz	\irqnr, \irqstat
35	rsb	\irqnr, \irqnr, #31
36	teq	\irqstat, #0
37	.endm
38