diff options
| author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2014-04-02 09:48:45 -0400 |
|---|---|---|
| committer | Mike Turquette <mturquette@linaro.org> | 2014-07-31 11:36:58 -0400 |
| commit | a74c52def9ab953c77956a8e93d225621980f54c (patch) | |
| tree | f84ef30560279ed4eab59f732f345bee34346f04 /drivers | |
| parent | 64aa90f26c06e1cb2aacfb98a7d0eccfbd6c1a91 (diff) | |
clk: ti: clk-7xx: Correct ABE DPLL configuration
ABE DPLL frequency need to be lowered from 361267200
to 180633600 to facilitate the ATL requironments.
The dpll_abe_m2x2_ck clock need to be set to double
of ABE DPLL rate in order to have correct clocks
for audio.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/clk/ti/clk-7xx.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/clk/ti/clk-7xx.c b/drivers/clk/ti/clk-7xx.c index e1581335937d..cb8e6f14e880 100644 --- a/drivers/clk/ti/clk-7xx.c +++ b/drivers/clk/ti/clk-7xx.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include <linux/clkdev.h> | 16 | #include <linux/clkdev.h> |
| 17 | #include <linux/clk/ti.h> | 17 | #include <linux/clk/ti.h> |
| 18 | 18 | ||
| 19 | #define DRA7_DPLL_ABE_DEFFREQ 361267200 | 19 | #define DRA7_DPLL_ABE_DEFFREQ 180633600 |
| 20 | #define DRA7_DPLL_GMAC_DEFFREQ 1000000000 | 20 | #define DRA7_DPLL_GMAC_DEFFREQ 1000000000 |
| 21 | 21 | ||
| 22 | 22 | ||
| @@ -322,6 +322,11 @@ int __init dra7xx_dt_clk_init(void) | |||
| 322 | if (rc) | 322 | if (rc) |
| 323 | pr_err("%s: failed to configure ABE DPLL!\n", __func__); | 323 | pr_err("%s: failed to configure ABE DPLL!\n", __func__); |
| 324 | 324 | ||
| 325 | dpll_ck = clk_get_sys(NULL, "dpll_abe_m2x2_ck"); | ||
| 326 | rc = clk_set_rate(dpll_ck, DRA7_DPLL_ABE_DEFFREQ * 2); | ||
| 327 | if (rc) | ||
| 328 | pr_err("%s: failed to configure ABE DPLL m2x2!\n", __func__); | ||
| 329 | |||
| 325 | dpll_ck = clk_get_sys(NULL, "dpll_gmac_ck"); | 330 | dpll_ck = clk_get_sys(NULL, "dpll_gmac_ck"); |
| 326 | rc = clk_set_rate(dpll_ck, DRA7_DPLL_GMAC_DEFFREQ); | 331 | rc = clk_set_rate(dpll_ck, DRA7_DPLL_GMAC_DEFFREQ); |
| 327 | if (rc) | 332 | if (rc) |
