- 论坛徽章:
- 0
|
一、移植环境 主 机:Fedora 14 (kernel-2.6.33.7) 开发板:FL2440(nandflash:K9F1G08 128MB) 编译器:arm-linux-gcc-4.3.2 二、移植步骤 1. 在没有移植驱动之前,从系统的启动信息我们可以看到,开发板无法检测到网卡的存在。 - init started: BusyBox v1.6.0 (2008-01-09 17:10:28 CST) multi-call binary
-
starting pid 940, tty '': '/etc/init.d/rcS'
-
mount: mounting none on /dev/pts failed
-
mount: mounting tmpfs on /dev/shm failed
-
ifconfig: SIOCSIFADDR: No such device
-
ifconfig: SIOCSIFADDR: No such device
2. FL2440开发板采用的是DM9000网络适配卡,linux-2.6.33.7内核中已经同样对D9000网卡有了很好的支持,我所要做的就是对驱动进行必要的修改和配置。首先增加DM9000的基地址和虚拟地址的定义。 - #vim arch/arm/mach-s3c2410/include/mach/map.h
-
#define S3C24XX_PA_DM9000 (0x20000300)
-
#define S3C24XX_VA_DM9000 (0xE0000000)
3. 创建DM9000设备IO资源到内核虚拟地址的映射,如下。 - #vim arch/arm/mach/s3c2410/mach-smdk2410.c
- (这次我直接修改mach-smdk2410.c而不是mach-smdk2440.c了,mach-smdk2440.c的修改总是不起作用,
- 而要去修改mach-smdk2410.c,原因还没找到。)
- static struct map_desc smdk2410_iodesc[] __initdata = {
- /* nothing here yet */
- [0] = {
- .virtual = (unsigned long)S3C24XX_VA_DM9000,
- .pfn = __phys_to_pfn(S3C24XX_PA_DM9000),
- .length = SZ_1M,
- .type = MT_DEVICE,
- },
- };
4. 在设备初始化中添加对DM9000设备的支持。 - #vim arch/arm/mach/s3c2410/mach-smdk2410.c
-
static struct platform_device *smdk2410_devices[] __initdata = {
-
&s3c_device_usb,
-
&s3c_device_lcd,
-
&s3c_device_wdt,
-
&s3c_device_i2c0,
-
&s3c_device_iis,
-
&s3c_device_rtc,
-
&s3c24xx_uda134x, //uda
-
&s3c_device_dm9000,
-
};
5. 在内核中注册DM9000设备,添加如下内容。 - //添加头文件:
-
#vim arch/arm/plat-s3c24xx/devs.c
-
#include <linux/dm9000.h>
-
//注册DM9000:
-
static struct resource s3c_dm9000_resource[] = {
-
[0] = {
-
.start = S3C24XX_PA_DM9000,
-
.end = S3C24XX_PA_DM9000+ 0x3,
-
.flags = IORESOURCE_MEM
-
},
-
[1] = {
-
.start = S3C24XX_PA_DM9000 + 0x4, //CMD pin is A2
-
.end = S3C24XX_PA_DM9000 + 0x4 + 0x7c,
-
.flags = IORESOURCE_MEM
-
},
-
[2] = {
-
.start = IRQ_EINT7,
-
.end = IRQ_EINT7,
-
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL//IRQF_TRIGGER_RISING
-
},
-
};
-
-
static struct dm9000_plat_data s3c_device_dm9000_platdata = {
-
.flags= DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM,
-
};
-
-
struct platform_device s3c_device_dm9000 = {
-
.name= "dm9000",
-
.id= 0,
-
.num_resources= ARRAY_SIZE(s3c_dm9000_resource),
-
.resource= s3c_dm9000_resource,
-
.dev= {
-
.platform_data = &s3c_device_dm9000_platdata,
-
}
-
-
};
-
EXPORT_SYMBOL(s3c_device_dm9000);
6. 在头文件中声明第三步中定义的s3c_device_dm9000 - # vi arch/arm/plat-s3c/include/plat/devs.h
-
extern struct platform_device s3c_device_rtc;
-
extern struct platform_device s3c_device_adc;
-
extern struct platform_device s3c_device_sdi;
-
extern struct platform_device s3c_device_iis;
-
extern struct platform_device s3c_device_dm9000;
7. 修改DM9000驱动源码,主要是dm9000_probe函数。 - //增加头文件:
-
#include <mach/regs-gpio.h>
-
#include <mach/irqs.h>
-
#include <mach/hardware.h>
-
//在dm9000_probe 函数开始:
-
static int __devinit
-
dm9000_probe(struct platform_device *pdev)
-
{
-
unsigned char ne_def_eth_mac_addr[] = {
-
0x00,0x12,0x34,0x56,0x80,0x49
-
};
-
static void *bwscon;
-
static void *gpfcon;
-
static void *extint0;
-
static void *intmsk;
-
-
#define BWSCON 0x48000000
-
#define GPFCON 0x56000050
-
#define EXTINT0 0x56000088
-
#define INTMSK 0x4A000008
-
-
bwscon = ioremap_nocache(BWSCON,0x00000004);
-
gpfcon = ioremap_nocache(GPFCON,0x00000004);
-
extint0 = ioremap_nocache(EXTINT0,0x00000004);
-
intmsk = ioremap_nocache(INTMSK,0x00000004);
-
-
writel(readl(bwscon)|0xc0000,bwscon);
-
writel((readl(gpfcon)&~(0x3<<4))|(0x2<<4),gpfcon);
-
writel(readl(gpfcon)|(0x1<<7),gpfcon); //disable pull-up
-
writel((readl(extint0)&~(0xf<<28))|(0x4<<28),extint0);//rising edge
-
writel((readl(intmsk)) & ~0x80,intmsk);
-
//在这个函数最后修改以下位置
-
if (!is_valid_ether_addr(ndev->dev_addr)) {
-
/* try reading from mac */
-
-
mac_src = "chip";
-
for (i = 0; i < 6; i++)
-
//ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
-
ndev->dev_addr[i] = ne_def_eth_mac_addr[i];//修改这里
-
}
8. 编译生成zImage文件,下载到开发板,从启动信息中可以看到,开发板已经可以检测到DM9000网卡驱动:至于“ifconfig: SIOCSIFADDR: No such device”这个信息,我还没有找到原因和解决办法。 - starting pid 942, tty '': '/etc/init.d/rcS'
- mount: mounting none on /dev/pts failed
- mount: mounting tmpfs on /dev/shm failed
- dm9000 dm9000.0: WARNING: no IRQ resource flags set.
- eth0: link down
- ifconfig: SIOCSIFADDR: No such device
- #ifconfig lo 127.0.0.1
- #ifconfig eth0 169.254.244.205
- # ping 169.254.244.206(我主机的IP)
- PING 169.254.244.206 (169.254.244.206): 56 data bytes
- 64 bytes from 169.254.244.206: seq=0 ttl=40 time=5.9 ms
- 64 bytes from 169.254.244.206: seq=1 ttl=40 time=1.2 ms
- 64 bytes from 169.254.244.206: seq=2 ttl=40 time=1.3 ms
- 64 bytes from 169.254.244.206: seq=3 ttl=40 time=1.2 ms
- 64 bytes from 169.254.244.206: seq=4 ttl=40 time=1.2 ms
- 64 bytes from 169.254.244.206: seq=5 ttl=40 time=1.3 ms
- 64 bytes from 169.254.244.206: seq=6 ttl=40 time=1.3 ms
- 64 bytes from 169.254.244.206: seq=7 ttl=40 time=1.3 ms
- 64 bytes from 169.254.244.206: seq=8 ttl=40 time=1.3 ms
- 64 bytes from 169.254.244.206: seq=9 ttl=40 time=1.2 ms
- 64 bytes from 169.254.244.206: seq=10 ttl=40 time=1.3 ms
- ^C
- --- 169.254.244.206 ping statistics ---
- 11 packets transmitted, 11 packets received, 000000000acket loss
- round-trip min/avg/max = 1.2/1.6/5.9 ms
OK,网卡驱动也终于搞掂了。。
2011-01-27 |
|