NBOOT启动至BOOTLOADER之前

来源:互联网 发布:尚学堂 大数据 百度云 编辑:程序博客网 时间:2024/05/07 08:34

S3C2440A boot code can be executed on an external NAND flash memory. In order to support NAND flash bootloader, the S3C2440A is equipped with an internal SRAM buffer called "Steppingstone". When booting, the first 4KBytes of the NAND flash memory will be loaded into Steppingstone and the boot code loaded into Steppingstone will be executed.


Generally, the boot code will copy NAND flash content to SDRAM. Using hardware ECC generating, the NAND flash data validity will be checked. Upon the completion of the copy, the main program will be executed on the SDRAM.
     

2440的启动代码可以从外部的nandflash上执行。为了能支持nboot,2440需要带有一个叫steppingstone的内部sram缓冲区。在启动加载的时候,nandflash的前4k的内容(nboot部分)要被先load到steppingstone中去(此时steppingstone被映射为物理地址的0x0,复位后执行的第一条指令就是从这里取的),然后在steppingstone中去执行该启动代码。这部分代码(nboot)的作用是会将nandflash中的bootloader step2部分(Eboot OR uboot)拷贝到sdram中去,并跳到sdram中去执行以加载内核(nk)。


nboot从nandflash被load到steppingstone中的过程为:在上电的时候,nandflash控制器通过几个引脚的状态(NCON-Adv flash;GPG13-Page size;GPG14-Address cycle;GPG15-Bus width)来得到nandflash的相关信息,之后nandflash控制器就会自动load nandflash中前4k的启动代码到steppingstone中去,并在其中执行了。

 

不管是uboot还eboot在执行之前都要执行nboot(至少在smdk上是这样的)。在设备上电后首先要跳到nboot中,之后nboot做一些初始化操作(和uboot和eboot中的差不多),将指定block上的uboot或者eboot拷贝到内存中指定的地址去,在这里的操作都是用的物理地址。

 

stepldr流程(NBOOT)分为以下几步:

SetupCopySection(pTOC)

MMU_EnableICache()——使能ICache

Port_Init()——GPIO端口初始化

Uart_Init()——初始化UART(调试端口)

NF_Init()——初始化nand flash接口

⑥将Imageflash拷贝到RAM

((PFN_IMAGE_LAUNCH)(LOAD_ADDRESS_PHYSICAL))()——跳转

 

参考资料:

wince6.0+s3c2443启动之NBOOT: http://blog.csdn.net/chinesedragon2010/archive/2010/08/14/5811524.aspx

NBOOT startup.s汇编详细介绍:http://cky0612.blog.163.com/blog/static/27478916201012515110914/

EBOOT startup.s汇编详细介绍:

http://blog.csdn.net/chinesedragon2010/archive/2010/09/20/5895956.aspx

http://blog.csdn.net/chinesedragon2010/archive/2010/10/03/5919717.aspx

http://blog.csdn.net/chinesedragon2010/archive/2010/10/05/5922489.aspx

http://blog.csdn.net/chinesedragon2010/archive/2010/10/12/5936777.aspx

 

原创粉丝点击