All of lore.kernel.org
 help / color / mirror / Atom feed
* imx53 hang in barebox boot
@ 2018-06-22 13:44 Mogens Lauridsen
  0 siblings, 0 replies; only message in thread
From: Mogens Lauridsen @ 2018-06-22 13:44 UTC (permalink / raw)
  To: barebox

Hi,

During production of our i.MX53 based board we sometimes find a board 
which hang in boot/barebox. It happens in something like 5% of the 
production.

I have done some debugging, and it seems like it can be fixed by 
removing "imx5_setup_pll_400((void __iomem *)MX53_PLL3_BASE_ADDR);" from 
imx53.c.

In the function "imx53_init_lowlevel_early" PLL3 is first set to 400MHz, 
then some peripheral is switched to PLL3 and finally PLL3 is set to 
216MHz. Is 400MHz too high for the PLL/peripheral so it can't always lock?

I would think that PLL3 should be set to 216MHz in the first place and 
not change later. Or am I missing something?

Kind regards
Mogens Lauridsen


void imx53_init_lowlevel_early(unsigned int cpufreq_mhz)
{
     void __iomem *ccm = (void __iomem *)MX53_CCM_BASE_ADDR;
     u32 r;

     imx5_init_lowlevel();

     /*
      * AIPS setup - Only setup MPROTx registers.
      * The PACR default values are good.
      * Set all MPROTx to be non-bufferable, trusted for R/W,
      * not forced to user-mode.
      */
     writel(0x77777777, MX53_AIPS1_BASE_ADDR + 0);
     writel(0x77777777, MX53_AIPS1_BASE_ADDR + 4);
     writel(0x77777777, MX53_AIPS2_BASE_ADDR + 0);
     writel(0x77777777, MX53_AIPS2_BASE_ADDR + 4);

     /* Gate of clocks to the peripherals first */
     writel(0x3fffffff, ccm + MX5_CCM_CCGR0);
     writel(0x00000000, ccm + MX5_CCM_CCGR1);
     writel(0x00000000, ccm + MX5_CCM_CCGR2);
     writel(0x00000000, ccm + MX5_CCM_CCGR3);
     writel(0x00030000, ccm + MX5_CCM_CCGR4);
     writel(0x00fff030, ccm + MX5_CCM_CCGR5);
     writel(0x0f00030f, ccm + MX5_CCM_CCGR6);
     writel(0x00000000, ccm + MX53_CCM_CCGR7);

     /* Switch ARM to step clock */
     writel(0x4, ccm + MX5_CCM_CCSR);

     if (cpufreq_mhz == 1000)
         imx5_setup_pll_1000((void __iomem *)MX53_PLL1_BASE_ADDR);
     else
         imx5_setup_pll_800((void __iomem *)MX53_PLL1_BASE_ADDR);

     imx5_setup_pll_400((void __iomem *)MX53_PLL3_BASE_ADDR); 
<------------------- 400MHz

         /* Switch peripheral to PLL3 */
     writel(0x00015154, ccm + MX5_CCM_CBCMR);
     writel(0x02888945 | (1<<16), ccm + MX5_CCM_CBCDR);

     /* make sure change is effective */
     while (readl(ccm + MX5_CCM_CDHIPR));

     imx5_setup_pll_400((void __iomem *)MX53_PLL2_BASE_ADDR);

     /* Switch peripheral to PLL2 */
     r = 0x00808145 |
         (2 << 10) |
         (0 << 16) |
         (1 << 19);

     writel(r, ccm + MX5_CCM_CBCDR);

     writel(0x00016154, ccm + MX5_CCM_CBCMR);

     r = readl(ccm + MX5_CCM_CSCMR1);

     /* change uart clk parent to pll2 */
     r &= ~MX5_CCM_CSCMR1_UART_CLK_SEL_MASK;
     r |= 1 << MX5_CCM_CSCMR1_UART_CLK_SEL_OFFSET;

     /* USB phy clock from osc */
     r &= ~(1 << MX5_CCM_CSCMR1_USB_PHY_CLK_SEL_OFFSET);

     writel(r, ccm + MX5_CCM_CSCMR1);

     /* make sure change is effective */
     while (readl(ccm + MX5_CCM_CDHIPR));

     imx5_setup_pll_216((void __iomem *)MX53_PLL3_BASE_ADDR); 
<------------------- 216MHz
     imx5_setup_pll_455((void __iomem *)MX53_PLL4_BASE_ADDR);

     /* Set the platform clock dividers */
     writel(0x00000124, MX53_ARM_BASE_ADDR + 0x14);

     writel(0, ccm + MX5_CCM_CACRR);

     /* Switch ARM back to PLL 1. */
     writel(0, ccm + MX5_CCM_CCSR);

     /* make uart div = 6*/
     r = readl(ccm + MX5_CCM_CSCDR1);
     r &= ~0x3f;
     r |= 0x0a;

     r &= ~MX5_CCM_CSCDR1_ESDHC1_MSHC1_CLK_PRED_MASK;
     r &= ~MX5_CCM_CSCDR1_ESDHC1_MSHC1_CLK_PODF_MASK;
     r |= 1 << MX5_CCM_CSCDR1_ESDHC1_MSHC1_CLK_PRED_OFFSET;

     r &= ~MX5_CCM_CSCDR1_ESDHC3_MX53_CLK_PRED_MASK;
     r &= ~MX5_CCM_CSCDR1_ESDHC3_MX53_CLK_PODF_MASK;
     r |= 1 << MX5_CCM_CSCDR1_ESDHC3_MX53_CLK_PODF_OFFSET;

     r &= ~MX5_CCM_CSCDR1_USBOH3_CLK_PRED_MASK;
     r &= ~MX5_CCM_CSCDR1_USBOH3_CLK_PODF_MASK;

     r |= 3 << MX5_CCM_CSCDR1_USBOH3_CLK_PRED_OFFSET;
     r |= 1 << MX5_CCM_CSCDR1_USBOH3_CLK_PODF_OFFSET;

     writel(r, ccm + MX5_CCM_CSCDR1);

     /* Restore the default values in the Gate registers */
     writel(0xffffffff, ccm + MX5_CCM_CCGR0);
     writel(0xffffffff, ccm + MX5_CCM_CCGR1);
     writel(0xffffffff, ccm + MX5_CCM_CCGR2);
     writel(0xffffffff, ccm + MX5_CCM_CCGR3);
     writel(0xffffffff, ccm + MX5_CCM_CCGR4);
     writel(0xffffffff, ccm + MX5_CCM_CCGR5);
     writel(0xffffffff, ccm + MX5_CCM_CCGR6);
     writel(0xffffffff, ccm + MX53_CCM_CCGR7);

     writel(0, ccm + MX5_CCM_CCDR);
}


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-06-22 13:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-22 13:44 imx53 hang in barebox boot Mogens Lauridsen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.