從零開始寫linux字符設(shè)備驅(qū)動(dòng)程序(三)(基于友善之臂tiny4412開發(fā)板)
這一節(jié),我們?cè)賮砜纯葱碌闹R(shí)點(diǎn),這一次,我們將進(jìn)一步完善這個(gè)字符設(shè)備的驅(qū)動(dòng)程序。
首先,將上一節(jié)的代碼做下修改:
#include <linux/init.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/cdev.h>
#include <linux/fs.h>
#include <linux/slab.h>
//創(chuàng)建一個(gè)字符設(shè)備
struct char_dev
{
struct cdev c_dev ;
dev_t dev_num ;
char buf[1024];
};
int my_open()
{
printk("cdev open");
}
int my_close()
{
printk("cdev del");
}
struct file_operations my_ops = {
.open = my_open,
.release = my_close ,
};
struct char_dev *test_dev ;
static int __init cdev_test_init(void)
{
int ret ;
//1、給字符設(shè)備結(jié)構(gòu)分配內(nèi)存
test_dev = kmalloc(sizeof(*test_dev),GFP_KERNEL);
if(!test_dev){
ret = -ENOMEM ;
goto malloc_dev_fair;
}
//2、申請(qǐng)?jiān)O(shè)備號(hào)并注冊(cè)字符設(shè)備
ret = alloc_chrdev_region(&test_dev->dev_num,1,1,"test_dev");
if(ret < 0){
goto alloc_chrdev_fair ;
}
//3、初始化字符設(shè)備
cdev_init(&test_dev->dev_num , &my_ops);
//4、添加一個(gè)字符設(shè)備
ret = cdev_add(&test_dev->c_dev,test_dev->dev_num,1);
if(ret < 0){
goto cdev_add_fair;
}
my_open();
return 0 ;
cdev_add_fair:
return ret ;
malloc_dev_fair :
return ret ;
alloc_chrdev_fair :
return ret ;
}
static int __exit cdev_test_exit(void)
{
//刪除設(shè)備
cdev_del(&test_dev->c_dev);
//注銷驅(qū)動(dòng)-->后面寫1表示從dev_no開始連續(xù)一個(gè)
unregister_chrdev_region(test_dev->dev_num,1);
return 0 ;
}
module_init(cdev_test_init);
module_exit(cdev_test_exit);
MODULE_LICENSE("GPL");
在代碼中,我們要實(shí)現(xiàn)一個(gè)虛擬的字符設(shè)備,這個(gè)設(shè)備很簡(jiǎn)單,只不過更加豐富了。
我們首先創(chuàng)建一個(gè)字符設(shè)備,用一個(gè)結(jié)構(gòu)體char_dev來表示。
對(duì)結(jié)構(gòu)體分配內(nèi)存,然后申請(qǐng)?jiān)O(shè)備號(hào)并注冊(cè),最后初始化,再將這個(gè)字符設(shè)備加到內(nèi)核里去,一旦這些操作成功后,將調(diào)用my_open函數(shù)。
這就是一個(gè)字符設(shè)備的最基本構(gòu)成。
上節(jié)我們已經(jīng)說過alloc_chrdev_region這個(gè)函數(shù)的作用。
那么這節(jié)多了file_operations這個(gè)結(jié)構(gòu)體,它的功能是什么?
當(dāng)一個(gè)字符設(shè)備被注冊(cè)后,我們隨即就要來操作這個(gè)字符設(shè)備,open , read , write , close等操作。
如下代碼:
struct file_operations {
struct module *owner;
loff_t (*llseek) (struct file *, loff_t, int);
ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
int (*readdir) (struct file *, void *, filldir_t);
unsigned int (*poll) (struct file *, struct poll_table_struct *);
long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
int (*mmap) (struct file *, struct vm_area_struct *);
int (*open) (struct inode *, struct file *);
int (*flush) (struct file *, fl_owner_t id);
int (*release) (struct inode *, struct file *);
int (*fsync) (struct file *, loff_t, loff_t, int datasync);
int (*aio_fsync) (struct kiocb *, int datasync);
int (*fasync) (int, struct file *, int);
int (*lock) (struct file *, int, struct file_lock *);
ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
int (*check_flags)(int);
int (*flock) (struct file *, int, struct file_lock *);
ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
int (*setlease)(struct file *, long, struct file_lock **);
long (*fallocate)(struct file *file, int mode, loff_t offset,
loff_t len);
};
那么內(nèi)核是如何去識(shí)別相應(yīng)的函數(shù)呢?
是通過系統(tǒng)調(diào)用
在上層應(yīng)用程序,打個(gè)比方。
通過open()打印相應(yīng)的設(shè)備,那么syscall函數(shù)就會(huì)通過系統(tǒng)調(diào)用號(hào)識(shí)別到內(nèi)核態(tài)里的函數(shù),進(jìn)而調(diào)用到我們這里實(shí)現(xiàn)的my_open,這就是內(nèi)核態(tài)和用戶態(tài)相互溝通的方式。
這里我就不去寫相應(yīng)的應(yīng)用程序了,以前也寫過了,我就直接將open函數(shù)調(diào)用放在init函數(shù),隨著字符設(shè)備注冊(cè)并執(zhí)行。
這樣將zImage下載到開發(fā)板上,串口上也是可以打印cdev_open的。
不知道怎么用應(yīng)用程序去讀寫設(shè)備的可以參考以下文章:
http://blog.csdn.NET/morixinguan/article/details/50619675
接下來看看本節(jié)使用的函數(shù):
void cdev_init(struct cdev *, const struct file_operations *);
int cdev_add(struct cdev *, dev_t, unsigned);
void cdev_del(struct cdev *);
static __always_inline void *kmalloc(size_t size, gfp_t flags);
留心的小伙伴會(huì)發(fā)現(xiàn),在exit函數(shù)中,我沒有對(duì)內(nèi)存進(jìn)行釋放,這里是故意這么做的,為了提醒粗心的伙伴,在內(nèi)核中,分配的內(nèi)存一定要釋放的。
釋放調(diào)用函數(shù):
void kfree(const void *objp)
免責(zé)聲明:本文內(nèi)容由21ic獲得授權(quán)后發(fā)布,版權(quán)歸原作者所有,本平臺(tái)僅提供信息存儲(chǔ)服務(wù)。文章僅代表作者個(gè)人觀點(diǎn),不代表本平臺(tái)立場(chǎng),如有問題,請(qǐng)聯(lián)系我們,謝謝!