gpio: omap: prepare and unprepare the debounce clock
authorRajendra Nayak <rnayak@ti.com>
Wed, 23 Apr 2014 06:11:03 +0000 (11:41 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 16 May 2014 15:52:35 +0000 (17:52 +0200)
Replace the clk_enable()s with a clk_prepare_enable() and
the clk_disables()s with a clk_disable_unprepare()

This never showed issues due to the OMAP platform code (hwmod)
leaving these clocks in clk_prepare()ed state by default.

Reported-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Acked-by: Javier Martinez Canillas <javier@dowhile0.org>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-omap.c

index 01d50a090d87be2708f732a6a269ba7487dd3617..00f29aa1fb9dda1a981b3d8245af3b1b9f1232e2 100644 (file)
@@ -178,7 +178,7 @@ static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
 static inline void _gpio_dbck_enable(struct gpio_bank *bank)
 {
        if (bank->dbck_enable_mask && !bank->dbck_enabled) {
-               clk_enable(bank->dbck);
+               clk_prepare_enable(bank->dbck);
                bank->dbck_enabled = true;
 
                writel_relaxed(bank->dbck_enable_mask,
@@ -196,7 +196,7 @@ static inline void _gpio_dbck_disable(struct gpio_bank *bank)
                 */
                writel_relaxed(0, bank->base + bank->regs->debounce_en);
 
-               clk_disable(bank->dbck);
+               clk_disable_unprepare(bank->dbck);
                bank->dbck_enabled = false;
        }
 }
@@ -229,7 +229,7 @@ static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
 
        l = GPIO_BIT(bank, gpio);
 
-       clk_enable(bank->dbck);
+       clk_prepare_enable(bank->dbck);
        reg = bank->base + bank->regs->debounce;
        writel_relaxed(debounce, reg);
 
@@ -243,7 +243,7 @@ static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
        bank->dbck_enable_mask = val;
 
        writel_relaxed(val, reg);
-       clk_disable(bank->dbck);
+       clk_disable_unprepare(bank->dbck);
        /*
         * Enable debounce clock per module.
         * This call is mandatory because in omap_gpio_request() when
@@ -288,7 +288,7 @@ static void _clear_gpio_debounce(struct gpio_bank *bank, unsigned gpio)
                bank->context.debounce = 0;
                writel_relaxed(bank->context.debounce, bank->base +
                             bank->regs->debounce);
-               clk_disable(bank->dbck);
+               clk_disable_unprepare(bank->dbck);
                bank->dbck_enabled = false;
        }
 }