David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 1 | /* |
| 2 | * twl4030-irq.c - TWL4030/TPS659x0 irq support |
| 3 | * |
| 4 | * Copyright (C) 2005-2006 Texas Instruments, Inc. |
| 5 | * |
| 6 | * Modifications to defer interrupt handling to a kernel thread: |
| 7 | * Copyright (C) 2006 MontaVista Software, Inc. |
| 8 | * |
| 9 | * Based on tlv320aic23.c: |
| 10 | * Copyright (c) by Kai Svahn <kai.svahn@nokia.com> |
| 11 | * |
| 12 | * Code cleanup and modifications to IRQ handler. |
| 13 | * by syed khasim <x0khasim@ti.com> |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or modify |
| 16 | * it under the terms of the GNU General Public License as published by |
| 17 | * the Free Software Foundation; either version 2 of the License, or |
| 18 | * (at your option) any later version. |
| 19 | * |
| 20 | * This program is distributed in the hope that it will be useful, |
| 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | * GNU General Public License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License |
| 26 | * along with this program; if not, write to the Free Software |
| 27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 28 | */ |
| 29 | |
| 30 | #include <linux/init.h> |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 31 | #include <linux/export.h> |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/irq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 35 | |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 36 | #include <linux/of.h> |
| 37 | #include <linux/irqdomain.h> |
Santosh Shilimkar | b07682b | 2009-12-13 20:05:51 +0100 | [diff] [blame] | 38 | #include <linux/i2c/twl.h> |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 39 | |
G, Manjunath Kondaiah | b0b4a7c | 2010-10-19 11:02:48 +0200 | [diff] [blame] | 40 | #include "twl-core.h" |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * TWL4030 IRQ handling has two stages in hardware, and thus in software. |
| 44 | * The Primary Interrupt Handler (PIH) stage exposes status bits saying |
| 45 | * which Secondary Interrupt Handler (SIH) stage is raising an interrupt. |
| 46 | * SIH modules are more traditional IRQ components, which support per-IRQ |
| 47 | * enable/disable and trigger controls; they do most of the work. |
| 48 | * |
| 49 | * These chips are designed to support IRQ handling from two different |
| 50 | * I2C masters. Each has a dedicated IRQ line, and dedicated IRQ status |
| 51 | * and mask registers in the PIH and SIH modules. |
| 52 | * |
| 53 | * We set up IRQs starting at a platform-specified base, always starting |
| 54 | * with PIH and the SIH for PWR_INT and then usually adding GPIO: |
| 55 | * base + 0 .. base + 7 PIH |
| 56 | * base + 8 .. base + 15 SIH for PWR_INT |
| 57 | * base + 16 .. base + 33 SIH for GPIO |
| 58 | */ |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 59 | #define TWL4030_CORE_NR_IRQS 8 |
| 60 | #define TWL4030_PWR_NR_IRQS 8 |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 61 | |
| 62 | /* PIH register offsets */ |
| 63 | #define REG_PIH_ISR_P1 0x01 |
| 64 | #define REG_PIH_ISR_P2 0x02 |
| 65 | #define REG_PIH_SIR 0x03 /* for testing */ |
| 66 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 67 | /* Linux could (eventually) use either IRQ line */ |
| 68 | static int irq_line; |
| 69 | |
| 70 | struct sih { |
| 71 | char name[8]; |
| 72 | u8 module; /* module id */ |
| 73 | u8 control_offset; /* for SIH_CTRL */ |
| 74 | bool set_cor; |
| 75 | |
| 76 | u8 bits; /* valid in isr/imr */ |
| 77 | u8 bytes_ixr; /* bytelen of ISR/IMR/SIR */ |
| 78 | |
| 79 | u8 edr_offset; |
| 80 | u8 bytes_edr; /* bytelen of EDR */ |
| 81 | |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 82 | u8 irq_lines; /* number of supported irq lines */ |
| 83 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 84 | /* SIR ignored -- set interrupt, for testing only */ |
Thomas Gleixner | 35a27e8 | 2010-10-01 16:35:59 +0200 | [diff] [blame] | 85 | struct sih_irq_data { |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 86 | u8 isr_offset; |
| 87 | u8 imr_offset; |
| 88 | } mask[2]; |
| 89 | /* + 2 bytes padding */ |
| 90 | }; |
| 91 | |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 92 | static const struct sih *sih_modules; |
| 93 | static int nr_sih_modules; |
| 94 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 95 | #define SIH_INITIALIZER(modname, nbits) \ |
| 96 | .module = TWL4030_MODULE_ ## modname, \ |
| 97 | .control_offset = TWL4030_ ## modname ## _SIH_CTRL, \ |
| 98 | .bits = nbits, \ |
| 99 | .bytes_ixr = DIV_ROUND_UP(nbits, 8), \ |
| 100 | .edr_offset = TWL4030_ ## modname ## _EDR, \ |
| 101 | .bytes_edr = DIV_ROUND_UP((2*(nbits)), 8), \ |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 102 | .irq_lines = 2, \ |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 103 | .mask = { { \ |
| 104 | .isr_offset = TWL4030_ ## modname ## _ISR1, \ |
| 105 | .imr_offset = TWL4030_ ## modname ## _IMR1, \ |
| 106 | }, \ |
| 107 | { \ |
| 108 | .isr_offset = TWL4030_ ## modname ## _ISR2, \ |
| 109 | .imr_offset = TWL4030_ ## modname ## _IMR2, \ |
| 110 | }, }, |
| 111 | |
| 112 | /* register naming policies are inconsistent ... */ |
| 113 | #define TWL4030_INT_PWR_EDR TWL4030_INT_PWR_EDR1 |
| 114 | #define TWL4030_MODULE_KEYPAD_KEYP TWL4030_MODULE_KEYPAD |
| 115 | #define TWL4030_MODULE_INT_PWR TWL4030_MODULE_INT |
| 116 | |
| 117 | |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 118 | /* |
| 119 | * Order in this table matches order in PIH_ISR. That is, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 120 | * BIT(n) in PIH_ISR is sih_modules[n]. |
| 121 | */ |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 122 | /* sih_modules_twl4030 is used both in twl4030 and twl5030 */ |
| 123 | static const struct sih sih_modules_twl4030[6] = { |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 124 | [0] = { |
| 125 | .name = "gpio", |
| 126 | .module = TWL4030_MODULE_GPIO, |
| 127 | .control_offset = REG_GPIO_SIH_CTRL, |
| 128 | .set_cor = true, |
| 129 | .bits = TWL4030_GPIO_MAX, |
| 130 | .bytes_ixr = 3, |
| 131 | /* Note: *all* of these IRQs default to no-trigger */ |
| 132 | .edr_offset = REG_GPIO_EDR1, |
| 133 | .bytes_edr = 5, |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 134 | .irq_lines = 2, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 135 | .mask = { { |
| 136 | .isr_offset = REG_GPIO_ISR1A, |
| 137 | .imr_offset = REG_GPIO_IMR1A, |
| 138 | }, { |
| 139 | .isr_offset = REG_GPIO_ISR1B, |
| 140 | .imr_offset = REG_GPIO_IMR1B, |
| 141 | }, }, |
| 142 | }, |
| 143 | [1] = { |
| 144 | .name = "keypad", |
| 145 | .set_cor = true, |
| 146 | SIH_INITIALIZER(KEYPAD_KEYP, 4) |
| 147 | }, |
| 148 | [2] = { |
| 149 | .name = "bci", |
| 150 | .module = TWL4030_MODULE_INTERRUPTS, |
| 151 | .control_offset = TWL4030_INTERRUPTS_BCISIHCTRL, |
Grazvydas Ignotas | 8e52e27 | 2010-09-28 16:22:19 +0300 | [diff] [blame] | 152 | .set_cor = true, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 153 | .bits = 12, |
| 154 | .bytes_ixr = 2, |
| 155 | .edr_offset = TWL4030_INTERRUPTS_BCIEDR1, |
| 156 | /* Note: most of these IRQs default to no-trigger */ |
| 157 | .bytes_edr = 3, |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 158 | .irq_lines = 2, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 159 | .mask = { { |
| 160 | .isr_offset = TWL4030_INTERRUPTS_BCIISR1A, |
| 161 | .imr_offset = TWL4030_INTERRUPTS_BCIIMR1A, |
| 162 | }, { |
| 163 | .isr_offset = TWL4030_INTERRUPTS_BCIISR1B, |
| 164 | .imr_offset = TWL4030_INTERRUPTS_BCIIMR1B, |
| 165 | }, }, |
| 166 | }, |
| 167 | [3] = { |
| 168 | .name = "madc", |
| 169 | SIH_INITIALIZER(MADC, 4) |
| 170 | }, |
| 171 | [4] = { |
| 172 | /* USB doesn't use the same SIH organization */ |
| 173 | .name = "usb", |
| 174 | }, |
| 175 | [5] = { |
| 176 | .name = "power", |
| 177 | .set_cor = true, |
| 178 | SIH_INITIALIZER(INT_PWR, 8) |
| 179 | }, |
| 180 | /* there are no SIH modules #6 or #7 ... */ |
| 181 | }; |
| 182 | |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 183 | static const struct sih sih_modules_twl5031[8] = { |
| 184 | [0] = { |
| 185 | .name = "gpio", |
| 186 | .module = TWL4030_MODULE_GPIO, |
| 187 | .control_offset = REG_GPIO_SIH_CTRL, |
| 188 | .set_cor = true, |
| 189 | .bits = TWL4030_GPIO_MAX, |
| 190 | .bytes_ixr = 3, |
| 191 | /* Note: *all* of these IRQs default to no-trigger */ |
| 192 | .edr_offset = REG_GPIO_EDR1, |
| 193 | .bytes_edr = 5, |
| 194 | .irq_lines = 2, |
| 195 | .mask = { { |
| 196 | .isr_offset = REG_GPIO_ISR1A, |
| 197 | .imr_offset = REG_GPIO_IMR1A, |
| 198 | }, { |
| 199 | .isr_offset = REG_GPIO_ISR1B, |
| 200 | .imr_offset = REG_GPIO_IMR1B, |
| 201 | }, }, |
| 202 | }, |
| 203 | [1] = { |
| 204 | .name = "keypad", |
| 205 | .set_cor = true, |
| 206 | SIH_INITIALIZER(KEYPAD_KEYP, 4) |
| 207 | }, |
| 208 | [2] = { |
| 209 | .name = "bci", |
| 210 | .module = TWL5031_MODULE_INTERRUPTS, |
| 211 | .control_offset = TWL5031_INTERRUPTS_BCISIHCTRL, |
| 212 | .bits = 7, |
| 213 | .bytes_ixr = 1, |
| 214 | .edr_offset = TWL5031_INTERRUPTS_BCIEDR1, |
| 215 | /* Note: most of these IRQs default to no-trigger */ |
| 216 | .bytes_edr = 2, |
| 217 | .irq_lines = 2, |
| 218 | .mask = { { |
| 219 | .isr_offset = TWL5031_INTERRUPTS_BCIISR1, |
| 220 | .imr_offset = TWL5031_INTERRUPTS_BCIIMR1, |
| 221 | }, { |
| 222 | .isr_offset = TWL5031_INTERRUPTS_BCIISR2, |
| 223 | .imr_offset = TWL5031_INTERRUPTS_BCIIMR2, |
| 224 | }, }, |
| 225 | }, |
| 226 | [3] = { |
| 227 | .name = "madc", |
| 228 | SIH_INITIALIZER(MADC, 4) |
| 229 | }, |
| 230 | [4] = { |
| 231 | /* USB doesn't use the same SIH organization */ |
| 232 | .name = "usb", |
| 233 | }, |
| 234 | [5] = { |
| 235 | .name = "power", |
| 236 | .set_cor = true, |
| 237 | SIH_INITIALIZER(INT_PWR, 8) |
| 238 | }, |
| 239 | [6] = { |
| 240 | /* |
Ilkka Koskinen | 191211f | 2010-05-20 13:04:20 +0300 | [diff] [blame] | 241 | * ECI/DBI doesn't use the same SIH organization. |
| 242 | * For example, it supports only one interrupt output line. |
| 243 | * That is, the interrupts are seen on both INT1 and INT2 lines. |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 244 | */ |
Ilkka Koskinen | 191211f | 2010-05-20 13:04:20 +0300 | [diff] [blame] | 245 | .name = "eci_dbi", |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 246 | .module = TWL5031_MODULE_ACCESSORY, |
| 247 | .bits = 9, |
| 248 | .bytes_ixr = 2, |
| 249 | .irq_lines = 1, |
| 250 | .mask = { { |
| 251 | .isr_offset = TWL5031_ACIIDR_LSB, |
| 252 | .imr_offset = TWL5031_ACIIMR_LSB, |
| 253 | }, }, |
| 254 | |
| 255 | }, |
| 256 | [7] = { |
Ilkka Koskinen | 191211f | 2010-05-20 13:04:20 +0300 | [diff] [blame] | 257 | /* Audio accessory */ |
| 258 | .name = "audio", |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 259 | .module = TWL5031_MODULE_ACCESSORY, |
| 260 | .control_offset = TWL5031_ACCSIHCTRL, |
| 261 | .bits = 2, |
| 262 | .bytes_ixr = 1, |
| 263 | .edr_offset = TWL5031_ACCEDR1, |
| 264 | /* Note: most of these IRQs default to no-trigger */ |
| 265 | .bytes_edr = 1, |
| 266 | .irq_lines = 2, |
| 267 | .mask = { { |
| 268 | .isr_offset = TWL5031_ACCISR1, |
| 269 | .imr_offset = TWL5031_ACCIMR1, |
| 270 | }, { |
| 271 | .isr_offset = TWL5031_ACCISR2, |
| 272 | .imr_offset = TWL5031_ACCIMR2, |
| 273 | }, }, |
| 274 | }, |
| 275 | }; |
| 276 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 277 | #undef TWL4030_MODULE_KEYPAD_KEYP |
| 278 | #undef TWL4030_MODULE_INT_PWR |
| 279 | #undef TWL4030_INT_PWR_EDR |
| 280 | |
| 281 | /*----------------------------------------------------------------------*/ |
| 282 | |
| 283 | static unsigned twl4030_irq_base; |
| 284 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 285 | /* |
| 286 | * handle_twl4030_pih() is the desc->handle method for the twl4030 interrupt. |
| 287 | * This is a chained interrupt, so there is no desc->action method for it. |
| 288 | * Now we need to query the interrupt controller in the twl4030 to determine |
| 289 | * which module is generating the interrupt request. However, we can't do i2c |
| 290 | * transactions in interrupt context, so we must defer that work to a kernel |
| 291 | * thread. All we do here is acknowledge and mask the interrupt and wakeup |
| 292 | * the kernel thread. |
| 293 | */ |
Russell King | 1cef8e4 | 2009-07-27 11:30:48 +0530 | [diff] [blame] | 294 | static irqreturn_t handle_twl4030_pih(int irq, void *devid) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 295 | { |
Felipe Balbi | 7750c9b | 2011-06-30 12:51:06 +0300 | [diff] [blame] | 296 | int module_irq; |
| 297 | irqreturn_t ret; |
| 298 | u8 pih_isr; |
| 299 | |
| 300 | ret = twl_i2c_read_u8(TWL4030_MODULE_PIH, &pih_isr, |
| 301 | REG_PIH_ISR_P1); |
| 302 | if (ret) { |
| 303 | pr_warning("twl4030: I2C error %d reading PIH ISR\n", ret); |
| 304 | return IRQ_NONE; |
| 305 | } |
| 306 | |
| 307 | /* these handlers deal with the relevant SIH irq status */ |
| 308 | for (module_irq = twl4030_irq_base; |
| 309 | pih_isr; |
| 310 | pih_isr >>= 1, module_irq++) { |
| 311 | if (pih_isr & 0x1) |
Felipe Balbi | 925e853 | 2011-06-30 12:51:09 +0300 | [diff] [blame] | 312 | handle_nested_irq(module_irq); |
Felipe Balbi | 7750c9b | 2011-06-30 12:51:06 +0300 | [diff] [blame] | 313 | } |
| 314 | |
Russell King | 1cef8e4 | 2009-07-27 11:30:48 +0530 | [diff] [blame] | 315 | return IRQ_HANDLED; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 316 | } |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 317 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 318 | /*----------------------------------------------------------------------*/ |
| 319 | |
| 320 | /* |
| 321 | * twl4030_init_sih_modules() ... start from a known state where no |
| 322 | * IRQs will be coming in, and where we can quickly enable them then |
| 323 | * handle them as they arrive. Mask all IRQs: maybe init SIH_CTRL. |
| 324 | * |
| 325 | * NOTE: we don't touch EDR registers here; they stay with hardware |
| 326 | * defaults or whatever the last value was. Note that when both EDR |
| 327 | * bits for an IRQ are clear, that's as if its IMR bit is set... |
| 328 | */ |
| 329 | static int twl4030_init_sih_modules(unsigned line) |
| 330 | { |
| 331 | const struct sih *sih; |
| 332 | u8 buf[4]; |
| 333 | int i; |
| 334 | int status; |
| 335 | |
| 336 | /* line 0 == int1_n signal; line 1 == int2_n signal */ |
| 337 | if (line > 1) |
| 338 | return -EINVAL; |
| 339 | |
| 340 | irq_line = line; |
| 341 | |
| 342 | /* disable all interrupts on our line */ |
| 343 | memset(buf, 0xff, sizeof buf); |
| 344 | sih = sih_modules; |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 345 | for (i = 0; i < nr_sih_modules; i++, sih++) { |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 346 | /* skip USB -- it's funky */ |
| 347 | if (!sih->bytes_ixr) |
| 348 | continue; |
| 349 | |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 350 | /* Not all the SIH modules support multiple interrupt lines */ |
| 351 | if (sih->irq_lines <= line) |
| 352 | continue; |
| 353 | |
Balaji T K | fc7b92f | 2009-12-13 21:23:33 +0100 | [diff] [blame] | 354 | status = twl_i2c_write(sih->module, buf, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 355 | sih->mask[line].imr_offset, sih->bytes_ixr); |
| 356 | if (status < 0) |
| 357 | pr_err("twl4030: err %d initializing %s %s\n", |
| 358 | status, sih->name, "IMR"); |
| 359 | |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 360 | /* |
| 361 | * Maybe disable "exclusive" mode; buffer second pending irq; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 362 | * set Clear-On-Read (COR) bit. |
| 363 | * |
| 364 | * NOTE that sometimes COR polarity is documented as being |
Grazvydas Ignotas | 8e52e27 | 2010-09-28 16:22:19 +0300 | [diff] [blame] | 365 | * inverted: for MADC, COR=1 means "clear on write". |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 366 | * And for PWR_INT it's not documented... |
| 367 | */ |
| 368 | if (sih->set_cor) { |
Balaji T K | fc7b92f | 2009-12-13 21:23:33 +0100 | [diff] [blame] | 369 | status = twl_i2c_write_u8(sih->module, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 370 | TWL4030_SIH_CTRL_COR_MASK, |
| 371 | sih->control_offset); |
| 372 | if (status < 0) |
| 373 | pr_err("twl4030: err %d initializing %s %s\n", |
| 374 | status, sih->name, "SIH_CTRL"); |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | sih = sih_modules; |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 379 | for (i = 0; i < nr_sih_modules; i++, sih++) { |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 380 | u8 rxbuf[4]; |
| 381 | int j; |
| 382 | |
| 383 | /* skip USB */ |
| 384 | if (!sih->bytes_ixr) |
| 385 | continue; |
| 386 | |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 387 | /* Not all the SIH modules support multiple interrupt lines */ |
| 388 | if (sih->irq_lines <= line) |
| 389 | continue; |
| 390 | |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 391 | /* |
| 392 | * Clear pending interrupt status. Either the read was |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 393 | * enough, or we need to write those bits. Repeat, in |
| 394 | * case an IRQ is pending (PENDDIS=0) ... that's not |
| 395 | * uncommon with PWR_INT.PWRON. |
| 396 | */ |
| 397 | for (j = 0; j < 2; j++) { |
Balaji T K | fc7b92f | 2009-12-13 21:23:33 +0100 | [diff] [blame] | 398 | status = twl_i2c_read(sih->module, rxbuf, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 399 | sih->mask[line].isr_offset, sih->bytes_ixr); |
| 400 | if (status < 0) |
| 401 | pr_err("twl4030: err %d initializing %s %s\n", |
| 402 | status, sih->name, "ISR"); |
| 403 | |
| 404 | if (!sih->set_cor) |
Balaji T K | fc7b92f | 2009-12-13 21:23:33 +0100 | [diff] [blame] | 405 | status = twl_i2c_write(sih->module, buf, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 406 | sih->mask[line].isr_offset, |
| 407 | sih->bytes_ixr); |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 408 | /* |
| 409 | * else COR=1 means read sufficed. |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 410 | * (for most SIH modules...) |
| 411 | */ |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | return 0; |
| 416 | } |
| 417 | |
| 418 | static inline void activate_irq(int irq) |
| 419 | { |
| 420 | #ifdef CONFIG_ARM |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 421 | /* |
| 422 | * ARM requires an extra step to clear IRQ_NOREQUEST, which it |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 423 | * sets on behalf of every irq_chip. Also sets IRQ_NOPROBE. |
| 424 | */ |
| 425 | set_irq_flags(irq, IRQF_VALID); |
| 426 | #else |
| 427 | /* same effect on other architectures */ |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 428 | irq_set_noprobe(irq); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 429 | #endif |
| 430 | } |
| 431 | |
| 432 | /*----------------------------------------------------------------------*/ |
| 433 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 434 | struct sih_agent { |
| 435 | int irq_base; |
| 436 | const struct sih *sih; |
| 437 | |
| 438 | u32 imr; |
| 439 | bool imr_change_pending; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 440 | |
| 441 | u32 edge_change; |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 442 | |
| 443 | struct mutex irq_lock; |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 444 | char *irq_name; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 445 | }; |
| 446 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 447 | /*----------------------------------------------------------------------*/ |
| 448 | |
| 449 | /* |
| 450 | * All irq_chip methods get issued from code holding irq_desc[irq].lock, |
| 451 | * which can't perform the underlying I2C operations (because they sleep). |
| 452 | * So we must hand them off to a thread (workqueue) and cope with asynch |
| 453 | * completion, potentially including some re-ordering, of these requests. |
| 454 | */ |
| 455 | |
Mark Brown | 845aeab | 2010-12-12 12:51:39 +0000 | [diff] [blame] | 456 | static void twl4030_sih_mask(struct irq_data *data) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 457 | { |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 458 | struct sih_agent *agent = irq_data_get_irq_chip_data(data); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 459 | |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 460 | agent->imr |= BIT(data->irq - agent->irq_base); |
| 461 | agent->imr_change_pending = true; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 462 | } |
| 463 | |
Mark Brown | 845aeab | 2010-12-12 12:51:39 +0000 | [diff] [blame] | 464 | static void twl4030_sih_unmask(struct irq_data *data) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 465 | { |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 466 | struct sih_agent *agent = irq_data_get_irq_chip_data(data); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 467 | |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 468 | agent->imr &= ~BIT(data->irq - agent->irq_base); |
| 469 | agent->imr_change_pending = true; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 470 | } |
| 471 | |
Mark Brown | 845aeab | 2010-12-12 12:51:39 +0000 | [diff] [blame] | 472 | static int twl4030_sih_set_type(struct irq_data *data, unsigned trigger) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 473 | { |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 474 | struct sih_agent *agent = irq_data_get_irq_chip_data(data); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 475 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 476 | if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
| 477 | return -EINVAL; |
| 478 | |
Felipe Balbi | 2f2a7d5 | 2011-06-30 12:51:08 +0300 | [diff] [blame] | 479 | if (irqd_get_trigger_type(data) != trigger) |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 480 | agent->edge_change |= BIT(data->irq - agent->irq_base); |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 481 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 482 | return 0; |
| 483 | } |
| 484 | |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 485 | static void twl4030_sih_bus_lock(struct irq_data *data) |
| 486 | { |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 487 | struct sih_agent *agent = irq_data_get_irq_chip_data(data); |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 488 | |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 489 | mutex_lock(&agent->irq_lock); |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | static void twl4030_sih_bus_sync_unlock(struct irq_data *data) |
| 493 | { |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 494 | struct sih_agent *agent = irq_data_get_irq_chip_data(data); |
| 495 | const struct sih *sih = agent->sih; |
| 496 | int status; |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 497 | |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 498 | if (agent->imr_change_pending) { |
| 499 | union { |
| 500 | u32 word; |
| 501 | u8 bytes[4]; |
| 502 | } imr; |
| 503 | |
NeilBrown | c953122 | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 504 | /* byte[0] gets overwritten as we write ... */ |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 505 | imr.word = cpu_to_le32(agent->imr << 8); |
| 506 | agent->imr_change_pending = false; |
| 507 | |
| 508 | /* write the whole mask ... simpler than subsetting it */ |
| 509 | status = twl_i2c_write(sih->module, imr.bytes, |
| 510 | sih->mask[irq_line].imr_offset, |
| 511 | sih->bytes_ixr); |
| 512 | if (status) |
| 513 | pr_err("twl4030: %s, %s --> %d\n", __func__, |
| 514 | "write", status); |
| 515 | } |
| 516 | |
Felipe Balbi | 2f2a7d5 | 2011-06-30 12:51:08 +0300 | [diff] [blame] | 517 | if (agent->edge_change) { |
| 518 | u32 edge_change; |
| 519 | u8 bytes[6]; |
| 520 | |
| 521 | edge_change = agent->edge_change; |
| 522 | agent->edge_change = 0; |
| 523 | |
| 524 | /* |
| 525 | * Read, reserving first byte for write scratch. Yes, this |
| 526 | * could be cached for some speedup ... but be careful about |
| 527 | * any processor on the other IRQ line, EDR registers are |
| 528 | * shared. |
| 529 | */ |
| 530 | status = twl_i2c_read(sih->module, bytes + 1, |
| 531 | sih->edr_offset, sih->bytes_edr); |
| 532 | if (status) { |
| 533 | pr_err("twl4030: %s, %s --> %d\n", __func__, |
| 534 | "read", status); |
| 535 | return; |
| 536 | } |
| 537 | |
| 538 | /* Modify only the bits we know must change */ |
| 539 | while (edge_change) { |
| 540 | int i = fls(edge_change) - 1; |
| 541 | struct irq_data *idata; |
| 542 | int byte = 1 + (i >> 2); |
| 543 | int off = (i & 0x3) * 2; |
| 544 | unsigned int type; |
| 545 | |
| 546 | idata = irq_get_irq_data(i + agent->irq_base); |
| 547 | |
| 548 | bytes[byte] &= ~(0x03 << off); |
| 549 | |
| 550 | type = irqd_get_trigger_type(idata); |
| 551 | if (type & IRQ_TYPE_EDGE_RISING) |
| 552 | bytes[byte] |= BIT(off + 1); |
| 553 | if (type & IRQ_TYPE_EDGE_FALLING) |
| 554 | bytes[byte] |= BIT(off + 0); |
| 555 | |
| 556 | edge_change &= ~BIT(i); |
| 557 | } |
| 558 | |
| 559 | /* Write */ |
| 560 | status = twl_i2c_write(sih->module, bytes, |
| 561 | sih->edr_offset, sih->bytes_edr); |
| 562 | if (status) |
| 563 | pr_err("twl4030: %s, %s --> %d\n", __func__, |
| 564 | "write", status); |
| 565 | } |
| 566 | |
Felipe Balbi | 8486842 | 2011-06-30 12:51:07 +0300 | [diff] [blame] | 567 | mutex_unlock(&agent->irq_lock); |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 568 | } |
| 569 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 570 | static struct irq_chip twl4030_sih_irq_chip = { |
| 571 | .name = "twl4030", |
Felipe Balbi | 8cd6af2 | 2011-06-30 12:51:04 +0300 | [diff] [blame] | 572 | .irq_mask = twl4030_sih_mask, |
Mark Brown | 845aeab | 2010-12-12 12:51:39 +0000 | [diff] [blame] | 573 | .irq_unmask = twl4030_sih_unmask, |
| 574 | .irq_set_type = twl4030_sih_set_type, |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 575 | .irq_bus_lock = twl4030_sih_bus_lock, |
| 576 | .irq_bus_sync_unlock = twl4030_sih_bus_sync_unlock, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 577 | }; |
| 578 | |
| 579 | /*----------------------------------------------------------------------*/ |
| 580 | |
| 581 | static inline int sih_read_isr(const struct sih *sih) |
| 582 | { |
| 583 | int status; |
| 584 | union { |
| 585 | u8 bytes[4]; |
| 586 | u32 word; |
| 587 | } isr; |
| 588 | |
| 589 | /* FIXME need retry-on-error ... */ |
| 590 | |
| 591 | isr.word = 0; |
Balaji T K | fc7b92f | 2009-12-13 21:23:33 +0100 | [diff] [blame] | 592 | status = twl_i2c_read(sih->module, isr.bytes, |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 593 | sih->mask[irq_line].isr_offset, sih->bytes_ixr); |
| 594 | |
| 595 | return (status < 0) ? status : le32_to_cpu(isr.word); |
| 596 | } |
| 597 | |
| 598 | /* |
| 599 | * Generic handler for SIH interrupts ... we "know" this is called |
| 600 | * in task context, with IRQs enabled. |
| 601 | */ |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 602 | static irqreturn_t handle_twl4030_sih(int irq, void *data) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 603 | { |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 604 | struct sih_agent *agent = irq_get_handler_data(irq); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 605 | const struct sih *sih = agent->sih; |
| 606 | int isr; |
| 607 | |
| 608 | /* reading ISR acks the IRQs, using clear-on-read mode */ |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 609 | isr = sih_read_isr(sih); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 610 | |
| 611 | if (isr < 0) { |
| 612 | pr_err("twl4030: %s SIH, read ISR error %d\n", |
| 613 | sih->name, isr); |
| 614 | /* REVISIT: recover; eventually mask it all, etc */ |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 615 | return IRQ_HANDLED; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | while (isr) { |
| 619 | irq = fls(isr); |
| 620 | irq--; |
| 621 | isr &= ~BIT(irq); |
| 622 | |
| 623 | if (irq < sih->bits) |
Felipe Balbi | 925e853 | 2011-06-30 12:51:09 +0300 | [diff] [blame] | 624 | handle_nested_irq(agent->irq_base + irq); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 625 | else |
| 626 | pr_err("twl4030: %s SIH, invalid ISR bit %d\n", |
| 627 | sih->name, irq); |
| 628 | } |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 629 | return IRQ_HANDLED; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static unsigned twl4030_irq_next; |
| 633 | |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 634 | /* returns the first IRQ used by this SIH bank, or negative errno */ |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 635 | int twl4030_sih_setup(int module) |
| 636 | { |
| 637 | int sih_mod; |
| 638 | const struct sih *sih = NULL; |
| 639 | struct sih_agent *agent; |
| 640 | int i, irq; |
| 641 | int status = -EINVAL; |
| 642 | unsigned irq_base = twl4030_irq_next; |
| 643 | |
| 644 | /* only support modules with standard clear-on-read for now */ |
| 645 | for (sih_mod = 0, sih = sih_modules; |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 646 | sih_mod < nr_sih_modules; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 647 | sih_mod++, sih++) { |
| 648 | if (sih->module == module && sih->set_cor) { |
| 649 | if (!WARN((irq_base + sih->bits) > NR_IRQS, |
| 650 | "irq %d for %s too big\n", |
| 651 | irq_base + sih->bits, |
| 652 | sih->name)) |
| 653 | status = 0; |
| 654 | break; |
| 655 | } |
| 656 | } |
| 657 | if (status < 0) |
| 658 | return status; |
| 659 | |
| 660 | agent = kzalloc(sizeof *agent, GFP_KERNEL); |
| 661 | if (!agent) |
| 662 | return -ENOMEM; |
| 663 | |
| 664 | status = 0; |
| 665 | |
| 666 | agent->irq_base = irq_base; |
| 667 | agent->sih = sih; |
| 668 | agent->imr = ~0; |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 669 | mutex_init(&agent->irq_lock); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 670 | |
| 671 | for (i = 0; i < sih->bits; i++) { |
| 672 | irq = irq_base + i; |
| 673 | |
Felipe Balbi | 91e3569 | 2011-06-30 12:51:05 +0300 | [diff] [blame] | 674 | irq_set_chip_data(irq, agent); |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 675 | irq_set_chip_and_handler(irq, &twl4030_sih_irq_chip, |
| 676 | handle_edge_irq); |
NeilBrown | b18d1f0 | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 677 | irq_set_nested_thread(irq, 1); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 678 | activate_irq(irq); |
| 679 | } |
| 680 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 681 | twl4030_irq_next += i; |
| 682 | |
| 683 | /* replace generic PIH handler (handle_simple_irq) */ |
| 684 | irq = sih_mod + twl4030_irq_base; |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 685 | irq_set_handler_data(irq, agent); |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 686 | agent->irq_name = kasprintf(GFP_KERNEL, "twl4030_%s", sih->name); |
| 687 | status = request_threaded_irq(irq, NULL, handle_twl4030_sih, 0, |
| 688 | agent->irq_name ?: sih->name, NULL); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 689 | |
| 690 | pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", sih->name, |
| 691 | irq, irq_base, twl4030_irq_next - 1); |
| 692 | |
NeilBrown | c1e61bc | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 693 | return status < 0 ? status : irq_base; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | /* FIXME need a call to reverse twl4030_sih_setup() ... */ |
| 697 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 698 | /*----------------------------------------------------------------------*/ |
| 699 | |
| 700 | /* FIXME pass in which interrupt line we'll use ... */ |
| 701 | #define twl_irq_line 0 |
| 702 | |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 703 | int twl4030_init_irq(struct device *dev, int irq_num) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 704 | { |
| 705 | static struct irq_chip twl4030_irq_chip; |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 706 | int irq_base, irq_end, nr_irqs; |
| 707 | struct device_node *node = dev->of_node; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 708 | |
| 709 | int status; |
| 710 | int i; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 711 | |
| 712 | /* |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 713 | * TWL core and pwr interrupts must be contiguous because |
| 714 | * the hwirqs numbers are defined contiguously from 1 to 15. |
| 715 | * Create only one domain for both. |
| 716 | */ |
| 717 | nr_irqs = TWL4030_PWR_NR_IRQS + TWL4030_CORE_NR_IRQS; |
| 718 | |
| 719 | irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0); |
| 720 | if (IS_ERR_VALUE(irq_base)) { |
| 721 | dev_err(dev, "Fail to allocate IRQ descs\n"); |
| 722 | return irq_base; |
| 723 | } |
| 724 | |
| 725 | irq_domain_add_legacy(node, nr_irqs, irq_base, 0, |
| 726 | &irq_domain_simple_ops, NULL); |
| 727 | |
| 728 | irq_end = irq_base + TWL4030_CORE_NR_IRQS; |
| 729 | |
| 730 | /* |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 731 | * Mask and clear all TWL4030 interrupts since initially we do |
| 732 | * not have any TWL4030 module interrupt handlers present |
| 733 | */ |
| 734 | status = twl4030_init_sih_modules(twl_irq_line); |
| 735 | if (status < 0) |
| 736 | return status; |
| 737 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 738 | twl4030_irq_base = irq_base; |
| 739 | |
Felipe Contreras | cbcde05 | 2012-02-01 03:02:48 +0200 | [diff] [blame] | 740 | /* |
| 741 | * install an irq handler for each of the SIH modules; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 742 | * clone dummy irq_chip since PIH can't *do* anything |
| 743 | */ |
| 744 | twl4030_irq_chip = dummy_irq_chip; |
| 745 | twl4030_irq_chip.name = "twl4030"; |
| 746 | |
Thomas Gleixner | fe21221 | 2010-10-08 15:33:01 +0200 | [diff] [blame] | 747 | twl4030_sih_irq_chip.irq_ack = dummy_irq_chip.irq_ack; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 748 | |
| 749 | for (i = irq_base; i < irq_end; i++) { |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 750 | irq_set_chip_and_handler(i, &twl4030_irq_chip, |
| 751 | handle_simple_irq); |
Felipe Balbi | 925e853 | 2011-06-30 12:51:09 +0300 | [diff] [blame] | 752 | irq_set_nested_thread(i, 1); |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 753 | activate_irq(i); |
| 754 | } |
| 755 | twl4030_irq_next = i; |
| 756 | pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", "PIH", |
| 757 | irq_num, irq_base, twl4030_irq_next - 1); |
| 758 | |
| 759 | /* ... and the PWR_INT module ... */ |
| 760 | status = twl4030_sih_setup(TWL4030_MODULE_INT); |
| 761 | if (status < 0) { |
| 762 | pr_err("twl4030: sih_setup PWR INT --> %d\n", status); |
| 763 | goto fail; |
| 764 | } |
| 765 | |
| 766 | /* install an irq handler to demultiplex the TWL4030 interrupt */ |
NeilBrown | 286f8f3 | 2011-11-27 07:17:41 +1100 | [diff] [blame] | 767 | status = request_threaded_irq(irq_num, NULL, handle_twl4030_pih, |
| 768 | IRQF_ONESHOT, |
| 769 | "TWL4030-PIH", NULL); |
Russell King | 1cef8e4 | 2009-07-27 11:30:48 +0530 | [diff] [blame] | 770 | if (status < 0) { |
| 771 | pr_err("twl4030: could not claim irq%d: %d\n", irq_num, status); |
| 772 | goto fail_rqirq; |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 773 | } |
| 774 | |
Benoit Cousson | 78518ff | 2012-02-29 19:40:31 +0100 | [diff] [blame^] | 775 | return irq_base; |
Russell King | 1cef8e4 | 2009-07-27 11:30:48 +0530 | [diff] [blame] | 776 | fail_rqirq: |
| 777 | /* clean up twl4030_sih_setup */ |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 778 | fail: |
Felipe Balbi | 925e853 | 2011-06-30 12:51:09 +0300 | [diff] [blame] | 779 | for (i = irq_base; i < irq_end; i++) { |
| 780 | irq_set_nested_thread(i, 0); |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 781 | irq_set_chip_and_handler(i, NULL, NULL); |
Felipe Balbi | 925e853 | 2011-06-30 12:51:09 +0300 | [diff] [blame] | 782 | } |
Felipe Balbi | 2f2a7d5 | 2011-06-30 12:51:08 +0300 | [diff] [blame] | 783 | |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 784 | return status; |
| 785 | } |
| 786 | |
Balaji T K | e8deb28 | 2009-12-14 00:25:31 +0100 | [diff] [blame] | 787 | int twl4030_exit_irq(void) |
David Brownell | a30d46c | 2008-10-20 23:46:28 +0200 | [diff] [blame] | 788 | { |
| 789 | /* FIXME undo twl_init_irq() */ |
| 790 | if (twl4030_irq_base) { |
| 791 | pr_err("twl4030: can't yet clean up IRQs?\n"); |
| 792 | return -ENOSYS; |
| 793 | } |
| 794 | return 0; |
| 795 | } |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 796 | |
Balaji T K | e8deb28 | 2009-12-14 00:25:31 +0100 | [diff] [blame] | 797 | int twl4030_init_chip_irq(const char *chip) |
Ilkka Koskinen | 1920a61 | 2009-11-10 17:26:15 +0200 | [diff] [blame] | 798 | { |
| 799 | if (!strcmp(chip, "twl5031")) { |
| 800 | sih_modules = sih_modules_twl5031; |
| 801 | nr_sih_modules = ARRAY_SIZE(sih_modules_twl5031); |
| 802 | } else { |
| 803 | sih_modules = sih_modules_twl4030; |
| 804 | nr_sih_modules = ARRAY_SIZE(sih_modules_twl4030); |
| 805 | } |
| 806 | |
| 807 | return 0; |
| 808 | } |