blob: 75cc8215f15b6347fbc4d87816b294722d337fd9 [file] [log] [blame]
David Brown1a5ab4b2011-05-16 15:53:38 -07001/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
Gregory Bean0cc2fc12010-11-24 11:53:51 -08002 *
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.
6 *
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.
11 *
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
15 * 02110-1301, USA.
16 *
17 */
Gregory Bean70cc2c02010-11-24 11:53:52 -080018#define pr_fmt(fmt) "%s: " fmt, __func__
19
20#include <linux/bitmap.h>
21#include <linux/bitops.h>
Gregory Bean0cc2fc12010-11-24 11:53:51 -080022#include <linux/gpio.h>
Gregory Bean70cc2c02010-11-24 11:53:52 -080023#include <linux/init.h>
24#include <linux/interrupt.h>
Gregory Bean0cc2fc12010-11-24 11:53:51 -080025#include <linux/io.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000026#include <linux/irqchip/chained_irq.h>
Gregory Bean0cc2fc12010-11-24 11:53:51 -080027#include <linux/irq.h>
28#include <linux/module.h>
29#include <linux/platform_device.h>
30#include <linux/spinlock.h>
Will Deacon03dd7652011-02-21 14:54:57 +000031
Gregory Bean0cc2fc12010-11-24 11:53:51 -080032#include <mach/msm_iomap.h>
Gregory Bean0cc2fc12010-11-24 11:53:51 -080033
34/* Bits of interest in the GPIO_IN_OUT register.
35 */
36enum {
Gregory Bean70cc2c02010-11-24 11:53:52 -080037 GPIO_IN = 0,
38 GPIO_OUT = 1
39};
40
41/* Bits of interest in the GPIO_INTR_STATUS register.
42 */
43enum {
44 INTR_STATUS = 0,
Gregory Bean0cc2fc12010-11-24 11:53:51 -080045};
46
47/* Bits of interest in the GPIO_CFG register.
48 */
49enum {
Gregory Bean70cc2c02010-11-24 11:53:52 -080050 GPIO_OE = 9,
Gregory Bean0cc2fc12010-11-24 11:53:51 -080051};
52
Gregory Bean70cc2c02010-11-24 11:53:52 -080053/* Bits of interest in the GPIO_INTR_CFG register.
54 * When a GPIO triggers, two separate decisions are made, controlled
55 * by two separate flags.
56 *
57 * - First, INTR_RAW_STATUS_EN controls whether or not the GPIO_INTR_STATUS
58 * register for that GPIO will be updated to reflect the triggering of that
59 * gpio. If this bit is 0, this register will not be updated.
60 * - Second, INTR_ENABLE controls whether an interrupt is triggered.
61 *
62 * If INTR_ENABLE is set and INTR_RAW_STATUS_EN is NOT set, an interrupt
63 * can be triggered but the status register will not reflect it.
64 */
65enum {
66 INTR_ENABLE = 0,
67 INTR_POL_CTL = 1,
68 INTR_DECT_CTL = 2,
69 INTR_RAW_STATUS_EN = 3,
70};
71
72/* Codes of interest in GPIO_INTR_CFG_SU.
73 */
74enum {
75 TARGET_PROC_SCORPION = 4,
76 TARGET_PROC_NONE = 7,
77};
78
79
80#define GPIO_INTR_CFG_SU(gpio) (MSM_TLMM_BASE + 0x0400 + (0x04 * (gpio)))
Gregory Bean0cc2fc12010-11-24 11:53:51 -080081#define GPIO_CONFIG(gpio) (MSM_TLMM_BASE + 0x1000 + (0x10 * (gpio)))
82#define GPIO_IN_OUT(gpio) (MSM_TLMM_BASE + 0x1004 + (0x10 * (gpio)))
Gregory Bean70cc2c02010-11-24 11:53:52 -080083#define GPIO_INTR_CFG(gpio) (MSM_TLMM_BASE + 0x1008 + (0x10 * (gpio)))
84#define GPIO_INTR_STATUS(gpio) (MSM_TLMM_BASE + 0x100c + (0x10 * (gpio)))
85
86/**
87 * struct msm_gpio_dev: the MSM8660 SoC GPIO device structure
88 *
89 * @enabled_irqs: a bitmap used to optimize the summary-irq handler. By
90 * keeping track of which gpios are unmasked as irq sources, we avoid
91 * having to do readl calls on hundreds of iomapped registers each time
92 * the summary interrupt fires in order to locate the active interrupts.
93 *
94 * @wake_irqs: a bitmap for tracking which interrupt lines are enabled
95 * as wakeup sources. When the device is suspended, interrupts which are
96 * not wakeup sources are disabled.
97 *
98 * @dual_edge_irqs: a bitmap used to track which irqs are configured
99 * as dual-edge, as this is not supported by the hardware and requires
100 * some special handling in the driver.
101 */
102struct msm_gpio_dev {
103 struct gpio_chip gpio_chip;
104 DECLARE_BITMAP(enabled_irqs, NR_GPIO_IRQS);
105 DECLARE_BITMAP(wake_irqs, NR_GPIO_IRQS);
106 DECLARE_BITMAP(dual_edge_irqs, NR_GPIO_IRQS);
107};
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800108
109static DEFINE_SPINLOCK(tlmm_lock);
110
Gregory Bean70cc2c02010-11-24 11:53:52 -0800111static inline struct msm_gpio_dev *to_msm_gpio_dev(struct gpio_chip *chip)
112{
113 return container_of(chip, struct msm_gpio_dev, gpio_chip);
114}
115
116static inline void set_gpio_bits(unsigned n, void __iomem *reg)
117{
118 writel(readl(reg) | n, reg);
119}
120
121static inline void clear_gpio_bits(unsigned n, void __iomem *reg)
122{
123 writel(readl(reg) & ~n, reg);
124}
125
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800126static int msm_gpio_get(struct gpio_chip *chip, unsigned offset)
127{
Gregory Bean70cc2c02010-11-24 11:53:52 -0800128 return readl(GPIO_IN_OUT(offset)) & BIT(GPIO_IN);
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800129}
130
131static void msm_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
132{
Gregory Bean70cc2c02010-11-24 11:53:52 -0800133 writel(val ? BIT(GPIO_OUT) : 0, GPIO_IN_OUT(offset));
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800134}
135
136static int msm_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
137{
138 unsigned long irq_flags;
139
140 spin_lock_irqsave(&tlmm_lock, irq_flags);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800141 clear_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800142 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
143 return 0;
144}
145
146static int msm_gpio_direction_output(struct gpio_chip *chip,
147 unsigned offset,
148 int val)
149{
150 unsigned long irq_flags;
151
152 spin_lock_irqsave(&tlmm_lock, irq_flags);
153 msm_gpio_set(chip, offset, val);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800154 set_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800155 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
156 return 0;
157}
158
159static int msm_gpio_request(struct gpio_chip *chip, unsigned offset)
160{
Rohit Vaswanieda9dcf2013-06-10 15:50:19 -0700161 return 0;
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800162}
163
164static void msm_gpio_free(struct gpio_chip *chip, unsigned offset)
165{
Rohit Vaswanieda9dcf2013-06-10 15:50:19 -0700166 return;
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800167}
168
Gregory Bean70cc2c02010-11-24 11:53:52 -0800169static int msm_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
170{
171 return MSM_GPIO_TO_INT(chip->base + offset);
172}
173
174static inline int msm_irq_to_gpio(struct gpio_chip *chip, unsigned irq)
175{
176 return irq - MSM_GPIO_TO_INT(chip->base);
177}
178
179static struct msm_gpio_dev msm_gpio = {
180 .gpio_chip = {
181 .base = 0,
182 .ngpio = NR_GPIO_IRQS,
183 .direction_input = msm_gpio_direction_input,
184 .direction_output = msm_gpio_direction_output,
185 .get = msm_gpio_get,
186 .set = msm_gpio_set,
187 .to_irq = msm_gpio_to_irq,
188 .request = msm_gpio_request,
189 .free = msm_gpio_free,
190 },
191};
192
193/* For dual-edge interrupts in software, since the hardware has no
194 * such support:
195 *
196 * At appropriate moments, this function may be called to flip the polarity
197 * settings of both-edge irq lines to try and catch the next edge.
198 *
199 * The attempt is considered successful if:
200 * - the status bit goes high, indicating that an edge was caught, or
201 * - the input value of the gpio doesn't change during the attempt.
202 * If the value changes twice during the process, that would cause the first
203 * test to fail but would force the second, as two opposite
204 * transitions would cause a detection no matter the polarity setting.
205 *
206 * The do-loop tries to sledge-hammer closed the timing hole between
207 * the initial value-read and the polarity-write - if the line value changes
208 * during that window, an interrupt is lost, the new polarity setting is
209 * incorrect, and the first success test will fail, causing a retry.
210 *
211 * Algorithm comes from Google's msmgpio driver, see mach-msm/gpio.c.
212 */
213static void msm_gpio_update_dual_edge_pos(unsigned gpio)
214{
215 int loop_limit = 100;
216 unsigned val, val2, intstat;
217
218 do {
219 val = readl(GPIO_IN_OUT(gpio)) & BIT(GPIO_IN);
220 if (val)
221 clear_gpio_bits(BIT(INTR_POL_CTL), GPIO_INTR_CFG(gpio));
222 else
223 set_gpio_bits(BIT(INTR_POL_CTL), GPIO_INTR_CFG(gpio));
224 val2 = readl(GPIO_IN_OUT(gpio)) & BIT(GPIO_IN);
225 intstat = readl(GPIO_INTR_STATUS(gpio)) & BIT(INTR_STATUS);
226 if (intstat || val == val2)
227 return;
228 } while (loop_limit-- > 0);
229 pr_err("dual-edge irq failed to stabilize, "
230 "interrupts dropped. %#08x != %#08x\n",
231 val, val2);
232}
233
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100234static void msm_gpio_irq_ack(struct irq_data *d)
Gregory Bean70cc2c02010-11-24 11:53:52 -0800235{
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100236 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800237
238 writel(BIT(INTR_STATUS), GPIO_INTR_STATUS(gpio));
239 if (test_bit(gpio, msm_gpio.dual_edge_irqs))
240 msm_gpio_update_dual_edge_pos(gpio);
241}
242
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100243static void msm_gpio_irq_mask(struct irq_data *d)
Gregory Bean70cc2c02010-11-24 11:53:52 -0800244{
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100245 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800246 unsigned long irq_flags;
247
248 spin_lock_irqsave(&tlmm_lock, irq_flags);
249 writel(TARGET_PROC_NONE, GPIO_INTR_CFG_SU(gpio));
250 clear_gpio_bits(INTR_RAW_STATUS_EN | INTR_ENABLE, GPIO_INTR_CFG(gpio));
251 __clear_bit(gpio, msm_gpio.enabled_irqs);
252 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
253}
254
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100255static void msm_gpio_irq_unmask(struct irq_data *d)
Gregory Bean70cc2c02010-11-24 11:53:52 -0800256{
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100257 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800258 unsigned long irq_flags;
259
260 spin_lock_irqsave(&tlmm_lock, irq_flags);
261 __set_bit(gpio, msm_gpio.enabled_irqs);
262 set_gpio_bits(INTR_RAW_STATUS_EN | INTR_ENABLE, GPIO_INTR_CFG(gpio));
263 writel(TARGET_PROC_SCORPION, GPIO_INTR_CFG_SU(gpio));
264 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
265}
266
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100267static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type)
Gregory Bean70cc2c02010-11-24 11:53:52 -0800268{
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100269 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800270 unsigned long irq_flags;
271 uint32_t bits;
272
273 spin_lock_irqsave(&tlmm_lock, irq_flags);
274
275 bits = readl(GPIO_INTR_CFG(gpio));
276
277 if (flow_type & IRQ_TYPE_EDGE_BOTH) {
278 bits |= BIT(INTR_DECT_CTL);
Thomas Gleixner70c4fa22011-03-24 12:41:27 +0100279 __irq_set_handler_locked(d->irq, handle_edge_irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800280 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
281 __set_bit(gpio, msm_gpio.dual_edge_irqs);
282 else
283 __clear_bit(gpio, msm_gpio.dual_edge_irqs);
284 } else {
285 bits &= ~BIT(INTR_DECT_CTL);
Thomas Gleixner70c4fa22011-03-24 12:41:27 +0100286 __irq_set_handler_locked(d->irq, handle_level_irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800287 __clear_bit(gpio, msm_gpio.dual_edge_irqs);
288 }
289
290 if (flow_type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH))
291 bits |= BIT(INTR_POL_CTL);
292 else
293 bits &= ~BIT(INTR_POL_CTL);
294
295 writel(bits, GPIO_INTR_CFG(gpio));
296
297 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
298 msm_gpio_update_dual_edge_pos(gpio);
299
300 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
301
302 return 0;
303}
304
305/*
306 * When the summary IRQ is raised, any number of GPIO lines may be high.
307 * It is the job of the summary handler to find all those GPIO lines
308 * which have been set as summary IRQ lines and which are triggered,
309 * and to call their interrupt handlers.
310 */
311static void msm_summary_irq_handler(unsigned int irq, struct irq_desc *desc)
312{
313 unsigned long i;
Will Deacon03dd7652011-02-21 14:54:57 +0000314 struct irq_chip *chip = irq_desc_get_chip(desc);
315
316 chained_irq_enter(chip, desc);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800317
Wei Yongjun939d9022012-09-14 10:28:31 +0800318 for_each_set_bit(i, msm_gpio.enabled_irqs, NR_GPIO_IRQS) {
Gregory Bean70cc2c02010-11-24 11:53:52 -0800319 if (readl(GPIO_INTR_STATUS(i)) & BIT(INTR_STATUS))
320 generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip,
321 i));
322 }
Will Deacon03dd7652011-02-21 14:54:57 +0000323
324 chained_irq_exit(chip, desc);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800325}
326
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100327static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
Gregory Bean70cc2c02010-11-24 11:53:52 -0800328{
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100329 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800330
331 if (on) {
332 if (bitmap_empty(msm_gpio.wake_irqs, NR_GPIO_IRQS))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100333 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 1);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800334 set_bit(gpio, msm_gpio.wake_irqs);
335 } else {
336 clear_bit(gpio, msm_gpio.wake_irqs);
337 if (bitmap_empty(msm_gpio.wake_irqs, NR_GPIO_IRQS))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100338 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 0);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800339 }
340
341 return 0;
342}
343
344static struct irq_chip msm_gpio_irq_chip = {
345 .name = "msmgpio",
Thomas Gleixnercf8d1582011-03-24 11:58:31 +0100346 .irq_mask = msm_gpio_irq_mask,
347 .irq_unmask = msm_gpio_irq_unmask,
348 .irq_ack = msm_gpio_irq_ack,
349 .irq_set_type = msm_gpio_irq_set_type,
350 .irq_set_wake = msm_gpio_irq_set_wake,
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800351};
352
Bill Pemberton38363092012-11-19 13:22:34 -0500353static int msm_gpio_probe(struct platform_device *dev)
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800354{
Gregory Bean70cc2c02010-11-24 11:53:52 -0800355 int i, irq, ret;
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800356
Gregory Bean70cc2c02010-11-24 11:53:52 -0800357 bitmap_zero(msm_gpio.enabled_irqs, NR_GPIO_IRQS);
358 bitmap_zero(msm_gpio.wake_irqs, NR_GPIO_IRQS);
359 bitmap_zero(msm_gpio.dual_edge_irqs, NR_GPIO_IRQS);
360 msm_gpio.gpio_chip.label = dev->name;
361 ret = gpiochip_add(&msm_gpio.gpio_chip);
362 if (ret < 0)
363 return ret;
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800364
Gregory Bean70cc2c02010-11-24 11:53:52 -0800365 for (i = 0; i < msm_gpio.gpio_chip.ngpio; ++i) {
366 irq = msm_gpio_to_irq(&msm_gpio.gpio_chip, i);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100367 irq_set_chip_and_handler(irq, &msm_gpio_irq_chip,
368 handle_level_irq);
Gregory Bean70cc2c02010-11-24 11:53:52 -0800369 set_irq_flags(irq, IRQF_VALID);
370 }
371
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100372 irq_set_chained_handler(TLMM_SCSS_SUMMARY_IRQ,
Gregory Bean70cc2c02010-11-24 11:53:52 -0800373 msm_summary_irq_handler);
374 return 0;
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800375}
376
Bill Pemberton206210c2012-11-19 13:25:50 -0500377static int msm_gpio_remove(struct platform_device *dev)
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800378{
Gregory Bean70cc2c02010-11-24 11:53:52 -0800379 int ret = gpiochip_remove(&msm_gpio.gpio_chip);
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800380
381 if (ret < 0)
382 return ret;
383
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100384 irq_set_handler(TLMM_SCSS_SUMMARY_IRQ, NULL);
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800385
386 return 0;
387}
388
389static struct platform_driver msm_gpio_driver = {
390 .probe = msm_gpio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500391 .remove = msm_gpio_remove,
Gregory Bean0cc2fc12010-11-24 11:53:51 -0800392 .driver = {
393 .name = "msmgpio",
394 .owner = THIS_MODULE,
395 },
396};
397
398static struct platform_device msm_device_gpio = {
399 .name = "msmgpio",
400 .id = -1,
401};
402
403static int __init msm_gpio_init(void)
404{
405 int rc;
406
407 rc = platform_driver_register(&msm_gpio_driver);
408 if (!rc) {
409 rc = platform_device_register(&msm_device_gpio);
410 if (rc)
411 platform_driver_unregister(&msm_gpio_driver);
412 }
413
414 return rc;
415}
416
417static void __exit msm_gpio_exit(void)
418{
419 platform_device_unregister(&msm_device_gpio);
420 platform_driver_unregister(&msm_gpio_driver);
421}
422
423postcore_initcall(msm_gpio_init);
424module_exit(msm_gpio_exit);
425
426MODULE_AUTHOR("Gregory Bean <gbean@codeaurora.org>");
427MODULE_DESCRIPTION("Driver for Qualcomm MSM TLMMv2 SoC GPIOs");
428MODULE_LICENSE("GPL v2");
429MODULE_ALIAS("platform:msmgpio");