1 // SPDX-License-Identifier: GPL-2.0-only
3 * Support functions for OMAP GPIO
5 * Copyright (C) 2003-2005 Nokia Corporation
6 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
8 * Copyright (C) 2009 Texas Instruments
9 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/interrupt.h>
15 #include <linux/syscore_ops.h>
16 #include <linux/err.h>
17 #include <linux/clk.h>
19 #include <linux/cpu_pm.h>
20 #include <linux/device.h>
21 #include <linux/pm_runtime.h>
24 #include <linux/of_device.h>
25 #include <linux/gpio/driver.h>
26 #include <linux/bitops.h>
27 #include <linux/platform_data/gpio-omap.h>
29 #define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
48 const struct omap_gpio_reg_offs
*regs
;
52 u32 enabled_non_wakeup_gpios
;
53 struct gpio_regs context
;
58 raw_spinlock_t wa_lock
;
59 struct gpio_chip chip
;
61 struct notifier_block nb
;
62 unsigned int is_suspended
:1;
73 int context_loss_count
;
75 void (*set_dataout
)(struct gpio_bank
*bank
, unsigned gpio
, int enable
);
76 int (*get_context_loss_count
)(struct device
*dev
);
79 #define GPIO_MOD_CTRL_BIT BIT(0)
81 #define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
82 #define LINE_USED(line, offset) (line & (BIT(offset)))
84 static void omap_gpio_unmask_irq(struct irq_data
*d
);
86 static inline struct gpio_bank
*omap_irq_data_get_bank(struct irq_data
*d
)
88 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
89 return gpiochip_get_data(chip
);
92 static inline u32
omap_gpio_rmw(void __iomem
*reg
, u32 mask
, bool set
)
94 u32 val
= readl_relaxed(reg
);
101 writel_relaxed(val
, reg
);
106 static void omap_set_gpio_direction(struct gpio_bank
*bank
, int gpio
,
109 bank
->context
.oe
= omap_gpio_rmw(bank
->base
+ bank
->regs
->direction
,
110 BIT(gpio
), is_input
);
114 /* set data out value using dedicate set/clear register */
115 static void omap_set_gpio_dataout_reg(struct gpio_bank
*bank
, unsigned offset
,
118 void __iomem
*reg
= bank
->base
;
122 reg
+= bank
->regs
->set_dataout
;
123 bank
->context
.dataout
|= l
;
125 reg
+= bank
->regs
->clr_dataout
;
126 bank
->context
.dataout
&= ~l
;
129 writel_relaxed(l
, reg
);
132 /* set data out value using mask register */
133 static void omap_set_gpio_dataout_mask(struct gpio_bank
*bank
, unsigned offset
,
136 bank
->context
.dataout
= omap_gpio_rmw(bank
->base
+ bank
->regs
->dataout
,
137 BIT(offset
), enable
);
140 static inline void omap_gpio_dbck_enable(struct gpio_bank
*bank
)
142 if (bank
->dbck_enable_mask
&& !bank
->dbck_enabled
) {
143 clk_enable(bank
->dbck
);
144 bank
->dbck_enabled
= true;
146 writel_relaxed(bank
->dbck_enable_mask
,
147 bank
->base
+ bank
->regs
->debounce_en
);
151 static inline void omap_gpio_dbck_disable(struct gpio_bank
*bank
)
153 if (bank
->dbck_enable_mask
&& bank
->dbck_enabled
) {
155 * Disable debounce before cutting it's clock. If debounce is
156 * enabled but the clock is not, GPIO module seems to be unable
157 * to detect events and generate interrupts at least on OMAP3.
159 writel_relaxed(0, bank
->base
+ bank
->regs
->debounce_en
);
161 clk_disable(bank
->dbck
);
162 bank
->dbck_enabled
= false;
167 * omap2_set_gpio_debounce - low level gpio debounce time
168 * @bank: the gpio bank we're acting upon
169 * @offset: the gpio number on this @bank
170 * @debounce: debounce time to use
172 * OMAP's debounce time is in 31us steps
173 * <debounce time> = (GPIO_DEBOUNCINGTIME[7:0].DEBOUNCETIME + 1) x 31
174 * so we need to convert and round up to the closest unit.
176 * Return: 0 on success, negative error otherwise.
178 static int omap2_set_gpio_debounce(struct gpio_bank
*bank
, unsigned offset
,
183 bool enable
= !!debounce
;
185 if (!bank
->dbck_flag
)
189 debounce
= DIV_ROUND_UP(debounce
, 31) - 1;
190 if ((debounce
& OMAP4_GPIO_DEBOUNCINGTIME_MASK
) != debounce
)
196 clk_enable(bank
->dbck
);
197 writel_relaxed(debounce
, bank
->base
+ bank
->regs
->debounce
);
199 val
= omap_gpio_rmw(bank
->base
+ bank
->regs
->debounce_en
, l
, enable
);
200 bank
->dbck_enable_mask
= val
;
202 clk_disable(bank
->dbck
);
204 * Enable debounce clock per module.
205 * This call is mandatory because in omap_gpio_request() when
206 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
207 * runtime callbck fails to turn on dbck because dbck_enable_mask
208 * used within _gpio_dbck_enable() is still not initialized at
209 * that point. Therefore we have to enable dbck here.
211 omap_gpio_dbck_enable(bank
);
212 if (bank
->dbck_enable_mask
) {
213 bank
->context
.debounce
= debounce
;
214 bank
->context
.debounce_en
= val
;
221 * omap_clear_gpio_debounce - clear debounce settings for a gpio
222 * @bank: the gpio bank we're acting upon
223 * @offset: the gpio number on this @bank
225 * If a gpio is using debounce, then clear the debounce enable bit and if
226 * this is the only gpio in this bank using debounce, then clear the debounce
227 * time too. The debounce clock will also be disabled when calling this function
228 * if this is the only gpio in the bank using debounce.
230 static void omap_clear_gpio_debounce(struct gpio_bank
*bank
, unsigned offset
)
232 u32 gpio_bit
= BIT(offset
);
234 if (!bank
->dbck_flag
)
237 if (!(bank
->dbck_enable_mask
& gpio_bit
))
240 bank
->dbck_enable_mask
&= ~gpio_bit
;
241 bank
->context
.debounce_en
&= ~gpio_bit
;
242 writel_relaxed(bank
->context
.debounce_en
,
243 bank
->base
+ bank
->regs
->debounce_en
);
245 if (!bank
->dbck_enable_mask
) {
246 bank
->context
.debounce
= 0;
247 writel_relaxed(bank
->context
.debounce
, bank
->base
+
248 bank
->regs
->debounce
);
249 clk_disable(bank
->dbck
);
250 bank
->dbck_enabled
= false;
255 * Off mode wake-up capable GPIOs in bank(s) that are in the wakeup domain.
256 * See TRM section for GPIO for "Wake-Up Generation" for the list of GPIOs
257 * in wakeup domain. If bank->non_wakeup_gpios is not configured, assume none
258 * are capable waking up the system from off mode.
260 static bool omap_gpio_is_off_wakeup_capable(struct gpio_bank
*bank
, u32 gpio_mask
)
262 u32 no_wake
= bank
->non_wakeup_gpios
;
265 return !!(~no_wake
& gpio_mask
);
270 static inline void omap_set_gpio_trigger(struct gpio_bank
*bank
, int gpio
,
273 void __iomem
*base
= bank
->base
;
274 u32 gpio_bit
= BIT(gpio
);
276 omap_gpio_rmw(base
+ bank
->regs
->leveldetect0
, gpio_bit
,
277 trigger
& IRQ_TYPE_LEVEL_LOW
);
278 omap_gpio_rmw(base
+ bank
->regs
->leveldetect1
, gpio_bit
,
279 trigger
& IRQ_TYPE_LEVEL_HIGH
);
282 * We need the edge detection enabled for to allow the GPIO block
283 * to be woken from idle state. Set the appropriate edge detection
284 * in addition to the level detection.
286 omap_gpio_rmw(base
+ bank
->regs
->risingdetect
, gpio_bit
,
287 trigger
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_LEVEL_HIGH
));
288 omap_gpio_rmw(base
+ bank
->regs
->fallingdetect
, gpio_bit
,
289 trigger
& (IRQ_TYPE_EDGE_FALLING
| IRQ_TYPE_LEVEL_LOW
));
291 bank
->context
.leveldetect0
=
292 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
293 bank
->context
.leveldetect1
=
294 readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
295 bank
->context
.risingdetect
=
296 readl_relaxed(bank
->base
+ bank
->regs
->risingdetect
);
297 bank
->context
.fallingdetect
=
298 readl_relaxed(bank
->base
+ bank
->regs
->fallingdetect
);
300 bank
->level_mask
= bank
->context
.leveldetect0
|
301 bank
->context
.leveldetect1
;
303 /* This part needs to be executed always for OMAP{34xx, 44xx} */
304 if (!bank
->regs
->irqctrl
&& !omap_gpio_is_off_wakeup_capable(bank
, gpio
)) {
306 * Log the edge gpio and manually trigger the IRQ
307 * after resume if the input level changes
308 * to avoid irq lost during PER RET/OFF mode
309 * Applies for omap2 non-wakeup gpio and all omap3 gpios
311 if (trigger
& IRQ_TYPE_EDGE_BOTH
)
312 bank
->enabled_non_wakeup_gpios
|= gpio_bit
;
314 bank
->enabled_non_wakeup_gpios
&= ~gpio_bit
;
319 * This only applies to chips that can't do both rising and falling edge
320 * detection at once. For all other chips, this function is a noop.
322 static void omap_toggle_gpio_edge_triggering(struct gpio_bank
*bank
, int gpio
)
324 if (IS_ENABLED(CONFIG_ARCH_OMAP1
) && bank
->regs
->irqctrl
) {
325 void __iomem
*reg
= bank
->base
+ bank
->regs
->irqctrl
;
327 writel_relaxed(readl_relaxed(reg
) ^ BIT(gpio
), reg
);
331 static int omap_set_gpio_triggering(struct gpio_bank
*bank
, int gpio
,
334 void __iomem
*reg
= bank
->base
;
337 if (bank
->regs
->leveldetect0
&& bank
->regs
->wkup_en
) {
338 omap_set_gpio_trigger(bank
, gpio
, trigger
);
339 } else if (bank
->regs
->irqctrl
) {
340 reg
+= bank
->regs
->irqctrl
;
342 l
= readl_relaxed(reg
);
343 if ((trigger
& IRQ_TYPE_SENSE_MASK
) == IRQ_TYPE_EDGE_BOTH
)
344 bank
->toggle_mask
|= BIT(gpio
);
345 if (trigger
& IRQ_TYPE_EDGE_RISING
)
347 else if (trigger
& IRQ_TYPE_EDGE_FALLING
)
352 writel_relaxed(l
, reg
);
353 } else if (bank
->regs
->edgectrl1
) {
355 reg
+= bank
->regs
->edgectrl2
;
357 reg
+= bank
->regs
->edgectrl1
;
360 l
= readl_relaxed(reg
);
361 l
&= ~(3 << (gpio
<< 1));
362 if (trigger
& IRQ_TYPE_EDGE_RISING
)
363 l
|= 2 << (gpio
<< 1);
364 if (trigger
& IRQ_TYPE_EDGE_FALLING
)
366 writel_relaxed(l
, reg
);
371 static void omap_enable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
373 if (bank
->regs
->pinctrl
) {
374 void __iomem
*reg
= bank
->base
+ bank
->regs
->pinctrl
;
376 /* Claim the pin for MPU */
377 writel_relaxed(readl_relaxed(reg
) | (BIT(offset
)), reg
);
380 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
381 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
384 ctrl
= readl_relaxed(reg
);
385 /* Module is enabled, clocks are not gated */
386 ctrl
&= ~GPIO_MOD_CTRL_BIT
;
387 writel_relaxed(ctrl
, reg
);
388 bank
->context
.ctrl
= ctrl
;
392 static void omap_disable_gpio_module(struct gpio_bank
*bank
, unsigned offset
)
394 if (bank
->regs
->ctrl
&& !BANK_USED(bank
)) {
395 void __iomem
*reg
= bank
->base
+ bank
->regs
->ctrl
;
398 ctrl
= readl_relaxed(reg
);
399 /* Module is disabled, clocks are gated */
400 ctrl
|= GPIO_MOD_CTRL_BIT
;
401 writel_relaxed(ctrl
, reg
);
402 bank
->context
.ctrl
= ctrl
;
406 static int omap_gpio_is_input(struct gpio_bank
*bank
, unsigned offset
)
408 void __iomem
*reg
= bank
->base
+ bank
->regs
->direction
;
410 return readl_relaxed(reg
) & BIT(offset
);
413 static void omap_gpio_init_irq(struct gpio_bank
*bank
, unsigned offset
)
415 if (!LINE_USED(bank
->mod_usage
, offset
)) {
416 omap_enable_gpio_module(bank
, offset
);
417 omap_set_gpio_direction(bank
, offset
, 1);
419 bank
->irq_usage
|= BIT(offset
);
422 static int omap_gpio_irq_type(struct irq_data
*d
, unsigned type
)
424 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
427 unsigned offset
= d
->hwirq
;
429 if (type
& ~IRQ_TYPE_SENSE_MASK
)
432 if (!bank
->regs
->leveldetect0
&&
433 (type
& (IRQ_TYPE_LEVEL_LOW
|IRQ_TYPE_LEVEL_HIGH
)))
436 raw_spin_lock_irqsave(&bank
->lock
, flags
);
437 retval
= omap_set_gpio_triggering(bank
, offset
, type
);
439 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
442 omap_gpio_init_irq(bank
, offset
);
443 if (!omap_gpio_is_input(bank
, offset
)) {
444 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
448 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
450 if (type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_LEVEL_HIGH
))
451 irq_set_handler_locked(d
, handle_level_irq
);
452 else if (type
& (IRQ_TYPE_EDGE_FALLING
| IRQ_TYPE_EDGE_RISING
))
454 * Edge IRQs are already cleared/acked in irq_handler and
455 * not need to be masked, as result handle_edge_irq()
456 * logic is excessed here and may cause lose of interrupts.
457 * So just use handle_simple_irq.
459 irq_set_handler_locked(d
, handle_simple_irq
);
467 static void omap_clear_gpio_irqbank(struct gpio_bank
*bank
, int gpio_mask
)
469 void __iomem
*reg
= bank
->base
;
471 reg
+= bank
->regs
->irqstatus
;
472 writel_relaxed(gpio_mask
, reg
);
474 /* Workaround for clearing DSP GPIO interrupts to allow retention */
475 if (bank
->regs
->irqstatus2
) {
476 reg
= bank
->base
+ bank
->regs
->irqstatus2
;
477 writel_relaxed(gpio_mask
, reg
);
480 /* Flush posted write for the irq status to avoid spurious interrupts */
484 static inline void omap_clear_gpio_irqstatus(struct gpio_bank
*bank
,
487 omap_clear_gpio_irqbank(bank
, BIT(offset
));
490 static u32
omap_get_gpio_irqbank_mask(struct gpio_bank
*bank
)
492 void __iomem
*reg
= bank
->base
;
494 u32 mask
= (BIT(bank
->width
)) - 1;
496 reg
+= bank
->regs
->irqenable
;
497 l
= readl_relaxed(reg
);
498 if (bank
->regs
->irqenable_inv
)
504 static inline void omap_set_gpio_irqenable(struct gpio_bank
*bank
,
505 unsigned offset
, int enable
)
507 void __iomem
*reg
= bank
->base
;
508 u32 gpio_mask
= BIT(offset
);
510 if (bank
->regs
->set_irqenable
&& bank
->regs
->clr_irqenable
) {
512 reg
+= bank
->regs
->set_irqenable
;
513 bank
->context
.irqenable1
|= gpio_mask
;
515 reg
+= bank
->regs
->clr_irqenable
;
516 bank
->context
.irqenable1
&= ~gpio_mask
;
518 writel_relaxed(gpio_mask
, reg
);
520 bank
->context
.irqenable1
=
521 omap_gpio_rmw(reg
+ bank
->regs
->irqenable
, gpio_mask
,
522 enable
^ bank
->regs
->irqenable_inv
);
526 * Program GPIO wakeup along with IRQ enable to satisfy OMAP4430 TRM
527 * note requiring correlation between the IRQ enable registers and
528 * the wakeup registers. In any case, we want wakeup from idle
529 * enabled for the GPIOs which support this feature.
531 if (bank
->regs
->wkup_en
&&
532 (bank
->regs
->edgectrl1
|| !(bank
->non_wakeup_gpios
& gpio_mask
))) {
533 bank
->context
.wake_en
=
534 omap_gpio_rmw(bank
->base
+ bank
->regs
->wkup_en
,
539 /* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
540 static int omap_gpio_wake_enable(struct irq_data
*d
, unsigned int enable
)
542 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
544 return irq_set_irq_wake(bank
->irq
, enable
);
548 * We need to unmask the GPIO bank interrupt as soon as possible to
549 * avoid missing GPIO interrupts for other lines in the bank.
550 * Then we need to mask-read-clear-unmask the triggered GPIO lines
551 * in the bank to avoid missing nested interrupts for a GPIO line.
552 * If we wait to unmask individual GPIO lines in the bank after the
553 * line's interrupt handler has been run, we may miss some nested
556 static irqreturn_t
omap_gpio_irq_handler(int irq
, void *gpiobank
)
558 void __iomem
*isr_reg
= NULL
;
559 u32 enabled
, isr
, edge
;
561 struct gpio_bank
*bank
= gpiobank
;
562 unsigned long wa_lock_flags
;
563 unsigned long lock_flags
;
565 isr_reg
= bank
->base
+ bank
->regs
->irqstatus
;
566 if (WARN_ON(!isr_reg
))
569 if (WARN_ONCE(!pm_runtime_active(bank
->chip
.parent
),
570 "gpio irq%i while runtime suspended?\n", irq
))
574 raw_spin_lock_irqsave(&bank
->lock
, lock_flags
);
576 enabled
= omap_get_gpio_irqbank_mask(bank
);
577 isr
= readl_relaxed(isr_reg
) & enabled
;
580 * Clear edge sensitive interrupts before calling handler(s)
581 * so subsequent edge transitions are not missed while the
582 * handlers are running.
584 edge
= isr
& ~bank
->level_mask
;
586 omap_clear_gpio_irqbank(bank
, edge
);
588 raw_spin_unlock_irqrestore(&bank
->lock
, lock_flags
);
597 raw_spin_lock_irqsave(&bank
->lock
, lock_flags
);
599 * Some chips can't respond to both rising and falling
600 * at the same time. If this irq was requested with
601 * both flags, we need to flip the ICR data for the IRQ
602 * to respond to the IRQ for the opposite direction.
603 * This will be indicated in the bank toggle_mask.
605 if (bank
->toggle_mask
& (BIT(bit
)))
606 omap_toggle_gpio_edge_triggering(bank
, bit
);
608 raw_spin_unlock_irqrestore(&bank
->lock
, lock_flags
);
610 raw_spin_lock_irqsave(&bank
->wa_lock
, wa_lock_flags
);
612 generic_handle_irq(irq_find_mapping(bank
->chip
.irq
.domain
,
615 raw_spin_unlock_irqrestore(&bank
->wa_lock
,
623 static unsigned int omap_gpio_irq_startup(struct irq_data
*d
)
625 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
627 unsigned offset
= d
->hwirq
;
629 raw_spin_lock_irqsave(&bank
->lock
, flags
);
631 if (!LINE_USED(bank
->mod_usage
, offset
))
632 omap_set_gpio_direction(bank
, offset
, 1);
633 omap_enable_gpio_module(bank
, offset
);
634 bank
->irq_usage
|= BIT(offset
);
636 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
637 omap_gpio_unmask_irq(d
);
642 static void omap_gpio_irq_shutdown(struct irq_data
*d
)
644 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
646 unsigned offset
= d
->hwirq
;
648 raw_spin_lock_irqsave(&bank
->lock
, flags
);
649 bank
->irq_usage
&= ~(BIT(offset
));
650 omap_set_gpio_triggering(bank
, offset
, IRQ_TYPE_NONE
);
651 omap_clear_gpio_irqstatus(bank
, offset
);
652 omap_set_gpio_irqenable(bank
, offset
, 0);
653 if (!LINE_USED(bank
->mod_usage
, offset
))
654 omap_clear_gpio_debounce(bank
, offset
);
655 omap_disable_gpio_module(bank
, offset
);
656 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
659 static void omap_gpio_irq_bus_lock(struct irq_data
*data
)
661 struct gpio_bank
*bank
= omap_irq_data_get_bank(data
);
663 pm_runtime_get_sync(bank
->chip
.parent
);
666 static void gpio_irq_bus_sync_unlock(struct irq_data
*data
)
668 struct gpio_bank
*bank
= omap_irq_data_get_bank(data
);
670 pm_runtime_put(bank
->chip
.parent
);
673 static void omap_gpio_mask_irq(struct irq_data
*d
)
675 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
676 unsigned offset
= d
->hwirq
;
679 raw_spin_lock_irqsave(&bank
->lock
, flags
);
680 omap_set_gpio_triggering(bank
, offset
, IRQ_TYPE_NONE
);
681 omap_set_gpio_irqenable(bank
, offset
, 0);
682 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
685 static void omap_gpio_unmask_irq(struct irq_data
*d
)
687 struct gpio_bank
*bank
= omap_irq_data_get_bank(d
);
688 unsigned offset
= d
->hwirq
;
689 u32 trigger
= irqd_get_trigger_type(d
);
692 raw_spin_lock_irqsave(&bank
->lock
, flags
);
693 omap_set_gpio_irqenable(bank
, offset
, 1);
696 * For level-triggered GPIOs, clearing must be done after the source
697 * is cleared, thus after the handler has run. OMAP4 needs this done
698 * after enabing the interrupt to clear the wakeup status.
700 if (bank
->regs
->leveldetect0
&& bank
->regs
->wkup_en
&&
701 trigger
& (IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
))
702 omap_clear_gpio_irqstatus(bank
, offset
);
705 omap_set_gpio_triggering(bank
, offset
, trigger
);
707 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
710 /*---------------------------------------------------------------------*/
712 static int omap_mpuio_suspend_noirq(struct device
*dev
)
714 struct gpio_bank
*bank
= dev_get_drvdata(dev
);
715 void __iomem
*mask_reg
= bank
->base
+
716 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
719 raw_spin_lock_irqsave(&bank
->lock
, flags
);
720 writel_relaxed(0xffff & ~bank
->context
.wake_en
, mask_reg
);
721 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
726 static int omap_mpuio_resume_noirq(struct device
*dev
)
728 struct gpio_bank
*bank
= dev_get_drvdata(dev
);
729 void __iomem
*mask_reg
= bank
->base
+
730 OMAP_MPUIO_GPIO_MASKIT
/ bank
->stride
;
733 raw_spin_lock_irqsave(&bank
->lock
, flags
);
734 writel_relaxed(bank
->context
.wake_en
, mask_reg
);
735 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
740 static const struct dev_pm_ops omap_mpuio_dev_pm_ops
= {
741 .suspend_noirq
= omap_mpuio_suspend_noirq
,
742 .resume_noirq
= omap_mpuio_resume_noirq
,
745 /* use platform_driver for this. */
746 static struct platform_driver omap_mpuio_driver
= {
749 .pm
= &omap_mpuio_dev_pm_ops
,
753 static struct platform_device omap_mpuio_device
= {
757 .driver
= &omap_mpuio_driver
.driver
,
759 /* could list the /proc/iomem resources */
762 static inline void omap_mpuio_init(struct gpio_bank
*bank
)
764 platform_set_drvdata(&omap_mpuio_device
, bank
);
766 if (platform_driver_register(&omap_mpuio_driver
) == 0)
767 (void) platform_device_register(&omap_mpuio_device
);
770 /*---------------------------------------------------------------------*/
772 static int omap_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
774 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
777 pm_runtime_get_sync(chip
->parent
);
779 raw_spin_lock_irqsave(&bank
->lock
, flags
);
780 omap_enable_gpio_module(bank
, offset
);
781 bank
->mod_usage
|= BIT(offset
);
782 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
787 static void omap_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
789 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
792 raw_spin_lock_irqsave(&bank
->lock
, flags
);
793 bank
->mod_usage
&= ~(BIT(offset
));
794 if (!LINE_USED(bank
->irq_usage
, offset
)) {
795 omap_set_gpio_direction(bank
, offset
, 1);
796 omap_clear_gpio_debounce(bank
, offset
);
798 omap_disable_gpio_module(bank
, offset
);
799 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
801 pm_runtime_put(chip
->parent
);
804 static int omap_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
806 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
808 return !!(readl_relaxed(bank
->base
+ bank
->regs
->direction
) &
812 static int omap_gpio_input(struct gpio_chip
*chip
, unsigned offset
)
814 struct gpio_bank
*bank
;
817 bank
= gpiochip_get_data(chip
);
818 raw_spin_lock_irqsave(&bank
->lock
, flags
);
819 omap_set_gpio_direction(bank
, offset
, 1);
820 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
824 static int omap_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
826 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
829 if (omap_gpio_is_input(bank
, offset
))
830 reg
= bank
->base
+ bank
->regs
->datain
;
832 reg
= bank
->base
+ bank
->regs
->dataout
;
834 return (readl_relaxed(reg
) & BIT(offset
)) != 0;
837 static int omap_gpio_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
839 struct gpio_bank
*bank
;
842 bank
= gpiochip_get_data(chip
);
843 raw_spin_lock_irqsave(&bank
->lock
, flags
);
844 bank
->set_dataout(bank
, offset
, value
);
845 omap_set_gpio_direction(bank
, offset
, 0);
846 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
850 static int omap_gpio_get_multiple(struct gpio_chip
*chip
, unsigned long *mask
,
853 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
854 void __iomem
*base
= bank
->base
;
855 u32 direction
, m
, val
= 0;
857 direction
= readl_relaxed(base
+ bank
->regs
->direction
);
859 m
= direction
& *mask
;
861 val
|= readl_relaxed(base
+ bank
->regs
->datain
) & m
;
863 m
= ~direction
& *mask
;
865 val
|= readl_relaxed(base
+ bank
->regs
->dataout
) & m
;
872 static int omap_gpio_debounce(struct gpio_chip
*chip
, unsigned offset
,
875 struct gpio_bank
*bank
;
879 bank
= gpiochip_get_data(chip
);
881 raw_spin_lock_irqsave(&bank
->lock
, flags
);
882 ret
= omap2_set_gpio_debounce(bank
, offset
, debounce
);
883 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
886 dev_info(chip
->parent
,
887 "Could not set line %u debounce to %u microseconds (%d)",
888 offset
, debounce
, ret
);
893 static int omap_gpio_set_config(struct gpio_chip
*chip
, unsigned offset
,
894 unsigned long config
)
898 if (pinconf_to_config_param(config
) != PIN_CONFIG_INPUT_DEBOUNCE
)
901 debounce
= pinconf_to_config_argument(config
);
902 return omap_gpio_debounce(chip
, offset
, debounce
);
905 static void omap_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
907 struct gpio_bank
*bank
;
910 bank
= gpiochip_get_data(chip
);
911 raw_spin_lock_irqsave(&bank
->lock
, flags
);
912 bank
->set_dataout(bank
, offset
, value
);
913 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
916 static void omap_gpio_set_multiple(struct gpio_chip
*chip
, unsigned long *mask
,
919 struct gpio_bank
*bank
= gpiochip_get_data(chip
);
920 void __iomem
*reg
= bank
->base
+ bank
->regs
->dataout
;
924 raw_spin_lock_irqsave(&bank
->lock
, flags
);
925 l
= (readl_relaxed(reg
) & ~*mask
) | (*bits
& *mask
);
926 writel_relaxed(l
, reg
);
927 bank
->context
.dataout
= l
;
928 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
931 /*---------------------------------------------------------------------*/
933 static void omap_gpio_show_rev(struct gpio_bank
*bank
)
938 if (called
|| bank
->regs
->revision
== USHRT_MAX
)
941 rev
= readw_relaxed(bank
->base
+ bank
->regs
->revision
);
942 pr_info("OMAP GPIO hardware version %d.%d\n",
943 (rev
>> 4) & 0x0f, rev
& 0x0f);
948 static void omap_gpio_mod_init(struct gpio_bank
*bank
)
950 void __iomem
*base
= bank
->base
;
953 if (bank
->width
== 16)
956 if (bank
->is_mpuio
) {
957 writel_relaxed(l
, bank
->base
+ bank
->regs
->irqenable
);
961 omap_gpio_rmw(base
+ bank
->regs
->irqenable
, l
,
962 bank
->regs
->irqenable_inv
);
963 omap_gpio_rmw(base
+ bank
->regs
->irqstatus
, l
,
964 !bank
->regs
->irqenable_inv
);
965 if (bank
->regs
->debounce_en
)
966 writel_relaxed(0, base
+ bank
->regs
->debounce_en
);
968 /* Save OE default value (0xffffffff) in the context */
969 bank
->context
.oe
= readl_relaxed(bank
->base
+ bank
->regs
->direction
);
970 /* Initialize interface clk ungated, module enabled */
971 if (bank
->regs
->ctrl
)
972 writel_relaxed(0, base
+ bank
->regs
->ctrl
);
975 static int omap_gpio_chip_init(struct gpio_bank
*bank
, struct irq_chip
*irqc
)
977 struct gpio_irq_chip
*irq
;
984 * REVISIT eventually switch from OMAP-specific gpio structs
985 * over to the generic ones
987 bank
->chip
.request
= omap_gpio_request
;
988 bank
->chip
.free
= omap_gpio_free
;
989 bank
->chip
.get_direction
= omap_gpio_get_direction
;
990 bank
->chip
.direction_input
= omap_gpio_input
;
991 bank
->chip
.get
= omap_gpio_get
;
992 bank
->chip
.get_multiple
= omap_gpio_get_multiple
;
993 bank
->chip
.direction_output
= omap_gpio_output
;
994 bank
->chip
.set_config
= omap_gpio_set_config
;
995 bank
->chip
.set
= omap_gpio_set
;
996 bank
->chip
.set_multiple
= omap_gpio_set_multiple
;
997 if (bank
->is_mpuio
) {
998 bank
->chip
.label
= "mpuio";
999 if (bank
->regs
->wkup_en
)
1000 bank
->chip
.parent
= &omap_mpuio_device
.dev
;
1001 bank
->chip
.base
= OMAP_MPUIO(0);
1003 label
= devm_kasprintf(bank
->chip
.parent
, GFP_KERNEL
, "gpio-%d-%d",
1004 gpio
, gpio
+ bank
->width
- 1);
1007 bank
->chip
.label
= label
;
1008 bank
->chip
.base
= gpio
;
1010 bank
->chip
.ngpio
= bank
->width
;
1012 #ifdef CONFIG_ARCH_OMAP1
1014 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
1015 * irq_alloc_descs() since a base IRQ offset will no longer be needed.
1017 irq_base
= devm_irq_alloc_descs(bank
->chip
.parent
,
1018 -1, 0, bank
->width
, 0);
1020 dev_err(bank
->chip
.parent
, "Couldn't allocate IRQ numbers\n");
1025 /* MPUIO is a bit different, reading IRQ status clears it */
1026 if (bank
->is_mpuio
&& !bank
->regs
->wkup_en
)
1027 irqc
->irq_set_wake
= NULL
;
1029 irq
= &bank
->chip
.irq
;
1031 irq
->handler
= handle_bad_irq
;
1032 irq
->default_type
= IRQ_TYPE_NONE
;
1033 irq
->num_parents
= 1;
1034 irq
->parents
= &bank
->irq
;
1035 irq
->first
= irq_base
;
1037 ret
= gpiochip_add_data(&bank
->chip
, bank
);
1039 dev_err(bank
->chip
.parent
,
1040 "Could not register gpio chip %d\n", ret
);
1044 ret
= devm_request_irq(bank
->chip
.parent
, bank
->irq
,
1045 omap_gpio_irq_handler
,
1046 0, dev_name(bank
->chip
.parent
), bank
);
1048 gpiochip_remove(&bank
->chip
);
1050 if (!bank
->is_mpuio
)
1051 gpio
+= bank
->width
;
1056 static void omap_gpio_init_context(struct gpio_bank
*p
)
1058 const struct omap_gpio_reg_offs
*regs
= p
->regs
;
1059 void __iomem
*base
= p
->base
;
1061 p
->context
.ctrl
= readl_relaxed(base
+ regs
->ctrl
);
1062 p
->context
.oe
= readl_relaxed(base
+ regs
->direction
);
1063 p
->context
.wake_en
= readl_relaxed(base
+ regs
->wkup_en
);
1064 p
->context
.leveldetect0
= readl_relaxed(base
+ regs
->leveldetect0
);
1065 p
->context
.leveldetect1
= readl_relaxed(base
+ regs
->leveldetect1
);
1066 p
->context
.risingdetect
= readl_relaxed(base
+ regs
->risingdetect
);
1067 p
->context
.fallingdetect
= readl_relaxed(base
+ regs
->fallingdetect
);
1068 p
->context
.irqenable1
= readl_relaxed(base
+ regs
->irqenable
);
1069 p
->context
.irqenable2
= readl_relaxed(base
+ regs
->irqenable2
);
1070 p
->context
.dataout
= readl_relaxed(base
+ regs
->dataout
);
1072 p
->context_valid
= true;
1075 static void omap_gpio_restore_context(struct gpio_bank
*bank
)
1077 const struct omap_gpio_reg_offs
*regs
= bank
->regs
;
1078 void __iomem
*base
= bank
->base
;
1080 writel_relaxed(bank
->context
.wake_en
, base
+ regs
->wkup_en
);
1081 writel_relaxed(bank
->context
.ctrl
, base
+ regs
->ctrl
);
1082 writel_relaxed(bank
->context
.leveldetect0
, base
+ regs
->leveldetect0
);
1083 writel_relaxed(bank
->context
.leveldetect1
, base
+ regs
->leveldetect1
);
1084 writel_relaxed(bank
->context
.risingdetect
, base
+ regs
->risingdetect
);
1085 writel_relaxed(bank
->context
.fallingdetect
, base
+ regs
->fallingdetect
);
1086 writel_relaxed(bank
->context
.dataout
, base
+ regs
->dataout
);
1087 writel_relaxed(bank
->context
.oe
, base
+ regs
->direction
);
1089 if (bank
->dbck_enable_mask
) {
1090 writel_relaxed(bank
->context
.debounce
, base
+ regs
->debounce
);
1091 writel_relaxed(bank
->context
.debounce_en
,
1092 base
+ regs
->debounce_en
);
1095 writel_relaxed(bank
->context
.irqenable1
, base
+ regs
->irqenable
);
1096 writel_relaxed(bank
->context
.irqenable2
, base
+ regs
->irqenable2
);
1099 static void omap_gpio_idle(struct gpio_bank
*bank
, bool may_lose_context
)
1101 struct device
*dev
= bank
->chip
.parent
;
1102 void __iomem
*base
= bank
->base
;
1105 bank
->saved_datain
= readl_relaxed(base
+ bank
->regs
->datain
);
1107 if (!bank
->enabled_non_wakeup_gpios
)
1108 goto update_gpio_context_count
;
1110 /* Check for pending EDGE_FALLING, ignore EDGE_BOTH */
1111 mask
= bank
->enabled_non_wakeup_gpios
& bank
->context
.fallingdetect
;
1112 mask
&= ~bank
->context
.risingdetect
;
1113 bank
->saved_datain
|= mask
;
1115 /* Check for pending EDGE_RISING, ignore EDGE_BOTH */
1116 mask
= bank
->enabled_non_wakeup_gpios
& bank
->context
.risingdetect
;
1117 mask
&= ~bank
->context
.fallingdetect
;
1118 bank
->saved_datain
&= ~mask
;
1120 if (!may_lose_context
)
1121 goto update_gpio_context_count
;
1124 * If going to OFF, remove triggering for all wkup domain
1125 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1126 * generated. See OMAP2420 Errata item 1.101.
1128 if (!bank
->loses_context
&& bank
->enabled_non_wakeup_gpios
) {
1129 nowake
= bank
->enabled_non_wakeup_gpios
;
1130 omap_gpio_rmw(base
+ bank
->regs
->fallingdetect
, nowake
, ~nowake
);
1131 omap_gpio_rmw(base
+ bank
->regs
->risingdetect
, nowake
, ~nowake
);
1134 update_gpio_context_count
:
1135 if (bank
->get_context_loss_count
)
1136 bank
->context_loss_count
=
1137 bank
->get_context_loss_count(dev
);
1139 omap_gpio_dbck_disable(bank
);
1142 static void omap_gpio_unidle(struct gpio_bank
*bank
)
1144 struct device
*dev
= bank
->chip
.parent
;
1145 u32 l
= 0, gen
, gen0
, gen1
;
1149 * On the first resume during the probe, the context has not
1150 * been initialised and so initialise it now. Also initialise
1151 * the context loss count.
1153 if (bank
->loses_context
&& !bank
->context_valid
) {
1154 omap_gpio_init_context(bank
);
1156 if (bank
->get_context_loss_count
)
1157 bank
->context_loss_count
=
1158 bank
->get_context_loss_count(dev
);
1161 omap_gpio_dbck_enable(bank
);
1163 if (bank
->loses_context
) {
1164 if (!bank
->get_context_loss_count
) {
1165 omap_gpio_restore_context(bank
);
1167 c
= bank
->get_context_loss_count(dev
);
1168 if (c
!= bank
->context_loss_count
) {
1169 omap_gpio_restore_context(bank
);
1175 /* Restore changes done for OMAP2420 errata 1.101 */
1176 writel_relaxed(bank
->context
.fallingdetect
,
1177 bank
->base
+ bank
->regs
->fallingdetect
);
1178 writel_relaxed(bank
->context
.risingdetect
,
1179 bank
->base
+ bank
->regs
->risingdetect
);
1182 l
= readl_relaxed(bank
->base
+ bank
->regs
->datain
);
1185 * Check if any of the non-wakeup interrupt GPIOs have changed
1186 * state. If so, generate an IRQ by software. This is
1187 * horribly racy, but it's the best we can do to work around
1190 l
^= bank
->saved_datain
;
1191 l
&= bank
->enabled_non_wakeup_gpios
;
1194 * No need to generate IRQs for the rising edge for gpio IRQs
1195 * configured with falling edge only; and vice versa.
1197 gen0
= l
& bank
->context
.fallingdetect
;
1198 gen0
&= bank
->saved_datain
;
1200 gen1
= l
& bank
->context
.risingdetect
;
1201 gen1
&= ~(bank
->saved_datain
);
1203 /* FIXME: Consider GPIO IRQs with level detections properly! */
1204 gen
= l
& (~(bank
->context
.fallingdetect
) &
1205 ~(bank
->context
.risingdetect
));
1206 /* Consider all GPIO IRQs needed to be updated */
1212 old0
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect0
);
1213 old1
= readl_relaxed(bank
->base
+ bank
->regs
->leveldetect1
);
1215 if (!bank
->regs
->irqstatus_raw0
) {
1216 writel_relaxed(old0
| gen
, bank
->base
+
1217 bank
->regs
->leveldetect0
);
1218 writel_relaxed(old1
| gen
, bank
->base
+
1219 bank
->regs
->leveldetect1
);
1222 if (bank
->regs
->irqstatus_raw0
) {
1223 writel_relaxed(old0
| l
, bank
->base
+
1224 bank
->regs
->leveldetect0
);
1225 writel_relaxed(old1
| l
, bank
->base
+
1226 bank
->regs
->leveldetect1
);
1228 writel_relaxed(old0
, bank
->base
+ bank
->regs
->leveldetect0
);
1229 writel_relaxed(old1
, bank
->base
+ bank
->regs
->leveldetect1
);
1233 static int gpio_omap_cpu_notifier(struct notifier_block
*nb
,
1234 unsigned long cmd
, void *v
)
1236 struct gpio_bank
*bank
;
1237 unsigned long flags
;
1239 bank
= container_of(nb
, struct gpio_bank
, nb
);
1241 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1243 case CPU_CLUSTER_PM_ENTER
:
1244 if (bank
->is_suspended
)
1246 omap_gpio_idle(bank
, true);
1248 case CPU_CLUSTER_PM_ENTER_FAILED
:
1249 case CPU_CLUSTER_PM_EXIT
:
1250 if (bank
->is_suspended
)
1252 omap_gpio_unidle(bank
);
1255 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1260 static const struct omap_gpio_reg_offs omap2_gpio_regs
= {
1261 .revision
= OMAP24XX_GPIO_REVISION
,
1262 .direction
= OMAP24XX_GPIO_OE
,
1263 .datain
= OMAP24XX_GPIO_DATAIN
,
1264 .dataout
= OMAP24XX_GPIO_DATAOUT
,
1265 .set_dataout
= OMAP24XX_GPIO_SETDATAOUT
,
1266 .clr_dataout
= OMAP24XX_GPIO_CLEARDATAOUT
,
1267 .irqstatus
= OMAP24XX_GPIO_IRQSTATUS1
,
1268 .irqstatus2
= OMAP24XX_GPIO_IRQSTATUS2
,
1269 .irqenable
= OMAP24XX_GPIO_IRQENABLE1
,
1270 .irqenable2
= OMAP24XX_GPIO_IRQENABLE2
,
1271 .set_irqenable
= OMAP24XX_GPIO_SETIRQENABLE1
,
1272 .clr_irqenable
= OMAP24XX_GPIO_CLEARIRQENABLE1
,
1273 .debounce
= OMAP24XX_GPIO_DEBOUNCE_VAL
,
1274 .debounce_en
= OMAP24XX_GPIO_DEBOUNCE_EN
,
1275 .ctrl
= OMAP24XX_GPIO_CTRL
,
1276 .wkup_en
= OMAP24XX_GPIO_WAKE_EN
,
1277 .leveldetect0
= OMAP24XX_GPIO_LEVELDETECT0
,
1278 .leveldetect1
= OMAP24XX_GPIO_LEVELDETECT1
,
1279 .risingdetect
= OMAP24XX_GPIO_RISINGDETECT
,
1280 .fallingdetect
= OMAP24XX_GPIO_FALLINGDETECT
,
1283 static const struct omap_gpio_reg_offs omap4_gpio_regs
= {
1284 .revision
= OMAP4_GPIO_REVISION
,
1285 .direction
= OMAP4_GPIO_OE
,
1286 .datain
= OMAP4_GPIO_DATAIN
,
1287 .dataout
= OMAP4_GPIO_DATAOUT
,
1288 .set_dataout
= OMAP4_GPIO_SETDATAOUT
,
1289 .clr_dataout
= OMAP4_GPIO_CLEARDATAOUT
,
1290 .irqstatus
= OMAP4_GPIO_IRQSTATUS0
,
1291 .irqstatus2
= OMAP4_GPIO_IRQSTATUS1
,
1292 .irqstatus_raw0
= OMAP4_GPIO_IRQSTATUSRAW0
,
1293 .irqstatus_raw1
= OMAP4_GPIO_IRQSTATUSRAW1
,
1294 .irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1295 .irqenable2
= OMAP4_GPIO_IRQSTATUSSET1
,
1296 .set_irqenable
= OMAP4_GPIO_IRQSTATUSSET0
,
1297 .clr_irqenable
= OMAP4_GPIO_IRQSTATUSCLR0
,
1298 .debounce
= OMAP4_GPIO_DEBOUNCINGTIME
,
1299 .debounce_en
= OMAP4_GPIO_DEBOUNCENABLE
,
1300 .ctrl
= OMAP4_GPIO_CTRL
,
1301 .wkup_en
= OMAP4_GPIO_IRQWAKEN0
,
1302 .leveldetect0
= OMAP4_GPIO_LEVELDETECT0
,
1303 .leveldetect1
= OMAP4_GPIO_LEVELDETECT1
,
1304 .risingdetect
= OMAP4_GPIO_RISINGDETECT
,
1305 .fallingdetect
= OMAP4_GPIO_FALLINGDETECT
,
1308 static const struct omap_gpio_platform_data omap2_pdata
= {
1309 .regs
= &omap2_gpio_regs
,
1314 static const struct omap_gpio_platform_data omap3_pdata
= {
1315 .regs
= &omap2_gpio_regs
,
1320 static const struct omap_gpio_platform_data omap4_pdata
= {
1321 .regs
= &omap4_gpio_regs
,
1326 static const struct of_device_id omap_gpio_match
[] = {
1328 .compatible
= "ti,omap4-gpio",
1329 .data
= &omap4_pdata
,
1332 .compatible
= "ti,omap3-gpio",
1333 .data
= &omap3_pdata
,
1336 .compatible
= "ti,omap2-gpio",
1337 .data
= &omap2_pdata
,
1341 MODULE_DEVICE_TABLE(of
, omap_gpio_match
);
1343 static int omap_gpio_probe(struct platform_device
*pdev
)
1345 struct device
*dev
= &pdev
->dev
;
1346 struct device_node
*node
= dev
->of_node
;
1347 const struct of_device_id
*match
;
1348 const struct omap_gpio_platform_data
*pdata
;
1349 struct gpio_bank
*bank
;
1350 struct irq_chip
*irqc
;
1353 match
= of_match_device(of_match_ptr(omap_gpio_match
), dev
);
1355 pdata
= match
? match
->data
: dev_get_platdata(dev
);
1359 bank
= devm_kzalloc(dev
, sizeof(*bank
), GFP_KERNEL
);
1363 irqc
= devm_kzalloc(dev
, sizeof(*irqc
), GFP_KERNEL
);
1367 irqc
->irq_startup
= omap_gpio_irq_startup
,
1368 irqc
->irq_shutdown
= omap_gpio_irq_shutdown
,
1369 irqc
->irq_ack
= dummy_irq_chip
.irq_ack
,
1370 irqc
->irq_mask
= omap_gpio_mask_irq
,
1371 irqc
->irq_unmask
= omap_gpio_unmask_irq
,
1372 irqc
->irq_set_type
= omap_gpio_irq_type
,
1373 irqc
->irq_set_wake
= omap_gpio_wake_enable
,
1374 irqc
->irq_bus_lock
= omap_gpio_irq_bus_lock
,
1375 irqc
->irq_bus_sync_unlock
= gpio_irq_bus_sync_unlock
,
1376 irqc
->name
= dev_name(&pdev
->dev
);
1377 irqc
->flags
= IRQCHIP_MASK_ON_SUSPEND
;
1378 irqc
->parent_device
= dev
;
1380 bank
->irq
= platform_get_irq(pdev
, 0);
1381 if (bank
->irq
<= 0) {
1384 if (bank
->irq
!= -EPROBE_DEFER
)
1386 "can't get irq resource ret=%d\n", bank
->irq
);
1390 bank
->chip
.parent
= dev
;
1391 bank
->chip
.owner
= THIS_MODULE
;
1392 bank
->dbck_flag
= pdata
->dbck_flag
;
1393 bank
->stride
= pdata
->bank_stride
;
1394 bank
->width
= pdata
->bank_width
;
1395 bank
->is_mpuio
= pdata
->is_mpuio
;
1396 bank
->non_wakeup_gpios
= pdata
->non_wakeup_gpios
;
1397 bank
->regs
= pdata
->regs
;
1398 #ifdef CONFIG_OF_GPIO
1399 bank
->chip
.of_node
= of_node_get(node
);
1403 if (!of_property_read_bool(node
, "ti,gpio-always-on"))
1404 bank
->loses_context
= true;
1406 bank
->loses_context
= pdata
->loses_context
;
1408 if (bank
->loses_context
)
1409 bank
->get_context_loss_count
=
1410 pdata
->get_context_loss_count
;
1413 if (bank
->regs
->set_dataout
&& bank
->regs
->clr_dataout
)
1414 bank
->set_dataout
= omap_set_gpio_dataout_reg
;
1416 bank
->set_dataout
= omap_set_gpio_dataout_mask
;
1418 raw_spin_lock_init(&bank
->lock
);
1419 raw_spin_lock_init(&bank
->wa_lock
);
1421 /* Static mapping, never released */
1422 bank
->base
= devm_platform_ioremap_resource(pdev
, 0);
1423 if (IS_ERR(bank
->base
)) {
1424 return PTR_ERR(bank
->base
);
1427 if (bank
->dbck_flag
) {
1428 bank
->dbck
= devm_clk_get(dev
, "dbclk");
1429 if (IS_ERR(bank
->dbck
)) {
1431 "Could not get gpio dbck. Disable debounce\n");
1432 bank
->dbck_flag
= false;
1434 clk_prepare(bank
->dbck
);
1438 platform_set_drvdata(pdev
, bank
);
1440 pm_runtime_enable(dev
);
1441 pm_runtime_get_sync(dev
);
1444 omap_mpuio_init(bank
);
1446 omap_gpio_mod_init(bank
);
1448 ret
= omap_gpio_chip_init(bank
, irqc
);
1450 pm_runtime_put_sync(dev
);
1451 pm_runtime_disable(dev
);
1452 if (bank
->dbck_flag
)
1453 clk_unprepare(bank
->dbck
);
1457 omap_gpio_show_rev(bank
);
1459 bank
->nb
.notifier_call
= gpio_omap_cpu_notifier
;
1460 cpu_pm_register_notifier(&bank
->nb
);
1462 pm_runtime_put(dev
);
1467 static int omap_gpio_remove(struct platform_device
*pdev
)
1469 struct gpio_bank
*bank
= platform_get_drvdata(pdev
);
1471 cpu_pm_unregister_notifier(&bank
->nb
);
1472 gpiochip_remove(&bank
->chip
);
1473 pm_runtime_disable(&pdev
->dev
);
1474 if (bank
->dbck_flag
)
1475 clk_unprepare(bank
->dbck
);
1480 static int __maybe_unused
omap_gpio_runtime_suspend(struct device
*dev
)
1482 struct gpio_bank
*bank
= dev_get_drvdata(dev
);
1483 unsigned long flags
;
1485 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1486 omap_gpio_idle(bank
, true);
1487 bank
->is_suspended
= true;
1488 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1493 static int __maybe_unused
omap_gpio_runtime_resume(struct device
*dev
)
1495 struct gpio_bank
*bank
= dev_get_drvdata(dev
);
1496 unsigned long flags
;
1498 raw_spin_lock_irqsave(&bank
->lock
, flags
);
1499 omap_gpio_unidle(bank
);
1500 bank
->is_suspended
= false;
1501 raw_spin_unlock_irqrestore(&bank
->lock
, flags
);
1506 static const struct dev_pm_ops gpio_pm_ops
= {
1507 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend
, omap_gpio_runtime_resume
,
1511 static struct platform_driver omap_gpio_driver
= {
1512 .probe
= omap_gpio_probe
,
1513 .remove
= omap_gpio_remove
,
1515 .name
= "omap_gpio",
1517 .of_match_table
= omap_gpio_match
,
1522 * gpio driver register needs to be done before
1523 * machine_init functions access gpio APIs.
1524 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1526 static int __init
omap_gpio_drv_reg(void)
1528 return platform_driver_register(&omap_gpio_driver
);
1530 postcore_initcall(omap_gpio_drv_reg
);
1532 static void __exit
omap_gpio_exit(void)
1534 platform_driver_unregister(&omap_gpio_driver
);
1536 module_exit(omap_gpio_exit
);
1538 MODULE_DESCRIPTION("omap gpio driver");
1539 MODULE_ALIAS("platform:gpio-omap");
1540 MODULE_LICENSE("GPL v2");