新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > U-Boot移植DM9000網(wǎng)卡

U-Boot移植DM9000網(wǎng)卡

作者: 時間:2016-11-20 來源:網(wǎng)絡 收藏
根據(jù)書《嵌入式Linux應用開發(fā)完全手冊》移植網(wǎng)卡驅動,對于Jz2440開發(fā)板好像并不適用,Jz2440開發(fā)板使用的是DM9000網(wǎng)卡,已經(jīng)不是書上講的CS8900網(wǎng)卡了。DM9000網(wǎng)卡與CS8900網(wǎng)卡接口方式不一樣,經(jīng)過幾天的折騰,終于移植成功,現(xiàn)將筆記整理如下。

一、移植環(huán)境

本文引用地址:http://2s4d.com/article/201611/319059.htm

1.u-boot版本1.1.6

2.開發(fā)板Jz2440(ARM9 S3C2440

NAND K9F2G08

SDRAM K4S561632 * 2

網(wǎng)卡 DM9000)

3.Linux: ubuntu 9.10


二、移植思路

查看u-boot-1.1.6源碼發(fā)現(xiàn),u-boot中已經(jīng)包含dm9000的驅動文件dm9000x.c,所以我們只需要設置u-boot支持網(wǎng)卡就行。總體思路主要完成以下幾件事情:

1.設置存儲控制器,也就是設置S3C2440的BANK以使用DM9000;

2.配置u-boot使用DM9000網(wǎng)卡;

3.設置IP、serverIP等。


三、設置存儲控制器

根據(jù)Jz2440開發(fā)板的原理圖可知,DM9000網(wǎng)卡 使用的是BANK4,如圖3.1所示。


原理圖1.jpg(57.34 K)
2012-3-20 21:26:58

圖3.1 DM9000原理圖

由圖可知,DM9000網(wǎng)卡使用的片選信號是nGCS 4,也就說明DM9000使用了BANK4。修改lowlevel_init.S(路徑:board/smdk2410/lowlevel_init.S)。

#define DW8 (0x0)

#define DW16 (0x1)

#define DW32 (0x2)

#define WAIT (0x1<<2)

#define UBLB (0x1<<3)

#define B1_BWSCON (DW32)

#define B2_BWSCON (DW16)

#if 0

#define B3_BWSCON (DW16 + WAIT + UBLB)

#endif

#define B3_BWSCON (DW16 + UBLB)

#define B4_BWSCON (DW16 + WAIT + UBLB)

#define B5_BWSCON (DW16)

#define B6_BWSCON (DW32)

#define B7_BWSCON (DW32)

修改前BANK3外接的CS8900網(wǎng)卡,將BANK3注釋掉,修改數(shù)據(jù)寬度為16位,設置BANK4數(shù)據(jù)寬度16位,使用WAIT和nBE信號。

#define B4_Tacs 0x0

#define B4_Tcos 0x3

#define B4_Tacc 0x7

#define B4_Tcoh 0x1

#define B4_Tah 0x3

#define B4_Tacp 0x6

#define B4_PMC 0x0

根據(jù)DM9000數(shù)據(jù)手冊設置時序,具體見DM9000數(shù)據(jù)手冊。


四、配置u-boot使用DM9000網(wǎng)卡

修改配置文件smdk2410.h(路徑:include/configs/smdk2410.h)。

#if 0

#define CONFIG_DRIVER_CS8900 1

#define CS8900_BASE 0x19000300

#define CS8900_BUS16 1

#endif

#define CONFIG_DRIVER_DM9000 1

#define CONFIG_DM9000_USE_16BIT 1

#define CONFIG_DM9000_BASE 0x20000000

#define DM9000_DATA 0x20000004

#define DM9000_IO 0x20000000

注釋掉CS8900的信息,添加DM9000的配置信息。

宏定義CONFIG_DRIVER_DM9000為1表示配置使用DM9000網(wǎng)卡,u-boot編譯時會將DM9000相關的驅動編譯進去。其中0x20000000是DM9000的基址(BANK4),由于DM9000只有一條地址線CMD(LADDR2,見圖3.1)用于區(qū)別是數(shù)據(jù)還是地址(CMD為低時數(shù)據(jù)總線上傳輸?shù)氖堑刂沸盘?,CMD為高時傳輸?shù)氖菙?shù)據(jù)信號),所以DM9000_DATA為0x20000004,DM9000_IO為0x20000000。


五、設置IP、serverIP

在配置文件smdk2410.h(路徑:include/configs/smdk2410.h)中根據(jù)實際情況修改開發(fā)板的IP地址,serverIP。

修改前:

#define CONFIG_NETMASK 255.255.255.0

#define CONFIG_IPADDR 10.0.0.110

#define CONFIG_SERVERIP 10.0.0.1

修改后:

#define CONFIG_NETMASK 255.255.255.0

#define CONFIG_IPADDR 192.168.1.6

#define CONFIG_SERVERIP 192.168.1.2

我的PC和開發(fā)板使用路由器相連,PC IP地址為192.168.1.2,開發(fā)板設置為192.168.1.6,保證在同一個網(wǎng)段就行。

增加ping命令:

#define CONFIG_COMMANDS
(CONFIG_CMD_DFL|
CFG_CMD_CACHE|



FG_CMD_REGINFO|

CFG_CMD_PING|
CFG_CMD_DATE|
CFG_CMD_ELF)


仿照CMD命令格式,我們使用CFG_CMD_PING增加對ping的支持。


