This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM335X BB-Black 板的start.S 疑惑 求解!

用的代码包是推荐的: bb-black-u-boot.tar.bz2,有个疑问一直没找出来

start.S中,以下语句中的 lowlevel_init 函数是在哪边定义的?代码中一直没找到其定义的地方,网上搜索也没结果,也没找到这个板子的DDR3初始化配置的地方(init应该是在lowlevel_init 中定义的吧)

ENTRY(cpu_init_crit)
/*
* Jump to board specific initialization...
* The Mask ROM will have already initialized
* basic memory. Go here to bump up clock rate and handle
* wake up conditions.
*/
b lowlevel_init @ go setup pll,mux,memory
ENDPROC(cpu_init_crit)
#endif