Linux网卡驱动程序编写
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
- Proteus运行Keil编写的C语言步骤(12-02)
- 基于51单片机的红外线遥控程序编写代码(11-30)
- 分享一年的程序调试经验(11-29)
- 关于51单片机中C语言编写的精确延时函数(11-25)
- 用keil编写程序并download到单片机中(11-24)
- 使用Keil软件编写汇编源程序应注意事项(11-23)