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/gpio.h>
28 #include <linux/bitops.h>
29 #include <linux/platform_data/gpio-omap.h>
32 #define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
34 static LIST_HEAD(omap_gpio_list
);
52 struct list_head node
;
56 u32 enabled_non_wakeup_gpios
;
57 struct gpio_regs context
;
62 raw_spinlock_t wa_lock
;
63 struct gpio_chip chip
;
75 int context_loss_count
;
77 bool workaround_enabled
;
79 void (*set_dataout
)(struct gpio_bank
*bank
, unsigned gpio
, int enable
);
80 int (*get_context_loss_count
)(struct device
*dev
);
82 struct omap_gpio_reg_offs
*regs
;
85 #define GPIO_MOD_CTRL_BIT BIT(0)
87 #define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
88 #define LINE_USED(line, offset) (line & (BIT(offset)))
90 static void omap_gpio_unmask_irq(struct irq_data
*d
);
92 static inline struct gpio_bank
*omap_irq_data_get_bank(struct irq_data
*d
)
94 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
95 return gpiochip_get_data(chip
);
98 static void omap_set_gpio_direction(struct gpio_bank
*bank
, int gpio
,
101 void __iomem
*reg
= bank
->base
;
104 reg
+= bank
->regs
->direction
;
105 l
= readl_relaxed(reg
);
110 writel_relaxed(l
, reg
);
111 bank
->context
.oe
= l
;
115 /* set data out value using dedicate set/clear register */
116 static void omap_set_gpio_dataout_reg(struct gpio_bank
*bank
, unsigned offset
,
119 void __iomem
*reg
= bank
->base
;
123 reg
+= bank
->regs
->set_dataout
;
124 bank
->context
.dataout
|= l
;
126 reg
+= bank
->regs
->clr_dataout
;
127 bank
->context
.dataout
&= ~l
;
130 writel_relaxed(l
, reg
);
133 /* set data out value using mask register */
134 static void omap_set_gpio_dataout_mask(struct gpio_bank
*bank
, unsigned offset
,
137 void __iomem
*reg
= bank
->base
+ bank
->regs
->dataout
;
138 u32 gpio_bit
= BIT(offset
);
141 l
= readl_relaxed(reg
);
146 writel_relaxed(l
, reg
);
147 bank
->context
.dataout
= l
;
150 static int omap_get_gpio_datain(struct gpio_bank
*bank
, int offset
)
152 void __iomem
*reg
= bank
->base
+ bank
->regs
->datain
;
154 return (readl_relaxed(reg
) & (BIT(offset
))) != 0;
157 static int omap_get_gpio_dataout(struct gpio_bank
*bank
, int offset
)
159 void __iomem
*reg
= bank
->base
+ bank
->regs
->dataout
;
161 return (readl_relaxed(reg
) & (BIT(offset
))) != 0;
164 static inline void omap_gpio_rmw(void __iomem
*base
, u32 reg
, u32 mask
, bool set
)
166 int l
= readl_relaxed(base
+ reg
);
173 writel_relaxed(l
, base
+ reg
);
176 static inline void omap_gpio_dbck_enable(struct gpio_bank
*bank
)
178 if (bank
->dbck_enable_mask
&& !bank
->dbck_enabled
) {
179 clk_enable(bank
->dbck
);
180 bank
->dbck_enabled
= true;
182 writel_relaxed(bank
->dbck_enable_mask
,
183 bank
->base
+ bank
->regs
->debounce_en
);
187 static inline void omap_gpio_dbck_disable(struct gpio_bank
*bank
)
189 if (bank
->dbck_enable_mask
&& bank
->dbck_enabled
) {
191 * Disable debounce before cutting it's clock. If debounce is
192 * enabled but the clock is not, GPIO module seems to be unable
193 * to detect events and generate interrupts at least on OMAP3.
195 writel_relaxed(0, bank
->base
+ bank
->regs
->debounce_en
);
197 clk_disable(bank
->dbck
);
198 bank
->dbck_enabled
= false;
203 * omap2_set_gpio_debounce - low level gpio debounce time
204 * @bank: the gpio bank we're acting upon
205 * @offset: the gpio number on this @bank
206 * @debounce: debounce time to use
208 * OMAP's debounce time is in 31us steps
209 * <debounce time> = (GPIO_DEBOUNCINGTIME[7:0].DEBOUNCETIME + 1) x 31
210 * so we need to convert and round up to the closest unit.
212 * Return: 0 on success, negative error otherwise.
214 static int omap2_set_gpio_debounce(struct gpio_bank
*bank
, unsigned offset
,
220 bool enable
= !!debounce
;
222 if (!bank
->dbck_flag
)
226 debounce
= DIV_ROUND_UP(debounce
, 31) - 1;
227 if ((debounce
& OMAP4_GPIO_DEBOUNCINGTIME_MASK
) != debounce
)
233 clk_enable(bank
->dbck
);
234 reg
= bank
->base
+ bank
->regs
->debounce
;
235 writel_relaxed(debounce
, reg
);
237 reg
= bank
->base
+ bank
->regs
->debounce_en
;
238 val
= readl_relaxed(reg
);
244 bank
->dbck_enable_mask
= val
;
246 writel_relaxed(val
, reg
);
247 clk_disable(bank
->dbck
);
249 * Enable debounce clock per module.
250 * This call is mandatory because in omap_gpio_request() when
251 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
252 * runtime callbck fails to turn on dbck because dbck_enable_mask
253 * used within _gpio_dbck_enable() is still not initialized at
254 * that point. Therefore we have to enable dbck here.
256 omap_gpio_dbck_enable(bank
);
257 if (bank
->dbck_enable_mask
) {
258 bank
->context
.debounce
= debounce
;
259 bank
->context
.debounce_en
= val
;
266 * omap_clear_gpio_debounce - clear debounce settings for a gpio
267 * @bank: the gpio bank we're acting upon
268 * @offset: the gpio number on this @bank
270 * If a gpio is using debounce, then clear the debounce enable bit and if
271 * this is the only gpio in this bank using debounce, then clear the debounce
272 * time too. The debounce clock will also be disabled when calling this function
273 * if this is the only gpio in the bank using debounce.
275 static void omap_clear_gpio_debounce(struct gpio_bank
*bank
, unsigned offset
)
277 u32 gpio_bit
= BIT(offset
);
279 if (!bank
->dbck_flag
)
282 if (!(bank
->dbck_enable_mask
& gpio_bit
))
285 bank
->dbck_enable_mask
&= ~gpio_bit
;
286 bank
->context
.debounce_en
&= ~gpio_bit
;
287 writel_relaxed(bank
->context
.debounce_en
,
288 bank
->base
+ bank
->regs
->debounce_en
);
290 if (!bank
->dbck_enable_mask
) {
291 bank
->context
.debounce
= 0;
292 writel_relaxed(bank
->context
.debounce
, bank
->base
+
293 bank
->regs
->debounce
);
294 clk_disable(bank
->dbck
);
295 bank
->dbck_enabled
= false;
299 static inline void omap_set_gpio_trigger(struct gpio_bank
*bank
, int gpio
,
302 void __iomem
*base
= bank
->base
;
303 u32 gpio_bit
= BIT(gpio
);
305 omap_gpio_rmw(base
, bank
->regs
->leveldetect0
, gpio_bit
,
306 trigger
& IRQ_TYPE_LEVEL_LOW
);
307 omap_gpio_rmw(base
, bank
->regs
->leveldetect1
, gpio_bit
,
308 trigger
& IRQ_TYPE_LEVEL_HIGH
);
309 omap_gpio_rmw(base
, bank
->regs
->risingdetect
, gpio_bit
,
310 trigger
& IRQ_TYPE_EDGE_RISING
);
311 omap_gpio_rmw(base
, bank
->regs
->fallingdetect
, gpio_bit
,
312 trigger
& IRQ_TYPE_EDGE_FALLING
);
314 bank
->context
.leveldetect0
=
315 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
316 bank
->context
.leveldetect1
=
317 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
318 bank
->context
.risingdetect
=
319 readl_relaxed(bank
->base
+ bank
->regs
->risingdetect
);
320 bank
->context
.fallingdetect
=
321 readl_relaxed(bank
->base
+ bank
->regs
->fallingdetect
);
323 if (likely(!(bank
->non_wakeup_gpios
& gpio_bit
))) {
324 omap_gpio_rmw(base
, bank
->regs
->wkup_en
, gpio_bit
, trigger
!= 0);
325 bank
->context
.wake_en
=
326 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
329 /* This part needs to be executed always for OMAP{34xx, 44xx} */
330 if (!bank
->regs
->irqctrl
) {
331 /* On omap24xx proceed only when valid GPIO bit is set */
332 if (bank
->non_wakeup_gpios
) {
333 if (!(bank
->non_wakeup_gpios
& gpio_bit
))
338 * Log the edge gpio and manually trigger the IRQ
339 * after resume if the input level changes
340 * to avoid irq lost during PER RET/OFF mode
341 * Applies for omap2 non-wakeup gpio and all omap3 gpios
343 if (trigger
& IRQ_TYPE_EDGE_BOTH
)
344 bank
->enabled_non_wakeup_gpios
|= gpio_bit
;
346 bank
->enabled_non_wakeup_gpios
&= ~gpio_bit
;
351 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
) |
352 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
355 #ifdef CONFIG_ARCH_OMAP1
357 * This only applies to chips that can't do both rising and falling edge
358 * detection at once. For all other chips, this function is a noop.
360 static void omap_toggle_gpio_edge_triggering(struct gpio_bank
*bank
, int gpio
)
362 void __iomem
*reg
= bank
->base
;
365 if (!bank
->regs
->irqctrl
)
368 reg
+= bank
->regs
->irqctrl
;
370 l
= readl_relaxed(reg
);
376 writel_relaxed(l
, reg
);
379 static void omap_toggle_gpio_edge_triggering(struct gpio_bank
*bank
, int gpio
) {}
382 static int omap_set_gpio_triggering(struct gpio_bank
*bank
, int gpio
,
385 void __iomem
*reg
= bank
->base
;
386 void __iomem
*base
= bank
->base
;
389 if (bank
->regs
->leveldetect0
&& bank
->regs
->wkup_en
) {
390 omap_set_gpio_trigger(bank
, gpio
, trigger
);
391 } else if (bank
->regs
->irqctrl
) {
392 reg
+= bank
->regs
->irqctrl
;
394 l
= readl_relaxed(reg
);
395 if ((trigger
& IRQ_TYPE_SENSE_MASK
) == IRQ_TYPE_EDGE_BOTH
)
396 bank
->toggle_mask
|= BIT(gpio
);
397 if (trigger
& IRQ_TYPE_EDGE_RISING
)
399 else if (trigger
& IRQ_TYPE_EDGE_FALLING
)
404 writel_relaxed(l
, reg
);
405 } else if (bank
->regs
->edgectrl1
) {
407 reg
+= bank
->regs
->edgectrl2
;
409 reg
+= bank
->regs
->edgectrl1
;
412 l
= readl_relaxed(reg
);
413 l
&= ~(3 << (gpio
<< 1));
414 if (trigger
& IRQ_TYPE_EDGE_RISING
)
415 l
|= 2 << (gpio
<< 1);
416 if (trigger
& IRQ_TYPE_EDGE_FALLING
)
419 /* Enable wake-up during idle for dynamic tick */
420 omap_gpio_rmw(base
, bank
->regs
->wkup_en
, BIT(gpio
), trigger
);
421 bank
->context
.wake_en
=
422 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
423 writel_relaxed(l
, reg
);
428 static void omap_enable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
430 if (bank
->regs
->pinctrl
) {
431 void __iomem
*reg
= bank
->base
+ bank
->regs
->pinctrl
;
433 /* Claim the pin for MPU */
434 writel_relaxed(readl_relaxed(reg
) | (BIT(offset
)), reg
);
437 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
438 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
441 ctrl
= readl_relaxed(reg
);
442 /* Module is enabled, clocks are not gated */
443 ctrl
&= ~GPIO_MOD_CTRL_BIT
;
444 writel_relaxed(ctrl
, reg
);
445 bank
->context
.ctrl
= ctrl
;
449 static void omap_disable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
451 void __iomem
*base
= bank
->base
;
453 if (bank
->regs
->wkup_en
&&
454 !LINE_USED(bank
->mod_usage
, offset
) &&
455 !LINE_USED(bank
->irq_usage
, offset
)) {
456 /* Disable wake-up during idle for dynamic tick */
457 omap_gpio_rmw(base
, bank
->regs
->wkup_en
, BIT(offset
), 0);
458 bank
->context
.wake_en
=
459 readl_relaxed(bank
->base
+ bank
->regs
->wkup_en
);
462 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
463 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
466 ctrl
= readl_relaxed(reg
);
467 /* Module is disabled, clocks are gated */
468 ctrl
|= GPIO_MOD_CTRL_BIT
;
469 writel_relaxed(ctrl
, reg
);
470 bank
->context
.ctrl
= ctrl
;
474 static int omap_gpio_is_input(struct gpio_bank
*bank
, unsigned offset
)
476 void __iomem
*reg
= bank
->base
+ bank
->regs
->direction
;
478 return readl_relaxed(reg
) & BIT(offset
);
481 static void omap_gpio_init_irq(struct gpio_bank
*bank
, unsigned offset
)
483 if (!LINE_USED(bank
->mod_usage
, offset
)) {
484 omap_enable_gpio_module(bank
, offset
);
485 omap_set_gpio_direction(bank
, offset
, 1);
487 bank
->irq_usage
|= BIT(offset
);
490 static int omap_gpio_irq_type(struct irq_data
*d
, unsigned type
)
492 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
495 unsigned offset
= 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 raw_spin_lock_irqsave(&bank
->lock
, flags
);
505 retval
= omap_set_gpio_triggering(bank
, offset
, type
);
507 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
510 omap_gpio_init_irq(bank
, offset
);
511 if (!omap_gpio_is_input(bank
, offset
)) {
512 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
516 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
518 if (type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_LEVEL_HIGH
))
519 irq_set_handler_locked(d
, handle_level_irq
);
520 else if (type
& (IRQ_TYPE_EDGE_FALLING
| IRQ_TYPE_EDGE_RISING
))
522 * Edge IRQs are already cleared/acked in irq_handler and
523 * not need to be masked, as result handle_edge_irq()
524 * logic is excessed here and may cause lose of interrupts.
525 * So just use handle_simple_irq.
527 irq_set_handler_locked(d
, handle_simple_irq
);
535 static void omap_clear_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
537 void __iomem
*reg
= bank
->base
;
539 reg
+= bank
->regs
->irqstatus
;
540 writel_relaxed(gpio_mask
, reg
);
542 /* Workaround for clearing DSP GPIO interrupts to allow retention */
543 if (bank
->regs
->irqstatus2
) {
544 reg
= bank
->base
+ bank
->regs
->irqstatus2
;
545 writel_relaxed(gpio_mask
, reg
);
548 /* Flush posted write for the irq status to avoid spurious interrupts */
552 static inline void omap_clear_gpio_irqstatus(struct gpio_bank
*bank
,
555 omap_clear_gpio_irqbank(bank
, BIT(offset
));
558 static u32
omap_get_gpio_irqbank_mask(struct gpio_bank
*bank
)
560 void __iomem
*reg
= bank
->base
;
562 u32 mask
= (BIT(bank
->width
)) - 1;
564 reg
+= bank
->regs
->irqenable
;
565 l
= readl_relaxed(reg
);
566 if (bank
->regs
->irqenable_inv
)
572 static void omap_enable_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
574 void __iomem
*reg
= bank
->base
;
577 if (bank
->regs
->set_irqenable
) {
578 reg
+= bank
->regs
->set_irqenable
;
580 bank
->context
.irqenable1
|= gpio_mask
;
582 reg
+= bank
->regs
->irqenable
;
583 l
= readl_relaxed(reg
);
584 if (bank
->regs
->irqenable_inv
)
588 bank
->context
.irqenable1
= l
;
591 writel_relaxed(l
, reg
);
594 static void omap_disable_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
596 void __iomem
*reg
= bank
->base
;
599 if (bank
->regs
->clr_irqenable
) {
600 reg
+= bank
->regs
->clr_irqenable
;
602 bank
->context
.irqenable1
&= ~gpio_mask
;
604 reg
+= bank
->regs
->irqenable
;
605 l
= readl_relaxed(reg
);
606 if (bank
->regs
->irqenable_inv
)
610 bank
->context
.irqenable1
= l
;
613 writel_relaxed(l
, reg
);
616 static inline void omap_set_gpio_irqenable(struct gpio_bank
*bank
,
617 unsigned offset
, int enable
)
620 omap_enable_gpio_irqbank(bank
, BIT(offset
));
622 omap_disable_gpio_irqbank(bank
, BIT(offset
));
625 /* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
626 static int omap_gpio_wake_enable(struct irq_data
*d
, unsigned int enable
)
628 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
630 return irq_set_irq_wake(bank
->irq
, enable
);
633 static int omap_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
635 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
639 * If this is the first gpio_request for the bank,
640 * enable the bank module.
642 if (!BANK_USED(bank
))
643 pm_runtime_get_sync(chip
->parent
);
645 raw_spin_lock_irqsave(&bank
->lock
, flags
);
646 omap_enable_gpio_module(bank
, offset
);
647 bank
->mod_usage
|= BIT(offset
);
648 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
653 static void omap_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
655 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
658 raw_spin_lock_irqsave(&bank
->lock
, flags
);
659 bank
->mod_usage
&= ~(BIT(offset
));
660 if (!LINE_USED(bank
->irq_usage
, offset
)) {
661 omap_set_gpio_direction(bank
, offset
, 1);
662 omap_clear_gpio_debounce(bank
, offset
);
664 omap_disable_gpio_module(bank
, offset
);
665 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
668 * If this is the last gpio to be freed in the bank,
669 * disable the bank module.
671 if (!BANK_USED(bank
))
672 pm_runtime_put(chip
->parent
);
676 * We need to unmask the GPIO bank interrupt as soon as possible to
677 * avoid missing GPIO interrupts for other lines in the bank.
678 * Then we need to mask-read-clear-unmask the triggered GPIO lines
679 * in the bank to avoid missing nested interrupts for a GPIO line.
680 * If we wait to unmask individual GPIO lines in the bank after the
681 * line's interrupt handler has been run, we may miss some nested
684 static irqreturn_t
omap_gpio_irq_handler(int irq
, void *gpiobank
)
686 void __iomem
*isr_reg
= NULL
;
687 u32 enabled
, isr
, level_mask
;
689 struct gpio_bank
*bank
= gpiobank
;
690 unsigned long wa_lock_flags
;
691 unsigned long lock_flags
;
693 isr_reg
= bank
->base
+ bank
->regs
->irqstatus
;
694 if (WARN_ON(!isr_reg
))
697 pm_runtime_get_sync(bank
->chip
.parent
);
700 raw_spin_lock_irqsave(&bank
->lock
, lock_flags
);
702 enabled
= omap_get_gpio_irqbank_mask(bank
);
703 isr
= readl_relaxed(isr_reg
) & enabled
;
705 if (bank
->level_mask
)
706 level_mask
= bank
->level_mask
& enabled
;
710 /* clear edge sensitive interrupts before handler(s) are
711 called so that we don't miss any interrupt occurred while
713 if (isr
& ~level_mask
)
714 omap_clear_gpio_irqbank(bank
, isr
& ~level_mask
);
716 raw_spin_unlock_irqrestore(&bank
->lock
, lock_flags
);
725 raw_spin_lock_irqsave(&bank
->lock
, lock_flags
);
727 * Some chips can't respond to both rising and falling
728 * at the same time. If this irq was requested with
729 * both flags, we need to flip the ICR data for the IRQ
730 * to respond to the IRQ for the opposite direction.
731 * This will be indicated in the bank toggle_mask.
733 if (bank
->toggle_mask
& (BIT(bit
)))
734 omap_toggle_gpio_edge_triggering(bank
, bit
);
736 raw_spin_unlock_irqrestore(&bank
->lock
, lock_flags
);
738 raw_spin_lock_irqsave(&bank
->wa_lock
, wa_lock_flags
);
740 generic_handle_irq(irq_find_mapping(bank
->chip
.irq
.domain
,
743 raw_spin_unlock_irqrestore(&bank
->wa_lock
,
748 pm_runtime_put(bank
->chip
.parent
);
752 static unsigned int omap_gpio_irq_startup(struct irq_data
*d
)
754 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
756 unsigned offset
= d
->hwirq
;
758 raw_spin_lock_irqsave(&bank
->lock
, flags
);
760 if (!LINE_USED(bank
->mod_usage
, offset
))
761 omap_set_gpio_direction(bank
, offset
, 1);
762 else if (!omap_gpio_is_input(bank
, offset
))
764 omap_enable_gpio_module(bank
, offset
);
765 bank
->irq_usage
|= BIT(offset
);
767 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
768 omap_gpio_unmask_irq(d
);
772 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
776 static void omap_gpio_irq_shutdown(struct irq_data
*d
)
778 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
780 unsigned offset
= d
->hwirq
;
782 raw_spin_lock_irqsave(&bank
->lock
, flags
);
783 bank
->irq_usage
&= ~(BIT(offset
));
784 omap_set_gpio_irqenable(bank
, offset
, 0);
785 omap_clear_gpio_irqstatus(bank
, offset
);
786 omap_set_gpio_triggering(bank
, offset
, IRQ_TYPE_NONE
);
787 if (!LINE_USED(bank
->mod_usage
, offset
))
788 omap_clear_gpio_debounce(bank
, offset
);
789 omap_disable_gpio_module(bank
, offset
);
790 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
793 static void omap_gpio_irq_bus_lock(struct irq_data
*data
)
795 struct gpio_bank
*bank
= omap_irq_data_get_bank(data
);
797 if (!BANK_USED(bank
))
798 pm_runtime_get_sync(bank
->chip
.parent
);
801 static void gpio_irq_bus_sync_unlock(struct irq_data
*data
)
803 struct gpio_bank
*bank
= omap_irq_data_get_bank(data
);
806 * If this is the last IRQ to be freed in the bank,
807 * disable the bank module.
809 if (!BANK_USED(bank
))
810 pm_runtime_put(bank
->chip
.parent
);
813 static void omap_gpio_ack_irq(struct irq_data
*d
)
815 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
816 unsigned offset
= d
->hwirq
;
818 omap_clear_gpio_irqstatus(bank
, offset
);
821 static void omap_gpio_mask_irq(struct irq_data
*d
)
823 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
824 unsigned offset
= d
->hwirq
;
827 raw_spin_lock_irqsave(&bank
->lock
, flags
);
828 omap_set_gpio_irqenable(bank
, offset
, 0);
829 omap_set_gpio_triggering(bank
, offset
, IRQ_TYPE_NONE
);
830 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
833 static void omap_gpio_unmask_irq(struct irq_data
*d
)
835 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
836 unsigned offset
= d
->hwirq
;
837 u32 trigger
= irqd_get_trigger_type(d
);
840 raw_spin_lock_irqsave(&bank
->lock
, flags
);
842 omap_set_gpio_triggering(bank
, offset
, trigger
);
844 /* For level-triggered GPIOs, the clearing must be done after
845 * the HW source is cleared, thus after the handler has run */
846 if (bank
->level_mask
& BIT(offset
)) {
847 omap_set_gpio_irqenable(bank
, offset
, 0);
848 omap_clear_gpio_irqstatus(bank
, offset
);
851 omap_set_gpio_irqenable(bank
, offset
, 1);
852 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
855 /*---------------------------------------------------------------------*/
857 static int omap_mpuio_suspend_noirq(struct device
*dev
)
859 struct platform_device
*pdev
= to_platform_device(dev
);
860 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
861 void __iomem
*mask_reg
= bank
->base
+
862 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
865 raw_spin_lock_irqsave(&bank
->lock
, flags
);
866 writel_relaxed(0xffff & ~bank
->context
.wake_en
, mask_reg
);
867 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
872 static int omap_mpuio_resume_noirq(struct device
*dev
)
874 struct platform_device
*pdev
= to_platform_device(dev
);
875 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
876 void __iomem
*mask_reg
= bank
->base
+
877 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
880 raw_spin_lock_irqsave(&bank
->lock
, flags
);
881 writel_relaxed(bank
->context
.wake_en
, mask_reg
);
882 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
887 static const struct dev_pm_ops omap_mpuio_dev_pm_ops
= {
888 .suspend_noirq
= omap_mpuio_suspend_noirq
,
889 .resume_noirq
= omap_mpuio_resume_noirq
,
892 /* use platform_driver for this. */
893 static struct platform_driver omap_mpuio_driver
= {
896 .pm
= &omap_mpuio_dev_pm_ops
,
900 static struct platform_device omap_mpuio_device
= {
904 .driver
= &omap_mpuio_driver
.driver
,
906 /* could list the /proc/iomem resources */
909 static inline void omap_mpuio_init(struct gpio_bank
*bank
)
911 platform_set_drvdata(&omap_mpuio_device
, bank
);
913 if (platform_driver_register(&omap_mpuio_driver
) == 0)
914 (void) platform_device_register(&omap_mpuio_device
);
917 /*---------------------------------------------------------------------*/
919 static int omap_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
921 struct gpio_bank
*bank
;
926 bank
= gpiochip_get_data(chip
);
927 reg
= bank
->base
+ bank
->regs
->direction
;
928 raw_spin_lock_irqsave(&bank
->lock
, flags
);
929 dir
= !!(readl_relaxed(reg
) & BIT(offset
));
930 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
934 static int omap_gpio_input(struct gpio_chip
*chip
, unsigned offset
)
936 struct gpio_bank
*bank
;
939 bank
= gpiochip_get_data(chip
);
940 raw_spin_lock_irqsave(&bank
->lock
, flags
);
941 omap_set_gpio_direction(bank
, offset
, 1);
942 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
946 static int omap_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
948 struct gpio_bank
*bank
;
950 bank
= gpiochip_get_data(chip
);
952 if (omap_gpio_is_input(bank
, offset
))
953 return omap_get_gpio_datain(bank
, offset
);
955 return omap_get_gpio_dataout(bank
, offset
);
958 static int omap_gpio_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
960 struct gpio_bank
*bank
;
963 bank
= gpiochip_get_data(chip
);
964 raw_spin_lock_irqsave(&bank
->lock
, flags
);
965 bank
->set_dataout(bank
, offset
, value
);
966 omap_set_gpio_direction(bank
, offset
, 0);
967 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
971 static int omap_gpio_debounce(struct gpio_chip
*chip
, unsigned offset
,
974 struct gpio_bank
*bank
;
978 bank
= gpiochip_get_data(chip
);
980 raw_spin_lock_irqsave(&bank
->lock
, flags
);
981 ret
= omap2_set_gpio_debounce(bank
, offset
, debounce
);
982 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
985 dev_info(chip
->parent
,
986 "Could not set line %u debounce to %u microseconds (%d)",
987 offset
, debounce
, ret
);
992 static int omap_gpio_set_config(struct gpio_chip
*chip
, unsigned offset
,
993 unsigned long config
)
997 if (pinconf_to_config_param(config
) != PIN_CONFIG_INPUT_DEBOUNCE
)
1000 debounce
= pinconf_to_config_argument(config
);
1001 return omap_gpio_debounce(chip
, offset
, debounce
);
1004 static void omap_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
1006 struct gpio_bank
*bank
;
1007 unsigned long flags
;
1009 bank
= gpiochip_get_data(chip
);
1010 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1011 bank
->set_dataout(bank
, offset
, value
);
1012 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1015 /*---------------------------------------------------------------------*/
1017 static void omap_gpio_show_rev(struct gpio_bank
*bank
)
1022 if (called
|| bank
->regs
->revision
== USHRT_MAX
)
1025 rev
= readw_relaxed(bank
->base
+ bank
->regs
->revision
);
1026 pr_info("OMAP GPIO hardware version %d.%d\n",
1027 (rev
>> 4) & 0x0f, rev
& 0x0f);
1032 static void omap_gpio_mod_init(struct gpio_bank
*bank
)
1034 void __iomem
*base
= bank
->base
;
1037 if (bank
->width
== 16)
1040 if (bank
->is_mpuio
) {
1041 writel_relaxed(l
, bank
->base
+ bank
->regs
->irqenable
);
1045 omap_gpio_rmw(base
, bank
->regs
->irqenable
, l
,
1046 bank
->regs
->irqenable_inv
);
1047 omap_gpio_rmw(base
, bank
->regs
->irqstatus
, l
,
1048 !bank
->regs
->irqenable_inv
);
1049 if (bank
->regs
->debounce_en
)
1050 writel_relaxed(0, base
+ bank
->regs
->debounce_en
);
1052 /* Save OE default value (0xffffffff) in the context */
1053 bank
->context
.oe
= readl_relaxed(bank
->base
+ bank
->regs
->direction
);
1054 /* Initialize interface clk ungated, module enabled */
1055 if (bank
->regs
->ctrl
)
1056 writel_relaxed(0, base
+ bank
->regs
->ctrl
);
1059 static int omap_gpio_chip_init(struct gpio_bank
*bank
, struct irq_chip
*irqc
)
1061 struct gpio_irq_chip
*irq
;
1068 * REVISIT eventually switch from OMAP-specific gpio structs
1069 * over to the generic ones
1071 bank
->chip
.request
= omap_gpio_request
;
1072 bank
->chip
.free
= omap_gpio_free
;
1073 bank
->chip
.get_direction
= omap_gpio_get_direction
;
1074 bank
->chip
.direction_input
= omap_gpio_input
;
1075 bank
->chip
.get
= omap_gpio_get
;
1076 bank
->chip
.direction_output
= omap_gpio_output
;
1077 bank
->chip
.set_config
= omap_gpio_set_config
;
1078 bank
->chip
.set
= omap_gpio_set
;
1079 if (bank
->is_mpuio
) {
1080 bank
->chip
.label
= "mpuio";
1081 if (bank
->regs
->wkup_en
)
1082 bank
->chip
.parent
= &omap_mpuio_device
.dev
;
1083 bank
->chip
.base
= OMAP_MPUIO(0);
1085 label
= devm_kasprintf(bank
->chip
.parent
, GFP_KERNEL
, "gpio-%d-%d",
1086 gpio
, gpio
+ bank
->width
- 1);
1089 bank
->chip
.label
= label
;
1090 bank
->chip
.base
= gpio
;
1092 bank
->chip
.ngpio
= bank
->width
;
1094 #ifdef CONFIG_ARCH_OMAP1
1096 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
1097 * irq_alloc_descs() since a base IRQ offset will no longer be needed.
1099 irq_base
= devm_irq_alloc_descs(bank
->chip
.parent
,
1100 -1, 0, bank
->width
, 0);
1102 dev_err(bank
->chip
.parent
, "Couldn't allocate IRQ numbers\n");
1107 /* MPUIO is a bit different, reading IRQ status clears it */
1108 if (bank
->is_mpuio
) {
1109 irqc
->irq_ack
= dummy_irq_chip
.irq_ack
;
1110 if (!bank
->regs
->wkup_en
)
1111 irqc
->irq_set_wake
= NULL
;
1114 irq
= &bank
->chip
.irq
;
1116 irq
->handler
= handle_bad_irq
;
1117 irq
->default_type
= IRQ_TYPE_NONE
;
1118 irq
->num_parents
= 1;
1119 irq
->parents
= &bank
->irq
;
1120 irq
->first
= irq_base
;
1122 ret
= gpiochip_add_data(&bank
->chip
, bank
);
1124 dev_err(bank
->chip
.parent
,
1125 "Could not register gpio chip %d\n", ret
);
1129 ret
= devm_request_irq(bank
->chip
.parent
, bank
->irq
,
1130 omap_gpio_irq_handler
,
1131 0, dev_name(bank
->chip
.parent
), bank
);
1133 gpiochip_remove(&bank
->chip
);
1135 if (!bank
->is_mpuio
)
1136 gpio
+= bank
->width
;
1141 static const struct of_device_id omap_gpio_match
[];
1143 static int omap_gpio_probe(struct platform_device
*pdev
)
1145 struct device
*dev
= &pdev
->dev
;
1146 struct device_node
*node
= dev
->of_node
;
1147 const struct of_device_id
*match
;
1148 const struct omap_gpio_platform_data
*pdata
;
1149 struct resource
*res
;
1150 struct gpio_bank
*bank
;
1151 struct irq_chip
*irqc
;
1154 match
= of_match_device(of_match_ptr(omap_gpio_match
), dev
);
1156 pdata
= match
? match
->data
: dev_get_platdata(dev
);
1160 bank
= devm_kzalloc(dev
, sizeof(struct gpio_bank
), GFP_KERNEL
);
1162 dev_err(dev
, "Memory alloc failed\n");
1166 irqc
= devm_kzalloc(dev
, sizeof(*irqc
), GFP_KERNEL
);
1170 irqc
->irq_startup
= omap_gpio_irq_startup
,
1171 irqc
->irq_shutdown
= omap_gpio_irq_shutdown
,
1172 irqc
->irq_ack
= omap_gpio_ack_irq
,
1173 irqc
->irq_mask
= omap_gpio_mask_irq
,
1174 irqc
->irq_unmask
= omap_gpio_unmask_irq
,
1175 irqc
->irq_set_type
= omap_gpio_irq_type
,
1176 irqc
->irq_set_wake
= omap_gpio_wake_enable
,
1177 irqc
->irq_bus_lock
= omap_gpio_irq_bus_lock
,
1178 irqc
->irq_bus_sync_unlock
= gpio_irq_bus_sync_unlock
,
1179 irqc
->name
= dev_name(&pdev
->dev
);
1180 irqc
->flags
= IRQCHIP_MASK_ON_SUSPEND
;
1182 bank
->irq
= platform_get_irq(pdev
, 0);
1183 if (bank
->irq
<= 0) {
1186 if (bank
->irq
!= -EPROBE_DEFER
)
1188 "can't get irq resource ret=%d\n", bank
->irq
);
1192 bank
->chip
.parent
= dev
;
1193 bank
->chip
.owner
= THIS_MODULE
;
1194 bank
->dbck_flag
= pdata
->dbck_flag
;
1195 bank
->stride
= pdata
->bank_stride
;
1196 bank
->width
= pdata
->bank_width
;
1197 bank
->is_mpuio
= pdata
->is_mpuio
;
1198 bank
->non_wakeup_gpios
= pdata
->non_wakeup_gpios
;
1199 bank
->regs
= pdata
->regs
;
1200 #ifdef CONFIG_OF_GPIO
1201 bank
->chip
.of_node
= of_node_get(node
);
1204 if (!of_property_read_bool(node
, "ti,gpio-always-on"))
1205 bank
->loses_context
= true;
1207 bank
->loses_context
= pdata
->loses_context
;
1209 if (bank
->loses_context
)
1210 bank
->get_context_loss_count
=
1211 pdata
->get_context_loss_count
;
1214 if (bank
->regs
->set_dataout
&& bank
->regs
->clr_dataout
)
1215 bank
->set_dataout
= omap_set_gpio_dataout_reg
;
1217 bank
->set_dataout
= omap_set_gpio_dataout_mask
;
1219 raw_spin_lock_init(&bank
->lock
);
1220 raw_spin_lock_init(&bank
->wa_lock
);
1222 /* Static mapping, never released */
1223 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1224 bank
->base
= devm_ioremap_resource(dev
, res
);
1225 if (IS_ERR(bank
->base
)) {
1226 return PTR_ERR(bank
->base
);
1229 if (bank
->dbck_flag
) {
1230 bank
->dbck
= devm_clk_get(dev
, "dbclk");
1231 if (IS_ERR(bank
->dbck
)) {
1233 "Could not get gpio dbck. Disable debounce\n");
1234 bank
->dbck_flag
= false;
1236 clk_prepare(bank
->dbck
);
1240 platform_set_drvdata(pdev
, bank
);
1242 pm_runtime_enable(dev
);
1243 pm_runtime_irq_safe(dev
);
1244 pm_runtime_get_sync(dev
);
1247 omap_mpuio_init(bank
);
1249 omap_gpio_mod_init(bank
);
1251 ret
= omap_gpio_chip_init(bank
, irqc
);
1253 pm_runtime_put_sync(dev
);
1254 pm_runtime_disable(dev
);
1255 if (bank
->dbck_flag
)
1256 clk_unprepare(bank
->dbck
);
1260 omap_gpio_show_rev(bank
);
1262 pm_runtime_put(dev
);
1264 list_add_tail(&bank
->node
, &omap_gpio_list
);
1269 static int omap_gpio_remove(struct platform_device
*pdev
)
1271 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1273 list_del(&bank
->node
);
1274 gpiochip_remove(&bank
->chip
);
1275 pm_runtime_disable(&pdev
->dev
);
1276 if (bank
->dbck_flag
)
1277 clk_unprepare(bank
->dbck
);
1282 #ifdef CONFIG_ARCH_OMAP2PLUS
1284 #if defined(CONFIG_PM)
1285 static void omap_gpio_restore_context(struct gpio_bank
*bank
);
1287 static int omap_gpio_runtime_suspend(struct device
*dev
)
1289 struct platform_device
*pdev
= to_platform_device(dev
);
1290 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1292 unsigned long flags
;
1293 u32 wake_low
, wake_hi
;
1295 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1298 * Only edges can generate a wakeup event to the PRCM.
1300 * Therefore, ensure any wake-up capable GPIOs have
1301 * edge-detection enabled before going idle to ensure a wakeup
1302 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1305 * The normal values will be restored upon ->runtime_resume()
1306 * by writing back the values saved in bank->context.
1308 wake_low
= bank
->context
.leveldetect0
& bank
->context
.wake_en
;
1310 writel_relaxed(wake_low
| bank
->context
.fallingdetect
,
1311 bank
->base
+ bank
->regs
->fallingdetect
);
1312 wake_hi
= bank
->context
.leveldetect1
& bank
->context
.wake_en
;
1314 writel_relaxed(wake_hi
| bank
->context
.risingdetect
,
1315 bank
->base
+ bank
->regs
->risingdetect
);
1317 if (!bank
->enabled_non_wakeup_gpios
)
1318 goto update_gpio_context_count
;
1320 if (bank
->power_mode
!= OFF_MODE
) {
1321 bank
->power_mode
= 0;
1322 goto update_gpio_context_count
;
1325 * If going to OFF, remove triggering for all
1326 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1327 * generated. See OMAP2420 Errata item 1.101.
1329 bank
->saved_datain
= readl_relaxed(bank
->base
+
1330 bank
->regs
->datain
);
1331 l1
= bank
->context
.fallingdetect
;
1332 l2
= bank
->context
.risingdetect
;
1334 l1
&= ~bank
->enabled_non_wakeup_gpios
;
1335 l2
&= ~bank
->enabled_non_wakeup_gpios
;
1337 writel_relaxed(l1
, bank
->base
+ bank
->regs
->fallingdetect
);
1338 writel_relaxed(l2
, bank
->base
+ bank
->regs
->risingdetect
);
1340 bank
->workaround_enabled
= true;
1342 update_gpio_context_count
:
1343 if (bank
->get_context_loss_count
)
1344 bank
->context_loss_count
=
1345 bank
->get_context_loss_count(dev
);
1347 omap_gpio_dbck_disable(bank
);
1348 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1353 static void omap_gpio_init_context(struct gpio_bank
*p
);
1355 static int omap_gpio_runtime_resume(struct device
*dev
)
1357 struct platform_device
*pdev
= to_platform_device(dev
);
1358 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1359 u32 l
= 0, gen
, gen0
, gen1
;
1360 unsigned long flags
;
1363 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1366 * On the first resume during the probe, the context has not
1367 * been initialised and so initialise it now. Also initialise
1368 * the context loss count.
1370 if (bank
->loses_context
&& !bank
->context_valid
) {
1371 omap_gpio_init_context(bank
);
1373 if (bank
->get_context_loss_count
)
1374 bank
->context_loss_count
=
1375 bank
->get_context_loss_count(dev
);
1378 omap_gpio_dbck_enable(bank
);
1381 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1382 * GPIOs were set to edge trigger also in order to be able to
1383 * generate a PRCM wakeup. Here we restore the
1384 * pre-runtime_suspend() values for edge triggering.
1386 writel_relaxed(bank
->context
.fallingdetect
,
1387 bank
->base
+ bank
->regs
->fallingdetect
);
1388 writel_relaxed(bank
->context
.risingdetect
,
1389 bank
->base
+ bank
->regs
->risingdetect
);
1391 if (bank
->loses_context
) {
1392 if (!bank
->get_context_loss_count
) {
1393 omap_gpio_restore_context(bank
);
1395 c
= bank
->get_context_loss_count(dev
);
1396 if (c
!= bank
->context_loss_count
) {
1397 omap_gpio_restore_context(bank
);
1399 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1405 if (!bank
->workaround_enabled
) {
1406 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1410 l
= readl_relaxed(bank
->base
+ bank
->regs
->datain
);
1413 * Check if any of the non-wakeup interrupt GPIOs have changed
1414 * state. If so, generate an IRQ by software. This is
1415 * horribly racy, but it's the best we can do to work around
1418 l
^= bank
->saved_datain
;
1419 l
&= bank
->enabled_non_wakeup_gpios
;
1422 * No need to generate IRQs for the rising edge for gpio IRQs
1423 * configured with falling edge only; and vice versa.
1425 gen0
= l
& bank
->context
.fallingdetect
;
1426 gen0
&= bank
->saved_datain
;
1428 gen1
= l
& bank
->context
.risingdetect
;
1429 gen1
&= ~(bank
->saved_datain
);
1431 /* FIXME: Consider GPIO IRQs with level detections properly! */
1432 gen
= l
& (~(bank
->context
.fallingdetect
) &
1433 ~(bank
->context
.risingdetect
));
1434 /* Consider all GPIO IRQs needed to be updated */
1440 old0
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
1441 old1
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
1443 if (!bank
->regs
->irqstatus_raw0
) {
1444 writel_relaxed(old0
| gen
, bank
->base
+
1445 bank
->regs
->leveldetect0
);
1446 writel_relaxed(old1
| gen
, bank
->base
+
1447 bank
->regs
->leveldetect1
);
1450 if (bank
->regs
->irqstatus_raw0
) {
1451 writel_relaxed(old0
| l
, bank
->base
+
1452 bank
->regs
->leveldetect0
);
1453 writel_relaxed(old1
| l
, bank
->base
+
1454 bank
->regs
->leveldetect1
);
1456 writel_relaxed(old0
, bank
->base
+ bank
->regs
->leveldetect0
);
1457 writel_relaxed(old1
, bank
->base
+ bank
->regs
->leveldetect1
);
1460 bank
->workaround_enabled
= false;
1461 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1465 #endif /* CONFIG_PM */
1467 #if IS_BUILTIN(CONFIG_GPIO_OMAP)
1468 void omap2_gpio_prepare_for_idle(int pwr_mode
)
1470 struct gpio_bank
*bank
;
1472 list_for_each_entry(bank
, &omap_gpio_list
, node
) {
1473 if (!BANK_USED(bank
) || !bank
->loses_context
)
1476 bank
->power_mode
= pwr_mode
;
1478 pm_runtime_put_sync_suspend(bank
->chip
.parent
);
1482 void omap2_gpio_resume_after_idle(void)
1484 struct gpio_bank
*bank
;
1486 list_for_each_entry(bank
, &omap_gpio_list
, node
) {
1487 if (!BANK_USED(bank
) || !bank
->loses_context
)
1490 pm_runtime_get_sync(bank
->chip
.parent
);
1495 #if defined(CONFIG_PM)
1496 static void omap_gpio_init_context(struct gpio_bank
*p
)
1498 struct omap_gpio_reg_offs
*regs
= p
->regs
;
1499 void __iomem
*base
= p
->base
;
1501 p
->context
.ctrl
= readl_relaxed(base
+ regs
->ctrl
);
1502 p
->context
.oe
= readl_relaxed(base
+ regs
->direction
);
1503 p
->context
.wake_en
= readl_relaxed(base
+ regs
->wkup_en
);
1504 p
->context
.leveldetect0
= readl_relaxed(base
+ regs
->leveldetect0
);
1505 p
->context
.leveldetect1
= readl_relaxed(base
+ regs
->leveldetect1
);
1506 p
->context
.risingdetect
= readl_relaxed(base
+ regs
->risingdetect
);
1507 p
->context
.fallingdetect
= readl_relaxed(base
+ regs
->fallingdetect
);
1508 p
->context
.irqenable1
= readl_relaxed(base
+ regs
->irqenable
);
1509 p
->context
.irqenable2
= readl_relaxed(base
+ regs
->irqenable2
);
1511 if (regs
->set_dataout
&& p
->regs
->clr_dataout
)
1512 p
->context
.dataout
= readl_relaxed(base
+ regs
->set_dataout
);
1514 p
->context
.dataout
= readl_relaxed(base
+ regs
->dataout
);
1516 p
->context_valid
= true;
1519 static void omap_gpio_restore_context(struct gpio_bank
*bank
)
1521 writel_relaxed(bank
->context
.wake_en
,
1522 bank
->base
+ bank
->regs
->wkup_en
);
1523 writel_relaxed(bank
->context
.ctrl
, bank
->base
+ bank
->regs
->ctrl
);
1524 writel_relaxed(bank
->context
.leveldetect0
,
1525 bank
->base
+ bank
->regs
->leveldetect0
);
1526 writel_relaxed(bank
->context
.leveldetect1
,
1527 bank
->base
+ bank
->regs
->leveldetect1
);
1528 writel_relaxed(bank
->context
.risingdetect
,
1529 bank
->base
+ bank
->regs
->risingdetect
);
1530 writel_relaxed(bank
->context
.fallingdetect
,
1531 bank
->base
+ bank
->regs
->fallingdetect
);
1532 if (bank
->regs
->set_dataout
&& bank
->regs
->clr_dataout
)
1533 writel_relaxed(bank
->context
.dataout
,
1534 bank
->base
+ bank
->regs
->set_dataout
);
1536 writel_relaxed(bank
->context
.dataout
,
1537 bank
->base
+ bank
->regs
->dataout
);
1538 writel_relaxed(bank
->context
.oe
, bank
->base
+ bank
->regs
->direction
);
1540 if (bank
->dbck_enable_mask
) {
1541 writel_relaxed(bank
->context
.debounce
, bank
->base
+
1542 bank
->regs
->debounce
);
1543 writel_relaxed(bank
->context
.debounce_en
,
1544 bank
->base
+ bank
->regs
->debounce_en
);
1547 writel_relaxed(bank
->context
.irqenable1
,
1548 bank
->base
+ bank
->regs
->irqenable
);
1549 writel_relaxed(bank
->context
.irqenable2
,
1550 bank
->base
+ bank
->regs
->irqenable2
);
1552 #endif /* CONFIG_PM */
1554 #define omap_gpio_runtime_suspend NULL
1555 #define omap_gpio_runtime_resume NULL
1556 static inline void omap_gpio_init_context(struct gpio_bank
*p
) {}
1559 static const struct dev_pm_ops gpio_pm_ops
= {
1560 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend
, omap_gpio_runtime_resume
,
1564 #if defined(CONFIG_OF)
1565 static struct omap_gpio_reg_offs omap2_gpio_regs
= {
1566 .revision
= OMAP24XX_GPIO_REVISION
,
1567 .direction
= OMAP24XX_GPIO_OE
,
1568 .datain
= OMAP24XX_GPIO_DATAIN
,
1569 .dataout
= OMAP24XX_GPIO_DATAOUT
,
1570 .set_dataout
= OMAP24XX_GPIO_SETDATAOUT
,
1571 .clr_dataout
= OMAP24XX_GPIO_CLEARDATAOUT
,
1572 .irqstatus
= OMAP24XX_GPIO_IRQSTATUS1
,
1573 .irqstatus2
= OMAP24XX_GPIO_IRQSTATUS2
,
1574 .irqenable
= OMAP24XX_GPIO_IRQENABLE1
,
1575 .irqenable2
= OMAP24XX_GPIO_IRQENABLE2
,
1576 .set_irqenable
= OMAP24XX_GPIO_SETIRQENABLE1
,
1577 .clr_irqenable
= OMAP24XX_GPIO_CLEARIRQENABLE1
,
1578 .debounce
= OMAP24XX_GPIO_DEBOUNCE_VAL
,
1579 .debounce_en
= OMAP24XX_GPIO_DEBOUNCE_EN
,
1580 .ctrl
= OMAP24XX_GPIO_CTRL
,
1581 .wkup_en
= OMAP24XX_GPIO_WAKE_EN
,
1582 .leveldetect0
= OMAP24XX_GPIO_LEVELDETECT0
,
1583 .leveldetect1
= OMAP24XX_GPIO_LEVELDETECT1
,
1584 .risingdetect
= OMAP24XX_GPIO_RISINGDETECT
,
1585 .fallingdetect
= OMAP24XX_GPIO_FALLINGDETECT
,
1588 static struct omap_gpio_reg_offs omap4_gpio_regs
= {
1589 .revision
= OMAP4_GPIO_REVISION
,
1590 .direction
= OMAP4_GPIO_OE
,
1591 .datain
= OMAP4_GPIO_DATAIN
,
1592 .dataout
= OMAP4_GPIO_DATAOUT
,
1593 .set_dataout
= OMAP4_GPIO_SETDATAOUT
,
1594 .clr_dataout
= OMAP4_GPIO_CLEARDATAOUT
,
1595 .irqstatus
= OMAP4_GPIO_IRQSTATUS0
,
1596 .irqstatus2
= OMAP4_GPIO_IRQSTATUS1
,
1597 .irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1598 .irqenable2
= OMAP4_GPIO_IRQSTATUSSET1
,
1599 .set_irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1600 .clr_irqenable
= OMAP4_GPIO_IRQSTATUSCLR0
,
1601 .debounce
= OMAP4_GPIO_DEBOUNCINGTIME
,
1602 .debounce_en
= OMAP4_GPIO_DEBOUNCENABLE
,
1603 .ctrl
= OMAP4_GPIO_CTRL
,
1604 .wkup_en
= OMAP4_GPIO_IRQWAKEN0
,
1605 .leveldetect0
= OMAP4_GPIO_LEVELDETECT0
,
1606 .leveldetect1
= OMAP4_GPIO_LEVELDETECT1
,
1607 .risingdetect
= OMAP4_GPIO_RISINGDETECT
,
1608 .fallingdetect
= OMAP4_GPIO_FALLINGDETECT
,
1611 static const struct omap_gpio_platform_data omap2_pdata
= {
1612 .regs
= &omap2_gpio_regs
,
1617 static const struct omap_gpio_platform_data omap3_pdata
= {
1618 .regs
= &omap2_gpio_regs
,
1623 static const struct omap_gpio_platform_data omap4_pdata
= {
1624 .regs
= &omap4_gpio_regs
,
1629 static const struct of_device_id omap_gpio_match
[] = {
1631 .compatible
= "ti,omap4-gpio",
1632 .data
= &omap4_pdata
,
1635 .compatible
= "ti,omap3-gpio",
1636 .data
= &omap3_pdata
,
1639 .compatible
= "ti,omap2-gpio",
1640 .data
= &omap2_pdata
,
1644 MODULE_DEVICE_TABLE(of
, omap_gpio_match
);
1647 static struct platform_driver omap_gpio_driver
= {
1648 .probe
= omap_gpio_probe
,
1649 .remove
= omap_gpio_remove
,
1651 .name
= "omap_gpio",
1653 .of_match_table
= of_match_ptr(omap_gpio_match
),
1658 * gpio driver register needs to be done before
1659 * machine_init functions access gpio APIs.
1660 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1662 static int __init
omap_gpio_drv_reg(void)
1664 return platform_driver_register(&omap_gpio_driver
);
1666 postcore_initcall(omap_gpio_drv_reg
);
1668 static void __exit
omap_gpio_exit(void)
1670 platform_driver_unregister(&omap_gpio_driver
);
1672 module_exit(omap_gpio_exit
);
1674 MODULE_DESCRIPTION("omap gpio driver");
1675 MODULE_ALIAS("platform:gpio-omap");
1676 MODULE_LICENSE("GPL v2");