blob: 0f1ff7fbdc74831cc51a0eacbd23bb175890fecf [file] [log] [blame]
Graeme Gregorye3471bd2011-05-02 16:20:04 -05001/*
2 * tps65910-irq.c -- TI TPS6591x
3 *
4 * Copyright 2010 Texas Instruments Inc.
5 *
6 * Author: Graeme Gregory <gg@slimlogic.co.uk>
7 * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/bug.h>
20#include <linux/device.h>
21#include <linux/interrupt.h>
22#include <linux/irq.h>
23#include <linux/gpio.h>
24#include <linux/mfd/tps65910.h>
25
26static inline int irq_to_tps65910_irq(struct tps65910 *tps65910,
27 int irq)
28{
29 return (irq - tps65910->irq_base);
30}
31
32/*
33 * This is a threaded IRQ handler so can access I2C/SPI. Since all
34 * interrupts are clear on read the IRQ line will be reasserted and
35 * the physical IRQ will be handled again if another interrupt is
36 * asserted while we run - in the normal course of events this is a
37 * rare occurrence so we save I2C/SPI reads. We're also assuming that
38 * it's rare to get lots of interrupts firing simultaneously so try to
39 * minimise I/O.
40 */
41static irqreturn_t tps65910_irq(int irq, void *irq_data)
42{
43 struct tps65910 *tps65910 = irq_data;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070044 unsigned int reg;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050045 u32 irq_sts;
46 u32 irq_mask;
Graeme Gregorye3471bd2011-05-02 16:20:04 -050047 int i;
48
Rhyland Klein3f7e8272012-05-08 11:42:38 -070049 tps65910_reg_read(tps65910, TPS65910_INT_STS, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -050050 irq_sts = reg;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070051 tps65910_reg_read(tps65910, TPS65910_INT_STS2, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -050052 irq_sts |= reg << 8;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050053 switch (tps65910_chip_id(tps65910)) {
54 case TPS65911:
Rhyland Klein3f7e8272012-05-08 11:42:38 -070055 tps65910_reg_read(tps65910, TPS65910_INT_STS3, &reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050056 irq_sts |= reg << 16;
57 }
Graeme Gregorye3471bd2011-05-02 16:20:04 -050058
Rhyland Klein3f7e8272012-05-08 11:42:38 -070059 tps65910_reg_read(tps65910, TPS65910_INT_MSK, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -050060 irq_mask = reg;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070061 tps65910_reg_read(tps65910, TPS65910_INT_MSK2, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -050062 irq_mask |= reg << 8;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050063 switch (tps65910_chip_id(tps65910)) {
64 case TPS65911:
Rhyland Klein3f7e8272012-05-08 11:42:38 -070065 tps65910_reg_read(tps65910, TPS65910_INT_MSK3, &reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050066 irq_mask |= reg << 16;
67 }
Graeme Gregorye3471bd2011-05-02 16:20:04 -050068
69 irq_sts &= ~irq_mask;
70
71 if (!irq_sts)
72 return IRQ_NONE;
73
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050074 for (i = 0; i < tps65910->irq_num; i++) {
Graeme Gregorye3471bd2011-05-02 16:20:04 -050075
76 if (!(irq_sts & (1 << i)))
77 continue;
78
79 handle_nested_irq(tps65910->irq_base + i);
80 }
81
82 /* Write the STS register back to clear IRQs we handled */
83 reg = irq_sts & 0xFF;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050084 irq_sts >>= 8;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070085 tps65910_reg_write(tps65910, TPS65910_INT_STS, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050086 reg = irq_sts & 0xFF;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070087 tps65910_reg_write(tps65910, TPS65910_INT_STS2, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050088 switch (tps65910_chip_id(tps65910)) {
89 case TPS65911:
90 reg = irq_sts >> 8;
Rhyland Klein3f7e8272012-05-08 11:42:38 -070091 tps65910_reg_write(tps65910, TPS65910_INT_STS3, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -050092 }
Graeme Gregorye3471bd2011-05-02 16:20:04 -050093
94 return IRQ_HANDLED;
95}
96
97static void tps65910_irq_lock(struct irq_data *data)
98{
99 struct tps65910 *tps65910 = irq_data_get_irq_chip_data(data);
100
101 mutex_lock(&tps65910->irq_lock);
102}
103
104static void tps65910_irq_sync_unlock(struct irq_data *data)
105{
106 struct tps65910 *tps65910 = irq_data_get_irq_chip_data(data);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500107 u32 reg_mask;
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700108 unsigned int reg;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500109
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700110 tps65910_reg_read(tps65910, TPS65910_INT_MSK, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500111 reg_mask = reg;
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700112 tps65910_reg_read(tps65910, TPS65910_INT_MSK2, &reg);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500113 reg_mask |= reg << 8;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500114 switch (tps65910_chip_id(tps65910)) {
115 case TPS65911:
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700116 tps65910_reg_read(tps65910, TPS65910_INT_MSK3, &reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500117 reg_mask |= reg << 16;
118 }
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500119
120 if (tps65910->irq_mask != reg_mask) {
121 reg = tps65910->irq_mask & 0xFF;
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700122 tps65910_reg_write(tps65910, TPS65910_INT_MSK, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500123 reg = tps65910->irq_mask >> 8 & 0xFF;
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700124 tps65910_reg_write(tps65910, TPS65910_INT_MSK2, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500125 switch (tps65910_chip_id(tps65910)) {
126 case TPS65911:
127 reg = tps65910->irq_mask >> 16;
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700128 tps65910_reg_write(tps65910, TPS65910_INT_MSK3, reg);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500129 }
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500130 }
131 mutex_unlock(&tps65910->irq_lock);
132}
133
134static void tps65910_irq_enable(struct irq_data *data)
135{
136 struct tps65910 *tps65910 = irq_data_get_irq_chip_data(data);
137
138 tps65910->irq_mask &= ~( 1 << irq_to_tps65910_irq(tps65910, data->irq));
139}
140
141static void tps65910_irq_disable(struct irq_data *data)
142{
143 struct tps65910 *tps65910 = irq_data_get_irq_chip_data(data);
144
145 tps65910->irq_mask |= ( 1 << irq_to_tps65910_irq(tps65910, data->irq));
146}
147
Laxman Dewangan0dc299a2012-01-23 13:16:15 +0530148#ifdef CONFIG_PM_SLEEP
149static int tps65910_irq_set_wake(struct irq_data *data, unsigned int enable)
150{
151 struct tps65910 *tps65910 = irq_data_get_irq_chip_data(data);
152 return irq_set_irq_wake(tps65910->chip_irq, enable);
153}
154#else
155#define tps65910_irq_set_wake NULL
156#endif
157
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500158static struct irq_chip tps65910_irq_chip = {
159 .name = "tps65910",
160 .irq_bus_lock = tps65910_irq_lock,
161 .irq_bus_sync_unlock = tps65910_irq_sync_unlock,
162 .irq_disable = tps65910_irq_disable,
163 .irq_enable = tps65910_irq_enable,
Laxman Dewangan0dc299a2012-01-23 13:16:15 +0530164 .irq_set_wake = tps65910_irq_set_wake,
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500165};
166
167int tps65910_irq_init(struct tps65910 *tps65910, int irq,
168 struct tps65910_platform_data *pdata)
169{
170 int ret, cur_irq;
171 int flags = IRQF_ONESHOT;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500172
173 if (!irq) {
174 dev_warn(tps65910->dev, "No interrupt support, no core IRQ\n");
175 return -EINVAL;
176 }
177
178 if (!pdata || !pdata->irq_base) {
179 dev_warn(tps65910->dev, "No interrupt support, no IRQ base\n");
180 return -EINVAL;
181 }
182
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500183 tps65910->irq_mask = 0xFFFFFF;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500184
185 mutex_init(&tps65910->irq_lock);
186 tps65910->chip_irq = irq;
187 tps65910->irq_base = pdata->irq_base;
188
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500189 switch (tps65910_chip_id(tps65910)) {
190 case TPS65910:
191 tps65910->irq_num = TPS65910_NUM_IRQ;
Johan Hovoldfa948762011-08-15 12:42:03 +0200192 break;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500193 case TPS65911:
194 tps65910->irq_num = TPS65911_NUM_IRQ;
Johan Hovoldfa948762011-08-15 12:42:03 +0200195 break;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500196 }
197
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500198 /* Register with genirq */
199 for (cur_irq = tps65910->irq_base;
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500200 cur_irq < tps65910->irq_num + tps65910->irq_base;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500201 cur_irq++) {
202 irq_set_chip_data(cur_irq, tps65910);
203 irq_set_chip_and_handler(cur_irq, &tps65910_irq_chip,
204 handle_edge_irq);
205 irq_set_nested_thread(cur_irq, 1);
206
207 /* ARM needs us to explicitly flag the IRQ as valid
208 * and will set them noprobe when we do so. */
209#ifdef CONFIG_ARM
210 set_irq_flags(cur_irq, IRQF_VALID);
211#else
212 irq_set_noprobe(cur_irq);
213#endif
214 }
215
216 ret = request_threaded_irq(irq, NULL, tps65910_irq, flags,
217 "tps65910", tps65910);
Jorge Eduardo Candelariaa2974732011-05-16 18:35:07 -0500218
219 irq_set_irq_type(irq, IRQ_TYPE_LEVEL_LOW);
220
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500221 if (ret != 0)
222 dev_err(tps65910->dev, "Failed to request IRQ: %d\n", ret);
223
224 return ret;
225}
226
227int tps65910_irq_exit(struct tps65910 *tps65910)
228{
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530229 if (tps65910->chip_irq)
230 free_irq(tps65910->chip_irq, tps65910);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500231 return 0;
232}