irqs.h 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *  Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
 */

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __ASM_ARCH_MXC_IRQS_H__
#define __ASM_ARCH_MXC_IRQS_H__

14 15
#include <asm-generic/gpio.h>

16
/*
17 18 19 20 21
 * SoCs with GIC interrupt controller have 160 IRQs, those with TZIC
 * have 128 IRQs, and those with AVIC have 64.
 *
 * To support single image, the biggest number should be defined on
 * top of the list.
22
 */
23 24 25
#if defined CONFIG_ARM_GIC
#define MXC_INTERNAL_IRQS	160
#elif defined CONFIG_MXC_TZIC
26 27
#define MXC_INTERNAL_IRQS	128
#else
28
#define MXC_INTERNAL_IRQS	64
29
#endif
30 31 32 33 34 35 36 37 38

#define MXC_GPIO_IRQ_START	MXC_INTERNAL_IRQS

/*
 * The next 16 interrupts are for board specific purposes.  Since
 * the kernel can only run on one machine at a time, we can re-use
 * these.  If you need more, increase MXC_BOARD_IRQS, but keep it
 * within sensible limits.
 */
39
#define MXC_BOARD_IRQ_START	(MXC_INTERNAL_IRQS + ARCH_NR_GPIOS)
40 41 42 43

#ifdef CONFIG_MACH_MX31ADS_WM1133_EV1
#define MXC_BOARD_IRQS  80
#else
44
#define MXC_BOARD_IRQS	16
45
#endif
46

47 48 49 50 51 52 53
#define MXC_IPU_IRQ_START	(MXC_BOARD_IRQ_START + MXC_BOARD_IRQS)

#ifdef CONFIG_MX3_IPU_IRQS
#define MX3_IPU_IRQS CONFIG_MX3_IPU_IRQS
#else
#define MX3_IPU_IRQS 0
#endif
54
/* REVISIT: Add IPU irqs on IMX51 */
55 56

#define NR_IRQS			(MXC_IPU_IRQ_START + MX3_IPU_IRQS)
57

D
Darius Augulis 已提交
58
extern int imx_irq_set_priority(unsigned char irq, unsigned char prio);
59

P
Paulius Zaleckas 已提交
60 61
/* all normal IRQs can be FIQs */
#define FIQ_START	0
62
/* switch between IRQ and FIQ */
P
Paulius Zaleckas 已提交
63 64
extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type);

65
#endif /* __ASM_ARCH_MXC_IRQS_H__ */