linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: u.kleine-koenig@pengutronix.de (Uwe Kleine-König)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] mx35: Fix boot ROM hang in internal boot mode
Date: Thu, 12 Aug 2010 07:57:53 +0200	[thread overview]
Message-ID: <20100812055753.GB9763@pengutronix.de> (raw)
In-Reply-To: <20100811233721.GB6411@local>

Hello Hans,

On Thu, Aug 12, 2010 at 01:37:21AM +0200, Hans J. Koch wrote:
> If a watchdog reset occurs after booting in internal boot mode, the i.MX35
> won't boot anymore. The boot ROM code seems to assume that some clocks are
> turned on (they are after a power-on reset). This patch turns on the
> necessary clocks.
> 
> Signed-off-by: Hans J. Koch <hjk@linutronix.de>
> ---
>  arch/arm/mach-mx3/clock-imx35.c |   20 ++++++++++++++++----
>  1 files changed, 16 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/mach-mx3/clock-imx35.c b/arch/arm/mach-mx3/clock-imx35.c
> index d3af0fd..e619bdc 100644
> --- a/arch/arm/mach-mx3/clock-imx35.c
> +++ b/arch/arm/mach-mx3/clock-imx35.c
> @@ -485,10 +485,10 @@ static struct clk_lookup lookups[] = {
>  
>  int __init mx35_clocks_init()
>  {
> -	unsigned int ll = 0;
> +	unsigned int cgr2 = 3 << 26, cgr3 = 0;
>  
>  #if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_ICEDCC)
> -	ll = (3 << 16);
> +	cgr2 |= (3 << 16);
Please remove the parentheses here ...

>  #endif
>  
>  	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
> @@ -499,8 +499,20 @@ int __init mx35_clocks_init()
>  	__raw_writel((3 << 18), CCM_BASE + CCM_CGR0);
>  	__raw_writel((3 << 2) | (3 << 4) | (3 << 6) | (3 << 8) | (3 << 16),
>  			CCM_BASE + CCM_CGR1);
> -	__raw_writel((3 << 26) | ll, CCM_BASE + CCM_CGR2);
> -	__raw_writel(0, CCM_BASE + CCM_CGR3);
> +
> +	/*
> +	 * Check if we came up in internal boot mode. If yes, we need some
> +	 * extra clocks turned on, otherwise the MX35 boot ROM code will
> +	 * hang after a watchdog reset.
> +	 */
> +	if (!(__raw_readl(CCM_BASE + CCM_RCSR) & (3 << 10))) {
> +		/* Additionally turn on UART0, SCC, and IIM clocks */
> +		cgr2 |= (3 << 16) | (3 << 4);
... and here ...
> +		cgr3 |= (3 << 2);
... and here.
> +	}
> +
> +	__raw_writel(cgr2, CCM_BASE + CCM_CGR2);
> +	__raw_writel(cgr3, CCM_BASE + CCM_CGR3);
Note that my question concerning the UART clock was less about UART1 vs
UART0 but more if the ROM really needs a UART clock.  And I prefer using
the name used in the manual, so UART1 please.

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

  reply	other threads:[~2010-08-12  5:57 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-11 23:37 [PATCH v2] mx35: Fix boot ROM hang in internal boot mode Hans J. Koch
2010-08-12  5:57 ` Uwe Kleine-König [this message]
2010-08-12 11:29   ` Hans J. Koch
2010-08-12 12:15     ` Hans J. Koch
2010-08-13  8:17       ` Uwe Kleine-König
2010-08-13  8:58         ` Eric Bénard
2010-08-13 10:04         ` Hans J. Koch
2010-08-13 10:25           ` Uwe Kleine-König
  -- strict thread matches above, loose matches on Subject: below --
2010-09-24  8:13 John Ogness
2010-09-24 10:10 ` Hans J. Koch

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=20100812055753.GB9763@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).