六、遇到問題vs解決方案

以上任務完成,在u-boot根目錄下編譯,編譯成功!

使用OpenJtag將編譯完成的u-boot.bin燒入開發(fā)板運行。u-boot啟動后,使用print命令查看u-boot的參數(shù):

Jz2440 #print

bootdelay=3

baudrate=115200

ethaddr=08:00:3e:26:0a:5b

ipaddr=192.168.1.6

serverip=192.168.1.2

netmask=255.255.255.0

stdin=serial

stdout=serial

stderr=serial

看到開發(fā)板的IP、serverIP已經(jīng)修改成功。我們使用ping命令ping一下PC 192.168.1.2。

Jz2440 #ping 192.168.1.2

dm9000 i/o: 0x20000000, id: 0x90000a46

MAC: 50:50:50:50:50:50

could not establish link

ping failed; host 192.168.1.2 is not alive


host is not alive ,ping不通,看來存在問題!

上網(wǎng)搜索了很久,網(wǎng)上的都是教你屏蔽這一段代碼,屏蔽那一段代碼,然后就可以了,都沒有詳細的分析,看不大明白。后來,通過研究高版本的u-boot,發(fā)現(xiàn)了問題所在。

打開高版本u-boot,u-boot-1.3.4中的dm9000x.c,可以看到如下更新說明:

06/03/2008 Remy Bohmer <[url=mailtonux@bohmer.net]linux@bohmer.net[/url]>

-Fixed the driver to work with DM9000A.


發(fā)現(xiàn)DM9000驅動在后續(xù)版本中更新了,老版本的(u-boot-1.1.6)對DM9000支持可能存在問題。

發(fā)現(xiàn)了問題,馬上更新試試看,復制u-boot-1.3.4中的dm9000x.c到u-boot-1.1.6中,覆蓋掉原來的dm9000x.c,然后編譯。

出現(xiàn)了錯誤!

drivers/dm9000x.c:480: undefined reference to `is_zero_ether_addr

/drivers/dm9000x.c:480: undefined reference to `is_multicast_ether_addr

make: *** [u-boot] Error 1

很明顯,缺少兩個函數(shù)定義。網(wǎng)上搜索也沒有找到,干脆對u-boot-1.3.4建立SourceInsight工程搜索這兩個函數(shù)。發(fā)現(xiàn)這兩個函數(shù)都存在于net.h中(路徑:include/net.h)。

復制這兩個函數(shù),到自己的u-boot(目前為u-boot-1.1.6)的net.h中(路徑:include/net.h)

static inline int is_zero_ether_addr(const u8 *addr)

{
return !(addr[0] | addr[1] | addr[2] | addr[3] | addr[4] | addr[5]);

}


static inline int is_multicast_ether_addr(const u8 *addr)

{
return (0x01 & addr[0]);

}


然后編譯,通過!

燒寫到開發(fā)板,ping主機192.168.1.2:

Jz2440 # ping 192.168.1.2

ERROR: resetting DM9000 -> not responding

dm9000 i/o: 0x20000000, id: 0x90000a46

DM9000: running in 16 bit mode

MAC: 08:00:3e:26:0a:5b

could not establish link

host 192.168.1.2 is alive

“host 192.168.1.2 is alive”, ping通了,DM9000移植OK!


七、網(wǎng)絡測試

1.測試tftp

通過tftp傳輸一個程序到內存中運行試試看。在主機上打開tftp軟件,將leds.bin(運行地址在0x30000000)放在tftp軟件目錄中,在u-boot界面,輸入命令:

Jz2440 #tftp 0x30000000 leds.bin

ERROR: resetting DM9000 -> not responding

dm9000 i/o: 0x20000000, id: 0x90000a46

DM9000: running in 16 bit mode

MAC: 08:00:3e:26:0a:5b

could not establish link

TFTP from server 192.168.1.2; our IP address is 192.168.1.6

Filename leds.bin.

Load address: 0x30000000

Loading: #

done

Bytes transferred = 168 (a8 hex)

傳輸成功,在u-boot界面使用go命令運行程序

Jz2440 #go 0x30000000

## Starting application at 0x30000000 ...

可以看到Jz2440開發(fā)板上led已經(jīng)在循環(huán)閃爍了。


2.測試nfs

由于虛擬機Linux上開啟了nfs服務,虛擬機Linux IP為192.168.1.3,需要先更改serverIP。

Jz2440 #setenv serverip 192.168.1.3

Jz2440 #saveenv

然后將leds.bin放在nfs目錄,/work/nfs_root/,在u-boot界面使用nfs傳輸文件

Jz2440 #nfs 0x30000000 192.168.1.3:/work/nfs_root/leds.bin

ERROR: resetting DM9000 -> not responding

dm9000 i/o: 0x20000000, id: 0x90000a46

DM9000: running in 16 bit mode

MAC: 08:00:3e:26:0a:5b

could not establish link

File transfer via NFS from server 192.168.1.3; our IP address is 192.168.1.6

Filename /work/nfs_root/leds.bin.

Load address: 0x30000000

Loading: #

done

Bytes transferred = 168 (a8 hex)

傳輸成功,在u-boot界面使用go命令運行程序

Jz2440 #go 0x30000000

## Starting application at 0x30000000 ...

可以看到Jz2440開發(fā)板上led已經(jīng)在循環(huán)閃爍了。

至此,DM9000網(wǎng)卡移植成功!



評論


相關推薦

技術專區(qū)

關閉