2 * TI Common Platform Interrupt Controller (cp_intc) driver
4 * Author: Steve Chen <schen@mvista.com>
5 * Copyright (C) 2008-2009, MontaVista Software, Inc. <source@mvista.com>
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2. This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
12 #include <linux/init.h>
13 #include <linux/sched.h>
14 #include <linux/interrupt.h>
15 #include <linux/kernel.h>
16 #include <linux/irq.h>
19 #include <mach/cp_intc.h>
21 static void __iomem
*cp_intc_base
;
23 static inline unsigned int cp_intc_read(unsigned offset
)
25 return __raw_readl(cp_intc_base
+ offset
);
28 static inline void cp_intc_write(unsigned long value
, unsigned offset
)
30 __raw_writel(value
, cp_intc_base
+ offset
);
33 static void cp_intc_ack_irq(unsigned int irq
)
35 cp_intc_write(irq
, CP_INTC_SYS_STAT_IDX_CLR
);
38 /* Disable interrupt */
39 static void cp_intc_mask_irq(unsigned int irq
)
41 /* XXX don't know why we need to disable nIRQ here... */
42 cp_intc_write(1, CP_INTC_HOST_ENABLE_IDX_CLR
);
43 cp_intc_write(irq
, CP_INTC_SYS_ENABLE_IDX_CLR
);
44 cp_intc_write(1, CP_INTC_HOST_ENABLE_IDX_SET
);
47 /* Enable interrupt */
48 static void cp_intc_unmask_irq(unsigned int irq
)
50 cp_intc_write(irq
, CP_INTC_SYS_ENABLE_IDX_SET
);
53 static int cp_intc_set_irq_type(unsigned int irq
, unsigned int flow_type
)
55 unsigned reg
= BIT_WORD(irq
);
56 unsigned mask
= BIT_MASK(irq
);
57 unsigned polarity
= cp_intc_read(CP_INTC_SYS_POLARITY(reg
));
58 unsigned type
= cp_intc_read(CP_INTC_SYS_TYPE(reg
));
61 case IRQ_TYPE_EDGE_RISING
:
65 case IRQ_TYPE_EDGE_FALLING
:
69 case IRQ_TYPE_LEVEL_HIGH
:
73 case IRQ_TYPE_LEVEL_LOW
:
81 cp_intc_write(polarity
, CP_INTC_SYS_POLARITY(reg
));
82 cp_intc_write(type
, CP_INTC_SYS_TYPE(reg
));
87 static struct irq_chip cp_intc_irq_chip
= {
89 .ack
= cp_intc_ack_irq
,
90 .mask
= cp_intc_mask_irq
,
91 .unmask
= cp_intc_unmask_irq
,
92 .set_type
= cp_intc_set_irq_type
,
95 void __init
cp_intc_init(void __iomem
*base
, unsigned short num_irq
,
98 unsigned num_reg
= BITS_TO_LONGS(num_irq
);
103 cp_intc_write(0, CP_INTC_GLOBAL_ENABLE
);
105 /* Disable all host interrupts */
106 cp_intc_write(0, CP_INTC_HOST_ENABLE(0));
108 /* Disable system interrupts */
109 for (i
= 0; i
< num_reg
; i
++)
110 cp_intc_write(~0, CP_INTC_SYS_ENABLE_CLR(i
));
112 /* Set to normal mode, no nesting, no priority hold */
113 cp_intc_write(0, CP_INTC_CTRL
);
114 cp_intc_write(0, CP_INTC_HOST_CTRL
);
116 /* Clear system interrupt status */
117 for (i
= 0; i
< num_reg
; i
++)
118 cp_intc_write(~0, CP_INTC_SYS_STAT_CLR(i
));
120 /* Enable nIRQ (what about nFIQ?) */
121 cp_intc_write(1, CP_INTC_HOST_ENABLE_IDX_SET
);
124 * Priority is determined by host channel: lower channel number has
125 * higher priority i.e. channel 0 has highest priority and channel 31
126 * had the lowest priority.
128 num_reg
= (num_irq
+ 3) >> 2; /* 4 channels per register */
133 for (k
= i
= 0; i
< num_reg
; i
++) {
134 for (val
= j
= 0; j
< 4; j
++, k
++) {
137 val
|= irq_prio
[k
] << 24;
140 cp_intc_write(val
, CP_INTC_CHAN_MAP(i
));
144 * Default everything to channel 15 if priority not specified.
145 * Note that channel 0-1 are mapped to nFIQ and channels 2-31
146 * are mapped to nIRQ.
148 for (i
= 0; i
< num_reg
; i
++)
149 cp_intc_write(0x0f0f0f0f, CP_INTC_CHAN_MAP(i
));
152 /* Set up genirq dispatching for cp_intc */
153 for (i
= 0; i
< num_irq
; i
++) {
154 set_irq_chip(i
, &cp_intc_irq_chip
);
155 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
156 set_irq_handler(i
, handle_edge_irq
);
159 /* Enable global interrupt */
160 cp_intc_write(1, CP_INTC_GLOBAL_ENABLE
);