我們知道S3C2440支持從NAND Flash啟動和從NOR Flash啟動兩種模式,先來介紹u-boot的NOR Flash啟動方式吧。
一、修改NOR Flash的讀寫程序
FL2440開發板中使用的NOR Flash是Intel的J3系列存儲大小是4M字節,這個系列的NOR Flash支持標准的CFI指令(在最新的U-boot版本中只需要添加宏定義就可以支持CFI接口的NOR Flash了,但我們這個版本中還不行),將board/cmi/flash.c復制到board/fl2440/flash.c,這個文件中包含了我們開發板的NOR Flash讀寫函數,但是其中還有一點問題,需要修改flash.c文件中的函數write_buff,此函數需要將小端字節數進行short類型變換,即將低地址數放在低位,高地址數放在高位另外還要進行地址對其,因為該型號flash只支持16位寫,不支持8位寫,那麼我們寫8位時需要從flash中讀取出不改寫8位,在加上需要改寫的8位組成16位後回寫到flash中去,具體將原flash.c中的函數write_buff修改如下:
相關閱讀:
U-Boot源代碼下載地址 http://www.linuxidc.com/Linux/2011-07/38897.htm
FL2440的U-boot-2010.09移植(一)http://www.linuxidc.com/Linux/2012-06/63755.htm
FL2440的U-boot-2010.09移植(二)http://www.linuxidc.com/Linux/2012-06/63756.htm
FL2440的U-boot-2010.09移植(三)DM9000網卡及開發板相關配置 http://www.linuxidc.com/Linux/2012-07/64155.htm
FL2440的U-boot-2010.09移植(四) 添加NOR FLash啟動支持 http://www.linuxidc.com/Linux/2012-07/64156.htm
FL2440的U-boot-2010.09移植(五)uboot架構中NAND FLash驅動修改 http://www.linuxidc.com/Linux/2012-07/64157.htm
FL2440的U-boot-2010.09移植(六)NAND FLash啟動支持 http://www.linuxidc.com/Linux/2012-07/641587.htm
FL2440的U-boot-2010.09移植(七)LCD的支持 http://www.linuxidc.com/Linux/2012-07/641587.htm
針對FL2440開發板的u-boot-2010.09版本補丁 http://www.linuxidc.com/Linux/2012-07/64116.htm
- int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
- {
- ulong cp, wp;
- ushort data;
- int i, rc;
-
- if (info->flash_id == FLASH_UNKNOWN) {
- return 4;
- }
-
- wp = (addr & ~1); /* get lower word aligned address */
-
- /*
- * handle unaligned start byte
- */
-
- /* for not to modify the origin data in flash*/
-
- if (addr - wp) {
- data = 0;
- for(i = 0, cp = wp; i < 1; ++i, ++cp){
- data = (data >> 8) | (*(uchar *) cp << 8);
- }
- for(; i < 2 && cnt > 0; ++i){
- data = (data >> 8) | (*src++ <<8);
- --cnt;
- ++cp;
- }
- for(; cnt == 0 && i < 2; ++i, ++cp){
- data = (data >> 8) | (*(uchar *) cp << 8);
- }
- if ((rc = write_short(info, wp, data)) != 0) {
- return (rc);
- }
- wp += 2;
- }
-
- /*
- * handle word aligned part
- */
-
- while (cnt >= 2) {
- /*data = 0;
- for (i=0; i<2; ++i) {
- data = (data << 8) | *src++;
- }*/
- data = *((vu_short *) src) ;
-
- if ((rc = write_short(info, wp, data)) != 0) {
- return (rc);
- }
- src += 2;
- wp += 2;
- cnt -= 2;
- }
-
- if (cnt == 0) {
- return (0);
- }
-
- /*
- * handle unaligned tail bytes
- * read the origin high byte data and write again!
- * modified by yanghao
- */
-
- data = 0;
- for (i=0, cp=wp; i<2 && cnt>0; ++i, ++cp) {
- data = (data >> 8) | (*src++ << 8);
- --cnt;
- }
- for (; i<2; ++i, ++cp) {
- data = (data >> 8) | (*(uchar *)cp << 8);
- }
-
- return (write_short(info, wp, data));
-
- }
還需要將flash.c文件中的NOR Flash塊大小進行修改:
- #define FLASH_BLOCK_SIZE 0x00020000 //數據手冊p8說了32Mbit有32個128kBytes block組成