Linux字符设备驱动程序实验.pdf

Linux字符设备驱动程序实验.pdf

ID:55953374

大小:84.79 KB

页数:10页

时间:2020-06-18

Linux字符设备驱动程序实验.pdf_第1页
Linux字符设备驱动程序实验.pdf_第2页
Linux字符设备驱动程序实验.pdf_第3页
Linux字符设备驱动程序实验.pdf_第4页
Linux字符设备驱动程序实验.pdf_第5页
资源描述:

《Linux字符设备驱动程序实验.pdf》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、实验九:Linux字符设备驱动程序实验实验目的:1.理解Linux设备驱动程序的基本原理;2.掌握Linux字符设备驱动程序的框架结构;3.学会编写字符设备驱动程序。实验设备:PC机。实验原理:Linux函数(系统调用)是应用程序和操作系统内核之间的接口,而设备驱动程序是内核和硬件设备之间的接口,设备驱动程序屏蔽硬件细节,且设备被映射成特殊的文件进行处理。每个设备都对应一个文件名,在内核中也对应一个索引节点,应用程序可以通过设备的文件名来访问硬件设备。Linux为文件和设备提供了一个致性的接口,用户操作设备文件与操作普通文件类似。例如,通过open()函数可打开设备文件,建立起

2、应用程序与目标设备的连接;之后,可以通过read()、write()、ioctl()等常规文件函数对目标设备进行操作。实验方法:实现对虚拟设备(一段内在)的打开、关闭、读写的操作,并要通过编写测试程序来测试虚拟设备及其驱动运行是否正常。1.实验源代码/*test_drv.c*/#include#include#include#include#include#include#include

3、no.h>#include#include#defineTEST_DEVICE_NAME"test_dev"#defineBUFF_SZ1024/*全局变量*/staticstructcdevtest_dev;unsignedintmajor=0;staticchar*data=NULL;/*函数声明*/staticssize_ttest_read(structfile*file,char*buf,size_tcount,loff_t*f_pos);staticssize_ttest_write(structfile*f

4、ile,constchar*buffer,size_tcount,loff_t*f_pos);staticinttest_open(structinode*inode,structfile*file);staticinttest_release(structinode*inode,structfile*file);/*读函数*/staticssize_ttest_read(structfile*file,char*buf,size_tcount,loff_t*f_pos){intlen;if(count<0){return-EINVAL;}len=strlen(data);co

5、unt=(len>count)?count:len;if(copy_to_user(buf,data,count)){return-EFAULT;}returncount;}/*写函数*/staticssize_ttest_write(structfile*file,constchar*buffer,size_tcount,loff_t*f_pos){if(count<0){return-EINVAL;}memset(data,0,BUFF_SZ);count=(BUFF_SZ>count)?count:BUFF_SZ;if(copy_from_user(data,buffer

6、,count)){return-EFAULT;}returncount;}/*打开函数*/staticinttest_open(structinode*inode,structfile*file){printk("Thisisopenoperation");data=(char*)kmalloc(sizeof(char)*BUFF_SZ,GFP_KERNEL);if(!data){return-ENOMEM;}memset(data,0,BUFF_SZ);return0;}/*关闭函数*/staticinttest_release(structinode*inode,str

7、uctfile*file){printk("Thisisreleaseoperation");if(data){kfree(data);data=NULL;}return0;}staticvoidtest_setup_cdev(structcdev*dev,intminor,structfile_operations*fops){interr,devno=MKDEV(major,minor);cdev_init(dev,fops);dev->owner=THIS_MODULE;dev->

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。