2 * Copyright (c) 2011 Jamie Iles
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * All enquiries to support@picochip.com
10 #include <linux/acpi.h>
11 #include <linux/clk.h>
12 #include <linux/err.h>
13 #include <linux/gpio/driver.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
17 #include <linux/ioport.h>
18 #include <linux/irq.h>
19 #include <linux/irqdomain.h>
20 #include <linux/module.h>
22 #include <linux/of_address.h>
23 #include <linux/of_device.h>
24 #include <linux/of_irq.h>
25 #include <linux/platform_device.h>
26 #include <linux/property.h>
27 #include <linux/reset.h>
28 #include <linux/spinlock.h>
29 #include <linux/platform_data/gpio-dwapb.h>
30 #include <linux/slab.h>
34 #define GPIO_SWPORTA_DR 0x00
35 #define GPIO_SWPORTA_DDR 0x04
36 #define GPIO_SWPORTB_DR 0x0c
37 #define GPIO_SWPORTB_DDR 0x10
38 #define GPIO_SWPORTC_DR 0x18
39 #define GPIO_SWPORTC_DDR 0x1c
40 #define GPIO_SWPORTD_DR 0x24
41 #define GPIO_SWPORTD_DDR 0x28
42 #define GPIO_INTEN 0x30
43 #define GPIO_INTMASK 0x34
44 #define GPIO_INTTYPE_LEVEL 0x38
45 #define GPIO_INT_POLARITY 0x3c
46 #define GPIO_INTSTATUS 0x40
47 #define GPIO_PORTA_DEBOUNCE 0x48
48 #define GPIO_PORTA_EOI 0x4c
49 #define GPIO_EXT_PORTA 0x50
50 #define GPIO_EXT_PORTB 0x54
51 #define GPIO_EXT_PORTC 0x58
52 #define GPIO_EXT_PORTD 0x5c
54 #define DWAPB_MAX_PORTS 4
55 #define GPIO_EXT_PORT_STRIDE 0x04 /* register stride 32 bits */
56 #define GPIO_SWPORT_DR_STRIDE 0x0c /* register stride 3*32 bits */
57 #define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
59 #define GPIO_REG_OFFSET_V2 1
61 #define GPIO_INTMASK_V2 0x44
62 #define GPIO_INTTYPE_LEVEL_V2 0x34
63 #define GPIO_INT_POLARITY_V2 0x38
64 #define GPIO_INTSTATUS_V2 0x3c
65 #define GPIO_PORTA_EOI_V2 0x40
69 #ifdef CONFIG_PM_SLEEP
70 /* Store GPIO context across system-wide suspend/resume transitions */
71 struct dwapb_context
{
84 struct dwapb_gpio_port
{
87 struct dwapb_gpio
*gpio
;
88 #ifdef CONFIG_PM_SLEEP
89 struct dwapb_context
*ctx
;
97 struct dwapb_gpio_port
*ports
;
98 unsigned int nr_ports
;
99 struct irq_domain
*domain
;
101 struct reset_control
*rst
;
105 static inline u32
gpio_reg_v2_convert(unsigned int offset
)
109 return GPIO_INTMASK_V2
;
110 case GPIO_INTTYPE_LEVEL
:
111 return GPIO_INTTYPE_LEVEL_V2
;
112 case GPIO_INT_POLARITY
:
113 return GPIO_INT_POLARITY_V2
;
115 return GPIO_INTSTATUS_V2
;
117 return GPIO_PORTA_EOI_V2
;
123 static inline u32
gpio_reg_convert(struct dwapb_gpio
*gpio
, unsigned int offset
)
125 if (gpio
->flags
& GPIO_REG_OFFSET_V2
)
126 return gpio_reg_v2_convert(offset
);
131 static inline u32
dwapb_read(struct dwapb_gpio
*gpio
, unsigned int offset
)
133 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
134 void __iomem
*reg_base
= gpio
->regs
;
136 return gc
->read_reg(reg_base
+ gpio_reg_convert(gpio
, offset
));
139 static inline void dwapb_write(struct dwapb_gpio
*gpio
, unsigned int offset
,
142 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
143 void __iomem
*reg_base
= gpio
->regs
;
145 gc
->write_reg(reg_base
+ gpio_reg_convert(gpio
, offset
), val
);
148 static int dwapb_gpio_to_irq(struct gpio_chip
*gc
, unsigned offset
)
150 struct dwapb_gpio_port
*port
= gpiochip_get_data(gc
);
151 struct dwapb_gpio
*gpio
= port
->gpio
;
153 return irq_find_mapping(gpio
->domain
, offset
);
156 static struct dwapb_gpio_port
*dwapb_offs_to_port(struct dwapb_gpio
*gpio
, unsigned int offs
)
158 struct dwapb_gpio_port
*port
;
161 for (i
= 0; i
< gpio
->nr_ports
; i
++) {
162 port
= &gpio
->ports
[i
];
163 if (port
->idx
== offs
/ 32)
170 static void dwapb_toggle_trigger(struct dwapb_gpio
*gpio
, unsigned int offs
)
172 struct dwapb_gpio_port
*port
= dwapb_offs_to_port(gpio
, offs
);
173 struct gpio_chip
*gc
;
181 pol
= dwapb_read(gpio
, GPIO_INT_POLARITY
);
182 /* Just read the current value right out of the data register */
183 val
= gc
->get(gc
, offs
% 32);
189 dwapb_write(gpio
, GPIO_INT_POLARITY
, pol
);
192 static u32
dwapb_do_irq(struct dwapb_gpio
*gpio
)
194 u32 irq_status
= dwapb_read(gpio
, GPIO_INTSTATUS
);
195 u32 ret
= irq_status
;
198 int hwirq
= fls(irq_status
) - 1;
199 int gpio_irq
= irq_find_mapping(gpio
->domain
, hwirq
);
201 generic_handle_irq(gpio_irq
);
202 irq_status
&= ~BIT(hwirq
);
204 if ((irq_get_trigger_type(gpio_irq
) & IRQ_TYPE_SENSE_MASK
)
205 == IRQ_TYPE_EDGE_BOTH
)
206 dwapb_toggle_trigger(gpio
, hwirq
);
212 static void dwapb_irq_handler(struct irq_desc
*desc
)
214 struct dwapb_gpio
*gpio
= irq_desc_get_handler_data(desc
);
215 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
220 chip
->irq_eoi(irq_desc_get_irq_data(desc
));
223 static void dwapb_irq_enable(struct irq_data
*d
)
225 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
226 struct dwapb_gpio
*gpio
= igc
->private;
227 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
231 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
232 val
= dwapb_read(gpio
, GPIO_INTEN
);
233 val
|= BIT(d
->hwirq
);
234 dwapb_write(gpio
, GPIO_INTEN
, val
);
235 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
238 static void dwapb_irq_disable(struct irq_data
*d
)
240 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
241 struct dwapb_gpio
*gpio
= igc
->private;
242 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
246 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
247 val
= dwapb_read(gpio
, GPIO_INTEN
);
248 val
&= ~BIT(d
->hwirq
);
249 dwapb_write(gpio
, GPIO_INTEN
, val
);
250 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
253 static int dwapb_irq_reqres(struct irq_data
*d
)
255 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
256 struct dwapb_gpio
*gpio
= igc
->private;
257 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
260 ret
= gpiochip_lock_as_irq(gc
, irqd_to_hwirq(d
));
262 dev_err(gpio
->dev
, "unable to lock HW IRQ %lu for IRQ\n",
269 static void dwapb_irq_relres(struct irq_data
*d
)
271 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
272 struct dwapb_gpio
*gpio
= igc
->private;
273 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
275 gpiochip_unlock_as_irq(gc
, irqd_to_hwirq(d
));
278 static int dwapb_irq_set_type(struct irq_data
*d
, u32 type
)
280 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
281 struct dwapb_gpio
*gpio
= igc
->private;
282 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
284 unsigned long level
, polarity
, flags
;
286 if (type
& ~(IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
|
287 IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
))
290 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
291 level
= dwapb_read(gpio
, GPIO_INTTYPE_LEVEL
);
292 polarity
= dwapb_read(gpio
, GPIO_INT_POLARITY
);
295 case IRQ_TYPE_EDGE_BOTH
:
297 dwapb_toggle_trigger(gpio
, bit
);
299 case IRQ_TYPE_EDGE_RISING
:
301 polarity
|= BIT(bit
);
303 case IRQ_TYPE_EDGE_FALLING
:
305 polarity
&= ~BIT(bit
);
307 case IRQ_TYPE_LEVEL_HIGH
:
309 polarity
|= BIT(bit
);
311 case IRQ_TYPE_LEVEL_LOW
:
313 polarity
&= ~BIT(bit
);
317 irq_setup_alt_chip(d
, type
);
319 dwapb_write(gpio
, GPIO_INTTYPE_LEVEL
, level
);
320 if (type
!= IRQ_TYPE_EDGE_BOTH
)
321 dwapb_write(gpio
, GPIO_INT_POLARITY
, polarity
);
322 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
327 #ifdef CONFIG_PM_SLEEP
328 static int dwapb_irq_set_wake(struct irq_data
*d
, unsigned int enable
)
330 struct irq_chip_generic
*igc
= irq_data_get_irq_chip_data(d
);
331 struct dwapb_gpio
*gpio
= igc
->private;
332 struct dwapb_context
*ctx
= gpio
->ports
[0].ctx
;
335 ctx
->wake_en
|= BIT(d
->hwirq
);
337 ctx
->wake_en
&= ~BIT(d
->hwirq
);
343 static int dwapb_gpio_set_debounce(struct gpio_chip
*gc
,
344 unsigned offset
, unsigned debounce
)
346 struct dwapb_gpio_port
*port
= gpiochip_get_data(gc
);
347 struct dwapb_gpio
*gpio
= port
->gpio
;
348 unsigned long flags
, val_deb
;
349 unsigned long mask
= BIT(offset
);
351 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
353 val_deb
= dwapb_read(gpio
, GPIO_PORTA_DEBOUNCE
);
355 dwapb_write(gpio
, GPIO_PORTA_DEBOUNCE
, val_deb
| mask
);
357 dwapb_write(gpio
, GPIO_PORTA_DEBOUNCE
, val_deb
& ~mask
);
359 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
364 static int dwapb_gpio_set_config(struct gpio_chip
*gc
, unsigned offset
,
365 unsigned long config
)
369 if (pinconf_to_config_param(config
) != PIN_CONFIG_INPUT_DEBOUNCE
)
372 debounce
= pinconf_to_config_argument(config
);
373 return dwapb_gpio_set_debounce(gc
, offset
, debounce
);
376 static irqreturn_t
dwapb_irq_handler_mfd(int irq
, void *dev_id
)
379 struct dwapb_gpio
*gpio
= dev_id
;
381 worked
= dwapb_do_irq(gpio
);
383 return worked
? IRQ_HANDLED
: IRQ_NONE
;
386 static void dwapb_configure_irqs(struct dwapb_gpio
*gpio
,
387 struct dwapb_gpio_port
*port
,
388 struct dwapb_port_property
*pp
)
390 struct gpio_chip
*gc
= &port
->gc
;
391 struct fwnode_handle
*fwnode
= pp
->fwnode
;
392 struct irq_chip_generic
*irq_gc
= NULL
;
393 unsigned int hwirq
, ngpio
= gc
->ngpio
;
394 struct irq_chip_type
*ct
;
397 gpio
->domain
= irq_domain_create_linear(fwnode
, ngpio
,
398 &irq_generic_chip_ops
, gpio
);
402 err
= irq_alloc_domain_generic_chips(gpio
->domain
, ngpio
, 2,
403 "gpio-dwapb", handle_level_irq
,
405 IRQ_GC_INIT_NESTED_LOCK
);
407 dev_info(gpio
->dev
, "irq_alloc_domain_generic_chips failed\n");
408 irq_domain_remove(gpio
->domain
);
413 irq_gc
= irq_get_domain_generic_chip(gpio
->domain
, 0);
415 irq_domain_remove(gpio
->domain
);
420 irq_gc
->reg_base
= gpio
->regs
;
421 irq_gc
->private = gpio
;
423 for (i
= 0; i
< 2; i
++) {
424 ct
= &irq_gc
->chip_types
[i
];
425 ct
->chip
.irq_ack
= irq_gc_ack_set_bit
;
426 ct
->chip
.irq_mask
= irq_gc_mask_set_bit
;
427 ct
->chip
.irq_unmask
= irq_gc_mask_clr_bit
;
428 ct
->chip
.irq_set_type
= dwapb_irq_set_type
;
429 ct
->chip
.irq_enable
= dwapb_irq_enable
;
430 ct
->chip
.irq_disable
= dwapb_irq_disable
;
431 ct
->chip
.irq_request_resources
= dwapb_irq_reqres
;
432 ct
->chip
.irq_release_resources
= dwapb_irq_relres
;
433 #ifdef CONFIG_PM_SLEEP
434 ct
->chip
.irq_set_wake
= dwapb_irq_set_wake
;
436 ct
->regs
.ack
= gpio_reg_convert(gpio
, GPIO_PORTA_EOI
);
437 ct
->regs
.mask
= gpio_reg_convert(gpio
, GPIO_INTMASK
);
438 ct
->type
= IRQ_TYPE_LEVEL_MASK
;
441 irq_gc
->chip_types
[0].type
= IRQ_TYPE_LEVEL_MASK
;
442 irq_gc
->chip_types
[1].type
= IRQ_TYPE_EDGE_BOTH
;
443 irq_gc
->chip_types
[1].handler
= handle_edge_irq
;
445 if (!pp
->irq_shared
) {
448 for (i
= 0; i
< pp
->ngpio
; i
++) {
450 irq_set_chained_handler_and_data(pp
->irq
[i
],
451 dwapb_irq_handler
, gpio
);
455 * Request a shared IRQ since where MFD would have devices
456 * using the same irq pin
458 err
= devm_request_irq(gpio
->dev
, pp
->irq
[0],
459 dwapb_irq_handler_mfd
,
460 IRQF_SHARED
, "gpio-dwapb-mfd", gpio
);
462 dev_err(gpio
->dev
, "error requesting IRQ\n");
463 irq_domain_remove(gpio
->domain
);
469 for (hwirq
= 0 ; hwirq
< ngpio
; hwirq
++)
470 irq_create_mapping(gpio
->domain
, hwirq
);
472 port
->gc
.to_irq
= dwapb_gpio_to_irq
;
475 static void dwapb_irq_teardown(struct dwapb_gpio
*gpio
)
477 struct dwapb_gpio_port
*port
= &gpio
->ports
[0];
478 struct gpio_chip
*gc
= &port
->gc
;
479 unsigned int ngpio
= gc
->ngpio
;
480 irq_hw_number_t hwirq
;
485 for (hwirq
= 0 ; hwirq
< ngpio
; hwirq
++)
486 irq_dispose_mapping(irq_find_mapping(gpio
->domain
, hwirq
));
488 irq_domain_remove(gpio
->domain
);
492 static int dwapb_gpio_add_port(struct dwapb_gpio
*gpio
,
493 struct dwapb_port_property
*pp
,
496 struct dwapb_gpio_port
*port
;
497 void __iomem
*dat
, *set
, *dirout
;
500 port
= &gpio
->ports
[offs
];
504 #ifdef CONFIG_PM_SLEEP
505 port
->ctx
= devm_kzalloc(gpio
->dev
, sizeof(*port
->ctx
), GFP_KERNEL
);
510 dat
= gpio
->regs
+ GPIO_EXT_PORTA
+ (pp
->idx
* GPIO_EXT_PORT_STRIDE
);
511 set
= gpio
->regs
+ GPIO_SWPORTA_DR
+ (pp
->idx
* GPIO_SWPORT_DR_STRIDE
);
512 dirout
= gpio
->regs
+ GPIO_SWPORTA_DDR
+
513 (pp
->idx
* GPIO_SWPORT_DDR_STRIDE
);
515 /* This registers 32 GPIO lines per port */
516 err
= bgpio_init(&port
->gc
, gpio
->dev
, 4, dat
, set
, NULL
, dirout
,
519 dev_err(gpio
->dev
, "failed to init gpio chip for port%d\n",
524 #ifdef CONFIG_OF_GPIO
525 port
->gc
.of_node
= to_of_node(pp
->fwnode
);
527 port
->gc
.ngpio
= pp
->ngpio
;
528 port
->gc
.base
= pp
->gpio_base
;
530 /* Only port A support debounce */
532 port
->gc
.set_config
= dwapb_gpio_set_config
;
535 dwapb_configure_irqs(gpio
, port
, pp
);
537 err
= gpiochip_add_data(&port
->gc
, port
);
539 dev_err(gpio
->dev
, "failed to register gpiochip for port%d\n",
542 port
->is_registered
= true;
544 /* Add GPIO-signaled ACPI event support */
546 acpi_gpiochip_request_interrupts(&port
->gc
);
551 static void dwapb_gpio_unregister(struct dwapb_gpio
*gpio
)
555 for (m
= 0; m
< gpio
->nr_ports
; ++m
)
556 if (gpio
->ports
[m
].is_registered
)
557 gpiochip_remove(&gpio
->ports
[m
].gc
);
560 static struct dwapb_platform_data
*
561 dwapb_gpio_get_pdata(struct device
*dev
)
563 struct fwnode_handle
*fwnode
;
564 struct dwapb_platform_data
*pdata
;
565 struct dwapb_port_property
*pp
;
569 nports
= device_get_child_node_count(dev
);
571 return ERR_PTR(-ENODEV
);
573 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
575 return ERR_PTR(-ENOMEM
);
577 pdata
->properties
= devm_kcalloc(dev
, nports
, sizeof(*pp
), GFP_KERNEL
);
578 if (!pdata
->properties
)
579 return ERR_PTR(-ENOMEM
);
581 pdata
->nports
= nports
;
584 device_for_each_child_node(dev
, fwnode
) {
585 struct device_node
*np
= NULL
;
587 pp
= &pdata
->properties
[i
++];
590 if (fwnode_property_read_u32(fwnode
, "reg", &pp
->idx
) ||
591 pp
->idx
>= DWAPB_MAX_PORTS
) {
593 "missing/invalid port index for port%d\n", i
);
594 fwnode_handle_put(fwnode
);
595 return ERR_PTR(-EINVAL
);
598 if (fwnode_property_read_u32(fwnode
, "snps,nr-gpios",
601 "failed to get number of gpios for port%d\n",
606 pp
->irq_shared
= false;
610 * Only port A can provide interrupts in all configurations of
616 if (dev
->of_node
&& fwnode_property_read_bool(fwnode
,
617 "interrupt-controller")) {
618 np
= to_of_node(fwnode
);
621 for (j
= 0; j
< pp
->ngpio
; j
++) {
625 pp
->irq
[j
] = of_irq_get(np
, j
);
626 else if (has_acpi_companion(dev
))
627 pp
->irq
[j
] = platform_get_irq(to_platform_device(dev
), j
);
634 dev_warn(dev
, "no irq for port%d\n", pp
->idx
);
640 static const struct of_device_id dwapb_of_match
[] = {
641 { .compatible
= "snps,dw-apb-gpio", .data
= (void *)0},
642 { .compatible
= "apm,xgene-gpio-v2", .data
= (void *)GPIO_REG_OFFSET_V2
},
645 MODULE_DEVICE_TABLE(of
, dwapb_of_match
);
647 static const struct acpi_device_id dwapb_acpi_match
[] = {
650 {"APMC0D81", GPIO_REG_OFFSET_V2
},
653 MODULE_DEVICE_TABLE(acpi
, dwapb_acpi_match
);
655 static int dwapb_gpio_probe(struct platform_device
*pdev
)
658 struct resource
*res
;
659 struct dwapb_gpio
*gpio
;
661 struct device
*dev
= &pdev
->dev
;
662 struct dwapb_platform_data
*pdata
= dev_get_platdata(dev
);
665 pdata
= dwapb_gpio_get_pdata(dev
);
667 return PTR_ERR(pdata
);
673 gpio
= devm_kzalloc(&pdev
->dev
, sizeof(*gpio
), GFP_KERNEL
);
677 gpio
->dev
= &pdev
->dev
;
678 gpio
->nr_ports
= pdata
->nports
;
680 gpio
->rst
= devm_reset_control_get_optional_shared(dev
, NULL
);
681 if (IS_ERR(gpio
->rst
))
682 return PTR_ERR(gpio
->rst
);
684 reset_control_deassert(gpio
->rst
);
686 gpio
->ports
= devm_kcalloc(&pdev
->dev
, gpio
->nr_ports
,
687 sizeof(*gpio
->ports
), GFP_KERNEL
);
691 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
692 gpio
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
693 if (IS_ERR(gpio
->regs
))
694 return PTR_ERR(gpio
->regs
);
696 /* Optional bus clock */
697 gpio
->clk
= devm_clk_get(&pdev
->dev
, "bus");
698 if (!IS_ERR(gpio
->clk
)) {
699 err
= clk_prepare_enable(gpio
->clk
);
701 dev_info(&pdev
->dev
, "Cannot enable clock\n");
708 gpio
->flags
= (uintptr_t)of_device_get_match_data(dev
);
709 } else if (has_acpi_companion(dev
)) {
710 const struct acpi_device_id
*acpi_id
;
712 acpi_id
= acpi_match_device(dwapb_acpi_match
, dev
);
714 if (acpi_id
->driver_data
)
715 gpio
->flags
= acpi_id
->driver_data
;
719 for (i
= 0; i
< gpio
->nr_ports
; i
++) {
720 err
= dwapb_gpio_add_port(gpio
, &pdata
->properties
[i
], i
);
724 platform_set_drvdata(pdev
, gpio
);
729 dwapb_gpio_unregister(gpio
);
730 dwapb_irq_teardown(gpio
);
731 clk_disable_unprepare(gpio
->clk
);
736 static int dwapb_gpio_remove(struct platform_device
*pdev
)
738 struct dwapb_gpio
*gpio
= platform_get_drvdata(pdev
);
740 dwapb_gpio_unregister(gpio
);
741 dwapb_irq_teardown(gpio
);
742 reset_control_assert(gpio
->rst
);
743 clk_disable_unprepare(gpio
->clk
);
748 #ifdef CONFIG_PM_SLEEP
749 static int dwapb_gpio_suspend(struct device
*dev
)
751 struct platform_device
*pdev
= to_platform_device(dev
);
752 struct dwapb_gpio
*gpio
= platform_get_drvdata(pdev
);
753 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
757 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
758 for (i
= 0; i
< gpio
->nr_ports
; i
++) {
760 unsigned int idx
= gpio
->ports
[i
].idx
;
761 struct dwapb_context
*ctx
= gpio
->ports
[i
].ctx
;
765 offset
= GPIO_SWPORTA_DDR
+ idx
* GPIO_SWPORT_DDR_STRIDE
;
766 ctx
->dir
= dwapb_read(gpio
, offset
);
768 offset
= GPIO_SWPORTA_DR
+ idx
* GPIO_SWPORT_DR_STRIDE
;
769 ctx
->data
= dwapb_read(gpio
, offset
);
771 offset
= GPIO_EXT_PORTA
+ idx
* GPIO_EXT_PORT_STRIDE
;
772 ctx
->ext
= dwapb_read(gpio
, offset
);
774 /* Only port A can provide interrupts */
776 ctx
->int_mask
= dwapb_read(gpio
, GPIO_INTMASK
);
777 ctx
->int_en
= dwapb_read(gpio
, GPIO_INTEN
);
778 ctx
->int_pol
= dwapb_read(gpio
, GPIO_INT_POLARITY
);
779 ctx
->int_type
= dwapb_read(gpio
, GPIO_INTTYPE_LEVEL
);
780 ctx
->int_deb
= dwapb_read(gpio
, GPIO_PORTA_DEBOUNCE
);
782 /* Mask out interrupts */
783 dwapb_write(gpio
, GPIO_INTMASK
,
784 0xffffffff & ~ctx
->wake_en
);
787 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
789 clk_disable_unprepare(gpio
->clk
);
794 static int dwapb_gpio_resume(struct device
*dev
)
796 struct platform_device
*pdev
= to_platform_device(dev
);
797 struct dwapb_gpio
*gpio
= platform_get_drvdata(pdev
);
798 struct gpio_chip
*gc
= &gpio
->ports
[0].gc
;
802 if (!IS_ERR(gpio
->clk
))
803 clk_prepare_enable(gpio
->clk
);
805 spin_lock_irqsave(&gc
->bgpio_lock
, flags
);
806 for (i
= 0; i
< gpio
->nr_ports
; i
++) {
808 unsigned int idx
= gpio
->ports
[i
].idx
;
809 struct dwapb_context
*ctx
= gpio
->ports
[i
].ctx
;
813 offset
= GPIO_SWPORTA_DR
+ idx
* GPIO_SWPORT_DR_STRIDE
;
814 dwapb_write(gpio
, offset
, ctx
->data
);
816 offset
= GPIO_SWPORTA_DDR
+ idx
* GPIO_SWPORT_DDR_STRIDE
;
817 dwapb_write(gpio
, offset
, ctx
->dir
);
819 offset
= GPIO_EXT_PORTA
+ idx
* GPIO_EXT_PORT_STRIDE
;
820 dwapb_write(gpio
, offset
, ctx
->ext
);
822 /* Only port A can provide interrupts */
824 dwapb_write(gpio
, GPIO_INTTYPE_LEVEL
, ctx
->int_type
);
825 dwapb_write(gpio
, GPIO_INT_POLARITY
, ctx
->int_pol
);
826 dwapb_write(gpio
, GPIO_PORTA_DEBOUNCE
, ctx
->int_deb
);
827 dwapb_write(gpio
, GPIO_INTEN
, ctx
->int_en
);
828 dwapb_write(gpio
, GPIO_INTMASK
, ctx
->int_mask
);
830 /* Clear out spurious interrupts */
831 dwapb_write(gpio
, GPIO_PORTA_EOI
, 0xffffffff);
834 spin_unlock_irqrestore(&gc
->bgpio_lock
, flags
);
840 static SIMPLE_DEV_PM_OPS(dwapb_gpio_pm_ops
, dwapb_gpio_suspend
,
843 static struct platform_driver dwapb_gpio_driver
= {
845 .name
= "gpio-dwapb",
846 .pm
= &dwapb_gpio_pm_ops
,
847 .of_match_table
= of_match_ptr(dwapb_of_match
),
848 .acpi_match_table
= ACPI_PTR(dwapb_acpi_match
),
850 .probe
= dwapb_gpio_probe
,
851 .remove
= dwapb_gpio_remove
,
854 module_platform_driver(dwapb_gpio_driver
);
856 MODULE_LICENSE("GPL");
857 MODULE_AUTHOR("Jamie Iles");
858 MODULE_DESCRIPTION("Synopsys DesignWare APB GPIO driver");