2 * Support functions for OMAP GPIO
4 * Copyright (C) 2003-2005 Nokia Corporation
5 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
7 * Copyright (C) 2009 Texas Instruments
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
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.
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/interrupt.h>
18 #include <linux/syscore_ops.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
22 #include <linux/device.h>
23 #include <linux/pm_runtime.h>
26 #include <linux/of_device.h>
27 #include <linux/irqchip/chained_irq.h>
28 #include <linux/gpio.h>
29 #include <linux/bitops.h>
30 #include <linux/platform_data/gpio-omap.h>
34 static LIST_HEAD(omap_gpio_list
);
52 struct list_head node
;
56 u32 enabled_non_wakeup_gpios
;
57 struct gpio_regs context
;
62 struct gpio_chip chip
;
75 int context_loss_count
;
77 bool workaround_enabled
;
79 void (*set_dataout
)(struct gpio_bank
*bank
, int gpio
, int enable
);
80 int (*get_context_loss_count
)(struct device
*dev
);
82 struct omap_gpio_reg_offs
*regs
;
85 #define GPIO_INDEX(bank, gpio) (gpio % bank->width)
86 #define GPIO_BIT(bank, gpio) (BIT(GPIO_INDEX(bank, gpio)))
87 #define GPIO_MOD_CTRL_BIT BIT(0)
89 #define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
90 #define LINE_USED(line, offset) (line & (BIT(offset)))
92 static int irq_to_gpio(struct gpio_bank
*bank
, unsigned int gpio_irq
)
94 return bank
->chip
.base
+ gpio_irq
;
97 static inline struct gpio_bank
*_irq_data_get_bank(struct irq_data
*d
)
99 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
100 return container_of(chip
, struct gpio_bank
, chip
);
103 static void _set_gpio_direction(struct gpio_bank
*bank
, int gpio
, int is_input
)
105 void __iomem
*reg
= bank
->base
;
108 reg
+= bank
->regs
->direction
;
109 l
= readl_relaxed(reg
);
114 writel_relaxed(l
, reg
);
115 bank
->context
.oe
= l
;
119 /* set data out value using dedicate set/clear register */
120 static void _set_gpio_dataout_reg(struct gpio_bank
*bank
, int gpio
, int enable
)
122 void __iomem
*reg
= bank
->base
;
123 u32 l
= GPIO_BIT(bank
, gpio
);
126 reg
+= bank
->regs
->set_dataout
;
127 bank
->context
.dataout
|= l
;
129 reg
+= bank
->regs
->clr_dataout
;
130 bank
->context
.dataout
&= ~l
;
133 writel_relaxed(l
, reg
);
136 /* set data out value using mask register */
137 static void _set_gpio_dataout_mask(struct gpio_bank
*bank
, int gpio
, int enable
)
139 void __iomem
*reg
= bank
->base
+ bank
->regs
->dataout
;
140 u32 gpio_bit
= GPIO_BIT(bank
, gpio
);
143 l
= readl_relaxed(reg
);
148 writel_relaxed(l
, reg
);
149 bank
->context
.dataout
= l
;
152 static int _get_gpio_datain(struct gpio_bank
*bank
, int offset
)
154 void __iomem
*reg
= bank
->base
+ bank
->regs
->datain
;
156 return (readl_relaxed(reg
) & (BIT(offset
))) != 0;
159 static int _get_gpio_dataout(struct gpio_bank
*bank
, int offset
)
161 void __iomem
*reg
= bank
->base
+ bank
->regs
->dataout
;
163 return (readl_relaxed(reg
) & (BIT(offset
))) != 0;
166 static inline void _gpio_rmw(void __iomem
*base
, u32 reg
, u32 mask
, bool set
)
168 int l
= readl_relaxed(base
+ reg
);
175 writel_relaxed(l
, base
+ reg
);
178 static inline void _gpio_dbck_enable(struct gpio_bank
*bank
)
180 if (bank
->dbck_enable_mask
&& !bank
->dbck_enabled
) {
181 clk_prepare_enable(bank
->dbck
);
182 bank
->dbck_enabled
= true;
184 writel_relaxed(bank
->dbck_enable_mask
,
185 bank
->base
+ bank
->regs
->debounce_en
);
189 static inline void _gpio_dbck_disable(struct gpio_bank
*bank
)
191 if (bank
->dbck_enable_mask
&& bank
->dbck_enabled
) {
193 * Disable debounce before cutting it's clock. If debounce is
194 * enabled but the clock is not, GPIO module seems to be unable
195 * to detect events and generate interrupts at least on OMAP3.
197 writel_relaxed(0, bank
->base
+ bank
->regs
->debounce_en
);
199 clk_disable_unprepare(bank
->dbck
);
200 bank
->dbck_enabled
= false;
205 * _set_gpio_debounce - low level gpio debounce time
206 * @bank: the gpio bank we're acting upon
207 * @gpio: the gpio number on this @gpio
208 * @debounce: debounce time to use
210 * OMAP's debounce time is in 31us steps so we need
211 * to convert and round up to the closest unit.
213 static void _set_gpio_debounce(struct gpio_bank
*bank
, unsigned gpio
,
220 if (!bank
->dbck_flag
)
225 else if (debounce
> 7936)
228 debounce
= (debounce
/ 0x1f) - 1;
230 l
= GPIO_BIT(bank
, gpio
);
232 clk_prepare_enable(bank
->dbck
);
233 reg
= bank
->base
+ bank
->regs
->debounce
;
234 writel_relaxed(debounce
, reg
);
236 reg
= bank
->base
+ bank
->regs
->debounce_en
;
237 val
= readl_relaxed(reg
);
243 bank
->dbck_enable_mask
= val
;
245 writel_relaxed(val
, reg
);
246 clk_disable_unprepare(bank
->dbck
);
248 * Enable debounce clock per module.
249 * This call is mandatory because in omap_gpio_request() when
250 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
251 * runtime callbck fails to turn on dbck because dbck_enable_mask
252 * used within _gpio_dbck_enable() is still not initialized at
253 * that point. Therefore we have to enable dbck here.
255 _gpio_dbck_enable(bank
);
256 if (bank
->dbck_enable_mask
) {
257 bank
->context
.debounce
= debounce
;
258 bank
->context
.debounce_en
= val
;
263 * _clear_gpio_debounce - clear debounce settings for a gpio
264 * @bank: the gpio bank we're acting upon
265 * @gpio: the gpio number on this @gpio
267 * If a gpio is using debounce, then clear the debounce enable bit and if
268 * this is the only gpio in this bank using debounce, then clear the debounce
269 * time too. The debounce clock will also be disabled when calling this function
270 * if this is the only gpio in the bank using debounce.
272 static void _clear_gpio_debounce(struct gpio_bank
*bank
, unsigned gpio
)
274 u32 gpio_bit
= GPIO_BIT(bank
, gpio
);
276 if (!bank
->dbck_flag
)
279 if (!(bank
->dbck_enable_mask
& gpio_bit
))
282 bank
->dbck_enable_mask
&= ~gpio_bit
;
283 bank
->context
.debounce_en
&= ~gpio_bit
;
284 writel_relaxed(bank
->context
.debounce_en
,
285 bank
->base
+ bank
->regs
->debounce_en
);
287 if (!bank
->dbck_enable_mask
) {
288 bank
->context
.debounce
= 0;
289 writel_relaxed(bank
->context
.debounce
, bank
->base
+
290 bank
->regs
->debounce
);
291 clk_disable_unprepare(bank
->dbck
);
292 bank
->dbck_enabled
= false;
296 static inline void set_gpio_trigger(struct gpio_bank
*bank
, int gpio
,
299 void __iomem
*base
= bank
->base
;
300 u32 gpio_bit
= BIT(gpio
);
302 _gpio_rmw(base
, bank
->regs
->leveldetect0
, gpio_bit
,
303 trigger
& IRQ_TYPE_LEVEL_LOW
);
304 _gpio_rmw(base
, bank
->regs
->leveldetect1
, gpio_bit
,
305 trigger
& IRQ_TYPE_LEVEL_HIGH
);
306 _gpio_rmw(base
, bank
->regs
->risingdetect
, gpio_bit
,
307 trigger
& IRQ_TYPE_EDGE_RISING
);
308 _gpio_rmw(base
, bank
->regs
->fallingdetect
, gpio_bit
,
309 trigger
& IRQ_TYPE_EDGE_FALLING
);
311 bank
->context
.leveldetect0
=
312 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
313 bank
->context
.leveldetect1
=
314 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
315 bank
->context
.risingdetect
=
316 readl_relaxed(bank
->base
+ bank
->regs
->risingdetect
);
317 bank
->context
.fallingdetect
=
318 readl_relaxed(bank
->base
+ bank
->regs
->fallingdetect
);
320 if (likely(!(bank
->non_wakeup_gpios
& gpio_bit
))) {
321 _gpio_rmw(base
, bank
->regs
->wkup_en
, gpio_bit
, trigger
!= 0);
322 bank
->context
.wake_en
=
323 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
326 /* This part needs to be executed always for OMAP{34xx, 44xx} */
327 if (!bank
->regs
->irqctrl
) {
328 /* On omap24xx proceed only when valid GPIO bit is set */
329 if (bank
->non_wakeup_gpios
) {
330 if (!(bank
->non_wakeup_gpios
& gpio_bit
))
335 * Log the edge gpio and manually trigger the IRQ
336 * after resume if the input level changes
337 * to avoid irq lost during PER RET/OFF mode
338 * Applies for omap2 non-wakeup gpio and all omap3 gpios
340 if (trigger
& IRQ_TYPE_EDGE_BOTH
)
341 bank
->enabled_non_wakeup_gpios
|= gpio_bit
;
343 bank
->enabled_non_wakeup_gpios
&= ~gpio_bit
;
348 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
) |
349 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
352 #ifdef CONFIG_ARCH_OMAP1
354 * This only applies to chips that can't do both rising and falling edge
355 * detection at once. For all other chips, this function is a noop.
357 static void _toggle_gpio_edge_triggering(struct gpio_bank
*bank
, int gpio
)
359 void __iomem
*reg
= bank
->base
;
362 if (!bank
->regs
->irqctrl
)
365 reg
+= bank
->regs
->irqctrl
;
367 l
= readl_relaxed(reg
);
373 writel_relaxed(l
, reg
);
376 static void _toggle_gpio_edge_triggering(struct gpio_bank
*bank
, int gpio
) {}
379 static int _set_gpio_triggering(struct gpio_bank
*bank
, int gpio
,
382 void __iomem
*reg
= bank
->base
;
383 void __iomem
*base
= bank
->base
;
386 if (bank
->regs
->leveldetect0
&& bank
->regs
->wkup_en
) {
387 set_gpio_trigger(bank
, gpio
, trigger
);
388 } else if (bank
->regs
->irqctrl
) {
389 reg
+= bank
->regs
->irqctrl
;
391 l
= readl_relaxed(reg
);
392 if ((trigger
& IRQ_TYPE_SENSE_MASK
) == IRQ_TYPE_EDGE_BOTH
)
393 bank
->toggle_mask
|= BIT(gpio
);
394 if (trigger
& IRQ_TYPE_EDGE_RISING
)
396 else if (trigger
& IRQ_TYPE_EDGE_FALLING
)
401 writel_relaxed(l
, reg
);
402 } else if (bank
->regs
->edgectrl1
) {
404 reg
+= bank
->regs
->edgectrl2
;
406 reg
+= bank
->regs
->edgectrl1
;
409 l
= readl_relaxed(reg
);
410 l
&= ~(3 << (gpio
<< 1));
411 if (trigger
& IRQ_TYPE_EDGE_RISING
)
412 l
|= 2 << (gpio
<< 1);
413 if (trigger
& IRQ_TYPE_EDGE_FALLING
)
416 /* Enable wake-up during idle for dynamic tick */
417 _gpio_rmw(base
, bank
->regs
->wkup_en
, BIT(gpio
), trigger
);
418 bank
->context
.wake_en
=
419 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
420 writel_relaxed(l
, reg
);
425 static void _enable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
427 if (bank
->regs
->pinctrl
) {
428 void __iomem
*reg
= bank
->base
+ bank
->regs
->pinctrl
;
430 /* Claim the pin for MPU */
431 writel_relaxed(readl_relaxed(reg
) | (BIT(offset
)), reg
);
434 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
435 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
438 ctrl
= readl_relaxed(reg
);
439 /* Module is enabled, clocks are not gated */
440 ctrl
&= ~GPIO_MOD_CTRL_BIT
;
441 writel_relaxed(ctrl
, reg
);
442 bank
->context
.ctrl
= ctrl
;
446 static void _disable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
448 void __iomem
*base
= bank
->base
;
450 if (bank
->regs
->wkup_en
&&
451 !LINE_USED(bank
->mod_usage
, offset
) &&
452 !LINE_USED(bank
->irq_usage
, offset
)) {
453 /* Disable wake-up during idle for dynamic tick */
454 _gpio_rmw(base
, bank
->regs
->wkup_en
, BIT(offset
), 0);
455 bank
->context
.wake_en
=
456 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
459 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
460 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
463 ctrl
= readl_relaxed(reg
);
464 /* Module is disabled, clocks are gated */
465 ctrl
|= GPIO_MOD_CTRL_BIT
;
466 writel_relaxed(ctrl
, reg
);
467 bank
->context
.ctrl
= ctrl
;
471 static int gpio_is_input(struct gpio_bank
*bank
, int mask
)
473 void __iomem
*reg
= bank
->base
+ bank
->regs
->direction
;
475 return readl_relaxed(reg
) & mask
;
478 static int gpio_irq_type(struct irq_data
*d
, unsigned type
)
480 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
486 if (!BANK_USED(bank
))
487 pm_runtime_get_sync(bank
->dev
);
489 #ifdef CONFIG_ARCH_OMAP1
490 if (d
->irq
> IH_MPUIO_BASE
)
491 gpio
= OMAP_MPUIO(d
->irq
- IH_MPUIO_BASE
);
495 gpio
= irq_to_gpio(bank
, d
->hwirq
);
497 if (type
& ~IRQ_TYPE_SENSE_MASK
)
500 if (!bank
->regs
->leveldetect0
&&
501 (type
& (IRQ_TYPE_LEVEL_LOW
|IRQ_TYPE_LEVEL_HIGH
)))
504 spin_lock_irqsave(&bank
->lock
, flags
);
505 offset
= GPIO_INDEX(bank
, gpio
);
506 retval
= _set_gpio_triggering(bank
, offset
, type
);
507 if (!LINE_USED(bank
->mod_usage
, offset
)) {
508 _enable_gpio_module(bank
, offset
);
509 _set_gpio_direction(bank
, offset
, 1);
510 } else if (!gpio_is_input(bank
, BIT(offset
))) {
511 spin_unlock_irqrestore(&bank
->lock
, flags
);
515 bank
->irq_usage
|= BIT(GPIO_INDEX(bank
, gpio
));
516 spin_unlock_irqrestore(&bank
->lock
, flags
);
518 if (type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_LEVEL_HIGH
))
519 __irq_set_handler_locked(d
->irq
, handle_level_irq
);
520 else if (type
& (IRQ_TYPE_EDGE_FALLING
| IRQ_TYPE_EDGE_RISING
))
521 __irq_set_handler_locked(d
->irq
, handle_edge_irq
);
526 static void _clear_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
528 void __iomem
*reg
= bank
->base
;
530 reg
+= bank
->regs
->irqstatus
;
531 writel_relaxed(gpio_mask
, reg
);
533 /* Workaround for clearing DSP GPIO interrupts to allow retention */
534 if (bank
->regs
->irqstatus2
) {
535 reg
= bank
->base
+ bank
->regs
->irqstatus2
;
536 writel_relaxed(gpio_mask
, reg
);
539 /* Flush posted write for the irq status to avoid spurious interrupts */
543 static inline void _clear_gpio_irqstatus(struct gpio_bank
*bank
, int gpio
)
545 _clear_gpio_irqbank(bank
, GPIO_BIT(bank
, gpio
));
548 static u32
_get_gpio_irqbank_mask(struct gpio_bank
*bank
)
550 void __iomem
*reg
= bank
->base
;
552 u32 mask
= (BIT(bank
->width
)) - 1;
554 reg
+= bank
->regs
->irqenable
;
555 l
= readl_relaxed(reg
);
556 if (bank
->regs
->irqenable_inv
)
562 static void _enable_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
564 void __iomem
*reg
= bank
->base
;
567 if (bank
->regs
->set_irqenable
) {
568 reg
+= bank
->regs
->set_irqenable
;
570 bank
->context
.irqenable1
|= gpio_mask
;
572 reg
+= bank
->regs
->irqenable
;
573 l
= readl_relaxed(reg
);
574 if (bank
->regs
->irqenable_inv
)
578 bank
->context
.irqenable1
= l
;
581 writel_relaxed(l
, reg
);
584 static void _disable_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
586 void __iomem
*reg
= bank
->base
;
589 if (bank
->regs
->clr_irqenable
) {
590 reg
+= bank
->regs
->clr_irqenable
;
592 bank
->context
.irqenable1
&= ~gpio_mask
;
594 reg
+= bank
->regs
->irqenable
;
595 l
= readl_relaxed(reg
);
596 if (bank
->regs
->irqenable_inv
)
600 bank
->context
.irqenable1
= l
;
603 writel_relaxed(l
, reg
);
606 static inline void _set_gpio_irqenable(struct gpio_bank
*bank
, int gpio
, int enable
)
609 _enable_gpio_irqbank(bank
, GPIO_BIT(bank
, gpio
));
611 _disable_gpio_irqbank(bank
, GPIO_BIT(bank
, gpio
));
615 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
616 * 1510 does not seem to have a wake-up register. If JTAG is connected
617 * to the target, system will wake up always on GPIO events. While
618 * system is running all registered GPIO interrupts need to have wake-up
619 * enabled. When system is suspended, only selected GPIO interrupts need
620 * to have wake-up enabled.
622 static int _set_gpio_wakeup(struct gpio_bank
*bank
, int gpio
, int enable
)
624 u32 gpio_bit
= GPIO_BIT(bank
, gpio
);
627 if (bank
->non_wakeup_gpios
& gpio_bit
) {
629 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio
);
633 spin_lock_irqsave(&bank
->lock
, flags
);
635 bank
->context
.wake_en
|= gpio_bit
;
637 bank
->context
.wake_en
&= ~gpio_bit
;
639 writel_relaxed(bank
->context
.wake_en
, bank
->base
+ bank
->regs
->wkup_en
);
640 spin_unlock_irqrestore(&bank
->lock
, flags
);
645 static void _reset_gpio(struct gpio_bank
*bank
, int gpio
)
647 _set_gpio_direction(bank
, GPIO_INDEX(bank
, gpio
), 1);
648 _set_gpio_irqenable(bank
, gpio
, 0);
649 _clear_gpio_irqstatus(bank
, gpio
);
650 _set_gpio_triggering(bank
, GPIO_INDEX(bank
, gpio
), IRQ_TYPE_NONE
);
651 _clear_gpio_debounce(bank
, gpio
);
654 /* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
655 static int gpio_wake_enable(struct irq_data
*d
, unsigned int enable
)
657 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
658 unsigned int gpio
= irq_to_gpio(bank
, d
->hwirq
);
660 return _set_gpio_wakeup(bank
, gpio
, enable
);
663 static int omap_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
665 struct gpio_bank
*bank
= container_of(chip
, struct gpio_bank
, chip
);
669 * If this is the first gpio_request for the bank,
670 * enable the bank module.
672 if (!BANK_USED(bank
))
673 pm_runtime_get_sync(bank
->dev
);
675 spin_lock_irqsave(&bank
->lock
, flags
);
676 /* Set trigger to none. You need to enable the desired trigger with
677 * request_irq() or set_irq_type(). Only do this if the IRQ line has
678 * not already been requested.
680 if (!LINE_USED(bank
->irq_usage
, offset
)) {
681 _set_gpio_triggering(bank
, offset
, IRQ_TYPE_NONE
);
682 _enable_gpio_module(bank
, offset
);
684 bank
->mod_usage
|= BIT(offset
);
685 spin_unlock_irqrestore(&bank
->lock
, flags
);
690 static void omap_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
692 struct gpio_bank
*bank
= container_of(chip
, struct gpio_bank
, chip
);
695 spin_lock_irqsave(&bank
->lock
, flags
);
696 bank
->mod_usage
&= ~(BIT(offset
));
697 _disable_gpio_module(bank
, offset
);
698 _reset_gpio(bank
, bank
->chip
.base
+ offset
);
699 spin_unlock_irqrestore(&bank
->lock
, flags
);
702 * If this is the last gpio to be freed in the bank,
703 * disable the bank module.
705 if (!BANK_USED(bank
))
706 pm_runtime_put(bank
->dev
);
710 * We need to unmask the GPIO bank interrupt as soon as possible to
711 * avoid missing GPIO interrupts for other lines in the bank.
712 * Then we need to mask-read-clear-unmask the triggered GPIO lines
713 * in the bank to avoid missing nested interrupts for a GPIO line.
714 * If we wait to unmask individual GPIO lines in the bank after the
715 * line's interrupt handler has been run, we may miss some nested
718 static void gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
720 void __iomem
*isr_reg
= NULL
;
723 struct gpio_bank
*bank
;
725 struct irq_chip
*irqchip
= irq_desc_get_chip(desc
);
726 struct gpio_chip
*chip
= irq_get_handler_data(irq
);
728 chained_irq_enter(irqchip
, desc
);
730 bank
= container_of(chip
, struct gpio_bank
, chip
);
731 isr_reg
= bank
->base
+ bank
->regs
->irqstatus
;
732 pm_runtime_get_sync(bank
->dev
);
734 if (WARN_ON(!isr_reg
))
738 u32 isr_saved
, level_mask
= 0;
741 enabled
= _get_gpio_irqbank_mask(bank
);
742 isr_saved
= isr
= readl_relaxed(isr_reg
) & enabled
;
744 if (bank
->level_mask
)
745 level_mask
= bank
->level_mask
& enabled
;
747 /* clear edge sensitive interrupts before handler(s) are
748 called so that we don't miss any interrupt occurred while
750 _disable_gpio_irqbank(bank
, isr_saved
& ~level_mask
);
751 _clear_gpio_irqbank(bank
, isr_saved
& ~level_mask
);
752 _enable_gpio_irqbank(bank
, isr_saved
& ~level_mask
);
754 /* if there is only edge sensitive GPIO pin interrupts
755 configured, we could unmask GPIO bank interrupt immediately */
756 if (!level_mask
&& !unmasked
) {
758 chained_irq_exit(irqchip
, desc
);
769 * Some chips can't respond to both rising and falling
770 * at the same time. If this irq was requested with
771 * both flags, we need to flip the ICR data for the IRQ
772 * to respond to the IRQ for the opposite direction.
773 * This will be indicated in the bank toggle_mask.
775 if (bank
->toggle_mask
& (BIT(bit
)))
776 _toggle_gpio_edge_triggering(bank
, bit
);
778 generic_handle_irq(irq_find_mapping(bank
->chip
.irqdomain
,
782 /* if bank has any level sensitive GPIO pin interrupt
783 configured, we must unmask the bank interrupt only after
784 handler(s) are executed in order to avoid spurious bank
788 chained_irq_exit(irqchip
, desc
);
789 pm_runtime_put(bank
->dev
);
792 static void gpio_irq_shutdown(struct irq_data
*d
)
794 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
795 unsigned int gpio
= irq_to_gpio(bank
, d
->hwirq
);
797 unsigned offset
= GPIO_INDEX(bank
, gpio
);
799 spin_lock_irqsave(&bank
->lock
, flags
);
800 gpio_unlock_as_irq(&bank
->chip
, offset
);
801 bank
->irq_usage
&= ~(BIT(offset
));
802 _disable_gpio_module(bank
, offset
);
803 _reset_gpio(bank
, gpio
);
804 spin_unlock_irqrestore(&bank
->lock
, flags
);
807 * If this is the last IRQ to be freed in the bank,
808 * disable the bank module.
810 if (!BANK_USED(bank
))
811 pm_runtime_put(bank
->dev
);
814 static void gpio_ack_irq(struct irq_data
*d
)
816 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
817 unsigned int gpio
= irq_to_gpio(bank
, d
->hwirq
);
819 _clear_gpio_irqstatus(bank
, gpio
);
822 static void gpio_mask_irq(struct irq_data
*d
)
824 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
825 unsigned int gpio
= irq_to_gpio(bank
, d
->hwirq
);
828 spin_lock_irqsave(&bank
->lock
, flags
);
829 _set_gpio_irqenable(bank
, gpio
, 0);
830 _set_gpio_triggering(bank
, GPIO_INDEX(bank
, gpio
), IRQ_TYPE_NONE
);
831 spin_unlock_irqrestore(&bank
->lock
, flags
);
834 static void gpio_unmask_irq(struct irq_data
*d
)
836 struct gpio_bank
*bank
= _irq_data_get_bank(d
);
837 unsigned int gpio
= irq_to_gpio(bank
, d
->hwirq
);
838 unsigned int irq_mask
= GPIO_BIT(bank
, gpio
);
839 u32 trigger
= irqd_get_trigger_type(d
);
842 spin_lock_irqsave(&bank
->lock
, flags
);
844 _set_gpio_triggering(bank
, GPIO_INDEX(bank
, gpio
), trigger
);
846 /* For level-triggered GPIOs, the clearing must be done after
847 * the HW source is cleared, thus after the handler has run */
848 if (bank
->level_mask
& irq_mask
) {
849 _set_gpio_irqenable(bank
, gpio
, 0);
850 _clear_gpio_irqstatus(bank
, gpio
);
853 _set_gpio_irqenable(bank
, gpio
, 1);
854 spin_unlock_irqrestore(&bank
->lock
, flags
);
857 static struct irq_chip gpio_irq_chip
= {
859 .irq_shutdown
= gpio_irq_shutdown
,
860 .irq_ack
= gpio_ack_irq
,
861 .irq_mask
= gpio_mask_irq
,
862 .irq_unmask
= gpio_unmask_irq
,
863 .irq_set_type
= gpio_irq_type
,
864 .irq_set_wake
= gpio_wake_enable
,
867 /*---------------------------------------------------------------------*/
869 static int omap_mpuio_suspend_noirq(struct device
*dev
)
871 struct platform_device
*pdev
= to_platform_device(dev
);
872 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
873 void __iomem
*mask_reg
= bank
->base
+
874 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
877 spin_lock_irqsave(&bank
->lock
, flags
);
878 writel_relaxed(0xffff & ~bank
->context
.wake_en
, mask_reg
);
879 spin_unlock_irqrestore(&bank
->lock
, flags
);
884 static int omap_mpuio_resume_noirq(struct device
*dev
)
886 struct platform_device
*pdev
= to_platform_device(dev
);
887 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
888 void __iomem
*mask_reg
= bank
->base
+
889 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
892 spin_lock_irqsave(&bank
->lock
, flags
);
893 writel_relaxed(bank
->context
.wake_en
, mask_reg
);
894 spin_unlock_irqrestore(&bank
->lock
, flags
);
899 static const struct dev_pm_ops omap_mpuio_dev_pm_ops
= {
900 .suspend_noirq
= omap_mpuio_suspend_noirq
,
901 .resume_noirq
= omap_mpuio_resume_noirq
,
904 /* use platform_driver for this. */
905 static struct platform_driver omap_mpuio_driver
= {
908 .pm
= &omap_mpuio_dev_pm_ops
,
912 static struct platform_device omap_mpuio_device
= {
916 .driver
= &omap_mpuio_driver
.driver
,
918 /* could list the /proc/iomem resources */
921 static inline void mpuio_init(struct gpio_bank
*bank
)
923 platform_set_drvdata(&omap_mpuio_device
, bank
);
925 if (platform_driver_register(&omap_mpuio_driver
) == 0)
926 (void) platform_device_register(&omap_mpuio_device
);
929 /*---------------------------------------------------------------------*/
931 static int gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
933 struct gpio_bank
*bank
;
938 bank
= container_of(chip
, struct gpio_bank
, chip
);
939 reg
= bank
->base
+ bank
->regs
->direction
;
940 spin_lock_irqsave(&bank
->lock
, flags
);
941 dir
= !!(readl_relaxed(reg
) & BIT(offset
));
942 spin_unlock_irqrestore(&bank
->lock
, flags
);
946 static int gpio_input(struct gpio_chip
*chip
, unsigned offset
)
948 struct gpio_bank
*bank
;
951 bank
= container_of(chip
, struct gpio_bank
, chip
);
952 spin_lock_irqsave(&bank
->lock
, flags
);
953 _set_gpio_direction(bank
, offset
, 1);
954 spin_unlock_irqrestore(&bank
->lock
, flags
);
958 static int gpio_get(struct gpio_chip
*chip
, unsigned offset
)
960 struct gpio_bank
*bank
;
963 bank
= container_of(chip
, struct gpio_bank
, chip
);
964 mask
= (BIT(offset
));
966 if (gpio_is_input(bank
, mask
))
967 return _get_gpio_datain(bank
, offset
);
969 return _get_gpio_dataout(bank
, offset
);
972 static int gpio_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
974 struct gpio_bank
*bank
;
977 bank
= container_of(chip
, struct gpio_bank
, chip
);
978 spin_lock_irqsave(&bank
->lock
, flags
);
979 bank
->set_dataout(bank
, offset
, value
);
980 _set_gpio_direction(bank
, offset
, 0);
981 spin_unlock_irqrestore(&bank
->lock
, flags
);
985 static int gpio_debounce(struct gpio_chip
*chip
, unsigned offset
,
988 struct gpio_bank
*bank
;
991 bank
= container_of(chip
, struct gpio_bank
, chip
);
993 spin_lock_irqsave(&bank
->lock
, flags
);
994 _set_gpio_debounce(bank
, offset
, debounce
);
995 spin_unlock_irqrestore(&bank
->lock
, flags
);
1000 static void gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
1002 struct gpio_bank
*bank
;
1003 unsigned long flags
;
1005 bank
= container_of(chip
, struct gpio_bank
, chip
);
1006 spin_lock_irqsave(&bank
->lock
, flags
);
1007 bank
->set_dataout(bank
, offset
, value
);
1008 spin_unlock_irqrestore(&bank
->lock
, flags
);
1011 /*---------------------------------------------------------------------*/
1013 static void __init
omap_gpio_show_rev(struct gpio_bank
*bank
)
1018 if (called
|| bank
->regs
->revision
== USHRT_MAX
)
1021 rev
= readw_relaxed(bank
->base
+ bank
->regs
->revision
);
1022 pr_info("OMAP GPIO hardware version %d.%d\n",
1023 (rev
>> 4) & 0x0f, rev
& 0x0f);
1028 /* This lock class tells lockdep that GPIO irqs are in a different
1029 * category than their parents, so it won't report false recursion.
1031 static struct lock_class_key gpio_lock_class
;
1033 static void omap_gpio_mod_init(struct gpio_bank
*bank
)
1035 void __iomem
*base
= bank
->base
;
1038 if (bank
->width
== 16)
1041 if (bank
->is_mpuio
) {
1042 writel_relaxed(l
, bank
->base
+ bank
->regs
->irqenable
);
1046 _gpio_rmw(base
, bank
->regs
->irqenable
, l
, bank
->regs
->irqenable_inv
);
1047 _gpio_rmw(base
, bank
->regs
->irqstatus
, l
, !bank
->regs
->irqenable_inv
);
1048 if (bank
->regs
->debounce_en
)
1049 writel_relaxed(0, base
+ bank
->regs
->debounce_en
);
1051 /* Save OE default value (0xffffffff) in the context */
1052 bank
->context
.oe
= readl_relaxed(bank
->base
+ bank
->regs
->direction
);
1053 /* Initialize interface clk ungated, module enabled */
1054 if (bank
->regs
->ctrl
)
1055 writel_relaxed(0, base
+ bank
->regs
->ctrl
);
1057 bank
->dbck
= clk_get(bank
->dev
, "dbclk");
1058 if (IS_ERR(bank
->dbck
))
1059 dev_err(bank
->dev
, "Could not get gpio dbck\n");
1063 omap_mpuio_alloc_gc(struct gpio_bank
*bank
, unsigned int irq_start
,
1066 struct irq_chip_generic
*gc
;
1067 struct irq_chip_type
*ct
;
1069 gc
= irq_alloc_generic_chip("MPUIO", 1, irq_start
, bank
->base
,
1072 dev_err(bank
->dev
, "Memory alloc failed for gc\n");
1076 ct
= gc
->chip_types
;
1078 /* NOTE: No ack required, reading IRQ status clears it. */
1079 ct
->chip
.irq_mask
= irq_gc_mask_set_bit
;
1080 ct
->chip
.irq_unmask
= irq_gc_mask_clr_bit
;
1081 ct
->chip
.irq_set_type
= gpio_irq_type
;
1083 if (bank
->regs
->wkup_en
)
1084 ct
->chip
.irq_set_wake
= gpio_wake_enable
;
1086 ct
->regs
.mask
= OMAP_MPUIO_GPIO_INT
/ bank
->stride
;
1087 irq_setup_generic_chip(gc
, IRQ_MSK(num
), IRQ_GC_INIT_MASK_CACHE
,
1088 IRQ_NOREQUEST
| IRQ_NOPROBE
, 0);
1091 static int omap_gpio_chip_init(struct gpio_bank
*bank
)
1099 * REVISIT eventually switch from OMAP-specific gpio structs
1100 * over to the generic ones
1102 bank
->chip
.request
= omap_gpio_request
;
1103 bank
->chip
.free
= omap_gpio_free
;
1104 bank
->chip
.get_direction
= gpio_get_direction
;
1105 bank
->chip
.direction_input
= gpio_input
;
1106 bank
->chip
.get
= gpio_get
;
1107 bank
->chip
.direction_output
= gpio_output
;
1108 bank
->chip
.set_debounce
= gpio_debounce
;
1109 bank
->chip
.set
= gpio_set
;
1110 if (bank
->is_mpuio
) {
1111 bank
->chip
.label
= "mpuio";
1112 if (bank
->regs
->wkup_en
)
1113 bank
->chip
.dev
= &omap_mpuio_device
.dev
;
1114 bank
->chip
.base
= OMAP_MPUIO(0);
1116 bank
->chip
.label
= "gpio";
1117 bank
->chip
.base
= gpio
;
1118 gpio
+= bank
->width
;
1120 bank
->chip
.ngpio
= bank
->width
;
1122 ret
= gpiochip_add(&bank
->chip
);
1124 dev_err(bank
->dev
, "Could not register gpio chip %d\n", ret
);
1128 #ifdef CONFIG_ARCH_OMAP1
1130 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
1131 * irq_alloc_descs() since a base IRQ offset will no longer be needed.
1133 irq_base
= irq_alloc_descs(-1, 0, bank
->width
, 0);
1135 dev_err(bank
->dev
, "Couldn't allocate IRQ numbers\n");
1140 ret
= gpiochip_irqchip_add(&bank
->chip
, &gpio_irq_chip
,
1141 irq_base
, gpio_irq_handler
,
1145 dev_err(bank
->dev
, "Couldn't add irqchip to gpiochip %d\n", ret
);
1146 ret
= gpiochip_remove(&bank
->chip
);
1150 gpiochip_set_chained_irqchip(&bank
->chip
, &gpio_irq_chip
,
1151 bank
->irq
, gpio_irq_handler
);
1153 for (j
= 0; j
< bank
->width
; j
++) {
1154 int irq
= irq_find_mapping(bank
->chip
.irqdomain
, j
);
1155 irq_set_lockdep_class(irq
, &gpio_lock_class
);
1156 if (bank
->is_mpuio
) {
1157 omap_mpuio_alloc_gc(bank
, irq
, bank
->width
);
1158 irq_set_chip_and_handler(irq
, NULL
, NULL
);
1159 set_irq_flags(irq
, 0);
1166 static const struct of_device_id omap_gpio_match
[];
1168 static int omap_gpio_probe(struct platform_device
*pdev
)
1170 struct device
*dev
= &pdev
->dev
;
1171 struct device_node
*node
= dev
->of_node
;
1172 const struct of_device_id
*match
;
1173 const struct omap_gpio_platform_data
*pdata
;
1174 struct resource
*res
;
1175 struct gpio_bank
*bank
;
1178 match
= of_match_device(of_match_ptr(omap_gpio_match
), dev
);
1180 pdata
= match
? match
->data
: dev_get_platdata(dev
);
1184 bank
= devm_kzalloc(dev
, sizeof(struct gpio_bank
), GFP_KERNEL
);
1186 dev_err(dev
, "Memory alloc failed\n");
1190 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1191 if (unlikely(!res
)) {
1192 dev_err(dev
, "Invalid IRQ resource\n");
1196 bank
->irq
= res
->start
;
1198 bank
->chip
.dev
= dev
;
1199 bank
->dbck_flag
= pdata
->dbck_flag
;
1200 bank
->stride
= pdata
->bank_stride
;
1201 bank
->width
= pdata
->bank_width
;
1202 bank
->is_mpuio
= pdata
->is_mpuio
;
1203 bank
->non_wakeup_gpios
= pdata
->non_wakeup_gpios
;
1204 bank
->regs
= pdata
->regs
;
1205 #ifdef CONFIG_OF_GPIO
1206 bank
->chip
.of_node
= of_node_get(node
);
1209 if (!of_property_read_bool(node
, "ti,gpio-always-on"))
1210 bank
->loses_context
= true;
1212 bank
->loses_context
= pdata
->loses_context
;
1214 if (bank
->loses_context
)
1215 bank
->get_context_loss_count
=
1216 pdata
->get_context_loss_count
;
1219 if (bank
->regs
->set_dataout
&& bank
->regs
->clr_dataout
)
1220 bank
->set_dataout
= _set_gpio_dataout_reg
;
1222 bank
->set_dataout
= _set_gpio_dataout_mask
;
1224 spin_lock_init(&bank
->lock
);
1226 /* Static mapping, never released */
1227 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1228 bank
->base
= devm_ioremap_resource(dev
, res
);
1229 if (IS_ERR(bank
->base
)) {
1230 irq_domain_remove(bank
->chip
.irqdomain
);
1231 return PTR_ERR(bank
->base
);
1234 platform_set_drvdata(pdev
, bank
);
1236 pm_runtime_enable(bank
->dev
);
1237 pm_runtime_irq_safe(bank
->dev
);
1238 pm_runtime_get_sync(bank
->dev
);
1243 omap_gpio_mod_init(bank
);
1245 ret
= omap_gpio_chip_init(bank
);
1249 omap_gpio_show_rev(bank
);
1251 pm_runtime_put(bank
->dev
);
1253 list_add_tail(&bank
->node
, &omap_gpio_list
);
1258 #ifdef CONFIG_ARCH_OMAP2PLUS
1260 #if defined(CONFIG_PM_RUNTIME)
1261 static void omap_gpio_restore_context(struct gpio_bank
*bank
);
1263 static int omap_gpio_runtime_suspend(struct device
*dev
)
1265 struct platform_device
*pdev
= to_platform_device(dev
);
1266 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1268 unsigned long flags
;
1269 u32 wake_low
, wake_hi
;
1271 spin_lock_irqsave(&bank
->lock
, flags
);
1274 * Only edges can generate a wakeup event to the PRCM.
1276 * Therefore, ensure any wake-up capable GPIOs have
1277 * edge-detection enabled before going idle to ensure a wakeup
1278 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1281 * The normal values will be restored upon ->runtime_resume()
1282 * by writing back the values saved in bank->context.
1284 wake_low
= bank
->context
.leveldetect0
& bank
->context
.wake_en
;
1286 writel_relaxed(wake_low
| bank
->context
.fallingdetect
,
1287 bank
->base
+ bank
->regs
->fallingdetect
);
1288 wake_hi
= bank
->context
.leveldetect1
& bank
->context
.wake_en
;
1290 writel_relaxed(wake_hi
| bank
->context
.risingdetect
,
1291 bank
->base
+ bank
->regs
->risingdetect
);
1293 if (!bank
->enabled_non_wakeup_gpios
)
1294 goto update_gpio_context_count
;
1296 if (bank
->power_mode
!= OFF_MODE
) {
1297 bank
->power_mode
= 0;
1298 goto update_gpio_context_count
;
1301 * If going to OFF, remove triggering for all
1302 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1303 * generated. See OMAP2420 Errata item 1.101.
1305 bank
->saved_datain
= readl_relaxed(bank
->base
+
1306 bank
->regs
->datain
);
1307 l1
= bank
->context
.fallingdetect
;
1308 l2
= bank
->context
.risingdetect
;
1310 l1
&= ~bank
->enabled_non_wakeup_gpios
;
1311 l2
&= ~bank
->enabled_non_wakeup_gpios
;
1313 writel_relaxed(l1
, bank
->base
+ bank
->regs
->fallingdetect
);
1314 writel_relaxed(l2
, bank
->base
+ bank
->regs
->risingdetect
);
1316 bank
->workaround_enabled
= true;
1318 update_gpio_context_count
:
1319 if (bank
->get_context_loss_count
)
1320 bank
->context_loss_count
=
1321 bank
->get_context_loss_count(bank
->dev
);
1323 _gpio_dbck_disable(bank
);
1324 spin_unlock_irqrestore(&bank
->lock
, flags
);
1329 static void omap_gpio_init_context(struct gpio_bank
*p
);
1331 static int omap_gpio_runtime_resume(struct device
*dev
)
1333 struct platform_device
*pdev
= to_platform_device(dev
);
1334 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1335 u32 l
= 0, gen
, gen0
, gen1
;
1336 unsigned long flags
;
1339 spin_lock_irqsave(&bank
->lock
, flags
);
1342 * On the first resume during the probe, the context has not
1343 * been initialised and so initialise it now. Also initialise
1344 * the context loss count.
1346 if (bank
->loses_context
&& !bank
->context_valid
) {
1347 omap_gpio_init_context(bank
);
1349 if (bank
->get_context_loss_count
)
1350 bank
->context_loss_count
=
1351 bank
->get_context_loss_count(bank
->dev
);
1354 _gpio_dbck_enable(bank
);
1357 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1358 * GPIOs were set to edge trigger also in order to be able to
1359 * generate a PRCM wakeup. Here we restore the
1360 * pre-runtime_suspend() values for edge triggering.
1362 writel_relaxed(bank
->context
.fallingdetect
,
1363 bank
->base
+ bank
->regs
->fallingdetect
);
1364 writel_relaxed(bank
->context
.risingdetect
,
1365 bank
->base
+ bank
->regs
->risingdetect
);
1367 if (bank
->loses_context
) {
1368 if (!bank
->get_context_loss_count
) {
1369 omap_gpio_restore_context(bank
);
1371 c
= bank
->get_context_loss_count(bank
->dev
);
1372 if (c
!= bank
->context_loss_count
) {
1373 omap_gpio_restore_context(bank
);
1375 spin_unlock_irqrestore(&bank
->lock
, flags
);
1381 if (!bank
->workaround_enabled
) {
1382 spin_unlock_irqrestore(&bank
->lock
, flags
);
1386 l
= readl_relaxed(bank
->base
+ bank
->regs
->datain
);
1389 * Check if any of the non-wakeup interrupt GPIOs have changed
1390 * state. If so, generate an IRQ by software. This is
1391 * horribly racy, but it's the best we can do to work around
1394 l
^= bank
->saved_datain
;
1395 l
&= bank
->enabled_non_wakeup_gpios
;
1398 * No need to generate IRQs for the rising edge for gpio IRQs
1399 * configured with falling edge only; and vice versa.
1401 gen0
= l
& bank
->context
.fallingdetect
;
1402 gen0
&= bank
->saved_datain
;
1404 gen1
= l
& bank
->context
.risingdetect
;
1405 gen1
&= ~(bank
->saved_datain
);
1407 /* FIXME: Consider GPIO IRQs with level detections properly! */
1408 gen
= l
& (~(bank
->context
.fallingdetect
) &
1409 ~(bank
->context
.risingdetect
));
1410 /* Consider all GPIO IRQs needed to be updated */
1416 old0
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
1417 old1
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
1419 if (!bank
->regs
->irqstatus_raw0
) {
1420 writel_relaxed(old0
| gen
, bank
->base
+
1421 bank
->regs
->leveldetect0
);
1422 writel_relaxed(old1
| gen
, bank
->base
+
1423 bank
->regs
->leveldetect1
);
1426 if (bank
->regs
->irqstatus_raw0
) {
1427 writel_relaxed(old0
| l
, bank
->base
+
1428 bank
->regs
->leveldetect0
);
1429 writel_relaxed(old1
| l
, bank
->base
+
1430 bank
->regs
->leveldetect1
);
1432 writel_relaxed(old0
, bank
->base
+ bank
->regs
->leveldetect0
);
1433 writel_relaxed(old1
, bank
->base
+ bank
->regs
->leveldetect1
);
1436 bank
->workaround_enabled
= false;
1437 spin_unlock_irqrestore(&bank
->lock
, flags
);
1441 #endif /* CONFIG_PM_RUNTIME */
1443 void omap2_gpio_prepare_for_idle(int pwr_mode
)
1445 struct gpio_bank
*bank
;
1447 list_for_each_entry(bank
, &omap_gpio_list
, node
) {
1448 if (!BANK_USED(bank
) || !bank
->loses_context
)
1451 bank
->power_mode
= pwr_mode
;
1453 pm_runtime_put_sync_suspend(bank
->dev
);
1457 void omap2_gpio_resume_after_idle(void)
1459 struct gpio_bank
*bank
;
1461 list_for_each_entry(bank
, &omap_gpio_list
, node
) {
1462 if (!BANK_USED(bank
) || !bank
->loses_context
)
1465 pm_runtime_get_sync(bank
->dev
);
1469 #if defined(CONFIG_PM_RUNTIME)
1470 static void omap_gpio_init_context(struct gpio_bank
*p
)
1472 struct omap_gpio_reg_offs
*regs
= p
->regs
;
1473 void __iomem
*base
= p
->base
;
1475 p
->context
.ctrl
= readl_relaxed(base
+ regs
->ctrl
);
1476 p
->context
.oe
= readl_relaxed(base
+ regs
->direction
);
1477 p
->context
.wake_en
= readl_relaxed(base
+ regs
->wkup_en
);
1478 p
->context
.leveldetect0
= readl_relaxed(base
+ regs
->leveldetect0
);
1479 p
->context
.leveldetect1
= readl_relaxed(base
+ regs
->leveldetect1
);
1480 p
->context
.risingdetect
= readl_relaxed(base
+ regs
->risingdetect
);
1481 p
->context
.fallingdetect
= readl_relaxed(base
+ regs
->fallingdetect
);
1482 p
->context
.irqenable1
= readl_relaxed(base
+ regs
->irqenable
);
1483 p
->context
.irqenable2
= readl_relaxed(base
+ regs
->irqenable2
);
1485 if (regs
->set_dataout
&& p
->regs
->clr_dataout
)
1486 p
->context
.dataout
= readl_relaxed(base
+ regs
->set_dataout
);
1488 p
->context
.dataout
= readl_relaxed(base
+ regs
->dataout
);
1490 p
->context_valid
= true;
1493 static void omap_gpio_restore_context(struct gpio_bank
*bank
)
1495 writel_relaxed(bank
->context
.wake_en
,
1496 bank
->base
+ bank
->regs
->wkup_en
);
1497 writel_relaxed(bank
->context
.ctrl
, bank
->base
+ bank
->regs
->ctrl
);
1498 writel_relaxed(bank
->context
.leveldetect0
,
1499 bank
->base
+ bank
->regs
->leveldetect0
);
1500 writel_relaxed(bank
->context
.leveldetect1
,
1501 bank
->base
+ bank
->regs
->leveldetect1
);
1502 writel_relaxed(bank
->context
.risingdetect
,
1503 bank
->base
+ bank
->regs
->risingdetect
);
1504 writel_relaxed(bank
->context
.fallingdetect
,
1505 bank
->base
+ bank
->regs
->fallingdetect
);
1506 if (bank
->regs
->set_dataout
&& bank
->regs
->clr_dataout
)
1507 writel_relaxed(bank
->context
.dataout
,
1508 bank
->base
+ bank
->regs
->set_dataout
);
1510 writel_relaxed(bank
->context
.dataout
,
1511 bank
->base
+ bank
->regs
->dataout
);
1512 writel_relaxed(bank
->context
.oe
, bank
->base
+ bank
->regs
->direction
);
1514 if (bank
->dbck_enable_mask
) {
1515 writel_relaxed(bank
->context
.debounce
, bank
->base
+
1516 bank
->regs
->debounce
);
1517 writel_relaxed(bank
->context
.debounce_en
,
1518 bank
->base
+ bank
->regs
->debounce_en
);
1521 writel_relaxed(bank
->context
.irqenable1
,
1522 bank
->base
+ bank
->regs
->irqenable
);
1523 writel_relaxed(bank
->context
.irqenable2
,
1524 bank
->base
+ bank
->regs
->irqenable2
);
1526 #endif /* CONFIG_PM_RUNTIME */
1528 #define omap_gpio_runtime_suspend NULL
1529 #define omap_gpio_runtime_resume NULL
1530 static inline void omap_gpio_init_context(struct gpio_bank
*p
) {}
1533 static const struct dev_pm_ops gpio_pm_ops
= {
1534 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend
, omap_gpio_runtime_resume
,
1538 #if defined(CONFIG_OF)
1539 static struct omap_gpio_reg_offs omap2_gpio_regs
= {
1540 .revision
= OMAP24XX_GPIO_REVISION
,
1541 .direction
= OMAP24XX_GPIO_OE
,
1542 .datain
= OMAP24XX_GPIO_DATAIN
,
1543 .dataout
= OMAP24XX_GPIO_DATAOUT
,
1544 .set_dataout
= OMAP24XX_GPIO_SETDATAOUT
,
1545 .clr_dataout
= OMAP24XX_GPIO_CLEARDATAOUT
,
1546 .irqstatus
= OMAP24XX_GPIO_IRQSTATUS1
,
1547 .irqstatus2
= OMAP24XX_GPIO_IRQSTATUS2
,
1548 .irqenable
= OMAP24XX_GPIO_IRQENABLE1
,
1549 .irqenable2
= OMAP24XX_GPIO_IRQENABLE2
,
1550 .set_irqenable
= OMAP24XX_GPIO_SETIRQENABLE1
,
1551 .clr_irqenable
= OMAP24XX_GPIO_CLEARIRQENABLE1
,
1552 .debounce
= OMAP24XX_GPIO_DEBOUNCE_VAL
,
1553 .debounce_en
= OMAP24XX_GPIO_DEBOUNCE_EN
,
1554 .ctrl
= OMAP24XX_GPIO_CTRL
,
1555 .wkup_en
= OMAP24XX_GPIO_WAKE_EN
,
1556 .leveldetect0
= OMAP24XX_GPIO_LEVELDETECT0
,
1557 .leveldetect1
= OMAP24XX_GPIO_LEVELDETECT1
,
1558 .risingdetect
= OMAP24XX_GPIO_RISINGDETECT
,
1559 .fallingdetect
= OMAP24XX_GPIO_FALLINGDETECT
,
1562 static struct omap_gpio_reg_offs omap4_gpio_regs
= {
1563 .revision
= OMAP4_GPIO_REVISION
,
1564 .direction
= OMAP4_GPIO_OE
,
1565 .datain
= OMAP4_GPIO_DATAIN
,
1566 .dataout
= OMAP4_GPIO_DATAOUT
,
1567 .set_dataout
= OMAP4_GPIO_SETDATAOUT
,
1568 .clr_dataout
= OMAP4_GPIO_CLEARDATAOUT
,
1569 .irqstatus
= OMAP4_GPIO_IRQSTATUS0
,
1570 .irqstatus2
= OMAP4_GPIO_IRQSTATUS1
,
1571 .irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1572 .irqenable2
= OMAP4_GPIO_IRQSTATUSSET1
,
1573 .set_irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1574 .clr_irqenable
= OMAP4_GPIO_IRQSTATUSCLR0
,
1575 .debounce
= OMAP4_GPIO_DEBOUNCINGTIME
,
1576 .debounce_en
= OMAP4_GPIO_DEBOUNCENABLE
,
1577 .ctrl
= OMAP4_GPIO_CTRL
,
1578 .wkup_en
= OMAP4_GPIO_IRQWAKEN0
,
1579 .leveldetect0
= OMAP4_GPIO_LEVELDETECT0
,
1580 .leveldetect1
= OMAP4_GPIO_LEVELDETECT1
,
1581 .risingdetect
= OMAP4_GPIO_RISINGDETECT
,
1582 .fallingdetect
= OMAP4_GPIO_FALLINGDETECT
,
1585 static const struct omap_gpio_platform_data omap2_pdata
= {
1586 .regs
= &omap2_gpio_regs
,
1591 static const struct omap_gpio_platform_data omap3_pdata
= {
1592 .regs
= &omap2_gpio_regs
,
1597 static const struct omap_gpio_platform_data omap4_pdata
= {
1598 .regs
= &omap4_gpio_regs
,
1603 static const struct of_device_id omap_gpio_match
[] = {
1605 .compatible
= "ti,omap4-gpio",
1606 .data
= &omap4_pdata
,
1609 .compatible
= "ti,omap3-gpio",
1610 .data
= &omap3_pdata
,
1613 .compatible
= "ti,omap2-gpio",
1614 .data
= &omap2_pdata
,
1618 MODULE_DEVICE_TABLE(of
, omap_gpio_match
);
1621 static struct platform_driver omap_gpio_driver
= {
1622 .probe
= omap_gpio_probe
,
1624 .name
= "omap_gpio",
1626 .of_match_table
= of_match_ptr(omap_gpio_match
),
1631 * gpio driver register needs to be done before
1632 * machine_init functions access gpio APIs.
1633 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1635 static int __init
omap_gpio_drv_reg(void)
1637 return platform_driver_register(&omap_gpio_driver
);
1639 postcore_initcall(omap_gpio_drv_reg
);