]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
CLK: TI: clk-54xx: Set the rate for dpll_abe_m2x2_ck
authorPeter Ujfalusi <peter.ujfalusi@ti.com>
Wed, 30 Apr 2014 11:39:37 +0000 (14:39 +0300)
committerTero Kristo <t-kristo@ti.com>
Fri, 6 Jun 2014 17:33:34 +0000 (20:33 +0300)
In order to get correct clock dividers for AESS/ABE we need to set the
dpll_abe_m2x2_ck rate to be double of dpll_abe_ck.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
drivers/clk/ti/clk-54xx.c

index 08f3d1b915b396d393e2a9bf0aa444784f39388d..5e183993e3ec56b926fffd252325000d02566d03 100644 (file)
@@ -240,6 +240,12 @@ int __init omap5xxx_dt_clk_init(void)
        if (rc)
                pr_err("%s: failed to configure ABE DPLL!\n", __func__);
 
+       abe_dpll = clk_get_sys(NULL, "dpll_abe_m2x2_ck");
+       if (!rc)
+               rc = clk_set_rate(abe_dpll, OMAP5_DPLL_ABE_DEFFREQ * 2);
+       if (rc)
+               pr_err("%s: failed to configure ABE m2x2 DPLL!\n", __func__);
+
        usb_dpll = clk_get_sys(NULL, "dpll_usb_ck");
        rc = clk_set_rate(usb_dpll, OMAP5_DPLL_USB_DEFFREQ);
        if (rc)