]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpio/omap: fix off-mode bug: clear debounce clock enable mask on disable
authorKevin Hilman <khilman@ti.com>
Tue, 23 Oct 2012 18:09:31 +0000 (11:09 -0700)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 24 Oct 2012 08:16:22 +0000 (10:16 +0200)
When debounce clocks are disabled, ensure that the banks
dbck_enable_mask is cleared also.  Otherwise, context restore on
subsequent off-mode transition will restore previous value from the
shadow copies (bank->context.debounce*) leading to mismatch state
between driver state and hardware state.

This was discovered when board code was doing

  gpio_request_one()
  gpio_set_debounce()
  gpio_free()

which was leaving the GPIO debounce settings in a confused state.
Then, enabling off mode causing bogus state to be restored, leaving
GPIO debounce enabled which then prevented the CORE powerdomain from
transitioning.

Cc: stable@kernel.org
Reported-by: Paul Walmsley <paul@pwsan.com>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-omap.c

index 94cbc842fbc3a1363de61b8b7d08f2e4b56daeaf..dee2856cafbda954359ae27fe8ccc90b54ce3d6c 100644 (file)
@@ -187,6 +187,7 @@ static inline void _gpio_dbck_disable(struct gpio_bank *bank)
                 * to detect events and generate interrupts at least on OMAP3.
                 */
                __raw_writel(0, bank->base + bank->regs->debounce_en);
+               bank->dbck_enable_mask = 0;
 
                clk_disable(bank->dbck);
                bank->dbck_enabled = false;