linux字符设备驱动
本篇文章记录字符设备的驱动框架:
1.定义cdev接口体和class结构体
#define HELLO_CNT 2 static int major = 0;//主设备号为0,需要让系统自动生成主设备号 static struct cdev hello_cdev; static struct class *cls;
struct file_operations hello_fops = { .owner = THIS_MODULE, .open = hello_open, }; static int hello_open(struct inode *inode, struct file *file) { printk("hello_open\n"); return 0; }
3.注册
dev_t devid; if (major) { /* 主设备号已确定 */ devid = MKDEV(major, 0); register_chrdev_region(devid, HELLO_CNT, "hello"); } else { /* 主设备号为0,让系统自动为我们分配主设备号 */ alloc_chrdev_region(&devid, 0, HELLO_CNT, "hello"); major = MAJOR(devid); } cdev_init(&hello_cdev, &hello_fops); cdev_add(&hello_cdev, devid, HELLO_CNT);
cls = class_create(THIS_MODULE, "hello"); device_create(cls, NULL, MKDEV(major, 0), NULL, "hello0");// /dev/hello0 device_create(cls, NULL, MKDEV(major, 1), NULL, "hello1");// /dev/hello1
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。