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 SPL到U-Boot流程



am335x在加载完UOOT.img 镜像之后会跳转到执行U-BOOT。请问SPL完成了之后,U-BOOT具体从哪个文件夹哪个文件的哪个函数开始的?

am335x在SPL加载U-BOOT镜像函数如下:路径:arch/arm/cpu/armv7/omap-common/spl.c  函数:

static void jump_to_image_no_args(void)
{
typedef void (*image_entry_noargs_t)(void)__attribute__ ((noreturn));
image_entry_noargs_t image_entry =
(image_entry_noargs_t) spl_image.entry_point;

debug("image entry point: 0x%X\n", spl_image.entry_point);
image_entry();
}

我的理解就是应该是跳转到spl_image.entry_point此地址,但是此地址是多少找不到了,从ti的UBOOT文档看 UBOOT的起始地址是:0x00080000 请问是不是跳转到了这个起始地址。起始地址的源码路径在哪?  求解答,非常感谢