ARM: msm: Remove gpiomux-v2 and re-organize MSM_GPIOMUX configs
[deliverable/linux.git] / drivers / gpio / gpio-msm-v2.c
CommitLineData
1a5ab4b3 1/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
0cc2fc1f
GB
2 *
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 */
70cc2c00
GB
18#define pr_fmt(fmt) "%s: " fmt, __func__
19
20#include <linux/bitmap.h>
21#include <linux/bitops.h>
0cc2fc1f 22#include <linux/gpio.h>
70cc2c00
GB
23#include <linux/init.h>
24#include <linux/interrupt.h>
0cc2fc1f 25#include <linux/io.h>
de88cbb7 26#include <linux/irqchip/chained_irq.h>
0cc2fc1f
GB
27#include <linux/irq.h>
28#include <linux/module.h>
29#include <linux/platform_device.h>
30#include <linux/spinlock.h>
03dd765f 31
0cc2fc1f 32#include <mach/msm_iomap.h>
0cc2fc1f
GB
33
34/* Bits of interest in the GPIO_IN_OUT register.
35 */
36enum {
70cc2c00
GB
37 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,
0cc2fc1f
GB
45};
46
47/* Bits of interest in the GPIO_CFG register.
48 */
49enum {
70cc2c00
GB
50 GPIO_OE = 9,
51};
52
53/* 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,
0cc2fc1f
GB
77};
78
70cc2c00
GB
79
80#define GPIO_INTR_CFG_SU(gpio) (MSM_TLMM_BASE + 0x0400 + (0x04 * (gpio)))
0cc2fc1f
GB
81#define GPIO_CONFIG(gpio) (MSM_TLMM_BASE + 0x1000 + (0x10 * (gpio)))
82#define GPIO_IN_OUT(gpio) (MSM_TLMM_BASE + 0x1004 + (0x10 * (gpio)))
70cc2c00
GB
83#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};
0cc2fc1f
GB
108
109static DEFINE_SPINLOCK(tlmm_lock);
110
70cc2c00
GB
111static 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
0cc2fc1f
GB
126static int msm_gpio_get(struct gpio_chip *chip, unsigned offset)
127{
70cc2c00 128 return readl(GPIO_IN_OUT(offset)) & BIT(GPIO_IN);
0cc2fc1f
GB
129}
130
131static void msm_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
132{
70cc2c00 133 writel(val ? BIT(GPIO_OUT) : 0, GPIO_IN_OUT(offset));
0cc2fc1f
GB
134}
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);
70cc2c00 141 clear_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
0cc2fc1f
GB
142 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);
70cc2c00 154 set_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
0cc2fc1f
GB
155 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
156 return 0;
157}
158
159static int msm_gpio_request(struct gpio_chip *chip, unsigned offset)
160{
eda9dcfa 161 return 0;
0cc2fc1f
GB
162}
163
164static void msm_gpio_free(struct gpio_chip *chip, unsigned offset)
165{
eda9dcfa 166 return;
0cc2fc1f
GB
167}
168
70cc2c00
GB
169static 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
cf8d1581 234static void msm_gpio_irq_ack(struct irq_data *d)
70cc2c00 235{
cf8d1581 236 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
70cc2c00
GB
237
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
cf8d1581 243static void msm_gpio_irq_mask(struct irq_data *d)
70cc2c00 244{
cf8d1581 245 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
70cc2c00
GB
246 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
cf8d1581 255static void msm_gpio_irq_unmask(struct irq_data *d)
70cc2c00 256{
cf8d1581 257 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
70cc2c00
GB
258 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
cf8d1581 267static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type)
70cc2c00 268{
cf8d1581 269 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
70cc2c00
GB
270 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);
70c4fa22 279 __irq_set_handler_locked(d->irq, handle_edge_irq);
70cc2c00
GB
280 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);
70c4fa22 286 __irq_set_handler_locked(d->irq, handle_level_irq);
70cc2c00
GB
287 __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;
03dd765f
WD
314 struct irq_chip *chip = irq_desc_get_chip(desc);
315
316 chained_irq_enter(chip, desc);
70cc2c00 317
939d902d 318 for_each_set_bit(i, msm_gpio.enabled_irqs, NR_GPIO_IRQS) {
70cc2c00
GB
319 if (readl(GPIO_INTR_STATUS(i)) & BIT(INTR_STATUS))
320 generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip,
321 i));
322 }
03dd765f
WD
323
324 chained_irq_exit(chip, desc);
70cc2c00
GB
325}
326
cf8d1581 327static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
70cc2c00 328{
cf8d1581 329 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
70cc2c00
GB
330
331 if (on) {
332 if (bitmap_empty(msm_gpio.wake_irqs, NR_GPIO_IRQS))
6845664a 333 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 1);
70cc2c00
GB
334 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))
6845664a 338 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 0);
70cc2c00
GB
339 }
340
341 return 0;
342}
343
344static struct irq_chip msm_gpio_irq_chip = {
345 .name = "msmgpio",
cf8d1581
TG
346 .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,
0cc2fc1f
GB
351};
352
3836309d 353static int msm_gpio_probe(struct platform_device *dev)
0cc2fc1f 354{
70cc2c00
GB
355 int i, irq, ret;
356
357 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;
0cc2fc1f 364
70cc2c00
GB
365 for (i = 0; i < msm_gpio.gpio_chip.ngpio; ++i) {
366 irq = msm_gpio_to_irq(&msm_gpio.gpio_chip, i);
f38c02f3
TG
367 irq_set_chip_and_handler(irq, &msm_gpio_irq_chip,
368 handle_level_irq);
70cc2c00
GB
369 set_irq_flags(irq, IRQF_VALID);
370 }
0cc2fc1f 371
6845664a 372 irq_set_chained_handler(TLMM_SCSS_SUMMARY_IRQ,
70cc2c00
GB
373 msm_summary_irq_handler);
374 return 0;
0cc2fc1f
GB
375}
376
206210ce 377static int msm_gpio_remove(struct platform_device *dev)
0cc2fc1f 378{
70cc2c00 379 int ret = gpiochip_remove(&msm_gpio.gpio_chip);
0cc2fc1f
GB
380
381 if (ret < 0)
382 return ret;
383
6845664a 384 irq_set_handler(TLMM_SCSS_SUMMARY_IRQ, NULL);
0cc2fc1f
GB
385
386 return 0;
387}
388
389static struct platform_driver msm_gpio_driver = {
390 .probe = msm_gpio_probe,
8283c4ff 391 .remove = msm_gpio_remove,
0cc2fc1f
GB
392 .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");
This page took 0.391081 seconds and 5 git commands to generate.