]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
clk: socfpga: Look for the GPIO_DB_CLK by its offset
authorDinh Nguyen <dinguyen@altera.com>
Fri, 13 Dec 2013 22:38:28 +0000 (16:38 -0600)
committerMike Turquette <mturquette@linaro.org>
Tue, 18 Feb 2014 22:08:08 +0000 (14:08 -0800)
After the patch:
"clk: socfpga: Map the clk manager base address in the clock driver"

The clk->name field in socfpga_clk_recalc_rate() was getting cleared. Replace
looking for the GPIO_DB_CLK by its divider offset instead.

Also rename the define SOCFPGA_DB_CLK_OFFSET -> SOCFPGA_GPIO_DB_CLK_OFFSET, as
this represents the GPIO_DB_CLK.

Signed-off-by: Dinh Nguyen <dinguyen@altera.com>
drivers/clk/socfpga/clk.c

index 4fb52e1fc848a3de85667986a700164b4b7f2952..cba21a0823b6c308461165606ab87dbd1eff5fd2 100644 (file)
@@ -51,7 +51,7 @@
 #define SOCFPGA_NAND_CLK               "nand_clk"
 #define SOCFPGA_NAND_X_CLK             "nand_x_clk"
 #define SOCFPGA_MMC_CLK                        "sdmmc_clk"
-#define SOCFPGA_DB_CLK                 "gpio_db_clk"
+#define SOCFPGA_GPIO_DB_CLK_OFFSET     0xA8
 
 #define div_mask(width)        ((1 << (width)) - 1)
 #define streq(a, b) (strcmp((a), (b)) == 0)
@@ -234,7 +234,8 @@ static unsigned long socfpga_clk_recalc_rate(struct clk_hw *hwclk,
        else if (socfpgaclk->div_reg) {
                val = readl(socfpgaclk->div_reg) >> socfpgaclk->shift;
                val &= div_mask(socfpgaclk->width);
-               if (streq(hwclk->init->name, SOCFPGA_DB_CLK))
+               /* Check for GPIO_DB_CLK by its offset */
+               if ((int)socfpgaclk->div_reg & SOCFPGA_GPIO_DB_CLK_OFFSET)
                        div = val + 1;
                else
                        div = (1 << val);