资源描述:
《Linux下网卡驱动程序的研究-毕业论文.doc》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、本科毕业论文(科研训练、毕业设计)题目:Linux下网卡驱动程序的研究姓名:学院:软件学院系:软件工程专业:软件工程年级:学号:指导教师(校内):职称:指导教师(校外):职称:年月Linux下网卡驱动程序的研究[摘要]此网卡驱动研究开发是遵循POSIX通用Linux设备标准,基于BCM6338芯片,在Linux操作系统平台下,实现BCM6338芯片的基于MII接口的网络接口的驱动。本文引言部分简要介绍了Linux操作系统、内核模块、Linux设备驱动等基本概念,并阐述了驱动程序的基本框架。系统实现部分首先明确实现目标,接
2、着阐述驱动开发的硬件平台,并分析了BCM6338芯片网络接口原理。然后从Linux网络子系统的四个层次,并分析网卡驱动的作用。接着详细地分析与设计了网络接口驱动的实现原理和实现方法。网络接口驱动的设计大体包括以下十一部分:加载模块、卸载模块、探测设备、初始化设备、打开设备、关闭设备、发送报文、接收报文、检测连接状态、获取统计信息和支持多播。最后,阐述编译环境和编译方法,并通过测试结果表明此网卡驱动能使BCM6338芯片的网络接口部分正常工作。[关键词]网卡驱动;Linux;NAPI;模块编程;BCM63384545Res
3、earchofNetworkInterfaceCardDriverinLinux[Abstract]ThisresearchanddevelopmentaretodevelopthenetworkinterfacedriverofBCM6338chipwhichisbasedonPOSIX--genericLinuxequipmentstandard.ThenetworkinterfacepartofBCM6338chipisbasedMIIInterface.Inthispaper,theintroductionpar
4、texpoundsonLinuxoperatingsystem,kernelmodules,Linuxdevicedrivers,basicframeworkofdriverdevelopmentandotherbasicconcepts.Themplementationpartfirstlymakeclearthedevelopmentobjective,andthenexpoundsthehardwareplatformofdevelopmentandanalyzetheprinciplesofnetworkinte
5、rfaceonBCM6338chip.Secondly,Thepaperexplainsthefourlayersoflinuxnetworksubsystemandthefunctionofnetworkinterfacecarddriver.Thenadetailedanalysisanddesignofthenetworkinterfacedriverarepresented.NetworkDriverInterfacedriverdesignwillincludethefollowing11parts:loadi
6、ngmodule,unloadingmodule,detectingequipment,equipmentinitialization,openningtheequipment,shuttingdownequipment,sendingmessages,receivingmessages,detectingconnectionstatus,gettingstatisticalinformationandsupportingmulticast.In-depthanalysisofvariouspartsofthemetho
7、dstoachieve,principleandattentiontodetail.Finally,Thepaperdescribescompilationenvironmentandcompilationmethod,andthetestresultsareshowedtoindicatethatthenetworkinterfacecarddriverworkswell.[Keywords]NetworkInterfaceCardDriver;Linux;NAPI;ModuleProgramming;BCM63384
8、545目录第一章引言11.1Linux简介11.2内核模块11.3Linux设备驱动21.4设备驱动框架3第二章分析与设计52.1实现目标52.2硬件平台52.2.1BCM6338平台描述52.2.2BCM6338网络接口原理72.3Linux网络子系统82.3.1网络子系统的结构82.3.2网络设备接口部分92.3