Linux设备驱动程序第三版学习(1)-字符设备驱动程序源码分析

一、insmod模块时调用module_init(scull_init_module),就来看一下这个函数: int scull_init_module(void)

二、

 

至此初始化设备完了。

总结一下初始化模块的步骤(只考虑一般情况,不考虑SCULL的特例)。

Step 1:动态生成设备编号。此步骤的关键函数如下:

            int alloc_chrdev_region(dev_t *dev, unsigned int firstminor, unsigned int count, char *name);

Step 2:   分配一个字符设备结构。此步骤的关键函数如下:

             struct cdev *cdev_alloc(void);

           (在SCULL中,使用了kmalloc来为设备开辟内存)

Step 3:设备初始化添加该设备。此步骤的关键函数如下:

            void cdev_init(struct cdev *cdev,  struct file_operations *fops);
            int cdev_add(struct cdev *dev, dev_t num, unsigned int count);

Step2和Step3合起来称作“字符设备的注册

你可能感兴趣的:(linux)