irqs.h 2.0 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
 * SoCs with TZIC interrupt controller have 128 IRQs, those with AVIC have 64
16
 */
17 18 19
#ifdef CONFIG_MXC_TZIC
#define MXC_INTERNAL_IRQS	128
#else
20
#define MXC_INTERNAL_IRQS	64
21
#endif
22 23 24

#define MXC_GPIO_IRQ_START	MXC_INTERNAL_IRQS

25
/* these are ordered by size to support multi-SoC kernels */
R
Richard Zhao 已提交
26
#if defined CONFIG_SOC_IMX53
Y
Yong Shen 已提交
27 28
#define MXC_GPIO_IRQS		(32 * 7)
#elif defined CONFIG_ARCH_MX2
29
#define MXC_GPIO_IRQS		(32 * 6)
R
Richard Zhao 已提交
30
#elif defined CONFIG_SOC_IMX50
31
#define MXC_GPIO_IRQS		(32 * 6)
32 33
#elif defined CONFIG_ARCH_MX1
#define MXC_GPIO_IRQS		(32 * 4)
S
Sascha Hauer 已提交
34 35
#elif defined CONFIG_ARCH_MX25
#define MXC_GPIO_IRQS		(32 * 4)
R
Richard Zhao 已提交
36
#elif defined CONFIG_SOC_IMX51
37
#define MXC_GPIO_IRQS		(32 * 4)
38 39
#elif defined CONFIG_ARCH_MX3
#define MXC_GPIO_IRQS		(32 * 3)
40 41 42 43 44 45 46 47 48
#endif

/*
 * 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.
 */
#define MXC_BOARD_IRQ_START	(MXC_INTERNAL_IRQS + MXC_GPIO_IRQS)
49 50 51 52

#ifdef CONFIG_MACH_MX31ADS_WM1133_EV1
#define MXC_BOARD_IRQS  80
#else
53
#define MXC_BOARD_IRQS	16
54
#endif
55

56 57 58 59 60 61 62
#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
63
/* REVISIT: Add IPU irqs on IMX51 */
64 65

#define NR_IRQS			(MXC_IPU_IRQ_START + MX3_IPU_IRQS)
66

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

P
Paulius Zaleckas 已提交
69 70
/* all normal IRQs can be FIQs */
#define FIQ_START	0
71
/* switch between IRQ and FIQ */
P
Paulius Zaleckas 已提交
72 73
extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type);

74
#endif /* __ASM_ARCH_MXC_IRQS_H__ */