- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
驱动程序编写实验
一、实验目的
1、掌握Linux下驱动程序开发过程
2、了解驱动程序框架
3、熟练使用gcc编译器
4、理解makefile文件作用
5、学会安装驱动程序,熟悉指令insmod,mknod,rmmod。
二、实验设备
1、硬件:PC机。
2、软件:vmware虚拟机,win7/XP
三、实验内容
1、编写pc机下的驱动程序,并安装驱动
2、编写应用程序调用驱动程序。
程序代码
#include?linux/module.h ??
#include?linux/init.h ??
#include?linux/kernel.h 牋
i#include?linux/fs.h 牋
i#include?linux/uaccess.h 牋
i#include?linux/semaphore.h 牋
i#include?linux/cdev.h 牋
i#include?linux/device.h 牋
i#include?linux/ioctl.h 牋
i#include?linux/slab.h 牋
i#include?linux/errno.h 牋
i#include?linux/string.h 牋
i#include?hello_mod_ioctl.h 牋
牋
lo#define?MAJOR_NUM?250 牋
0#define?MINOR_NUM?0 牋
N#define?IN_BUF_LEN?256 牋
6#define?OUT_BUF_LEN?512 牋
牋
BUMODULE_AUTHOR(Tishion);牋
DMODULE_DESCRIPTION(Hello_mod?driver?by?tishion);牋
牋
iostatic?struct?class?*?hello_class;牋
lstatic?struct?cdev?hello_cdev;牋
lstatic?dev_t?devnum?=?0;牋
vstatic?char?*?modname?=?hello_mod;牋
estatic?char?*?devicename?=?hello;牋
estatic?char?*?classname?=?hello_class;牋
牋
lostatic?int?open_count?=?0;牋
estatic?struct?semaphore?sem;牋
mstatic?spinlock_t?spin?=?SPIN_LOCK_UNLOCKED;牋
Istatic?char?*?inbuffer?=?NULL;牋
Lstatic?char?*?outbuffer?=?NULL;牋
Lstatic?lang_t?langtype;牋
牋
tystatic?int?hello_mod_open(struct?inode?*,?struct?file?*);牋
;static?int?hello_mod_release(struct?inode?*,?struct?file?*);牋
;static?ssize_t?hello_mod_read(struct?file?*,?char?*,?size_t,?loff_t?*);牋
;static?ssize_t?hello_mod_write(struct?file?*,?const?char?*,?size_t,?loff_t?*);牋
;static?int?hello_mod_ioctl(struct?inode?*,?struct?file?*,?unsigned?int,?unsigned?long);牋
牋
);struct?file_operations?hello_mod_fops?=牋?ll{牋
牋牋o_m.owner?=?THIS_MODULE,牋
牋牋_MO.open?=?hello_mod_open,牋
牋牋o_m.read?=?hello_mod_read,牋
牋牋o_m.write?=?hello_mod_write,牋
牋牋o_m.ioctl?=?hello_mod_ioctl,牋
牋牋o_m.release?=?hello_mod_release,牋
l};牋牋
lostatic?int?hello_mod_open(struct?inode?*inode,?struct?file?*pfile)牋
f{牋
牋牋le)printk(+hello_mod_open()!/n);牋
牋牋tk(spin_lock(spin);牋
牋牋_loif(open_count)牋
牋牋pen{牋
牋牋牋牋encouspin_unlock(spin);牋
牋牋牋牋nlockreturn?-EBUSY;牋
牋牋SY;}牋
牋牋牋SYopen_count+
文档评论(0)