From: Eduardo Valentin <eduardo.valentin@nokia.com>
To: "Balbi Felipe (Nokia-D/Helsinki)" <felipe.balbi@nokia.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>,
Linux OMAP Mailing List <linux-omap@vger.kernel.org>
Subject: Re: [PATCH 2/3] arm: omap: let pm code always handle musb pm init
Date: Wed, 19 May 2010 14:24:31 +0300 [thread overview]
Message-ID: <20100519112431.GM4265@besouro.research.nokia.com> (raw)
In-Reply-To: <1274262018-32631-2-git-send-email-felipe.balbi@nokia.com>
On Wed, May 19, 2010 at 11:40:17AM +0200, Balbi Felipe (Nokia-D/Helsinki) wrote:
> From: Felipe Balbi <felipe.balbi@nokia.com>
>
> musb pm has special needs on omap3430, let pm init
> code handle usb_musb_pm_init() so we can always
> release all resources after initializing PM.
Right..
>
> Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
> ---
> arch/arm/mach-omap2/pm34xx.c | 9 +++------
> arch/arm/mach-omap2/usb-musb.c | 29 +++++++++--------------------
> arch/arm/plat-omap/include/plat/usb.h | 2 +-
> 3 files changed, 13 insertions(+), 27 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
> index 48857a4..cec9d8b 100644
> --- a/arch/arm/mach-omap2/pm34xx.c
> +++ b/arch/arm/mach-omap2/pm34xx.c
> @@ -516,12 +516,6 @@ void omap_sram_idle(void)
> omap3_prcm_restore_context();
> omap3_sram_restore_context();
> omap2_sms_restore_context();
> - /*
> - * Errata 1.164 fix : OTG autoidle can prevent
> - * sleep
> - */
> - if (cpu_is_omap3430())
> - usb_musb_disable_autoidle();
But IIRC, if we are coming back from OFF mode the autoidle bit will be 1 again.
Which means, we still need this part to set it back to 0, otherwise, the sw wa is screwed.
> }
> omap_uart_resume_idle(0);
> omap_uart_resume_idle(1);
> @@ -1242,6 +1236,9 @@ static int __init omap3_pm_init(void)
> pm_dbg_regset_init(2);
>
> omap3_save_scratchpad_contents();
> +
> + /* Errata 1.164 fix : OTG autoidle can prevent sleep */
> + usb_musb_pm_init();
> err1:
> return ret;
> err2:
> diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c
> index 085e22e..de3e768 100644
> --- a/arch/arm/mach-omap2/usb-musb.c
> +++ b/arch/arm/mach-omap2/usb-musb.c
> @@ -44,12 +44,12 @@ static struct platform_device dummy_pdev = {
> },
> };
>
> -static void __iomem *otg_base;
> -static struct clk *otg_clk;
> -
> -static void __init usb_musb_pm_init(void)
> +void __init usb_musb_pm_init(void)
> {
> - struct device *dev = &dummy_pdev.dev;
> + struct device *dev = &dummy_pdev.dev;
> + void __iomem *otg_base;
> + struct clk *otg_clk;
> + unsigned long r;
>
> if (!cpu_is_omap34xx())
> return;
> @@ -81,6 +81,10 @@ static void __init usb_musb_pm_init(void)
> __raw_readl(otg_base + OTG_SYSSTATUS)))
> cpu_relax();
>
> + r = __raw_readl(otg_base + OTG_SYSCONFIG);
> + r &= ~(1 << 0);
> + __raw_writel(r, otg_base + OTG_SYSCONFIG);
> +
> clk_disable(otg_clk);
>
> out1:
> @@ -90,18 +94,6 @@ out0:
> iounmap(otg_base);
> }
>
> -void usb_musb_disable_autoidle(void)
> -{
> - if (otg_clk) {
> - unsigned long reg;
> -
> - clk_enable(otg_clk);
> - reg = __raw_readl(otg_base + OTG_SYSCONFIG);
> - __raw_writel(reg & ~1, otg_base + OTG_SYSCONFIG);
> - clk_disable(otg_clk);
> - }
> -}
> -
> #ifdef CONFIG_USB_MUSB_SOC
>
> static struct resource musb_resources[] = {
> @@ -181,13 +173,10 @@ void __init usb_musb_init(struct omap_musb_board_data *board_data)
>
> if (platform_device_register(&musb_device) < 0)
> printk(KERN_ERR "Unable to register HS-USB (MUSB) device\n");
> -
> - usb_musb_pm_init();
> }
>
> #else
> void __init usb_musb_init(struct omap_musb_board_data *board_data)
> {
> - usb_musb_pm_init();
> }
> #endif /* CONFIG_USB_MUSB_SOC */
> diff --git a/arch/arm/plat-omap/include/plat/usb.h b/arch/arm/plat-omap/include/plat/usb.h
> index ec7c025..cae3508 100644
> --- a/arch/arm/plat-omap/include/plat/usb.h
> +++ b/arch/arm/plat-omap/include/plat/usb.h
> @@ -56,7 +56,7 @@ extern void usb_musb_init(struct omap_musb_board_data *board_data);
> extern void usb_ehci_init(const struct ehci_hcd_omap_platform_data *pdata);
>
> /* This is needed for OMAP3 errata 1.164: enabled autoidle can prevent sleep */
> -extern void usb_musb_disable_autoidle(void);
> +extern void usb_musb_pm_init(void);
>
> #endif
>
> --
> 1.7.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2010-05-19 11:19 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-19 9:40 [PATCH 1/3] arm: omap: musb: proper error checking felipe.balbi
2010-05-19 9:40 ` [PATCH 2/3] arm: omap: let pm code always handle musb pm init felipe.balbi
2010-05-19 11:24 ` Eduardo Valentin [this message]
2010-05-19 11:43 ` Felipe Balbi
2010-05-19 9:40 ` [PATCH 3/3] arm: omap: musb: do not issue SOFTRESET on omap3630 felipe.balbi
2010-05-19 17:26 ` Gadiyar, Anand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100519112431.GM4265@besouro.research.nokia.com \
--to=eduardo.valentin@nokia.com \
--cc=felipe.balbi@nokia.com \
--cc=khilman@deeprootsystems.com \
--cc=linux-omap@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox