Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/irq.c |
| 2 | * |
Ben Dooks | e02f866 | 2009-11-13 22:54:13 +0000 | [diff] [blame] | 3 | * Copyright (c) 2003-2004 Simtec Electronics |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/ioport.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 25 | #include <linux/sysdev.h> |
| 26 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 27 | #include <asm/irq.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 28 | #include <asm/mach/irq.h> |
| 29 | |
Ben Dooks | 6af0e92 | 2008-10-21 14:06:47 +0100 | [diff] [blame] | 30 | #include <plat/regs-irqtype.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 31 | |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 32 | #include <plat/cpu.h> |
| 33 | #include <plat/pm.h> |
| 34 | #include <plat/irq.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 35 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 36 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 37 | s3c_irq_mask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 38 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 39 | unsigned int irqno = data->irq - IRQ_EINT0; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 40 | unsigned long mask; |
| 41 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 42 | mask = __raw_readl(S3C2410_INTMSK); |
| 43 | mask |= 1UL << irqno; |
| 44 | __raw_writel(mask, S3C2410_INTMSK); |
| 45 | } |
| 46 | |
| 47 | static inline void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 48 | s3c_irq_ack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 49 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 50 | unsigned long bitval = 1UL << (data->irq - IRQ_EINT0); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 51 | |
| 52 | __raw_writel(bitval, S3C2410_SRCPND); |
| 53 | __raw_writel(bitval, S3C2410_INTPND); |
| 54 | } |
| 55 | |
| 56 | static inline void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 57 | s3c_irq_maskack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 58 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 59 | unsigned long bitval = 1UL << (data->irq - IRQ_EINT0); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 60 | unsigned long mask; |
| 61 | |
| 62 | mask = __raw_readl(S3C2410_INTMSK); |
| 63 | __raw_writel(mask|bitval, S3C2410_INTMSK); |
| 64 | |
| 65 | __raw_writel(bitval, S3C2410_SRCPND); |
| 66 | __raw_writel(bitval, S3C2410_INTPND); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 71 | s3c_irq_unmask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 72 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 73 | unsigned int irqno = data->irq; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 74 | unsigned long mask; |
| 75 | |
| 76 | if (irqno != IRQ_TIMER4 && irqno != IRQ_EINT8t23) |
| 77 | irqdbf2("s3c_irq_unmask %d\n", irqno); |
| 78 | |
| 79 | irqno -= IRQ_EINT0; |
| 80 | |
| 81 | mask = __raw_readl(S3C2410_INTMSK); |
| 82 | mask &= ~(1UL << irqno); |
| 83 | __raw_writel(mask, S3C2410_INTMSK); |
| 84 | } |
| 85 | |
| 86 | struct irq_chip s3c_irq_level_chip = { |
| 87 | .name = "s3c-level", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 88 | .irq_ack = s3c_irq_maskack, |
| 89 | .irq_mask = s3c_irq_mask, |
| 90 | .irq_unmask = s3c_irq_unmask, |
| 91 | .irq_set_wake = s3c_irq_wake |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
Ben Dooks | 0baada2 | 2007-12-23 03:09:33 +0100 | [diff] [blame] | 94 | struct irq_chip s3c_irq_chip = { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 95 | .name = "s3c", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 96 | .irq_ack = s3c_irq_ack, |
| 97 | .irq_mask = s3c_irq_mask, |
| 98 | .irq_unmask = s3c_irq_unmask, |
| 99 | .irq_set_wake = s3c_irq_wake |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 103 | s3c_irqext_mask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 104 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 105 | unsigned int irqno = data->irq - EXTINT_OFF; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 106 | unsigned long mask; |
| 107 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 108 | mask = __raw_readl(S3C24XX_EINTMASK); |
| 109 | mask |= ( 1UL << irqno); |
| 110 | __raw_writel(mask, S3C24XX_EINTMASK); |
| 111 | } |
| 112 | |
| 113 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 114 | s3c_irqext_ack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 115 | { |
| 116 | unsigned long req; |
| 117 | unsigned long bit; |
| 118 | unsigned long mask; |
| 119 | |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 120 | bit = 1UL << (data->irq - EXTINT_OFF); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 121 | |
| 122 | mask = __raw_readl(S3C24XX_EINTMASK); |
| 123 | |
| 124 | __raw_writel(bit, S3C24XX_EINTPEND); |
| 125 | |
| 126 | req = __raw_readl(S3C24XX_EINTPEND); |
| 127 | req &= ~mask; |
| 128 | |
| 129 | /* not sure if we should be acking the parent irq... */ |
| 130 | |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 131 | if (data->irq <= IRQ_EINT7) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 132 | if ((req & 0xf0) == 0) |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 133 | s3c_irq_ack(irq_get_irq_data(IRQ_EINT4t7)); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 134 | } else { |
| 135 | if ((req >> 8) == 0) |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 136 | s3c_irq_ack(irq_get_irq_data(IRQ_EINT8t23)); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
| 140 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 141 | s3c_irqext_unmask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 142 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 143 | unsigned int irqno = data->irq - EXTINT_OFF; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 144 | unsigned long mask; |
| 145 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 146 | mask = __raw_readl(S3C24XX_EINTMASK); |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 147 | mask &= ~(1UL << irqno); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 148 | __raw_writel(mask, S3C24XX_EINTMASK); |
| 149 | } |
| 150 | |
| 151 | int |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 152 | s3c_irqext_type(struct irq_data *data, unsigned int type) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 153 | { |
| 154 | void __iomem *extint_reg; |
| 155 | void __iomem *gpcon_reg; |
| 156 | unsigned long gpcon_offset, extint_offset; |
| 157 | unsigned long newvalue = 0, value; |
| 158 | |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 159 | if ((data->irq >= IRQ_EINT0) && (data->irq <= IRQ_EINT3)) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 160 | gpcon_reg = S3C2410_GPFCON; |
| 161 | extint_reg = S3C24XX_EXTINT0; |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 162 | gpcon_offset = (data->irq - IRQ_EINT0) * 2; |
| 163 | extint_offset = (data->irq - IRQ_EINT0) * 4; |
| 164 | } else if ((data->irq >= IRQ_EINT4) && (data->irq <= IRQ_EINT7)) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 165 | gpcon_reg = S3C2410_GPFCON; |
| 166 | extint_reg = S3C24XX_EXTINT0; |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 167 | gpcon_offset = (data->irq - (EXTINT_OFF)) * 2; |
| 168 | extint_offset = (data->irq - (EXTINT_OFF)) * 4; |
| 169 | } else if ((data->irq >= IRQ_EINT8) && (data->irq <= IRQ_EINT15)) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 170 | gpcon_reg = S3C2410_GPGCON; |
| 171 | extint_reg = S3C24XX_EXTINT1; |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 172 | gpcon_offset = (data->irq - IRQ_EINT8) * 2; |
| 173 | extint_offset = (data->irq - IRQ_EINT8) * 4; |
| 174 | } else if ((data->irq >= IRQ_EINT16) && (data->irq <= IRQ_EINT23)) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 175 | gpcon_reg = S3C2410_GPGCON; |
| 176 | extint_reg = S3C24XX_EXTINT2; |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 177 | gpcon_offset = (data->irq - IRQ_EINT8) * 2; |
| 178 | extint_offset = (data->irq - IRQ_EINT16) * 4; |
| 179 | } else { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 180 | return -1; |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 181 | } |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 182 | |
| 183 | /* Set the GPIO to external interrupt mode */ |
| 184 | value = __raw_readl(gpcon_reg); |
| 185 | value = (value & ~(3 << gpcon_offset)) | (0x02 << gpcon_offset); |
| 186 | __raw_writel(value, gpcon_reg); |
| 187 | |
| 188 | /* Set the external interrupt to pointed trigger type */ |
| 189 | switch (type) |
| 190 | { |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 191 | case IRQ_TYPE_NONE: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 192 | printk(KERN_WARNING "No edge setting!\n"); |
| 193 | break; |
| 194 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 195 | case IRQ_TYPE_EDGE_RISING: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 196 | newvalue = S3C2410_EXTINT_RISEEDGE; |
| 197 | break; |
| 198 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 199 | case IRQ_TYPE_EDGE_FALLING: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 200 | newvalue = S3C2410_EXTINT_FALLEDGE; |
| 201 | break; |
| 202 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 203 | case IRQ_TYPE_EDGE_BOTH: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 204 | newvalue = S3C2410_EXTINT_BOTHEDGE; |
| 205 | break; |
| 206 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 207 | case IRQ_TYPE_LEVEL_LOW: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 208 | newvalue = S3C2410_EXTINT_LOWLEV; |
| 209 | break; |
| 210 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 211 | case IRQ_TYPE_LEVEL_HIGH: |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 212 | newvalue = S3C2410_EXTINT_HILEV; |
| 213 | break; |
| 214 | |
| 215 | default: |
| 216 | printk(KERN_ERR "No such irq type %d", type); |
| 217 | return -1; |
| 218 | } |
| 219 | |
| 220 | value = __raw_readl(extint_reg); |
| 221 | value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset); |
| 222 | __raw_writel(value, extint_reg); |
| 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | static struct irq_chip s3c_irqext_chip = { |
| 228 | .name = "s3c-ext", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 229 | .irq_mask = s3c_irqext_mask, |
| 230 | .irq_unmask = s3c_irqext_unmask, |
| 231 | .irq_ack = s3c_irqext_ack, |
| 232 | .irq_set_type = s3c_irqext_type, |
Mark Brown | f5aeffb | 2010-12-02 14:35:38 +0900 | [diff] [blame] | 233 | .irq_set_wake = s3c_irqext_wake |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | static struct irq_chip s3c_irq_eint0t4 = { |
| 237 | .name = "s3c-ext0", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 238 | .irq_ack = s3c_irq_ack, |
| 239 | .irq_mask = s3c_irq_mask, |
| 240 | .irq_unmask = s3c_irq_unmask, |
| 241 | .irq_set_wake = s3c_irq_wake, |
| 242 | .irq_set_type = s3c_irqext_type, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | /* mask values for the parent registers for each of the interrupt types */ |
| 246 | |
| 247 | #define INTMSK_UART0 (1UL << (IRQ_UART0 - IRQ_EINT0)) |
| 248 | #define INTMSK_UART1 (1UL << (IRQ_UART1 - IRQ_EINT0)) |
| 249 | #define INTMSK_UART2 (1UL << (IRQ_UART2 - IRQ_EINT0)) |
| 250 | #define INTMSK_ADCPARENT (1UL << (IRQ_ADCPARENT - IRQ_EINT0)) |
| 251 | |
| 252 | |
| 253 | /* UART0 */ |
| 254 | |
| 255 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 256 | s3c_irq_uart0_mask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 257 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 258 | s3c_irqsub_mask(data->irq, INTMSK_UART0, 7); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 262 | s3c_irq_uart0_unmask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 263 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 264 | s3c_irqsub_unmask(data->irq, INTMSK_UART0); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 268 | s3c_irq_uart0_ack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 269 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 270 | s3c_irqsub_maskack(data->irq, INTMSK_UART0, 7); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | static struct irq_chip s3c_irq_uart0 = { |
| 274 | .name = "s3c-uart0", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 275 | .irq_mask = s3c_irq_uart0_mask, |
| 276 | .irq_unmask = s3c_irq_uart0_unmask, |
| 277 | .irq_ack = s3c_irq_uart0_ack, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 278 | }; |
| 279 | |
| 280 | /* UART1 */ |
| 281 | |
| 282 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 283 | s3c_irq_uart1_mask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 284 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 285 | s3c_irqsub_mask(data->irq, INTMSK_UART1, 7 << 3); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 289 | s3c_irq_uart1_unmask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 290 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 291 | s3c_irqsub_unmask(data->irq, INTMSK_UART1); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 295 | s3c_irq_uart1_ack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 296 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 297 | s3c_irqsub_maskack(data->irq, INTMSK_UART1, 7 << 3); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | static struct irq_chip s3c_irq_uart1 = { |
| 301 | .name = "s3c-uart1", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 302 | .irq_mask = s3c_irq_uart1_mask, |
| 303 | .irq_unmask = s3c_irq_uart1_unmask, |
| 304 | .irq_ack = s3c_irq_uart1_ack, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | /* UART2 */ |
| 308 | |
| 309 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 310 | s3c_irq_uart2_mask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 311 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 312 | s3c_irqsub_mask(data->irq, INTMSK_UART2, 7 << 6); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 316 | s3c_irq_uart2_unmask(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 317 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 318 | s3c_irqsub_unmask(data->irq, INTMSK_UART2); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 322 | s3c_irq_uart2_ack(struct irq_data *data) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 323 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 324 | s3c_irqsub_maskack(data->irq, INTMSK_UART2, 7 << 6); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | static struct irq_chip s3c_irq_uart2 = { |
| 328 | .name = "s3c-uart2", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 329 | .irq_mask = s3c_irq_uart2_mask, |
| 330 | .irq_unmask = s3c_irq_uart2_unmask, |
| 331 | .irq_ack = s3c_irq_uart2_ack, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 332 | }; |
| 333 | |
| 334 | /* ADC and Touchscreen */ |
| 335 | |
| 336 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 337 | s3c_irq_adc_mask(struct irq_data *d) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 338 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 339 | s3c_irqsub_mask(d->irq, INTMSK_ADCPARENT, 3 << 9); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 343 | s3c_irq_adc_unmask(struct irq_data *d) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 344 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 345 | s3c_irqsub_unmask(d->irq, INTMSK_ADCPARENT); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | static void |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 349 | s3c_irq_adc_ack(struct irq_data *d) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 350 | { |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 351 | s3c_irqsub_ack(d->irq, INTMSK_ADCPARENT, 3 << 9); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | static struct irq_chip s3c_irq_adc = { |
| 355 | .name = "s3c-adc", |
Lennert Buytenhek | 57436c2 | 2011-01-03 19:15:54 +0900 | [diff] [blame] | 356 | .irq_mask = s3c_irq_adc_mask, |
| 357 | .irq_unmask = s3c_irq_adc_unmask, |
| 358 | .irq_ack = s3c_irq_adc_ack, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 359 | }; |
| 360 | |
| 361 | /* irq demux for adc */ |
| 362 | static void s3c_irq_demux_adc(unsigned int irq, |
| 363 | struct irq_desc *desc) |
| 364 | { |
| 365 | unsigned int subsrc, submsk; |
| 366 | unsigned int offset = 9; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 367 | |
| 368 | /* read the current pending interrupts, and the mask |
| 369 | * for what it is available */ |
| 370 | |
| 371 | subsrc = __raw_readl(S3C2410_SUBSRCPND); |
| 372 | submsk = __raw_readl(S3C2410_INTSUBMSK); |
| 373 | |
| 374 | subsrc &= ~submsk; |
| 375 | subsrc >>= offset; |
| 376 | subsrc &= 3; |
| 377 | |
| 378 | if (subsrc != 0) { |
| 379 | if (subsrc & 1) { |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 380 | generic_handle_irq(IRQ_TC); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 381 | } |
| 382 | if (subsrc & 2) { |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 383 | generic_handle_irq(IRQ_ADC); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 384 | } |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | static void s3c_irq_demux_uart(unsigned int start) |
| 389 | { |
| 390 | unsigned int subsrc, submsk; |
| 391 | unsigned int offset = start - IRQ_S3CUART_RX0; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 392 | |
| 393 | /* read the current pending interrupts, and the mask |
| 394 | * for what it is available */ |
| 395 | |
| 396 | subsrc = __raw_readl(S3C2410_SUBSRCPND); |
| 397 | submsk = __raw_readl(S3C2410_INTSUBMSK); |
| 398 | |
| 399 | irqdbf2("s3c_irq_demux_uart: start=%d (%d), subsrc=0x%08x,0x%08x\n", |
| 400 | start, offset, subsrc, submsk); |
| 401 | |
| 402 | subsrc &= ~submsk; |
| 403 | subsrc >>= offset; |
| 404 | subsrc &= 7; |
| 405 | |
| 406 | if (subsrc != 0) { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 407 | if (subsrc & 1) |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 408 | generic_handle_irq(start); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 409 | |
| 410 | if (subsrc & 2) |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 411 | generic_handle_irq(start+1); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 412 | |
| 413 | if (subsrc & 4) |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 414 | generic_handle_irq(start+2); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
| 418 | /* uart demux entry points */ |
| 419 | |
| 420 | static void |
| 421 | s3c_irq_demux_uart0(unsigned int irq, |
| 422 | struct irq_desc *desc) |
| 423 | { |
| 424 | irq = irq; |
| 425 | s3c_irq_demux_uart(IRQ_S3CUART_RX0); |
| 426 | } |
| 427 | |
| 428 | static void |
| 429 | s3c_irq_demux_uart1(unsigned int irq, |
| 430 | struct irq_desc *desc) |
| 431 | { |
| 432 | irq = irq; |
| 433 | s3c_irq_demux_uart(IRQ_S3CUART_RX1); |
| 434 | } |
| 435 | |
| 436 | static void |
| 437 | s3c_irq_demux_uart2(unsigned int irq, |
| 438 | struct irq_desc *desc) |
| 439 | { |
| 440 | irq = irq; |
| 441 | s3c_irq_demux_uart(IRQ_S3CUART_RX2); |
| 442 | } |
| 443 | |
| 444 | static void |
| 445 | s3c_irq_demux_extint8(unsigned int irq, |
| 446 | struct irq_desc *desc) |
| 447 | { |
| 448 | unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND); |
| 449 | unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK); |
| 450 | |
| 451 | eintpnd &= ~eintmsk; |
| 452 | eintpnd &= ~0xff; /* ignore lower irqs */ |
| 453 | |
| 454 | /* we may as well handle all the pending IRQs here */ |
| 455 | |
| 456 | while (eintpnd) { |
| 457 | irq = __ffs(eintpnd); |
| 458 | eintpnd &= ~(1<<irq); |
| 459 | |
| 460 | irq += (IRQ_EINT4 - 4); |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 461 | generic_handle_irq(irq); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | } |
| 465 | |
| 466 | static void |
| 467 | s3c_irq_demux_extint4t7(unsigned int irq, |
| 468 | struct irq_desc *desc) |
| 469 | { |
| 470 | unsigned long eintpnd = __raw_readl(S3C24XX_EINTPEND); |
| 471 | unsigned long eintmsk = __raw_readl(S3C24XX_EINTMASK); |
| 472 | |
| 473 | eintpnd &= ~eintmsk; |
| 474 | eintpnd &= 0xff; /* only lower irqs */ |
| 475 | |
| 476 | /* we may as well handle all the pending IRQs here */ |
| 477 | |
| 478 | while (eintpnd) { |
| 479 | irq = __ffs(eintpnd); |
| 480 | eintpnd &= ~(1<<irq); |
| 481 | |
| 482 | irq += (IRQ_EINT4 - 4); |
| 483 | |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 484 | generic_handle_irq(irq); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 485 | } |
| 486 | } |
| 487 | |
Ben Dooks | 229fd8f | 2009-08-03 17:26:57 +0100 | [diff] [blame] | 488 | #ifdef CONFIG_FIQ |
| 489 | /** |
| 490 | * s3c24xx_set_fiq - set the FIQ routing |
| 491 | * @irq: IRQ number to route to FIQ on processor. |
| 492 | * @on: Whether to route @irq to the FIQ, or to remove the FIQ routing. |
| 493 | * |
| 494 | * Change the state of the IRQ to FIQ routing depending on @irq and @on. If |
| 495 | * @on is true, the @irq is checked to see if it can be routed and the |
| 496 | * interrupt controller updated to route the IRQ. If @on is false, the FIQ |
| 497 | * routing is cleared, regardless of which @irq is specified. |
| 498 | */ |
| 499 | int s3c24xx_set_fiq(unsigned int irq, bool on) |
| 500 | { |
| 501 | u32 intmod; |
| 502 | unsigned offs; |
| 503 | |
| 504 | if (on) { |
| 505 | offs = irq - FIQ_START; |
| 506 | if (offs > 31) |
| 507 | return -EINVAL; |
| 508 | |
| 509 | intmod = 1 << offs; |
| 510 | } else { |
| 511 | intmod = 0; |
| 512 | } |
| 513 | |
| 514 | __raw_writel(intmod, S3C2410_INTMOD); |
| 515 | return 0; |
| 516 | } |
Ben Dooks | 0f13c82 | 2009-12-07 14:51:38 +0000 | [diff] [blame] | 517 | |
| 518 | EXPORT_SYMBOL_GPL(s3c24xx_set_fiq); |
Ben Dooks | 229fd8f | 2009-08-03 17:26:57 +0100 | [diff] [blame] | 519 | #endif |
| 520 | |
| 521 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 522 | /* s3c24xx_init_irq |
| 523 | * |
| 524 | * Initialise S3C2410 IRQ system |
| 525 | */ |
| 526 | |
| 527 | void __init s3c24xx_init_irq(void) |
| 528 | { |
| 529 | unsigned long pend; |
| 530 | unsigned long last; |
| 531 | int irqno; |
| 532 | int i; |
| 533 | |
Ben Dooks | 229fd8f | 2009-08-03 17:26:57 +0100 | [diff] [blame] | 534 | #ifdef CONFIG_FIQ |
| 535 | init_FIQ(); |
| 536 | #endif |
| 537 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 538 | irqdbf("s3c2410_init_irq: clearing interrupt status flags\n"); |
| 539 | |
| 540 | /* first, clear all interrupts pending... */ |
| 541 | |
| 542 | last = 0; |
| 543 | for (i = 0; i < 4; i++) { |
| 544 | pend = __raw_readl(S3C24XX_EINTPEND); |
| 545 | |
| 546 | if (pend == 0 || pend == last) |
| 547 | break; |
| 548 | |
| 549 | __raw_writel(pend, S3C24XX_EINTPEND); |
| 550 | printk("irq: clearing pending ext status %08x\n", (int)pend); |
| 551 | last = pend; |
| 552 | } |
| 553 | |
| 554 | last = 0; |
| 555 | for (i = 0; i < 4; i++) { |
| 556 | pend = __raw_readl(S3C2410_INTPND); |
| 557 | |
| 558 | if (pend == 0 || pend == last) |
| 559 | break; |
| 560 | |
| 561 | __raw_writel(pend, S3C2410_SRCPND); |
| 562 | __raw_writel(pend, S3C2410_INTPND); |
| 563 | printk("irq: clearing pending status %08x\n", (int)pend); |
| 564 | last = pend; |
| 565 | } |
| 566 | |
| 567 | last = 0; |
| 568 | for (i = 0; i < 4; i++) { |
| 569 | pend = __raw_readl(S3C2410_SUBSRCPND); |
| 570 | |
| 571 | if (pend == 0 || pend == last) |
| 572 | break; |
| 573 | |
| 574 | printk("irq: clearing subpending status %08x\n", (int)pend); |
| 575 | __raw_writel(pend, S3C2410_SUBSRCPND); |
| 576 | last = pend; |
| 577 | } |
| 578 | |
| 579 | /* register the main interrupts */ |
| 580 | |
| 581 | irqdbf("s3c2410_init_irq: registering s3c2410 interrupt handlers\n"); |
| 582 | |
| 583 | for (irqno = IRQ_EINT4t7; irqno <= IRQ_ADCPARENT; irqno++) { |
| 584 | /* set all the s3c2410 internal irqs */ |
| 585 | |
| 586 | switch (irqno) { |
| 587 | /* deal with the special IRQs (cascaded) */ |
| 588 | |
| 589 | case IRQ_EINT4t7: |
| 590 | case IRQ_EINT8t23: |
| 591 | case IRQ_UART0: |
| 592 | case IRQ_UART1: |
| 593 | case IRQ_UART2: |
| 594 | case IRQ_ADCPARENT: |
| 595 | set_irq_chip(irqno, &s3c_irq_level_chip); |
| 596 | set_irq_handler(irqno, handle_level_irq); |
| 597 | break; |
| 598 | |
| 599 | case IRQ_RESERVED6: |
| 600 | case IRQ_RESERVED24: |
| 601 | /* no IRQ here */ |
| 602 | break; |
| 603 | |
| 604 | default: |
| 605 | //irqdbf("registering irq %d (s3c irq)\n", irqno); |
| 606 | set_irq_chip(irqno, &s3c_irq_chip); |
| 607 | set_irq_handler(irqno, handle_edge_irq); |
| 608 | set_irq_flags(irqno, IRQF_VALID); |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | /* setup the cascade irq handlers */ |
| 613 | |
| 614 | set_irq_chained_handler(IRQ_EINT4t7, s3c_irq_demux_extint4t7); |
| 615 | set_irq_chained_handler(IRQ_EINT8t23, s3c_irq_demux_extint8); |
| 616 | |
| 617 | set_irq_chained_handler(IRQ_UART0, s3c_irq_demux_uart0); |
| 618 | set_irq_chained_handler(IRQ_UART1, s3c_irq_demux_uart1); |
| 619 | set_irq_chained_handler(IRQ_UART2, s3c_irq_demux_uart2); |
| 620 | set_irq_chained_handler(IRQ_ADCPARENT, s3c_irq_demux_adc); |
| 621 | |
| 622 | /* external interrupts */ |
| 623 | |
| 624 | for (irqno = IRQ_EINT0; irqno <= IRQ_EINT3; irqno++) { |
| 625 | irqdbf("registering irq %d (ext int)\n", irqno); |
| 626 | set_irq_chip(irqno, &s3c_irq_eint0t4); |
| 627 | set_irq_handler(irqno, handle_edge_irq); |
| 628 | set_irq_flags(irqno, IRQF_VALID); |
| 629 | } |
| 630 | |
| 631 | for (irqno = IRQ_EINT4; irqno <= IRQ_EINT23; irqno++) { |
| 632 | irqdbf("registering irq %d (extended s3c irq)\n", irqno); |
| 633 | set_irq_chip(irqno, &s3c_irqext_chip); |
| 634 | set_irq_handler(irqno, handle_edge_irq); |
| 635 | set_irq_flags(irqno, IRQF_VALID); |
| 636 | } |
| 637 | |
| 638 | /* register the uart interrupts */ |
| 639 | |
| 640 | irqdbf("s3c2410: registering external interrupts\n"); |
| 641 | |
| 642 | for (irqno = IRQ_S3CUART_RX0; irqno <= IRQ_S3CUART_ERR0; irqno++) { |
| 643 | irqdbf("registering irq %d (s3c uart0 irq)\n", irqno); |
| 644 | set_irq_chip(irqno, &s3c_irq_uart0); |
| 645 | set_irq_handler(irqno, handle_level_irq); |
| 646 | set_irq_flags(irqno, IRQF_VALID); |
| 647 | } |
| 648 | |
| 649 | for (irqno = IRQ_S3CUART_RX1; irqno <= IRQ_S3CUART_ERR1; irqno++) { |
| 650 | irqdbf("registering irq %d (s3c uart1 irq)\n", irqno); |
| 651 | set_irq_chip(irqno, &s3c_irq_uart1); |
| 652 | set_irq_handler(irqno, handle_level_irq); |
| 653 | set_irq_flags(irqno, IRQF_VALID); |
| 654 | } |
| 655 | |
| 656 | for (irqno = IRQ_S3CUART_RX2; irqno <= IRQ_S3CUART_ERR2; irqno++) { |
| 657 | irqdbf("registering irq %d (s3c uart2 irq)\n", irqno); |
| 658 | set_irq_chip(irqno, &s3c_irq_uart2); |
| 659 | set_irq_handler(irqno, handle_level_irq); |
| 660 | set_irq_flags(irqno, IRQF_VALID); |
| 661 | } |
| 662 | |
| 663 | for (irqno = IRQ_TC; irqno <= IRQ_ADC; irqno++) { |
| 664 | irqdbf("registering irq %d (s3c adc irq)\n", irqno); |
| 665 | set_irq_chip(irqno, &s3c_irq_adc); |
| 666 | set_irq_handler(irqno, handle_edge_irq); |
| 667 | set_irq_flags(irqno, IRQF_VALID); |
| 668 | } |
| 669 | |
| 670 | irqdbf("s3c2410: registered interrupt handlers\n"); |
| 671 | } |