linux驱动摸索 --驱动框架初始化(结合韦东山视频教程)
一.驱动框架
初始化:insmod 加载
1.确定主设备号:
分为静态和动态分配,其中LED_GPIO_SIZE 表示支持的次设备号数目,一般默认为1. 相关实现代码如下:
- int result;
- dev_t dev;
- /*分配主设备号*/
- if (scull_major) /*静态分配一个主设备号*/
- {
- dev = MKDEV(scull_major,0);
- result = register_chrdev_region(dev,LED_GPIO_SIZE,DEVICE_NAME);
- }
- else /*动态分配一个主设备号*/
- {
- result = alloc_chrdev_region(&dev,0,LED_GPIO_SIZE,DEVICE_NAME);
- scull_major = MAJOR(dev);
- }
- if(result <0)
- {
- printk("LED:can not get major:%d\n",scull_major);
- return result;
- }
2.构造 file_operations 结构:结构成员对应相应的处理函数:
- static struct file_operations mini2440_leds_fops = {
- .owner = THIS_MODULE, /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
- .open = mini2440_leds_open,
- .write = mini2440_leds_write,
- };
3.将相关操作告诉内核:
内核用cdev结构来表示字符设备,cev_init()将文件操作和cdev关联。cdev_add()将之前生成的主次设备号和cdev连接在一起,
- led_class = class_create(THIS_MODULE,DEVICE_NAME);
- cdev_init(&led_gpio_cdev, &mini2440_leds_fops);
- result = cdev_add(&led_gpio_cdev, dev, 1);
- if(result <0)
- {
- printk("LED:cdev_add error\n");
- return result;
- }
- device_create(led_class, NULL, MKDEV(scull_major, 0), NULL, "led0");
卸载驱动 rmmod 卸载 代码实现如下:
- dev_t dev_id = MKDEV(scull_major, 0);
- /*卸载主设备号*/
- unregister_chrdev_region(dev_id, LED_GPIO_SIZE);
- device_destroy(led_class,MKDEV(scull_major, 0));
- cdev_del(&led_gpio_cdev);
- class_destroy(led_class);
最后附上一个较为完整的驱动框架,其中创建了主设备号和次设备号,驱动代码如下:
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/fs.h>
- #include <linux/init.h>
- #include <linux/delay.h>
- #include <asm/uaccess.h>
- #include <asm/irq.h>
- #include <mach/io.h>
- #include <mach/regs-gpio.h>
- #include <mach/hardware.h>
- #include <linux/device.h>
- #include <linux/cdev.h>
- #define DEVICE_NAME "led_1"
- #define LED_GPIO_SIZE 4
- static int scull_major = 0;
- static struct class *led_class;
- static struct cdev led_gpio_cdev[LED_GPIO_SIZE];
- static int mini2440_leds_open(struct inode *inode, struct file *file)
- {
- int minor = MINOR(inode->i_rdev); //MINOR(inode->i_cdev);
- printk("/dev/led%d has opened\n",minor);
- return 0;
- }
- static ssize_t mini2440_leds_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
- {
- char val;
- int minor = MINOR(filp->f_dentry->d_inode->i_rdev);
- copy_from_user(&val, buf, 1);
- printk("/dev/led%d write the val = %d\n",minor,val);
- return 0;
- }
- static struct file_operations mini2440_leds_fops = {
- .owner = THIS_MODULE, /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
- .open = mini2440_leds_open,
- .write = mini2440_leds_write,
- };
- /*
- * 执行insmod命令时就会调用这个函数
- */
- static int mini2440_leds_init(void)
- {
- int result,i;
- dev_t dev;
- /*分配主设备号*/
- if (scull_major) /*静态分配一个主设备号*/
- {
- dev = MKDEV(scull_major,0);
- result = register_chrdev_region(dev,LED_GPIO_SIZE,DEVICE_NAME);
- }
- else /*动态分配一个主设备号*/
- {
- result = alloc_chrdev_region(&dev,0,LED_GPIO_SIZE,DEVICE_NAME);
- scull_major = MAJOR(dev);
- }
- if(result <0)
- {
- printk("LED:can not get major:%d\n",scull_major);
- return result;
- }
- led_class = class_create(THIS_MODULE,DEVICE_NAME);
- if (IS_ERR(led_class)) {
- return PTR_ERR(led_class);
- }
- for (i=0; i<LED_GPIO_SIZE;i++)
- {
- cdev_init(&led_gpio_cdev[i], &mini2440_leds_fops);
- result = cdev_add(&led_gpio_cdev[i], (dev+i), 1);
- if(result <0)
- {
- printk("LED:cdev_add error\n");
- return result;
- }
- device_create(led_class, NULL, MKDEV(scull_major, i), NULL, "led%d",i);
- }
- return 0;
- }
- /*
- * 执行rmmod命令时就会调用这个函数
- */
- static void mini2440_leds_exit(void)
- {
- int i;
- dev_t dev_id = MKDEV(scull_major, 0);
- /*卸载主设备号*/
- unregister_chrdev_region(dev_id, LED_GPIO_SIZE);
- for(i=0;i<LED_GPIO_SIZE;i++)
- {
- device_destroy(led_class,MKDEV(scull_major, i));
- cdev_del(&led_gpio_cdev[i]);
- }
- class_destroy(led_class);
- }
- /* 这两行指定驱动程序的初始化函数和卸载函数 */
- module_init(mini2440_leds_init);
- module_exit(mini2440_leds_exit);
- /* 描述驱动程序的一些信息,不是必须的 */
- MODULE_LICENSE("GPL");
linux 测试代码:
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <stdio.h>
- /*
- * ledtest <dev> <on|off>
- */
- void print_usage(char *file)
- {
- printf("Usage:\n");
- printf("%s <dev> <on|off>\n",file);
- printf("eg. \n");
- printf("%s /dev/led0 a\n", file);
- printf("%s /dev/led1 b\n", file);
- printf("%s /dev/led2 c\n", file);
- printf("%s /dev/led3 d\n", file);
- }
- int main(int argc, char **argv)
- {
- int fd;
- char* filename;
- char val;
- if (argc != 3)
- {
- print_usage(argv[0]);
- return 0;
- }
- filename = argv[1];
- fd = open(filename, O_RDWR);
- if (fd < 0)
- {
- printf("error, can't open %s\n", filename);
- return 0;
- }
- if (!strcmp("a", argv[2]))
- {
- val = 10;
- write(fd, &val, 1);
- }
- else if (!strcmp("b", argv[2]))
- {
- val = 11;
- write(fd, &val, 1);
- }
- else if (!strcmp("c", argv[2]))
- {
- val = 12;
- write(fd, &val, 1);
- }
- else if (!strcmp("d", argv[2]))
- {
- val = 13;
- write(fd, &val, 1);
- }
- return 0;
- }
linux驱动摸索 --驱动框架初始化(结合韦东山视频教程)的更多相关文章
- 【linux】驱动-5-驱动框架分层分离&实战
目录 前言 5. 分离分层 5.1 回顾-设备驱动实现 5.2 分离分层 5.3 设备 5.4 驱动 5.5 系统,模块 5.6 Makefile 参考: 前言 5. 分离分层 本章节记录实现LED驱 ...
- Linux下USB驱动框架分析【转】
转自:http://blog.csdn.net/brucexu1978/article/details/17583407 版权声明:本文为博主原创文章,未经博主允许不得转载. http://www.c ...
- linux块设备驱动---概念与框架(转)
基本概念 块设备(blockdevice) --- 是一种具有一定结构的随机存取设备,对这种设备的读写是按块进行的,他使用缓冲区来存放暂时的数据,待条件成熟后,从缓存一次性写入设备或者从设备一次性 ...
- Linux内核USB驱动【转】
本文转载自:http://www.360doc.com/content/12/0321/14/8363527_196286673.shtml 注意,该文件是2.4的内核的驱动源文件,并不保证在2.6内 ...
- 深入理解Linux字符设备驱动
文章从上层应用访问字符设备驱动开始,一步步地深入分析Linux字符设备的软件层次.组成框架和交互.如何编写驱动.设备文件的创建和mdev原理,对Linux字符设备驱动有全面的讲解.本文整合之前发表的& ...
- Linux块设备驱动(一) _驱动模型
块设备是Linux三大设备之一,其驱动模型主要针对磁盘,Flash等存储类设备,本文以3.14为蓝本,探讨内核中的块设备驱动模型 框架 下图是Linux中的块设备模型示意图,应用层程序有两种方式访问一 ...
- linux usb总线驱动(一)
目录 linux usb总线驱动框架 USB 介绍 传输类型 控制器接口 2440接口 基本流程 alloc_dev choose_address hub_port_init usb_get_devi ...
- Linux网络设备驱动 _驱动模型
Linux素来以其强大的网络功能著名,同时, 网络设备也作为三大设备之一, 成为Linux驱动学习中必不可少的设备类型, 此外, 由于历史原因, Linux并没有强制对网络设备贯彻其"一切皆 ...
- EDK II之USB总线驱动的实现框架
本文简单介绍一下UEFI中USB驱动的实现框架: 下图是USBD向上层驱动提供的接口: 1.从图中我们可以看出,USBDI的实现主要通过调用HCDI实现 和 访问USB_INTERFACE结构体(该结 ...
随机推荐
- Splunk Power User认证
课程介绍 | 通过 Splunk Fundamentals Part 1 课程考试 | 获取splunk certificate user 证书 | 课程为14节课+课后实验环境+课后习题 | 课程有 ...
- RabbitMQ消息队列(一): 简单队列
1. 示例选用python的pika模块进行测试,需要预先安装pika模块: https://pypi.python.org/pypi/pika/0.10.0#downloads 上述地址下载源码,加 ...
- java servlet输出数据
httpServletResponse.setContentType("text/html;charset=UTF-8"); httpServletResponse.getWrit ...
- Django基本操作
Django官网下载页面 安装(安装最新LTS版): pip3 install django==1.11.9 创建一个django项目: 下面的命令创建了一个名为"s8"的Djan ...
- Python 进阶 之 else块 巧(慎)用
Python 的 else 模块和其他语言的else模块相比有那么一丢丢的特殊用法,有些用法虽然不推荐用,但是别人如果用了,最起码能看懂是不是? 1:快捷返回值: 格式: value1 if expr ...
- Redis的cluster集群
目前Redis实现集群的方法主要是采用一致性哈稀分片(Shard),将不同的key分配到不同的redis server上,达到横向扩展的目的. 对于一致性哈稀分片的算法,Jedis-2.0.0已经提供 ...
- Angular2响应式表单-翻译与概括官网REACTIVE FORMS页面
本文将半翻译半总结的讲讲ng2官网的另一个未翻译高级教程页面. 原文地址. 文章目的是使用ng2提供的响应式表单技术快速搭出功能完善丰富的界面表单组件. 响应式表单是一项响应式风格的ng2技术,本文将 ...
- asp.net数据类型--泛型
asp.net有很多的数据类型,同时c#等均是强数据类型,在使用的过程,存在因数据类型不一致,在编译时通过,在使用过程中出错的情况,因此从2.0起,增加泛型这种类型.这种类型,在定义时不指定类型,而在 ...
- POJ 1236 Network Of Schools (强连通分量缩点求出度为0的和入度为0的分量个数)
Network of Schools A number of schools are connected to a computer network. Agreements have been dev ...
- ASP.NET Core 2.2 基础知识(一) 依赖注入
依赖: 类A用到了类B,我们就说类A依赖类B.如果一个类没有任何地方使用到,那这个类基本上可以删掉了. public class Test { private MyDependency md = ne ...