1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/module.h>
15#include <linux/clk.h>
16#include <linux/err.h>
17#include <linux/gpio.h>
18#include <linux/gpio-pxa.h>
19#include <linux/init.h>
20#include <linux/irq.h>
21#include <linux/irqdomain.h>
22#include <linux/io.h>
23#include <linux/of.h>
24#include <linux/of_device.h>
25#include <linux/platform_device.h>
26#include <linux/syscore_ops.h>
27#include <linux/slab.h>
28
29#include <mach/irqs.h>
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49#define GPLR_OFFSET 0x00
50#define GPDR_OFFSET 0x0C
51#define GPSR_OFFSET 0x18
52#define GPCR_OFFSET 0x24
53#define GRER_OFFSET 0x30
54#define GFER_OFFSET 0x3C
55#define GEDR_OFFSET 0x48
56#define GAFR_OFFSET 0x54
57#define ED_MASK_OFFSET 0x9C
58
59#define BANK_OFF(n) (((n) < 3) ? (n) << 2 : 0x100 + (((n) - 3) << 2))
60
61int pxa_last_gpio;
62
63#ifdef CONFIG_OF
64static struct irq_domain *domain;
65static struct device_node *pxa_gpio_of_node;
66#endif
67
68struct pxa_gpio_chip {
69 struct gpio_chip chip;
70 void __iomem *regbase;
71 char label[10];
72
73 unsigned long irq_mask;
74 unsigned long irq_edge_rise;
75 unsigned long irq_edge_fall;
76 int (*set_wake)(unsigned int gpio, unsigned int on);
77
78#ifdef CONFIG_PM
79 unsigned long saved_gplr;
80 unsigned long saved_gpdr;
81 unsigned long saved_grer;
82 unsigned long saved_gfer;
83#endif
84};
85
86enum {
87 PXA25X_GPIO = 0,
88 PXA26X_GPIO,
89 PXA27X_GPIO,
90 PXA3XX_GPIO,
91 PXA93X_GPIO,
92 MMP_GPIO = 0x10,
93};
94
95static DEFINE_SPINLOCK(gpio_lock);
96static struct pxa_gpio_chip *pxa_gpio_chips;
97static int gpio_type;
98static void __iomem *gpio_reg_base;
99
100#define for_each_gpio_chip(i, c) \
101 for (i = 0, c = &pxa_gpio_chips[0]; i <= pxa_last_gpio; i += 32, c++)
102
103static inline void __iomem *gpio_chip_base(struct gpio_chip *c)
104{
105 return container_of(c, struct pxa_gpio_chip, chip)->regbase;
106}
107
108static inline struct pxa_gpio_chip *gpio_to_pxachip(unsigned gpio)
109{
110 return &pxa_gpio_chips[gpio_to_bank(gpio)];
111}
112
113static inline int gpio_is_pxa_type(int type)
114{
115 return (type & MMP_GPIO) == 0;
116}
117
118static inline int gpio_is_mmp_type(int type)
119{
120 return (type & MMP_GPIO) != 0;
121}
122
123
124
125
126static inline int __gpio_is_inverted(int gpio)
127{
128 if ((gpio_type == PXA26X_GPIO) && (gpio > 85))
129 return 1;
130 return 0;
131}
132
133
134
135
136
137
138
139static inline int __gpio_is_occupied(unsigned gpio)
140{
141 struct pxa_gpio_chip *pxachip;
142 void __iomem *base;
143 unsigned long gafr = 0, gpdr = 0;
144 int ret, af = 0, dir = 0;
145
146 pxachip = gpio_to_pxachip(gpio);
147 base = gpio_chip_base(&pxachip->chip);
148 gpdr = readl_relaxed(base + GPDR_OFFSET);
149
150 switch (gpio_type) {
151 case PXA25X_GPIO:
152 case PXA26X_GPIO:
153 case PXA27X_GPIO:
154 gafr = readl_relaxed(base + GAFR_OFFSET);
155 af = (gafr >> ((gpio & 0xf) * 2)) & 0x3;
156 dir = gpdr & GPIO_bit(gpio);
157
158 if (__gpio_is_inverted(gpio))
159 ret = (af != 1) || (dir == 0);
160 else
161 ret = (af != 0) || (dir != 0);
162 break;
163 default:
164 ret = gpdr & GPIO_bit(gpio);
165 break;
166 }
167 return ret;
168}
169
170#ifdef CONFIG_ARCH_PXA
171static inline int __pxa_gpio_to_irq(int gpio)
172{
173 if (gpio_is_pxa_type(gpio_type))
174 return PXA_GPIO_TO_IRQ(gpio);
175 return -1;
176}
177
178static inline int __pxa_irq_to_gpio(int irq)
179{
180 if (gpio_is_pxa_type(gpio_type))
181 return irq - PXA_GPIO_TO_IRQ(0);
182 return -1;
183}
184#else
185static inline int __pxa_gpio_to_irq(int gpio) { return -1; }
186static inline int __pxa_irq_to_gpio(int irq) { return -1; }
187#endif
188
189#ifdef CONFIG_ARCH_MMP
190static inline int __mmp_gpio_to_irq(int gpio)
191{
192 if (gpio_is_mmp_type(gpio_type))
193 return MMP_GPIO_TO_IRQ(gpio);
194 return -1;
195}
196
197static inline int __mmp_irq_to_gpio(int irq)
198{
199 if (gpio_is_mmp_type(gpio_type))
200 return irq - MMP_GPIO_TO_IRQ(0);
201 return -1;
202}
203#else
204static inline int __mmp_gpio_to_irq(int gpio) { return -1; }
205static inline int __mmp_irq_to_gpio(int irq) { return -1; }
206#endif
207
208static int pxa_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
209{
210 int gpio, ret;
211
212 gpio = chip->base + offset;
213 ret = __pxa_gpio_to_irq(gpio);
214 if (ret >= 0)
215 return ret;
216 return __mmp_gpio_to_irq(gpio);
217}
218
219int pxa_irq_to_gpio(int irq)
220{
221 int ret;
222
223 ret = __pxa_irq_to_gpio(irq);
224 if (ret >= 0)
225 return ret;
226 return __mmp_irq_to_gpio(irq);
227}
228
229static int pxa_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
230{
231 void __iomem *base = gpio_chip_base(chip);
232 uint32_t value, mask = 1 << offset;
233 unsigned long flags;
234
235 spin_lock_irqsave(&gpio_lock, flags);
236
237 value = readl_relaxed(base + GPDR_OFFSET);
238 if (__gpio_is_inverted(chip->base + offset))
239 value |= mask;
240 else
241 value &= ~mask;
242 writel_relaxed(value, base + GPDR_OFFSET);
243
244 spin_unlock_irqrestore(&gpio_lock, flags);
245 return 0;
246}
247
248static int pxa_gpio_direction_output(struct gpio_chip *chip,
249 unsigned offset, int value)
250{
251 void __iomem *base = gpio_chip_base(chip);
252 uint32_t tmp, mask = 1 << offset;
253 unsigned long flags;
254
255 writel_relaxed(mask, base + (value ? GPSR_OFFSET : GPCR_OFFSET));
256
257 spin_lock_irqsave(&gpio_lock, flags);
258
259 tmp = readl_relaxed(base + GPDR_OFFSET);
260 if (__gpio_is_inverted(chip->base + offset))
261 tmp &= ~mask;
262 else
263 tmp |= mask;
264 writel_relaxed(tmp, base + GPDR_OFFSET);
265
266 spin_unlock_irqrestore(&gpio_lock, flags);
267 return 0;
268}
269
270static int pxa_gpio_get(struct gpio_chip *chip, unsigned offset)
271{
272 return readl_relaxed(gpio_chip_base(chip) + GPLR_OFFSET) & (1 << offset);
273}
274
275static void pxa_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
276{
277 writel_relaxed(1 << offset, gpio_chip_base(chip) +
278 (value ? GPSR_OFFSET : GPCR_OFFSET));
279}
280
281#ifdef CONFIG_OF_GPIO
282static int pxa_gpio_of_xlate(struct gpio_chip *gc,
283 const struct of_phandle_args *gpiospec,
284 u32 *flags)
285{
286 if (gpiospec->args[0] > pxa_last_gpio)
287 return -EINVAL;
288
289 if (gc != &pxa_gpio_chips[gpiospec->args[0] / 32].chip)
290 return -EINVAL;
291
292 if (flags)
293 *flags = gpiospec->args[1];
294
295 return gpiospec->args[0] % 32;
296}
297#endif
298
299static int __devinit pxa_init_gpio_chip(int gpio_end,
300 int (*set_wake)(unsigned int, unsigned int))
301{
302 int i, gpio, nbanks = gpio_to_bank(gpio_end) + 1;
303 struct pxa_gpio_chip *chips;
304
305 chips = kzalloc(nbanks * sizeof(struct pxa_gpio_chip), GFP_KERNEL);
306 if (chips == NULL) {
307 pr_err("%s: failed to allocate GPIO chips\n", __func__);
308 return -ENOMEM;
309 }
310
311 for (i = 0, gpio = 0; i < nbanks; i++, gpio += 32) {
312 struct gpio_chip *c = &chips[i].chip;
313
314 sprintf(chips[i].label, "gpio-%d", i);
315 chips[i].regbase = gpio_reg_base + BANK_OFF(i);
316 chips[i].set_wake = set_wake;
317
318 c->base = gpio;
319 c->label = chips[i].label;
320
321 c->direction_input = pxa_gpio_direction_input;
322 c->direction_output = pxa_gpio_direction_output;
323 c->get = pxa_gpio_get;
324 c->set = pxa_gpio_set;
325 c->to_irq = pxa_gpio_to_irq;
326#ifdef CONFIG_OF_GPIO
327 c->of_node = pxa_gpio_of_node;
328 c->of_xlate = pxa_gpio_of_xlate;
329 c->of_gpio_n_cells = 2;
330#endif
331
332
333 c->ngpio = (gpio + 31 > gpio_end) ? (gpio_end - gpio + 1) : 32;
334 gpiochip_add(c);
335 }
336 pxa_gpio_chips = chips;
337 return 0;
338}
339
340
341
342
343static inline void update_edge_detect(struct pxa_gpio_chip *c)
344{
345 uint32_t grer, gfer;
346
347 grer = readl_relaxed(c->regbase + GRER_OFFSET) & ~c->irq_mask;
348 gfer = readl_relaxed(c->regbase + GFER_OFFSET) & ~c->irq_mask;
349 grer |= c->irq_edge_rise & c->irq_mask;
350 gfer |= c->irq_edge_fall & c->irq_mask;
351 writel_relaxed(grer, c->regbase + GRER_OFFSET);
352 writel_relaxed(gfer, c->regbase + GFER_OFFSET);
353}
354
355static int pxa_gpio_irq_type(struct irq_data *d, unsigned int type)
356{
357 struct pxa_gpio_chip *c;
358 int gpio = pxa_irq_to_gpio(d->irq);
359 unsigned long gpdr, mask = GPIO_bit(gpio);
360
361 c = gpio_to_pxachip(gpio);
362
363 if (type == IRQ_TYPE_PROBE) {
364
365
366
367 if ((c->irq_edge_rise | c->irq_edge_fall) & GPIO_bit(gpio))
368 return 0;
369
370 if (__gpio_is_occupied(gpio))
371 return 0;
372
373 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
374 }
375
376 gpdr = readl_relaxed(c->regbase + GPDR_OFFSET);
377
378 if (__gpio_is_inverted(gpio))
379 writel_relaxed(gpdr | mask, c->regbase + GPDR_OFFSET);
380 else
381 writel_relaxed(gpdr & ~mask, c->regbase + GPDR_OFFSET);
382
383 if (type & IRQ_TYPE_EDGE_RISING)
384 c->irq_edge_rise |= mask;
385 else
386 c->irq_edge_rise &= ~mask;
387
388 if (type & IRQ_TYPE_EDGE_FALLING)
389 c->irq_edge_fall |= mask;
390 else
391 c->irq_edge_fall &= ~mask;
392
393 update_edge_detect(c);
394
395 pr_debug("%s: IRQ%d (GPIO%d) - edge%s%s\n", __func__, d->irq, gpio,
396 ((type & IRQ_TYPE_EDGE_RISING) ? " rising" : ""),
397 ((type & IRQ_TYPE_EDGE_FALLING) ? " falling" : ""));
398 return 0;
399}
400
401static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
402{
403 struct pxa_gpio_chip *c;
404 int loop, gpio, gpio_base, n;
405 unsigned long gedr;
406
407 do {
408 loop = 0;
409 for_each_gpio_chip(gpio, c) {
410 gpio_base = c->chip.base;
411
412 gedr = readl_relaxed(c->regbase + GEDR_OFFSET);
413 gedr = gedr & c->irq_mask;
414 writel_relaxed(gedr, c->regbase + GEDR_OFFSET);
415
416 n = find_first_bit(&gedr, BITS_PER_LONG);
417 while (n < BITS_PER_LONG) {
418 loop = 1;
419
420 generic_handle_irq(gpio_to_irq(gpio_base + n));
421 n = find_next_bit(&gedr, BITS_PER_LONG, n + 1);
422 }
423 }
424 } while (loop);
425}
426
427static void pxa_ack_muxed_gpio(struct irq_data *d)
428{
429 int gpio = pxa_irq_to_gpio(d->irq);
430 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
431
432 writel_relaxed(GPIO_bit(gpio), c->regbase + GEDR_OFFSET);
433}
434
435static void pxa_mask_muxed_gpio(struct irq_data *d)
436{
437 int gpio = pxa_irq_to_gpio(d->irq);
438 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
439 uint32_t grer, gfer;
440
441 c->irq_mask &= ~GPIO_bit(gpio);
442
443 grer = readl_relaxed(c->regbase + GRER_OFFSET) & ~GPIO_bit(gpio);
444 gfer = readl_relaxed(c->regbase + GFER_OFFSET) & ~GPIO_bit(gpio);
445 writel_relaxed(grer, c->regbase + GRER_OFFSET);
446 writel_relaxed(gfer, c->regbase + GFER_OFFSET);
447}
448
449static int pxa_gpio_set_wake(struct irq_data *d, unsigned int on)
450{
451 int gpio = pxa_irq_to_gpio(d->irq);
452 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
453
454 if (c->set_wake)
455 return c->set_wake(gpio, on);
456 else
457 return 0;
458}
459
460static void pxa_unmask_muxed_gpio(struct irq_data *d)
461{
462 int gpio = pxa_irq_to_gpio(d->irq);
463 struct pxa_gpio_chip *c = gpio_to_pxachip(gpio);
464
465 c->irq_mask |= GPIO_bit(gpio);
466 update_edge_detect(c);
467}
468
469static struct irq_chip pxa_muxed_gpio_chip = {
470 .name = "GPIO",
471 .irq_ack = pxa_ack_muxed_gpio,
472 .irq_mask = pxa_mask_muxed_gpio,
473 .irq_unmask = pxa_unmask_muxed_gpio,
474 .irq_set_type = pxa_gpio_irq_type,
475 .irq_set_wake = pxa_gpio_set_wake,
476};
477
478static int pxa_gpio_nums(void)
479{
480 int count = 0;
481
482#ifdef CONFIG_ARCH_PXA
483 if (cpu_is_pxa25x()) {
484#ifdef CONFIG_CPU_PXA26x
485 count = 89;
486 gpio_type = PXA26X_GPIO;
487#elif defined(CONFIG_PXA25x)
488 count = 84;
489 gpio_type = PXA26X_GPIO;
490#endif
491 } else if (cpu_is_pxa27x()) {
492 count = 120;
493 gpio_type = PXA27X_GPIO;
494 } else if (cpu_is_pxa93x() || cpu_is_pxa95x()) {
495 count = 191;
496 gpio_type = PXA93X_GPIO;
497 } else if (cpu_is_pxa3xx()) {
498 count = 127;
499 gpio_type = PXA3XX_GPIO;
500 }
501#endif
502
503#ifdef CONFIG_ARCH_MMP
504 if (cpu_is_pxa168() || cpu_is_pxa910()) {
505 count = 127;
506 gpio_type = MMP_GPIO;
507 } else if (cpu_is_mmp2()) {
508 count = 191;
509 gpio_type = MMP_GPIO;
510 }
511#endif
512 return count;
513}
514
515#ifdef CONFIG_OF
516static struct of_device_id pxa_gpio_dt_ids[] = {
517 { .compatible = "mrvl,pxa-gpio" },
518 { .compatible = "mrvl,mmp-gpio", .data = (void *)MMP_GPIO },
519 {}
520};
521
522static int pxa_irq_domain_map(struct irq_domain *d, unsigned int irq,
523 irq_hw_number_t hw)
524{
525 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
526 handle_edge_irq);
527 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
528 return 0;
529}
530
531const struct irq_domain_ops pxa_irq_domain_ops = {
532 .map = pxa_irq_domain_map,
533 .xlate = irq_domain_xlate_twocell,
534};
535
536static int __devinit pxa_gpio_probe_dt(struct platform_device *pdev)
537{
538 int ret, nr_banks, nr_gpios, irq_base;
539 struct device_node *prev, *next, *np = pdev->dev.of_node;
540 const struct of_device_id *of_id =
541 of_match_device(pxa_gpio_dt_ids, &pdev->dev);
542
543 if (!of_id) {
544 dev_err(&pdev->dev, "Failed to find gpio controller\n");
545 return -EFAULT;
546 }
547 gpio_type = (int)of_id->data;
548
549 next = of_get_next_child(np, NULL);
550 prev = next;
551 if (!next) {
552 dev_err(&pdev->dev, "Failed to find child gpio node\n");
553 ret = -EINVAL;
554 goto err;
555 }
556 for (nr_banks = 1; ; nr_banks++) {
557 next = of_get_next_child(np, prev);
558 if (!next)
559 break;
560 prev = next;
561 }
562 of_node_put(prev);
563 nr_gpios = nr_banks << 5;
564 pxa_last_gpio = nr_gpios - 1;
565
566 irq_base = irq_alloc_descs(-1, 0, nr_gpios, 0);
567 if (irq_base < 0) {
568 dev_err(&pdev->dev, "Failed to allocate IRQ numbers\n");
569 goto err;
570 }
571 domain = irq_domain_add_legacy(np, nr_gpios, irq_base, 0,
572 &pxa_irq_domain_ops, NULL);
573 pxa_gpio_of_node = np;
574 return 0;
575err:
576 iounmap(gpio_reg_base);
577 return ret;
578}
579#else
580#define pxa_gpio_probe_dt(pdev) (-1)
581#endif
582
583static int __devinit pxa_gpio_probe(struct platform_device *pdev)
584{
585 struct pxa_gpio_chip *c;
586 struct resource *res;
587 struct clk *clk;
588 struct pxa_gpio_platform_data *info;
589 int gpio, irq, ret, use_of = 0;
590 int irq0 = 0, irq1 = 0, irq_mux, gpio_offset = 0;
591
592 ret = pxa_gpio_probe_dt(pdev);
593 if (ret < 0)
594 pxa_last_gpio = pxa_gpio_nums();
595 else
596 use_of = 1;
597 if (!pxa_last_gpio)
598 return -EINVAL;
599
600 irq0 = platform_get_irq_byname(pdev, "gpio0");
601 irq1 = platform_get_irq_byname(pdev, "gpio1");
602 irq_mux = platform_get_irq_byname(pdev, "gpio_mux");
603 if ((irq0 > 0 && irq1 <= 0) || (irq0 <= 0 && irq1 > 0)
604 || (irq_mux <= 0))
605 return -EINVAL;
606 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
607 if (!res)
608 return -EINVAL;
609 gpio_reg_base = ioremap(res->start, resource_size(res));
610 if (!gpio_reg_base)
611 return -EINVAL;
612
613 if (irq0 > 0)
614 gpio_offset = 2;
615
616 clk = clk_get(&pdev->dev, NULL);
617 if (IS_ERR(clk)) {
618 dev_err(&pdev->dev, "Error %ld to get gpio clock\n",
619 PTR_ERR(clk));
620 iounmap(gpio_reg_base);
621 return PTR_ERR(clk);
622 }
623 ret = clk_prepare(clk);
624 if (ret) {
625 clk_put(clk);
626 iounmap(gpio_reg_base);
627 return ret;
628 }
629 ret = clk_enable(clk);
630 if (ret) {
631 clk_unprepare(clk);
632 clk_put(clk);
633 iounmap(gpio_reg_base);
634 return ret;
635 }
636
637
638 info = dev_get_platdata(&pdev->dev);
639 pxa_init_gpio_chip(pxa_last_gpio, info ? info->gpio_set_wake : NULL);
640
641
642 for_each_gpio_chip(gpio, c) {
643 writel_relaxed(0, c->regbase + GFER_OFFSET);
644 writel_relaxed(0, c->regbase + GRER_OFFSET);
645 writel_relaxed(~0,c->regbase + GEDR_OFFSET);
646
647 if (gpio_is_mmp_type(gpio_type))
648 writel_relaxed(~0, c->regbase + ED_MASK_OFFSET);
649 }
650
651 if (!use_of) {
652#ifdef CONFIG_ARCH_PXA
653 irq = gpio_to_irq(0);
654 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
655 handle_edge_irq);
656 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
657 irq_set_chained_handler(IRQ_GPIO0, pxa_gpio_demux_handler);
658
659 irq = gpio_to_irq(1);
660 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
661 handle_edge_irq);
662 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
663 irq_set_chained_handler(IRQ_GPIO1, pxa_gpio_demux_handler);
664#endif
665
666 for (irq = gpio_to_irq(gpio_offset);
667 irq <= gpio_to_irq(pxa_last_gpio); irq++) {
668 irq_set_chip_and_handler(irq, &pxa_muxed_gpio_chip,
669 handle_edge_irq);
670 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
671 }
672 }
673
674 irq_set_chained_handler(irq_mux, pxa_gpio_demux_handler);
675 return 0;
676}
677
678static struct platform_driver pxa_gpio_driver = {
679 .probe = pxa_gpio_probe,
680 .driver = {
681 .name = "pxa-gpio",
682 .of_match_table = of_match_ptr(pxa_gpio_dt_ids),
683 },
684};
685
686static int __init pxa_gpio_init(void)
687{
688 return platform_driver_register(&pxa_gpio_driver);
689}
690postcore_initcall(pxa_gpio_init);
691
692#ifdef CONFIG_PM
693static int pxa_gpio_suspend(void)
694{
695 struct pxa_gpio_chip *c;
696 int gpio;
697
698 for_each_gpio_chip(gpio, c) {
699 c->saved_gplr = readl_relaxed(c->regbase + GPLR_OFFSET);
700 c->saved_gpdr = readl_relaxed(c->regbase + GPDR_OFFSET);
701 c->saved_grer = readl_relaxed(c->regbase + GRER_OFFSET);
702 c->saved_gfer = readl_relaxed(c->regbase + GFER_OFFSET);
703
704
705 writel_relaxed(0xffffffff, c->regbase + GEDR_OFFSET);
706 }
707 return 0;
708}
709
710static void pxa_gpio_resume(void)
711{
712 struct pxa_gpio_chip *c;
713 int gpio;
714
715 for_each_gpio_chip(gpio, c) {
716
717 writel_relaxed( c->saved_gplr, c->regbase + GPSR_OFFSET);
718 writel_relaxed(~c->saved_gplr, c->regbase + GPCR_OFFSET);
719
720 writel_relaxed(c->saved_grer, c->regbase + GRER_OFFSET);
721 writel_relaxed(c->saved_gfer, c->regbase + GFER_OFFSET);
722 writel_relaxed(c->saved_gpdr, c->regbase + GPDR_OFFSET);
723 }
724}
725#else
726#define pxa_gpio_suspend NULL
727#define pxa_gpio_resume NULL
728#endif
729
730struct syscore_ops pxa_gpio_syscore_ops = {
731 .suspend = pxa_gpio_suspend,
732 .resume = pxa_gpio_resume,
733};
734
735static int __init pxa_gpio_sysinit(void)
736{
737 register_syscore_ops(&pxa_gpio_syscore_ops);
738 return 0;
739}
740postcore_initcall(pxa_gpio_sysinit);
741