public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] i.MX6: Ensure AHB clock is 132MHz in low freq boot mode
Date: Tue, 07 Jan 2014 14:51:02 +0100	[thread overview]
Message-ID: <52CC0646.5090504@denx.de> (raw)
In-Reply-To: <1389043906-12365-1-git-send-email-b20788@freescale.com>

Hi Anson,

On 06/01/2014 22:31, Anson Huang wrote:
> For low freq boot mode(ARM boot up with 396MHz), ROM
> will not set AHB clock to 132MHz, and the reset value of
> AHB divider is incorrect which will lead to wrong AHB
> rate, need to correct it. To enable low freq boot mode,
> need to set BOOT_CFG2[2] to high, tested on i.MX6Q/DL
> SabreSD board and i.MX6SL EVK board.
> 
> Signed-off-by: Anson Huang <b20788@freescale.com>
> ---
>  arch/arm/cpu/armv7/mx6/soc.c |   20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c
> index a390296..edf3139 100644
> --- a/arch/arm/cpu/armv7/mx6/soc.c
> +++ b/arch/arm/cpu/armv7/mx6/soc.c
> @@ -131,10 +131,30 @@ static void imx_set_wdog_powerdown(bool enable)
>  	writew(enable, &wdog2->wmcr);
>  }
>  
> +static void set_ahb_rate(u32 val)
> +{
> +	struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
> +	u32 reg, div;
> +
> +	div = get_periph_clk() / val - 1;
> +	reg = readl(&mxc_ccm->cbcdr);
> +
> +	writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
> +		(div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
> +}
> +
>  int arch_cpu_init(void)
>  {
>  	init_aips();
>  
> +	/*
> +	 * When low freq boot is enabled, ROM will not set AHB
> +	 * freq, so we need to ensure AHB freq is 132MHz in such
> +	 * scenario.
> +	 */
> +	if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
> +		set_ahb_rate(132000000);
> +

Are we sure that mxc_get_clock() returns *exactly* 396000000 ?

As far as I see, this depends firstly from MXC_HCLK, that can be
configurable with CONFIG_SYS_MX6_HCLK and could have a different value
from the default 24000000. I do not know if there is cases where
CONFIG_SYS_MX6_HCLK is useful, no boards at the moment are setting it.

But the test requires that the computed frequency is exactly 396Mhz. Is
this reliable or should we simply test if frequency is lower of a
defined threshold ?

Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

  parent reply	other threads:[~2014-01-07 13:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-06 21:31 [U-Boot] [PATCH] i.MX6: Ensure AHB clock is 132MHz in low freq boot mode Anson Huang
2014-01-07 10:15 ` Fabio Estevam
2014-01-07 10:37 ` Hui.Liu at freescale.com
2014-01-07 13:51 ` Stefano Babic [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-01-06 21:38 Anson Huang

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=52CC0646.5090504@denx.de \
    --to=sbabic@denx.de \
    --cc=u-boot@lists.denx.de \
    /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