blob: 7523b6d108d0c1336dc511980221bbc0179c1030 [file] [log] [blame]
Philipp Zabel1c44f5f2008-02-04 22:28:22 -08001/*
Eric Miao38f539a2009-01-20 12:09:06 +08002 * linux/arch/arm/plat-pxa/gpio.c
Philipp Zabel1c44f5f2008-02-04 22:28:22 -08003 *
4 * Generic PXA GPIO handling
5 *
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
Haojian Zhuang7a4d5072012-04-13 15:15:45 +080014#include <linux/module.h>
Haojian Zhuang389eda12011-10-17 21:26:55 +080015#include <linux/clk.h>
16#include <linux/err.h>
Russell King2f8163b2011-07-26 10:53:52 +010017#include <linux/gpio.h>
Haojian Zhuang157d2642011-10-17 20:37:52 +080018#include <linux/gpio-pxa.h>
Philipp Zabel1c44f5f2008-02-04 22:28:22 -080019#include <linux/init.h>
eric miaoe3630db2008-03-04 11:42:26 +080020#include <linux/irq.h>
Haojian Zhuang7a4d5072012-04-13 15:15:45 +080021#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000022#include <linux/irqchip/chained_irq.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Haojian Zhuang7a4d5072012-04-13 15:15:45 +080024#include <linux/of.h>
25#include <linux/of_device.h>
Haojian Zhuang157d2642011-10-17 20:37:52 +080026#include <linux/platform_device.h>
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020027#include <linux/syscore_ops.h>
Daniel Mack4aa78262009-06-19 22:56:09 +020028#include <linux/slab.h>
Philipp Zabel1c44f5f2008-02-04 22:28:22 -080029
Rob Herringfeefe732012-01-03 15:52:42 -060030#include <mach/irqs.h>
31
Haojian Zhuang157d2642011-10-17 20:37:52 +080032/*
33 * We handle the GPIOs by banks, each bank covers up to 32 GPIOs with
34 * one set of registers. The register offsets are organized below:
35 *
36 * GPLR GPDR GPSR GPCR GRER GFER GEDR
37 * BANK 0 - 0x0000 0x000C 0x0018 0x0024 0x0030 0x003C 0x0048
38 * BANK 1 - 0x0004 0x0010 0x001C 0x0028 0x0034 0x0040 0x004C
39 * BANK 2 - 0x0008 0x0014 0x0020 0x002C 0x0038 0x0044 0x0050
40 *
41 * BANK 3 - 0x0100 0x010C 0x0118 0x0124 0x0130 0x013C 0x0148
42 * BANK 4 - 0x0104 0x0110 0x011C 0x0128 0x0134 0x0140 0x014C
43 * BANK 5 - 0x0108 0x0114 0x0120 0x012C 0x0138 0x0144 0x0150
44 *
45 * NOTE:
46 * BANK 3 is only available on PXA27x and later processors.
47 * BANK 4 and 5 are only available on PXA935
48 */
49
50#define GPLR_OFFSET 0x00
51#define GPDR_OFFSET 0x0C
52#define GPSR_OFFSET 0x18
53#define GPCR_OFFSET 0x24
54#define GRER_OFFSET 0x30
55#define GFER_OFFSET 0x3C
56#define GEDR_OFFSET 0x48
57#define GAFR_OFFSET 0x54
Haojian Zhuangbe241682011-10-17 21:07:15 +080058#define ED_MASK_OFFSET 0x9C /* GPIO edge detection for AP side */
Haojian Zhuang157d2642011-10-17 20:37:52 +080059
60#define BANK_OFF(n) (((n) < 3) ? (n) << 2 : 0x100 + (((n) - 3) << 2))
Philipp Zabel1c44f5f2008-02-04 22:28:22 -080061
Eric Miao3b8e2852009-01-07 11:30:49 +080062int pxa_last_gpio;
Daniel Mack9450be72012-07-22 16:55:44 +020063static int irq_base;
Eric Miao3b8e2852009-01-07 11:30:49 +080064
Haojian Zhuang7a4d5072012-04-13 15:15:45 +080065#ifdef CONFIG_OF
66static struct irq_domain *domain;
Daniel Mack72121572012-07-25 17:35:39 +020067static struct device_node *pxa_gpio_of_node;
Haojian Zhuang7a4d5072012-04-13 15:15:45 +080068#endif
69
Philipp Zabel1c44f5f2008-02-04 22:28:22 -080070struct pxa_gpio_chip {
71 struct gpio_chip chip;
Eric Miao0807da52009-01-07 18:01:51 +080072 void __iomem *regbase;
73 char label[10];
74
75 unsigned long irq_mask;
76 unsigned long irq_edge_rise;
77 unsigned long irq_edge_fall;
Robert Jarzmikb95ace52012-04-22 13:37:24 +020078 int (*set_wake)(unsigned int gpio, unsigned int on);
Eric Miao0807da52009-01-07 18:01:51 +080079
80#ifdef CONFIG_PM
81 unsigned long saved_gplr;
82 unsigned long saved_gpdr;
83 unsigned long saved_grer;
84 unsigned long saved_gfer;
85#endif
Philipp Zabel1c44f5f2008-02-04 22:28:22 -080086};
87
Haojian Zhuang4929f5a2011-10-10 16:03:51 +080088enum {
89 PXA25X_GPIO = 0,
90 PXA26X_GPIO,
91 PXA27X_GPIO,
92 PXA3XX_GPIO,
93 PXA93X_GPIO,
94 MMP_GPIO = 0x10,
Haojian Zhuang4929f5a2011-10-10 16:03:51 +080095};
96
Eric Miao0807da52009-01-07 18:01:51 +080097static DEFINE_SPINLOCK(gpio_lock);
98static struct pxa_gpio_chip *pxa_gpio_chips;
Haojian Zhuang4929f5a2011-10-10 16:03:51 +080099static int gpio_type;
Haojian Zhuang157d2642011-10-17 20:37:52 +0800100static void __iomem *gpio_reg_base;
Eric Miao0807da52009-01-07 18:01:51 +0800101
102#define for_each_gpio_chip(i, c) \
103 for (i = 0, c = &pxa_gpio_chips[0]; i <= pxa_last_gpio; i += 32, c++)
104
105static inline void __iomem *gpio_chip_base(struct gpio_chip *c)
106{
107 return container_of(c, struct pxa_gpio_chip, chip)->regbase;
108}
109
Linus Walleija0656852011-06-13 10:42:19 +0200110static inline struct pxa_gpio_chip *gpio_to_pxachip(unsigned gpio)
Eric Miao0807da52009-01-07 18:01:51 +0800111{
112 return &pxa_gpio_chips[gpio_to_bank(gpio)];
113}
114
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800115static inline int gpio_is_pxa_type(int type)
116{
117 return (type & MMP_GPIO) == 0;
118}
119
120static inline int gpio_is_mmp_type(int type)
121{
122 return (type & MMP_GPIO) != 0;
123}
124
Haojian Zhuang157d2642011-10-17 20:37:52 +0800125/* GPIO86/87/88/89 on PXA26x have their direction bits in PXA_GPDR(2 inverted,
126 * as well as their Alternate Function value being '1' for GPIO in GAFRx.
127 */
128static inline int __gpio_is_inverted(int gpio)
129{
130 if ((gpio_type == PXA26X_GPIO) && (gpio > 85))
131 return 1;
132 return 0;
133}
134
135/*
136 * On PXA25x and PXA27x, GAFRx and GPDRx together decide the alternate
137 * function of a GPIO, and GPDRx cannot be altered once configured. It
138 * is attributed as "occupied" here (I know this terminology isn't
139 * accurate, you are welcome to propose a better one :-)
140 */
141static inline int __gpio_is_occupied(unsigned gpio)
142{
143 struct pxa_gpio_chip *pxachip;
144 void __iomem *base;
145 unsigned long gafr = 0, gpdr = 0;
146 int ret, af = 0, dir = 0;
147
148 pxachip = gpio_to_pxachip(gpio);
149 base = gpio_chip_base(&pxachip->chip);
150 gpdr = readl_relaxed(base + GPDR_OFFSET);
151
152 switch (gpio_type) {
153 case PXA25X_GPIO:
154 case PXA26X_GPIO:
155 case PXA27X_GPIO:
156 gafr = readl_relaxed(base + GAFR_OFFSET);
157 af = (gafr >> ((gpio & 0xf) * 2)) & 0x3;
158 dir = gpdr & GPIO_bit(gpio);
159
160 if (__gpio_is_inverted(gpio))
161 ret = (af != 1) || (dir == 0);
162 else
163 ret = (af != 0) || (dir != 0);
164 break;
165 default:
166 ret = gpdr & GPIO_bit(gpio);
167 break;
168 }
169 return ret;
170}
171
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800172static int pxa_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
173{
Daniel Mack9450be72012-07-22 16:55:44 +0200174 return chip->base + offset + irq_base;
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800175}
176
177int pxa_irq_to_gpio(int irq)
178{
Daniel Mack9450be72012-07-22 16:55:44 +0200179 return irq - irq_base;
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800180}
181
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800182static int pxa_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
183{
Eric Miao0807da52009-01-07 18:01:51 +0800184 void __iomem *base = gpio_chip_base(chip);
185 uint32_t value, mask = 1 << offset;
186 unsigned long flags;
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800187
Eric Miao0807da52009-01-07 18:01:51 +0800188 spin_lock_irqsave(&gpio_lock, flags);
189
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800190 value = readl_relaxed(base + GPDR_OFFSET);
Eric Miao067455a2008-11-26 18:12:04 +0800191 if (__gpio_is_inverted(chip->base + offset))
192 value |= mask;
193 else
194 value &= ~mask;
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800195 writel_relaxed(value, base + GPDR_OFFSET);
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800196
Eric Miao0807da52009-01-07 18:01:51 +0800197 spin_unlock_irqrestore(&gpio_lock, flags);
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800198 return 0;
199}
200
201static int pxa_gpio_direction_output(struct gpio_chip *chip,
Eric Miao0807da52009-01-07 18:01:51 +0800202 unsigned offset, int value)
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800203{
Eric Miao0807da52009-01-07 18:01:51 +0800204 void __iomem *base = gpio_chip_base(chip);
205 uint32_t tmp, mask = 1 << offset;
206 unsigned long flags;
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800207
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800208 writel_relaxed(mask, base + (value ? GPSR_OFFSET : GPCR_OFFSET));
Eric Miao0807da52009-01-07 18:01:51 +0800209
210 spin_lock_irqsave(&gpio_lock, flags);
211
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800212 tmp = readl_relaxed(base + GPDR_OFFSET);
Eric Miao067455a2008-11-26 18:12:04 +0800213 if (__gpio_is_inverted(chip->base + offset))
214 tmp &= ~mask;
215 else
216 tmp |= mask;
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800217 writel_relaxed(tmp, base + GPDR_OFFSET);
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800218
Eric Miao0807da52009-01-07 18:01:51 +0800219 spin_unlock_irqrestore(&gpio_lock, flags);
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800220 return 0;
221}
222
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800223static int pxa_gpio_get(struct gpio_chip *chip, unsigned offset)
224{
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800225 return readl_relaxed(gpio_chip_base(chip) + GPLR_OFFSET) & (1 << offset);
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800226}
227
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800228static void pxa_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
229{
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800230 writel_relaxed(1 << offset, gpio_chip_base(chip) +
Eric Miao0807da52009-01-07 18:01:51 +0800231 (value ? GPSR_OFFSET : GPCR_OFFSET));
Philipp Zabel1c44f5f2008-02-04 22:28:22 -0800232}
233
Daniel Mack72121572012-07-25 17:35:39 +0200234#ifdef CONFIG_OF_GPIO
235static int pxa_gpio_of_xlate(struct gpio_chip *gc,
236 const struct of_phandle_args *gpiospec,
237 u32 *flags)
238{
239 if (gpiospec->args[0] > pxa_last_gpio)
240 return -EINVAL;
241
242 if (gc != &pxa_gpio_chips[gpiospec->args[0] / 32].chip)
243 return -EINVAL;
244
245 if (flags)
246 *flags = gpiospec->args[1];
247
248 return gpiospec->args[0] % 32;
249}
250#endif
251
Bill Pemberton38363092012-11-19 13:22:34 -0500252static int pxa_init_gpio_chip(int gpio_end,
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200253 int (*set_wake)(unsigned int, unsigned int))
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800254{
Eric Miao0807da52009-01-07 18:01:51 +0800255 int i, gpio, nbanks = gpio_to_bank(gpio_end) + 1;
256 struct pxa_gpio_chip *chips;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800257
Daniel Mack4aa78262009-06-19 22:56:09 +0200258 chips = kzalloc(nbanks * sizeof(struct pxa_gpio_chip), GFP_KERNEL);
Eric Miao0807da52009-01-07 18:01:51 +0800259 if (chips == NULL) {
260 pr_err("%s: failed to allocate GPIO chips\n", __func__);
261 return -ENOMEM;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800262 }
Eric Miao0807da52009-01-07 18:01:51 +0800263
264 for (i = 0, gpio = 0; i < nbanks; i++, gpio += 32) {
265 struct gpio_chip *c = &chips[i].chip;
266
267 sprintf(chips[i].label, "gpio-%d", i);
Haojian Zhuang157d2642011-10-17 20:37:52 +0800268 chips[i].regbase = gpio_reg_base + BANK_OFF(i);
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200269 chips[i].set_wake = set_wake;
Eric Miao0807da52009-01-07 18:01:51 +0800270
271 c->base = gpio;
272 c->label = chips[i].label;
273
274 c->direction_input = pxa_gpio_direction_input;
275 c->direction_output = pxa_gpio_direction_output;
276 c->get = pxa_gpio_get;
277 c->set = pxa_gpio_set;
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800278 c->to_irq = pxa_gpio_to_irq;
Daniel Mack72121572012-07-25 17:35:39 +0200279#ifdef CONFIG_OF_GPIO
280 c->of_node = pxa_gpio_of_node;
281 c->of_xlate = pxa_gpio_of_xlate;
282 c->of_gpio_n_cells = 2;
283#endif
Eric Miao0807da52009-01-07 18:01:51 +0800284
285 /* number of GPIOs on last bank may be less than 32 */
286 c->ngpio = (gpio + 31 > gpio_end) ? (gpio_end - gpio + 1) : 32;
287 gpiochip_add(c);
288 }
289 pxa_gpio_chips = chips;
290 return 0;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800291}
292
Eric Miaoa8f6fae2009-04-21 14:39:07 +0800293/* Update only those GRERx and GFERx edge detection register bits if those
294 * bits are set in c->irq_mask
295 */
296static inline void update_edge_detect(struct pxa_gpio_chip *c)
297{
298 uint32_t grer, gfer;
299
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800300 grer = readl_relaxed(c->regbase + GRER_OFFSET) & ~c->irq_mask;
301 gfer = readl_relaxed(c->regbase + GFER_OFFSET) & ~c->irq_mask;
Eric Miaoa8f6fae2009-04-21 14:39:07 +0800302 grer |= c->irq_edge_rise & c->irq_mask;
303 gfer |= c->irq_edge_fall & c->irq_mask;
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800304 writel_relaxed(grer, c->regbase + GRER_OFFSET);
305 writel_relaxed(gfer, c->regbase + GFER_OFFSET);
Eric Miaoa8f6fae2009-04-21 14:39:07 +0800306}
307
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100308static int pxa_gpio_irq_type(struct irq_data *d, unsigned int type)
eric miaoe3630db2008-03-04 11:42:26 +0800309{
Eric Miao0807da52009-01-07 18:01:51 +0800310 struct pxa_gpio_chip *c;
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800311 int gpio = pxa_irq_to_gpio(d->irq);
Eric Miao0807da52009-01-07 18:01:51 +0800312 unsigned long gpdr, mask = GPIO_bit(gpio);
eric miaoe3630db2008-03-04 11:42:26 +0800313
Linus Walleija0656852011-06-13 10:42:19 +0200314 c = gpio_to_pxachip(gpio);
eric miaoe3630db2008-03-04 11:42:26 +0800315
316 if (type == IRQ_TYPE_PROBE) {
317 /* Don't mess with enabled GPIOs using preconfigured edges or
318 * GPIOs set to alternate function or to output during probe
319 */
Eric Miao0807da52009-01-07 18:01:51 +0800320 if ((c->irq_edge_rise | c->irq_edge_fall) & GPIO_bit(gpio))
eric miaoe3630db2008-03-04 11:42:26 +0800321 return 0;
eric miao689c04a2008-03-04 17:18:38 +0800322
323 if (__gpio_is_occupied(gpio))
eric miaoe3630db2008-03-04 11:42:26 +0800324 return 0;
eric miao689c04a2008-03-04 17:18:38 +0800325
eric miaoe3630db2008-03-04 11:42:26 +0800326 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
327 }
328
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800329 gpdr = readl_relaxed(c->regbase + GPDR_OFFSET);
Eric Miao0807da52009-01-07 18:01:51 +0800330
Eric Miao067455a2008-11-26 18:12:04 +0800331 if (__gpio_is_inverted(gpio))
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800332 writel_relaxed(gpdr | mask, c->regbase + GPDR_OFFSET);
Eric Miao067455a2008-11-26 18:12:04 +0800333 else
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800334 writel_relaxed(gpdr & ~mask, c->regbase + GPDR_OFFSET);
eric miaoe3630db2008-03-04 11:42:26 +0800335
336 if (type & IRQ_TYPE_EDGE_RISING)
Eric Miao0807da52009-01-07 18:01:51 +0800337 c->irq_edge_rise |= mask;
eric miaoe3630db2008-03-04 11:42:26 +0800338 else
Eric Miao0807da52009-01-07 18:01:51 +0800339 c->irq_edge_rise &= ~mask;
eric miaoe3630db2008-03-04 11:42:26 +0800340
341 if (type & IRQ_TYPE_EDGE_FALLING)
Eric Miao0807da52009-01-07 18:01:51 +0800342 c->irq_edge_fall |= mask;
eric miaoe3630db2008-03-04 11:42:26 +0800343 else
Eric Miao0807da52009-01-07 18:01:51 +0800344 c->irq_edge_fall &= ~mask;
eric miaoe3630db2008-03-04 11:42:26 +0800345
Eric Miaoa8f6fae2009-04-21 14:39:07 +0800346 update_edge_detect(c);
eric miaoe3630db2008-03-04 11:42:26 +0800347
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100348 pr_debug("%s: IRQ%d (GPIO%d) - edge%s%s\n", __func__, d->irq, gpio,
eric miaoe3630db2008-03-04 11:42:26 +0800349 ((type & IRQ_TYPE_EDGE_RISING) ? " rising" : ""),
350 ((type & IRQ_TYPE_EDGE_FALLING) ? " falling" : ""));
351 return 0;
352}
353
eric miaoe3630db2008-03-04 11:42:26 +0800354static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
355{
Eric Miao0807da52009-01-07 18:01:51 +0800356 struct pxa_gpio_chip *c;
357 int loop, gpio, gpio_base, n;
358 unsigned long gedr;
Chao Xie0d2ee5d2012-07-31 14:13:09 +0800359 struct irq_chip *chip = irq_desc_get_chip(desc);
360
361 chained_irq_enter(chip, desc);
eric miaoe3630db2008-03-04 11:42:26 +0800362
363 do {
eric miaoe3630db2008-03-04 11:42:26 +0800364 loop = 0;
Eric Miao0807da52009-01-07 18:01:51 +0800365 for_each_gpio_chip(gpio, c) {
366 gpio_base = c->chip.base;
eric miaoe3630db2008-03-04 11:42:26 +0800367
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800368 gedr = readl_relaxed(c->regbase + GEDR_OFFSET);
Eric Miao0807da52009-01-07 18:01:51 +0800369 gedr = gedr & c->irq_mask;
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800370 writel_relaxed(gedr, c->regbase + GEDR_OFFSET);
eric miaoe3630db2008-03-04 11:42:26 +0800371
Wei Yongjund724f1c2012-09-14 10:36:59 +0800372 for_each_set_bit(n, &gedr, BITS_PER_LONG) {
Eric Miao0807da52009-01-07 18:01:51 +0800373 loop = 1;
374
375 generic_handle_irq(gpio_to_irq(gpio_base + n));
Eric Miao0807da52009-01-07 18:01:51 +0800376 }
eric miaoe3630db2008-03-04 11:42:26 +0800377 }
378 } while (loop);
Chao Xie0d2ee5d2012-07-31 14:13:09 +0800379
380 chained_irq_exit(chip, desc);
eric miaoe3630db2008-03-04 11:42:26 +0800381}
382
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100383static void pxa_ack_muxed_gpio(struct irq_data *d)
eric miaoe3630db2008-03-04 11:42:26 +0800384{
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800385 int gpio = pxa_irq_to_gpio(d->irq);
Linus Walleija0656852011-06-13 10:42:19 +0200386 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
Eric Miao0807da52009-01-07 18:01:51 +0800387
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800388 writel_relaxed(GPIO_bit(gpio), c->regbase + GEDR_OFFSET);
eric miaoe3630db2008-03-04 11:42:26 +0800389}
390
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100391static void pxa_mask_muxed_gpio(struct irq_data *d)
eric miaoe3630db2008-03-04 11:42:26 +0800392{
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800393 int gpio = pxa_irq_to_gpio(d->irq);
Linus Walleija0656852011-06-13 10:42:19 +0200394 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
Eric Miao0807da52009-01-07 18:01:51 +0800395 uint32_t grer, gfer;
396
397 c->irq_mask &= ~GPIO_bit(gpio);
398
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800399 grer = readl_relaxed(c->regbase + GRER_OFFSET) & ~GPIO_bit(gpio);
400 gfer = readl_relaxed(c->regbase + GFER_OFFSET) & ~GPIO_bit(gpio);
401 writel_relaxed(grer, c->regbase + GRER_OFFSET);
402 writel_relaxed(gfer, c->regbase + GFER_OFFSET);
eric miaoe3630db2008-03-04 11:42:26 +0800403}
404
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200405static int pxa_gpio_set_wake(struct irq_data *d, unsigned int on)
406{
407 int gpio = pxa_irq_to_gpio(d->irq);
408 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
409
410 if (c->set_wake)
411 return c->set_wake(gpio, on);
412 else
413 return 0;
414}
415
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100416static void pxa_unmask_muxed_gpio(struct irq_data *d)
eric miaoe3630db2008-03-04 11:42:26 +0800417{
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800418 int gpio = pxa_irq_to_gpio(d->irq);
Linus Walleija0656852011-06-13 10:42:19 +0200419 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
Eric Miao0807da52009-01-07 18:01:51 +0800420
421 c->irq_mask |= GPIO_bit(gpio);
Eric Miaoa8f6fae2009-04-21 14:39:07 +0800422 update_edge_detect(c);
eric miaoe3630db2008-03-04 11:42:26 +0800423}
424
425static struct irq_chip pxa_muxed_gpio_chip = {
426 .name = "GPIO",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100427 .irq_ack = pxa_ack_muxed_gpio,
428 .irq_mask = pxa_mask_muxed_gpio,
429 .irq_unmask = pxa_unmask_muxed_gpio,
430 .irq_set_type = pxa_gpio_irq_type,
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200431 .irq_set_wake = pxa_gpio_set_wake,
eric miaoe3630db2008-03-04 11:42:26 +0800432};
433
Haojian Zhuang478e2232011-10-14 16:44:07 +0800434static int pxa_gpio_nums(void)
435{
436 int count = 0;
437
438#ifdef CONFIG_ARCH_PXA
439 if (cpu_is_pxa25x()) {
440#ifdef CONFIG_CPU_PXA26x
441 count = 89;
442 gpio_type = PXA26X_GPIO;
443#elif defined(CONFIG_PXA25x)
444 count = 84;
445 gpio_type = PXA26X_GPIO;
446#endif /* CONFIG_CPU_PXA26x */
447 } else if (cpu_is_pxa27x()) {
448 count = 120;
449 gpio_type = PXA27X_GPIO;
Haojian Zhuang49ea7fc2012-11-15 17:06:06 +0800450 } else if (cpu_is_pxa93x()) {
Haojian Zhuang478e2232011-10-14 16:44:07 +0800451 count = 191;
452 gpio_type = PXA93X_GPIO;
453 } else if (cpu_is_pxa3xx()) {
454 count = 127;
455 gpio_type = PXA3XX_GPIO;
456 }
457#endif /* CONFIG_ARCH_PXA */
458
459#ifdef CONFIG_ARCH_MMP
460 if (cpu_is_pxa168() || cpu_is_pxa910()) {
461 count = 127;
462 gpio_type = MMP_GPIO;
463 } else if (cpu_is_mmp2()) {
464 count = 191;
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800465 gpio_type = MMP_GPIO;
Haojian Zhuang478e2232011-10-14 16:44:07 +0800466 }
467#endif /* CONFIG_ARCH_MMP */
468 return count;
469}
470
Arnd Bergmannf43e04e2012-08-13 14:36:10 +0000471#ifdef CONFIG_OF
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800472static struct of_device_id pxa_gpio_dt_ids[] = {
473 { .compatible = "mrvl,pxa-gpio" },
474 { .compatible = "mrvl,mmp-gpio", .data = (void *)MMP_GPIO },
475 {}
476};
477
478static int pxa_irq_domain_map(struct irq_domain *d, unsigned int irq,
479 irq_hw_number_t hw)
480{
481 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
482 handle_edge_irq);
483 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
484 return 0;
485}
486
487const struct irq_domain_ops pxa_irq_domain_ops = {
488 .map = pxa_irq_domain_map,
Daniel Mack72121572012-07-25 17:35:39 +0200489 .xlate = irq_domain_xlate_twocell,
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800490};
491
Bill Pemberton38363092012-11-19 13:22:34 -0500492static int pxa_gpio_probe_dt(struct platform_device *pdev)
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800493{
Daniel Mack9450be72012-07-22 16:55:44 +0200494 int ret, nr_banks, nr_gpios;
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800495 struct device_node *prev, *next, *np = pdev->dev.of_node;
496 const struct of_device_id *of_id =
497 of_match_device(pxa_gpio_dt_ids, &pdev->dev);
498
499 if (!of_id) {
500 dev_err(&pdev->dev, "Failed to find gpio controller\n");
501 return -EFAULT;
502 }
503 gpio_type = (int)of_id->data;
504
505 next = of_get_next_child(np, NULL);
506 prev = next;
507 if (!next) {
508 dev_err(&pdev->dev, "Failed to find child gpio node\n");
509 ret = -EINVAL;
510 goto err;
511 }
512 for (nr_banks = 1; ; nr_banks++) {
513 next = of_get_next_child(np, prev);
514 if (!next)
515 break;
516 prev = next;
517 }
518 of_node_put(prev);
519 nr_gpios = nr_banks << 5;
520 pxa_last_gpio = nr_gpios - 1;
521
522 irq_base = irq_alloc_descs(-1, 0, nr_gpios, 0);
523 if (irq_base < 0) {
524 dev_err(&pdev->dev, "Failed to allocate IRQ numbers\n");
525 goto err;
526 }
527 domain = irq_domain_add_legacy(np, nr_gpios, irq_base, 0,
528 &pxa_irq_domain_ops, NULL);
Daniel Mack72121572012-07-25 17:35:39 +0200529 pxa_gpio_of_node = np;
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800530 return 0;
531err:
532 iounmap(gpio_reg_base);
533 return ret;
534}
535#else
536#define pxa_gpio_probe_dt(pdev) (-1)
537#endif
538
Bill Pemberton38363092012-11-19 13:22:34 -0500539static int pxa_gpio_probe(struct platform_device *pdev)
eric miaoe3630db2008-03-04 11:42:26 +0800540{
Eric Miao0807da52009-01-07 18:01:51 +0800541 struct pxa_gpio_chip *c;
Haojian Zhuang157d2642011-10-17 20:37:52 +0800542 struct resource *res;
Haojian Zhuang389eda12011-10-17 21:26:55 +0800543 struct clk *clk;
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200544 struct pxa_gpio_platform_data *info;
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800545 int gpio, irq, ret, use_of = 0;
Haojian Zhuang157d2642011-10-17 20:37:52 +0800546 int irq0 = 0, irq1 = 0, irq_mux, gpio_offset = 0;
eric miaoe3630db2008-03-04 11:42:26 +0800547
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800548 ret = pxa_gpio_probe_dt(pdev);
Daniel Mack9450be72012-07-22 16:55:44 +0200549 if (ret < 0) {
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800550 pxa_last_gpio = pxa_gpio_nums();
Daniel Mack9450be72012-07-22 16:55:44 +0200551#ifdef CONFIG_ARCH_PXA
552 if (gpio_is_pxa_type(gpio_type))
553 irq_base = PXA_GPIO_TO_IRQ(0);
554#endif
555#ifdef CONFIG_ARCH_MMP
556 if (gpio_is_mmp_type(gpio_type))
557 irq_base = MMP_GPIO_TO_IRQ(0);
558#endif
559 } else {
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800560 use_of = 1;
Daniel Mack9450be72012-07-22 16:55:44 +0200561 }
562
Haojian Zhuang478e2232011-10-14 16:44:07 +0800563 if (!pxa_last_gpio)
Haojian Zhuang157d2642011-10-17 20:37:52 +0800564 return -EINVAL;
565
566 irq0 = platform_get_irq_byname(pdev, "gpio0");
567 irq1 = platform_get_irq_byname(pdev, "gpio1");
568 irq_mux = platform_get_irq_byname(pdev, "gpio_mux");
569 if ((irq0 > 0 && irq1 <= 0) || (irq0 <= 0 && irq1 > 0)
570 || (irq_mux <= 0))
571 return -EINVAL;
572 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
573 if (!res)
574 return -EINVAL;
575 gpio_reg_base = ioremap(res->start, resource_size(res));
576 if (!gpio_reg_base)
577 return -EINVAL;
578
579 if (irq0 > 0)
580 gpio_offset = 2;
eric miaoe3630db2008-03-04 11:42:26 +0800581
Haojian Zhuang389eda12011-10-17 21:26:55 +0800582 clk = clk_get(&pdev->dev, NULL);
583 if (IS_ERR(clk)) {
584 dev_err(&pdev->dev, "Error %ld to get gpio clock\n",
585 PTR_ERR(clk));
586 iounmap(gpio_reg_base);
587 return PTR_ERR(clk);
588 }
Julia Lawall6ab49f42012-08-26 18:00:55 +0200589 ret = clk_prepare_enable(clk);
Haojian Zhuang389eda12011-10-17 21:26:55 +0800590 if (ret) {
591 clk_put(clk);
592 iounmap(gpio_reg_base);
593 return ret;
594 }
Haojian Zhuang389eda12011-10-17 21:26:55 +0800595
Eric Miao0807da52009-01-07 18:01:51 +0800596 /* Initialize GPIO chips */
Robert Jarzmikb95ace52012-04-22 13:37:24 +0200597 info = dev_get_platdata(&pdev->dev);
598 pxa_init_gpio_chip(pxa_last_gpio, info ? info->gpio_set_wake : NULL);
Eric Miao0807da52009-01-07 18:01:51 +0800599
eric miaoe3630db2008-03-04 11:42:26 +0800600 /* clear all GPIO edge detects */
Eric Miao0807da52009-01-07 18:01:51 +0800601 for_each_gpio_chip(gpio, c) {
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800602 writel_relaxed(0, c->regbase + GFER_OFFSET);
603 writel_relaxed(0, c->regbase + GRER_OFFSET);
604 writel_relaxed(~0,c->regbase + GEDR_OFFSET);
Haojian Zhuangbe241682011-10-17 21:07:15 +0800605 /* unmask GPIO edge detect for AP side */
606 if (gpio_is_mmp_type(gpio_type))
607 writel_relaxed(~0, c->regbase + ED_MASK_OFFSET);
eric miaoe3630db2008-03-04 11:42:26 +0800608 }
609
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800610 if (!use_of) {
Haojian Zhuang87c49e22011-10-10 14:38:46 +0800611#ifdef CONFIG_ARCH_PXA
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800612 irq = gpio_to_irq(0);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100613 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
614 handle_edge_irq);
eric miaoe3630db2008-03-04 11:42:26 +0800615 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
Haojian Zhuang7a4d5072012-04-13 15:15:45 +0800616 irq_set_chained_handler(IRQ_GPIO0, pxa_gpio_demux_handler);
617
618 irq = gpio_to_irq(1);
619 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
620 handle_edge_irq);
621 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
622 irq_set_chained_handler(IRQ_GPIO1, pxa_gpio_demux_handler);
623#endif
624
625 for (irq = gpio_to_irq(gpio_offset);
626 irq <= gpio_to_irq(pxa_last_gpio); irq++) {
627 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
628 handle_edge_irq);
629 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
630 }
eric miaoe3630db2008-03-04 11:42:26 +0800631 }
632
Haojian Zhuang157d2642011-10-17 20:37:52 +0800633 irq_set_chained_handler(irq_mux, pxa_gpio_demux_handler);
634 return 0;
eric miaoe3630db2008-03-04 11:42:26 +0800635}
eric miao663707c2008-03-04 16:13:58 +0800636
Haojian Zhuang157d2642011-10-17 20:37:52 +0800637static struct platform_driver pxa_gpio_driver = {
638 .probe = pxa_gpio_probe,
639 .driver = {
640 .name = "pxa-gpio",
Arnd Bergmannf43e04e2012-08-13 14:36:10 +0000641 .of_match_table = of_match_ptr(pxa_gpio_dt_ids),
Haojian Zhuang157d2642011-10-17 20:37:52 +0800642 },
643};
Haojian Zhuang6c7e660a2013-01-23 16:25:45 +0800644module_platform_driver(pxa_gpio_driver);
Haojian Zhuang157d2642011-10-17 20:37:52 +0800645
eric miao663707c2008-03-04 16:13:58 +0800646#ifdef CONFIG_PM
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200647static int pxa_gpio_suspend(void)
eric miao663707c2008-03-04 16:13:58 +0800648{
Eric Miao0807da52009-01-07 18:01:51 +0800649 struct pxa_gpio_chip *c;
650 int gpio;
eric miao663707c2008-03-04 16:13:58 +0800651
Eric Miao0807da52009-01-07 18:01:51 +0800652 for_each_gpio_chip(gpio, c) {
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800653 c->saved_gplr = readl_relaxed(c->regbase + GPLR_OFFSET);
654 c->saved_gpdr = readl_relaxed(c->regbase + GPDR_OFFSET);
655 c->saved_grer = readl_relaxed(c->regbase + GRER_OFFSET);
656 c->saved_gfer = readl_relaxed(c->regbase + GFER_OFFSET);
eric miao663707c2008-03-04 16:13:58 +0800657
658 /* Clear GPIO transition detect bits */
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800659 writel_relaxed(0xffffffff, c->regbase + GEDR_OFFSET);
eric miao663707c2008-03-04 16:13:58 +0800660 }
661 return 0;
662}
663
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200664static void pxa_gpio_resume(void)
eric miao663707c2008-03-04 16:13:58 +0800665{
Eric Miao0807da52009-01-07 18:01:51 +0800666 struct pxa_gpio_chip *c;
667 int gpio;
eric miao663707c2008-03-04 16:13:58 +0800668
Eric Miao0807da52009-01-07 18:01:51 +0800669 for_each_gpio_chip(gpio, c) {
eric miao663707c2008-03-04 16:13:58 +0800670 /* restore level with set/clear */
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800671 writel_relaxed( c->saved_gplr, c->regbase + GPSR_OFFSET);
672 writel_relaxed(~c->saved_gplr, c->regbase + GPCR_OFFSET);
eric miao663707c2008-03-04 16:13:58 +0800673
Haojian Zhuangdf664d22011-10-14 17:24:03 +0800674 writel_relaxed(c->saved_grer, c->regbase + GRER_OFFSET);
675 writel_relaxed(c->saved_gfer, c->regbase + GFER_OFFSET);
676 writel_relaxed(c->saved_gpdr, c->regbase + GPDR_OFFSET);
eric miao663707c2008-03-04 16:13:58 +0800677 }
eric miao663707c2008-03-04 16:13:58 +0800678}
679#else
680#define pxa_gpio_suspend NULL
681#define pxa_gpio_resume NULL
682#endif
683
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200684struct syscore_ops pxa_gpio_syscore_ops = {
eric miao663707c2008-03-04 16:13:58 +0800685 .suspend = pxa_gpio_suspend,
686 .resume = pxa_gpio_resume,
687};
Haojian Zhuang157d2642011-10-17 20:37:52 +0800688
689static int __init pxa_gpio_sysinit(void)
690{
691 register_syscore_ops(&pxa_gpio_syscore_ops);
692 return 0;
693}
694postcore_initcall(pxa_gpio_sysinit);