u-boot-2014.10移植第24天----nand flash啟動(二)

fulinux發表於2015-02-11

硬體平臺:tq2440

開發環境:Ubuntu-3.11

u-boot版本:2014.10

本文允許轉載,請註明出處:http://blog.csdn.net/fulinus


nand flash啟動

比較新的u-boot版本包括u-boot-2014版本的都是用重定向的機制,而且用到了程式碼位置無關的技術,在u-boot連線時使用了-pie選項:
-pie :

Produce a position independent executable on targets which support it. For predictable results,
you must also specify the same set of options that were used to generate code (-fpie, -fPIE, or model
suboptions) when you specify this option.
"產生的程式碼中,沒有絕對地址,全部使用相對地址,故而程式碼可以被載入器載入到記憶體的任意
位置,都可以正確的執行。"
u-boot是可以在Nor flash中執行的,u-boot.bin的起始位置在Norflash的0地址處,當MO[1:0] = 01、10時,系統上電後從Nor flash啟動,從0地址處開始執行。並將u-boot重定向到SDRAM中執行。但是Nand flash是不能像Nor flash那樣可以當做RAM操作,因為nand flash是地址和資料匯流排複用的。好在s3c2440從nand flash啟動時會從nand flash讀4Kbytes的內容到s3c2440晶片內部自帶的DRAM中,如果在nand flash的前4Kbytes儲存空間放上一段可以執行的程式碼,其功能就是將nand flash中u-boot拷貝到SDRAM中,再將使用重定向的方法,跳轉到SDRAM中去執行u-boot即可。
可惜的是2440中跑的u-boot並不支援從Nand flash啟動。因此,我們需要在u-boot的前4K程式碼中加入操作nand flash的程式碼,然後重定向。

相關文章