[U-Boot] Bug in clock settings for SMDK5250

Alexei Fedorov Alexei.Fedorov at arm.com
Fri Mar 15 11:34:36 CET 2013


There's a bug in system_clock_init() function (board\samsung\smdk5250\clock_init.c) where APLL, MPLL, BPLL, etc. clocks are set:

              while (readl(&clk->bpll_con0) & BPLL_CON0_LOCKED)
                           ;
This should be
              while (!(readl(&clk->bpll_con0) & BPLL_CON0_LOCKED))
                           ;


-- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.


More information about the U-Boot mailing list