diff options
-rw-r--r-- | drivers/clk/st/clkgen-pll.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/clk/st/clkgen-pll.c b/drivers/clk/st/clkgen-pll.c index cdf23dbd4ad4..d4ef4f479776 100644 --- a/drivers/clk/st/clkgen-pll.c +++ b/drivers/clk/st/clkgen-pll.c | |||
@@ -180,6 +180,18 @@ static const struct clkgen_pll_data st_pll1200c32_gpu_416 = { | |||
180 | .ops = &st_pll1200c32_ops, | 180 | .ops = &st_pll1200c32_ops, |
181 | }; | 181 | }; |
182 | 182 | ||
183 | static const struct clkgen_pll_data st_pll3200c32_407_a0 = { | ||
184 | /* 407 A0 */ | ||
185 | .pdn_status = CLKGEN_FIELD(0x2a0, 0x1, 8), | ||
186 | .locked_status = CLKGEN_FIELD(0x2a0, 0x1, 24), | ||
187 | .ndiv = CLKGEN_FIELD(0x2a4, C32_NDIV_MASK, 16), | ||
188 | .idf = CLKGEN_FIELD(0x2a4, C32_IDF_MASK, 0x0), | ||
189 | .num_odfs = 1, | ||
190 | .odf = { CLKGEN_FIELD(0x2b4, C32_ODF_MASK, 0) }, | ||
191 | .odf_gate = { CLKGEN_FIELD(0x2b4, 0x1, 6) }, | ||
192 | .ops = &stm_pll3200c32_ops, | ||
193 | }; | ||
194 | |||
183 | /** | 195 | /** |
184 | * DOC: Clock Generated by PLL, rate set and enabled by bootloader | 196 | * DOC: Clock Generated by PLL, rate set and enabled by bootloader |
185 | * | 197 | * |
@@ -570,6 +582,10 @@ static struct of_device_id c32_pll_of_match[] = { | |||
570 | .compatible = "st,stih416-plls-c32-ddr", | 582 | .compatible = "st,stih416-plls-c32-ddr", |
571 | .data = &st_pll3200c32_ddr_416, | 583 | .data = &st_pll3200c32_ddr_416, |
572 | }, | 584 | }, |
585 | { | ||
586 | .compatible = "st,stih407-plls-c32-a0", | ||
587 | .data = &st_pll3200c32_407_a0, | ||
588 | }, | ||
573 | {} | 589 | {} |
574 | }; | 590 | }; |
575 | 591 | ||