内核及设备驱动实验报告.doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
内核及设备驱动实验报告

内核及设备驱动实验报告 实验目的 1.学习Linux操作系统下内核程序的编写和应用。 2.学习可编程接口芯片的编程控制方法。 实验内容与要求 1.完成一个内核模块的编写,实现内核模块的正确加载和卸载。 2.建立一个虚拟的字符设备驱动程序,至少要包含读、写功能,为用户程序提供内核空间与用户空间的数据交换,方案及实现过程自定。 3.在上面的基础上完成8253与自编的应用程序结合,实现特定的功能。 实验记录与分析 程序清单: 驱动程序 #include linux/kernel.h #include linux/module.h #include linux/fs.h #include asm/uaccess.h int init_module(void); void cleanup_module(void); static int device_open(struct inode *, struct file *); static int device_release(struct inode *, struct file *); static ssize_t device_read(struct file *, char *, size_t, loff_t *); static ssize_t device_write(struct file *, const char *, size_t, loff_t *); #define SUCCESS 0 #define DEVICE_NAME chardev #define BUF_LEN 80 static int Major; static int Device_Open = 0; static char msg[BUF_LEN]; static char *msg_Ptr; static struct file_operations fops = { .read = device_read, .write = device_write, .open = device_open, .release = device_release }; int init_module(void) { Major = register_chrdev(0, DEVICE_NAME, fops); if (Major 0) { printk (Registering the character device failed with %d\n, Major); return Major; } printk(1I was assigned major number %d. To talk to\n, Major); printk(1the driver, create a dev file with\n); printk(mknod /dev/hello c %d 0.\n, Major); printk(1Try various minor numbers. Try to cat and echo to\n); printk(the device file.\n); printk(1Remove the device file and module when done.\n); return 0; } void cleanup_module(void) { int ret = unregister_chrdev(Major, DEVICE_NAME); if (ret 0) printk(Error in unregister_chrdev: %d\n, ret); } static int device_open(struct inode *inode, struct file *file) { static int counter = 0; if (Device_Open) return -EBUSY; printk(major and minor device number=%x\n, inode-i_rdev); printk(Major number=%d\n, MAJOR(inode-i_rdev)); Device_Open++; sprintf(msg,I have already told you %d times Hello world!\n, counter++); m

文档评论(0)

xy88118 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档