- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
设备驱动课程设计
设备驱动课程设计
要求:
编写内核层简单设备驱动模块:hello_mod.c
可编译、可使用lnsmod/rmmod进行加载和卸载。
内核版本使用2.6以上版本
具有单独的Makefile文件支持编译
具有内存操作:使用kmalloc和kfree函数
具有打印操作:使用kprintf函数
具有open、read、write等文件系统入口
具有用户空间、内核空间数据拷贝操作:使用copy_to_user、copy_from_user函数
#include linux/module.h
#include linux/init.h
#include linux/fd.h
#include linux/kernel.h
#include linux/vmalloc.h
#include asm/uaccess.h
#include linux/errno.h
#include linux/major.h
#include linux/sched.h
#include linux/slab.h
#include linux/fcntl.h
#include linux/delay.h
#include linux/poll.h
#include linux/console.h
#include linux/device.h
#include linux/wait.h
#include linux/jiffies.h
#include linux/smp_lock.h
#include linux/parport.h
#undef LP_STATS
#include linux/lp.h
#include asm/irq.h
#include asm/uaccess.h
#include asm/system.h
//#include sys/stat.h
int __initdata a=20;
int __exitdata b=30;
static int count= 1;
static int mp= 0;
module_param(mp,int,0);
module_param(count,int,S_IRUSR);
MODULE_LICENSE(GPL);
MODULE_VERSION();
unsigned int fs_major=0;
static char *data;
struct a
{
int aa;
char bb;
};
struct a a1={.aa=2,.bb=3};
static ssize_t test_read(struct file *file,char *buf,size_t count,loff_t *f_pos);
static ssize_t test_write(struct file *file,const char *buffer,size_t count,loff_t *f_pos);
static int test_open(struct inode *inode,struct file *file);
static int test_release(struct inode *inode,struct file *file);
int init_module_1(void);
void cleanup_module_1(void);
struct file_operations chr_fops=
{.read=test_read,
.write=test_write,
.open=test_open,
.release=test_release,
};
static ssize_t test_read(struct file *file,char *buf,size_t count,loff_t *f_pos)
{
int len;
printk(rrrrrrrrrrrrrrrrrr\n);
if(count0)
{
return -EINVAL;
}
len=strlen(data);
if(lencount)
count=len;
copy_to_user(buf,data,count+1);
printk(read buf=%s\n,buf);
printk(read data=%s\n,data);
return count;
}
static ssize_t test_write(struct file *fil
文档评论(0)