From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933495Ab3CUOMn (ORCPT ); Thu, 21 Mar 2013 10:12:43 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:32972 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932457Ab3CUOMm (ORCPT ); Thu, 21 Mar 2013 10:12:42 -0400 Message-ID: <514B1553.6030701@ti.com> Date: Thu, 21 Mar 2013 16:12:35 +0200 From: Roger Quadros User-Agent: Mozilla/5.0 (X11; Linux i686; rv:16.0) Gecko/20121011 Thunderbird/16.0.1 MIME-Version: 1.0 To: Roger Quadros CC: , , , , , , , Paul Walmsley Subject: Re: [PATCH] ARM: OMAP4: clock: Initialize USB DPLL References: <1363873705-3224-1-git-send-email-rogerq@ti.com> In-Reply-To: <1363873705-3224-1-git-send-email-rogerq@ti.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org +Paul On 03/21/2013 03:48 PM, Roger Quadros wrote: > If the bootloader doesn't configure USB DPLL (e.g. in u-boot, > disable CONFIG_USB_EHCI_OMAP), then we get all sorts of problems > like > - division by zero errors at boot [1] > - USB DPLL fails to enter locked state > - USB EHCI Host is non functional > - Device can't enter OFF mode > > Initializing the USB DPLL fixes all these issues. > > [1] > > [ 0.000000] clock: dpll_usb_ck failed transition to 'locked' > [ 0.000000] Division by zero in kernel. > [ 0.000000] [] (unwind_backtrace+0x0/0xf0) from [] (Ldiv0+0x8/0x10) > [ 0.000000] [] (Ldiv0+0x8/0x10) from [] (clk_divider_set_rate+0x10/0x124) > [ 0.000000] [] (clk_divider_set_rate+0x10/0x124) from [] (clk_change_rate+0x3c/0xb4) > [ 0.000000] [] (clk_change_rate+0x3c/0xb4) from [] (clk_change_rate+0xa0/0xb4) > > Signed-off-by: Roger Quadros > --- > arch/arm/mach-omap2/cclock44xx_data.c | 19 +++++++++++++++++++ > 1 files changed, 19 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-omap2/cclock44xx_data.c b/arch/arm/mach-omap2/cclock44xx_data.c > index bfc46c1..6127bb9 100644 > --- a/arch/arm/mach-omap2/cclock44xx_data.c > +++ b/arch/arm/mach-omap2/cclock44xx_data.c > @@ -53,6 +53,12 @@ > */ > #define OMAP4_DPLL_ABE_DEFFREQ 98304000 > > +/* > + * OMAP4450 TRM Rev X, section "3.6.3.9.5 DPLL_USB Preferred Settings" > + * states it must be at 960MHz > + */ > +#define OMAP4_DPLL_USB_DEFFREQ 960000000 > + > /* Root clocks */ > > DEFINE_CLK_FIXED_RATE(extalt_clkin_ck, CLK_IS_ROOT, 59000000, 0x0); > @@ -1729,6 +1735,19 @@ int __init omap4xxx_clk_init(void) > omap2_clk_disable_autoidle_all(); > > /* > + * Lock USB_DPLL to avoid issues with USB host and OFF mode > + */ > + rc = clk_set_rate(&dpll_usb_ck, OMAP4_DPLL_USB_DEFFREQ); > + if (rc) { > + pr_err("%s: failed to configure DPLL_USB: %d\n", __func__, rc); > + } else { > + rc = clk_set_rate(&dpll_usb_m2_ck, OMAP4_DPLL_USB_DEFFREQ/2); > + if (rc) > + pr_err("%s: failed to configure DPLL_USB_M2: %d\n", > + __func__, rc); > + } > + > + /* > * On OMAP4460 the ABE DPLL fails to turn on if in idle low-power > * state when turning the ABE clock domain. Workaround this by > * locking the ABE DPLL on boot. >