1 /* Copyright (c) 2008-2009, Code Aurora Forum. All rights reserved.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 #include <linux/irq.h>
21 #include <linux/interrupt.h>
24 static unsigned int int_enable
;
25 static unsigned int wake_enable
;
27 static struct sirc_regs_t sirc_regs
= {
28 .int_enable
= SPSS_SIRC_INT_ENABLE
,
29 .int_enable_clear
= SPSS_SIRC_INT_ENABLE_CLEAR
,
30 .int_enable_set
= SPSS_SIRC_INT_ENABLE_SET
,
31 .int_type
= SPSS_SIRC_INT_TYPE
,
32 .int_polarity
= SPSS_SIRC_INT_POLARITY
,
33 .int_clear
= SPSS_SIRC_INT_CLEAR
,
36 static struct sirc_cascade_regs sirc_reg_table
[] = {
38 .int_status
= SPSS_SIRC_IRQ_STATUS
,
39 .cascade_irq
= INT_SIRC_0
,
43 /* Mask off the given interrupt. Keep the int_enable mask in sync with
44 the enable reg, so it can be restored after power collapse. */
45 static void sirc_irq_mask(struct irq_data
*d
)
49 mask
= 1 << (d
->irq
- FIRST_SIRC_IRQ
);
50 writel(mask
, sirc_regs
.int_enable_clear
);
55 /* Unmask the given interrupt. Keep the int_enable mask in sync with
56 the enable reg, so it can be restored after power collapse. */
57 static void sirc_irq_unmask(struct irq_data
*d
)
61 mask
= 1 << (d
->irq
- FIRST_SIRC_IRQ
);
62 writel(mask
, sirc_regs
.int_enable_set
);
67 static void sirc_irq_ack(struct irq_data
*d
)
71 mask
= 1 << (d
->irq
- FIRST_SIRC_IRQ
);
72 writel(mask
, sirc_regs
.int_clear
);
76 static int sirc_irq_set_wake(struct irq_data
*d
, unsigned int on
)
80 /* Used to set the interrupt enable mask during power collapse. */
81 mask
= 1 << (d
->irq
- FIRST_SIRC_IRQ
);
90 static int sirc_irq_set_type(struct irq_data
*d
, unsigned int flow_type
)
95 mask
= 1 << (d
->irq
- FIRST_SIRC_IRQ
);
96 val
= readl(sirc_regs
.int_polarity
);
98 if (flow_type
& (IRQF_TRIGGER_LOW
| IRQF_TRIGGER_FALLING
))
103 writel(val
, sirc_regs
.int_polarity
);
105 val
= readl(sirc_regs
.int_type
);
106 if (flow_type
& (IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
)) {
108 __irq_set_handler_locked(d
->irq
, handle_edge_irq
);
111 __irq_set_handler_locked(d
->irq
, handle_level_irq
);
114 writel(val
, sirc_regs
.int_type
);
119 /* Finds the pending interrupt on the passed cascade irq and redrives it */
120 static void sirc_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
122 unsigned int reg
= 0;
126 while ((reg
< ARRAY_SIZE(sirc_reg_table
)) &&
127 (sirc_reg_table
[reg
].cascade_irq
!= irq
))
130 status
= readl(sirc_reg_table
[reg
].int_status
);
136 (sirq
< NR_SIRC_IRQS
) && ((status
& (1U << sirq
)) == 0);
139 generic_handle_irq(sirq
+FIRST_SIRC_IRQ
);
141 desc
->irq_data
.chip
->irq_ack(&desc
->irq_data
);
144 static struct irq_chip sirc_irq_chip
= {
146 .irq_ack
= sirc_irq_ack
,
147 .irq_mask
= sirc_irq_mask
,
148 .irq_unmask
= sirc_irq_unmask
,
149 .irq_set_wake
= sirc_irq_set_wake
,
150 .irq_set_type
= sirc_irq_set_type
,
153 void __init
msm_init_sirc(void)
160 for (i
= FIRST_SIRC_IRQ
; i
< LAST_SIRC_IRQ
; i
++) {
161 irq_set_chip_and_handler(i
, &sirc_irq_chip
, handle_edge_irq
);
162 set_irq_flags(i
, IRQF_VALID
);
165 for (i
= 0; i
< ARRAY_SIZE(sirc_reg_table
); i
++) {
166 irq_set_chained_handler(sirc_reg_table
[i
].cascade_irq
,
168 irq_set_irq_wake(sirc_reg_table
[i
].cascade_irq
, 1);