irqs.h 2.5 KB
Newer Older
1
/* linux/arch/arm/plat-samsung/include/plat/irqs.h
K
Kukjin Kim 已提交
2 3 4 5 6 7 8 9 10 11 12
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
 *
 * S5P Common IRQ support
 *
 * 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.
*/

13 14
#ifndef __PLAT_SAMSUNG_IRQS_H
#define __PLAT_SAMSUNG_IRQS_H __FILE__
K
Kukjin Kim 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

/* we keep the first set of CPU IRQs out of the range of
 * the ISA space, so that the PC104 has them to itself
 * and we don't end up having to do horrible things to the
 * standard ISA drivers....
 *
 * note, since we're using the VICs, our start must be a
 * mulitple of 32 to allow the common code to work
 */

#define S5P_IRQ_OFFSET		(32)

#define S5P_IRQ(x)		((x) + S5P_IRQ_OFFSET)

#define S5P_VIC0_BASE		S5P_IRQ(0)
#define S5P_VIC1_BASE		S5P_IRQ(32)
K
Kukjin Kim 已提交
31
#define S5P_VIC2_BASE		S5P_IRQ(64)
K
Kukjin Kim 已提交
32
#define S5P_VIC3_BASE		S5P_IRQ(96)
K
Kukjin Kim 已提交
33

34 35
#define VIC_BASE(x)		(S5P_VIC0_BASE + ((x)*32))

K
Kukjin Kim 已提交
36 37
#define IRQ_VIC0_BASE		S5P_VIC0_BASE
#define IRQ_VIC1_BASE		S5P_VIC1_BASE
K
Kukjin Kim 已提交
38
#define IRQ_VIC2_BASE		S5P_VIC2_BASE
K
Kukjin Kim 已提交
39 40 41 42 43

/* VIC based IRQs */

#define S5P_IRQ_VIC0(x)		(S5P_VIC0_BASE + (x))
#define S5P_IRQ_VIC1(x)		(S5P_VIC1_BASE + (x))
K
Kukjin Kim 已提交
44
#define S5P_IRQ_VIC2(x)		(S5P_VIC2_BASE + (x))
K
Kukjin Kim 已提交
45
#define S5P_IRQ_VIC3(x)		(S5P_VIC3_BASE + (x))
K
Kukjin Kim 已提交
46

47
#define S5P_TIMER_IRQ(x)	(11 + (x))
K
Kukjin Kim 已提交
48 49 50 51 52 53 54

#define IRQ_TIMER0		S5P_TIMER_IRQ(0)
#define IRQ_TIMER1		S5P_TIMER_IRQ(1)
#define IRQ_TIMER2		S5P_TIMER_IRQ(2)
#define IRQ_TIMER3		S5P_TIMER_IRQ(3)
#define IRQ_TIMER4		S5P_TIMER_IRQ(4)

55 56 57 58 59 60 61
#define IRQ_EINT(x)		((x) < 16 ? ((x) + S5P_EINT_BASE1) \
					: ((x) - 16 + S5P_EINT_BASE2))

#define EINT_OFFSET(irq)	((irq) < S5P_EINT_BASE2 ? \
						((irq) - S5P_EINT_BASE1) : \
						((irq) + 16 - S5P_EINT_BASE2))

K
Kukjin Kim 已提交
62 63
#define IRQ_EINT_BIT(x)		EINT_OFFSET(x)

64 65 66 67 68 69 70 71 72
/* Typically only a few gpio chips require gpio interrupt support.
   To avoid memory waste irq descriptors are allocated only for
   S5P_GPIOINT_GROUP_COUNT chips, each with total number of
   S5P_GPIOINT_GROUP_SIZE pins/irqs. Each GPIOINT group can be assiged
   to any gpio chip with the s5p_register_gpio_interrupt() function */
#define S5P_GPIOINT_GROUP_COUNT 4
#define S5P_GPIOINT_GROUP_SIZE	8
#define S5P_GPIOINT_COUNT	(S5P_GPIOINT_GROUP_COUNT * S5P_GPIOINT_GROUP_SIZE)

73 74 75 76 77 78 79
/* IRQ types common for all s5p platforms */
#define S5P_IRQ_TYPE_LEVEL_LOW		(0x00)
#define S5P_IRQ_TYPE_LEVEL_HIGH		(0x01)
#define S5P_IRQ_TYPE_EDGE_FALLING	(0x02)
#define S5P_IRQ_TYPE_EDGE_RISING	(0x03)
#define S5P_IRQ_TYPE_EDGE_BOTH		(0x04)

80
#endif /* __PLAT_SAMSUNG_IRQS_H */