实验七 驱动程序设计实验

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

实验七 驱动程序设计实验

1. 实验目的

该实验是编写最简单的字符驱动程序,这里的设备也就是一段内存,实现简单的读写功能,并列出常用格式的Makefile 以及驱动的加载和卸载脚本。读者可以体会到字符设备驱动的整个编写流程。

2. 实验内容

该实验要求实现对虚拟设备(一段内存)的打开、关闭、读写的操作,并要通过编写测试程序来测试虚拟设备及其驱动运行是否正常。

3. 实验步骤

(1) 编写代码。

(2) 编译代码。

(3) 加载和卸载模块。

(4) 编写测试代码。

4. 实验结果

首先在虚拟设备驱动源码目录下编译并加载驱动模块。再编译并运行测试程序。

测试程序运行效果如下:

最后,卸载驱动程序: $ make clean;make

$ ./test_drv_load

$ gcc –o test test.c $ ./test Input some words to kernel(enter 'quit' to exit):Hello, everybody!

The read string is from kernel:Hello, everybody! /* 从内核读取的数据 */

Input some words to kernel(enter 'quit' to exit):This is a simple driver

The read string is from kernel: This is a simple driver

Input some words to kernel(enter 'quit' to exit):quit The read string is from kernel:quit

$ ./test_drv_unload

通过dmesg命令可以查看内核打印的信息:

$ dmesg|tail –n 10

……

The major of the test device is 250 /* 当加载模块时打印*/

This is open operation /* 当打开设备时打印*/ This is release operation /* 关闭设备时打印*/ Test device uninstalled /* 当卸载设备时打印*/

相关文档
最新文档