微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > Linux网卡驱动程序编写

Linux网卡驱动程序编写

时间:05-09 来源:互联网 点击:

AF_INET)*/

unsignedshortmetric;/*routingmetric(notused)*/

unsignedshortmtu;/*interfaceMTUvalue*/

/*type标明物理硬件的类型。主要说明硬件是否需要arp。定义在

include/linux/if_arp.h里。*/

unsignedshorttype;/*interfacehardwaretype*/

/*上层协议层根据hard_header_len在发送数据缓冲区前面预留硬件帧头空间。*/

unsignedshorthard_header_len;/*hardwarehdrlength*/

/*priv指向驱动程序自己定义的一些参数。*/

void*priv;/*pointertoprivatedata*/

/*Interfaceaddressinfo.*/

unsignedcharbroadcast[MAX_ADDR_LEN];/*hwbcastadd*/

unsignedcharpad;/*makedev_addralignedto8

bytes*/

unsignedchardev_addr[MAX_ADDR_LEN];/*hwaddress*/

unsignedcharaddr_len;/*hardwareaddresslength*/

unsignedlongpa_addr;/*protocoladdress*/

unsignedlongpa_brdaddr;/*protocolbroadcastaddr*/

unsignedlongpa_dstaddr;/*protocolP-Pothersideaddr*/

unsignedlongpa_mask;/*protocolnetmask*/

unsignedshortpa_alen;/*protocoladdresslength*/

structdev_mc_list*mc_list;/*Multicastmacaddresses*/

intmc_count;/*Numberofinstalledmcasts*/

structip_mc_list*ip_mc_list;/*IPmulticastfilterchain*/

__u32tx_queue_len;/*Maxframesperqueueallowed*/

/*Forloadbalancingdriverpairsupport*/

unsignedlongpkt_queue;/*Packetsqueued*/

structdevice*slave;/*Slavedevice*/

structnet_alias_info*alias_info;/*maindevaliasinfo*/

structnet_alias*my_alias;/*aliasdevs*/

/*Pointertotheinterfacebuffers.*/

structsk_buff_headbuffs[DEV_NUMBUFFS];

/*Pointerstointerfaceserviceroutines.*/

int(*open)(structdevice*dev);

int(*stop)(structdevice*dev);

int(*hard_start_xmit)(structsk_buff*skb,

structdevice*dev);

int(*hard_header)(structsk_buff*skb,

structdevice*dev,

unsignedshorttype,

void*daddr,

void*saddr,

unsignedlen);

int(*rebuild_header)(void*eth,structdevice*dev,

unsignedlongraddr,structsk_buff*skb);

#defineHAVE_MULTICAST

void(*set_multicast_list)(structdevice*dev);

#defineHAVE_SET_MAC_ADDR

int(*set_mac_address)(structdevice*dev,void*addr);

#defineHAVE_PRIVATE_IOCTL

int(*do_ioctl)(structdevice*dev,structifreq*ifr,intcmd);

#defineHAVE_SET_CONFIG

int(*set_config)(structdevice*dev,structifmap*map);

#defineHAVE_HEADER_CACHE

void(*header_cache_bind)(structhh_cache**hhp,structdevice

*dev,unsignedshorthtype,__u32daddr);

void(*header_cache_update)(structhh_cache*hh,structdevice

*dev,unsignedchar*haddr);

#defineHAVE_CHANGE_MTU

int(*change_mtu)(structdevice*dev,intnew_mtu);

structiw_statistics*(*get_wireless_stats)(structdevice*dev);

};

2.4常用的系统支持

2.4.1内存申请和释放

include/linux/kernel.h里声明了kmalloc()和kfree()。用于在内核模式下申请和释放内存。

void*kmalloc(unsignedintlen,intpriority);

voidkfree(void*__ptr);

与用户模式下的malloc()不同,kmalloc()申请空间有大小限制。长度是2的整次方。可以申请的最大长度也有限制。另外kmalloc()有priority参数,通常使用时可以为GFP_KERNEL,如果在中断里调用用GFP_ATOMIC参数,因为使用GFP_KERNEL则调用者可能进入sleep状态,在处理中断时是不允许的。

kfree()释放的内存必须是kmalloc()申请的。如果知道内存的大小,也可以用kfree_s()释放。

2.4.2request_irq()、free_irq()

这是驱动程序申请中断和释放中断的调用。在include/linux/sched.h里声明。

request_irq()调用的定义:

intrequest_irq(unsignedintirq,

void(*handler)(intirq,void*dev_id,structpt_regs*regs),

unsignedlongirqflags,

constchar*devname,

void*dev_id);

irq是要申请的硬件中断号。在Intel平台,范围0--15。handler是向系统登记的中断处理函数。这是一个回调函数,中断发生时,系统调用这个函数,传入的参数包括硬件中断号,deviceid,寄存器值。dev_id就是下面的request_irq时传递给系统的参数dev_id。irqflags是中断处理的一些属性。比较重要的有SA_INTERRUPT,

标明中断处理程序是快速处理程序(设置SA_INTERRUPT)还是慢速处理程序(不设置SA_INTERRUPT)。快速处理程序被调用时屏蔽所有中断。慢速处理程序不屏蔽。还有一个SA_SHIRQ属性,设置了以后运行多个设备共享中断。dev_id在中断共享时会用到。一般设置为这个设备的de

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top