]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
clk: stm32f4: Add post divisor for I2S & SAI PLLs
authorGabriel Fernandez <gabriel.fernandez@st.com>
Tue, 13 Dec 2016 14:20:14 +0000 (15:20 +0100)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 22 Dec 2016 00:09:09 +0000 (16:09 -0800)
This patch adds post dividers of I2S & SAI PLLs.
These dividers are managed by a dedicated register (RCC_DCKCFGR).
The PLL should be off before a set rate.

Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk-stm32f4.c

index d9dc79b91731e75b8283829d506546314954349a..42e0dc512d3d4188b1b126db9fd3d5e30ff92943 100644 (file)
 #define STM32F4_RCC_CSR                        0x74
 #define STM32F4_RCC_PLLI2SCFGR         0x84
 #define STM32F4_RCC_PLLSAICFGR         0x88
+#define STM32F4_RCC_DCKCFGR            0x8c
+
+#define NONE -1
+#define NO_IDX  NONE
 
 struct stm32f4_gate_data {
        u8      offset;
@@ -357,6 +361,19 @@ struct stm32f4_pll {
 
 #define to_stm32f4_pll(_gate) container_of(_gate, struct stm32f4_pll, gate)
 
+struct stm32f4_pll_post_div_data {
+       int idx;
+       u8 pll_num;
+       const char *name;
+       const char *parent;
+       u8 flag;
+       u8 offset;
+       u8 shift;
+       u8 width;
+       u8 flag_div;
+       const struct clk_div_table *div_table;
+};
+
 struct stm32f4_vco_data {
        const char *vco_name;
        u8 offset;
@@ -370,6 +387,23 @@ static const struct stm32f4_vco_data  vco_data[] = {
        { "vco-sai", STM32F4_RCC_PLLSAICFGR, 28, 29 },
 };
 
+
+static const struct clk_div_table post_divr_table[] = {
+       { 0, 2 }, { 1, 4 }, { 2, 8 }, { 3, 16 }, { 0 }
+};
+
+#define MAX_POST_DIV 3
+static const struct stm32f4_pll_post_div_data  post_div_data[MAX_POST_DIV] = {
+       { CLK_I2SQ_PDIV, PLL_I2S, "plli2s-q-div", "plli2s-q",
+               CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 0, 5, 0, NULL},
+
+       { CLK_SAIQ_PDIV, PLL_SAI, "pllsai-q-div", "pllsai-q",
+               CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 8, 5, 0, NULL },
+
+       { NO_IDX, PLL_SAI, "pllsai-r-div", "pllsai-r", CLK_SET_RATE_PARENT,
+               STM32F4_RCC_DCKCFGR, 16, 2, 0, post_divr_table },
+};
+
 struct stm32f4_div_data {
        u8 shift;
        u8 width;
@@ -996,6 +1030,27 @@ static void __init stm32f4_rcc_init(struct device_node *np)
        clks[PLL_VCO_SAI] = stm32f4_rcc_register_pll("vco_in",
                        &data->pll_data[2], &stm32f4_clk_lock);
 
+       for (n = 0; n < MAX_POST_DIV; n++) {
+               const struct stm32f4_pll_post_div_data *post_div;
+               struct clk_hw *hw;
+
+               post_div = &post_div_data[n];
+
+               hw = clk_register_pll_div(post_div->name,
+                               post_div->parent,
+                               post_div->flag,
+                               base + post_div->offset,
+                               post_div->shift,
+                               post_div->width,
+                               post_div->flag_div,
+                               post_div->div_table,
+                               clks[post_div->pll_num],
+                               &stm32f4_clk_lock);
+
+               if (post_div->idx != NO_IDX)
+                       clks[post_div->idx] = hw;
+       }
+
        sys_parents[1] = hse_clk;
        clk_register_mux_table(
            NULL, "sys", sys_parents, ARRAY_SIZE(sys_parents), 0,