linux中秒字符设备驱动(宋宝华设备驱动开发详解第10章)

from: http://blog.sina.com.cn/s/blog_95268f5001015mqb.html


1. secondchar.c:

#include <linux/module.h>
#include <linux/types.h>
#include <linux/fs.h>
#include <linux/device.h>//建立自动设备节点要包含的头文件
#include <linux/errno.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/cdev.h>
#include <asm/io.h>
//#include <asm/system.h>
#include <linux/slab.h>

#include <asm/uaccess.h>

#define SECOND_MAJOR 248
#define SECOND_MINOR 100

static struct class *firstdrv_class;//自动建立设备节点时要用到一个类
static int second_major = SECOND_MAJOR;//定义主设备号为248
static int second_minor = SECOND_MINOR;//定义次设备号为100

//设备结构体
struct second_dev 
{
 struct cdev cdev;
 atomic_t counter;//定义一个原子变量
 struct timer_list s_timer;//定义定时器结构体里面包含定时处理函数,定时到期时间等
};

struct second_dev *second_devp;//设备结构体指针
//定时器处理函数
static void second_timer_handle(unsigned long arg)
{
	mod_timer(&second_devp->s_timer,jiffies + HZ);//重新加载定时器的到期时间在原来基础上加多1s
	atomic_inc(&second_devp->counter);//原子变量值加1
	printk(KERN_NOTICE "current jiffies is %ld\n",jiffies);//打印,我们定时处理函数实现功能就是打印
}

int second_open(struct inode *inode,struct file *filp)//打开函数
{
	init_timer(&second_devp->s_timer);//初始化定时器
	second_devp->s_timer.function = &second_timer_handle;//指定定时处理函数
	second_devp->s_timer.expires = jiffies + HZ;//指定定时到期时间,在原来上1s后调用定时处理函数
	add_timer(&second_devp->s_timer);//将定时器加到内核动态定时器链表中,注册定时器
	atomic_set(&second_devp->counter,0);//初始化原子变量的值为0
	return 0;
}

//关闭文件
int second_release(struct inode *inode,struct file *filp)
{
	del_timer(&second_devp->s_timer);//删除定时器
	return 0;
}

static ssize_t second_read(struct file *filp,char __user *buf,size_t count,loff_t *ppos)
{
	int counter;
	counter = atomic_read(&second_devp->counter);//获得原子变量的值

	if(put_user(counter,(int *)buf))//put_user()实现内核->用户
		return -EFAULT;
	else
 		return sizeof(unsigned int);//返回字节
}

static const struct file_operations second_fops = {
 .owner = THIS_MODULE,
 .open  = second_open,
 .release = second_release,
 .read  = second_read,
};

//用于cdev初始化函数
static void second_setup_cdev(struct second_dev *dev,int index)
{
	int err,devno = MKDEV(second_major,index);//合并主次设备号
	cdev_init(&dev->cdev,&second_fops);//初始化设备(cdev),建立cdev和file_operations 连接
	dev->cdev.owner = THIS_MODULE;
	err = cdev_add(&dev->cdev,devno,1);//注册设备到内核

	if(err)
		printk(KERN_NOTICE "Error %d adding LED%d",err,index);
}

int second_init(void)
{
	int ret;
	dev_t devno = MKDEV(second_major,second_minor);//合并主次设备号为dev_t格式

	if(second_major)
	 ret = register_chrdev_region(devno,1,"second");//申请设备号
	else
	{
	 ret = alloc_chrdev_region(&devno, 0, 1, "second");//动态申请设备号
	 second_major = MAJOR(devno);//获得主设备号
	 second_minor = MINOR(devno);
	}

	if(ret < 0)
		return ret;

	 firstdrv_class = class_create(THIS_MODULE, "second_major");//建立firstdrv这个类
	 device_create(firstdrv_class,NULL,devno,NULL,"second");//自动创建设备节点/dev/second

	second_devp = kmalloc(sizeof(struct second_dev),GFP_KERNEL);//动态申请设备结构体内存
	if(!second_devp)
	{
		 ret = -ENOMEM;
		 goto fail_malloc;
	}
	memset(second_devp,0,sizeof(struct second_dev));//清除设备结构体内存
	second_setup_cdev(second_devp,second_minor);//初始化cdev
	return 0;

	fail_malloc:
	 unregister_chrdev_region(devno, 1);
	 return ret;
}

void second_exit(void)
{
	cdev_del(&second_devp->cdev);//注销cdev
	kfree(second_devp);//释放设备结构体内存
	unregister_chrdev_region(MKDEV(second_major,second_minor),1);//释放设备号
	device_destroy(firstdrv_class,MKDEV(second_major,second_minor));
	class_destroy(firstdrv_class);//释放这个类,干掉它
}

MODULE_LICENSE("Dual BSD/GPL");
module_init(second_init);
module_exit(second_exit);
 

2. test.c:

<span style="font-size:18px;">#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
	int fd;
	int counter = 0;
	int old_counter = 0;
	fd = open("/dev/second",O_RDONLY);//打开设备
	if(fd != -1)
	{
		 while(1)
		 {
			  read(fd,&counter,sizeof(unsigned int));//从fd指向描述符中读取sizeof(unsigned int)字节到counter
			  if(counter != old_counter) //是否等于old_counter
			  {
				   printf("seconds after open /dev/second : %d\n",counter);
				   old_counter = counter;//这样的话就同步了
			  }
		 }
	}
	else
	{
		printf("Device open failure\n");
	}
}</span>


3. 测试:

insmod secondchar.ko; 

sudo ./test 输出如下:


注意:上面insmod secondchar.ko后会自动创建设备节点:/dev/second

等价于:mknod /dev/second c 248 100


自动创建设备节点:

从linux内核2.6的某个版本之后,devfs不复存在,udev成为devfs的替代。相比devfs,udev有很多优势,
在此就不罗嗦了,提醒一点,udev是应用层的东东,不要试图在内核的配置选项里找到它;加入对udev的
支持很简单,以作者所写的一个字符设备驱动为例,在驱动初始化的代码里调用class_create为该设备
创建一个class,再为每个设备调用 class_device_create创建对应的设备。大致用法如下:
struct class *myclass = class_create(THIS_MODULE, “my_device_driver”);
class_device_create(myclass, NULL, MKDEV(major_num, 0), NULL, “my_device”);
这样的module被加载时,udev daemon就会自动在/dev下创建my_device设备文件

class_create()
-------------------------------------------------
linux-2.6.22/include/linux/device.h
struct class *class_create(struct module *owner, const char *name)
    class_create - create a struct class structure
    @owner: pointer to the module that is to "own" this struct class
    @name: pointer to a string for the name of this class.
在/sys/class/下创建类目录



class_device_create()
-------------------------------------------------
linux-2.6.22/include/linux/device.h
struct class_device *class_device_create(struct class        *cls,
                                         struct class_device *parent,
                                         dev_t               devt,
                                         struct device       *device,
                                         const char          *fmt, ...)

    class_device_create - creates a class device and registers it with sysfs
    @cls: pointer to the struct class that this device should be registered to.
    @parent: pointer to the parent struct class_device of this new device, if any.
    @devt: the dev_t for the char device to be added.
    @device: a pointer to a struct device that is assiociated with this class device.
    @fmt: string for the class device's name

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值