0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

Openwrt开发指南 第16章 驱动开发之字符设备驱动程序框架

嵌入式大杂烩 来源:嵌入式大杂烩 作者:嵌入式大杂烩 2023-06-30 09:01 次阅读

1 字符设备驱动程序框架简介

我们在学习 C 语言的时候,知道每个应用程序的入口函数,即第一个被执行的函数是 main函数,那么,我们自己的驱动程序,哪个函数是入口函数呢?

在写驱动程序的时候,如果函数的名字可以任意取,常常为 xxxx_init(),当实现好这个 xxxx_init()函数以后,内核其实并不知道这个就是我们驱动的入口函数,因此我们要想办法告诉内核,我们的入口函数是哪个?我们通过 module_init()函数来告诉内核,具体如下。

module_init(RT5350_drv_init);

通过上面的修饰以后, RT5350_drv_init()这个函数就变成了我们的驱动程序的入口函数了。当然,有入口函数,自然还需要一个出口函数,我们通过 module_exit()函数来告诉内核,具体如下。

module_exit(RT5350_drv_exit);

从上一章中,我们知道,应用程序是通过 open、read、write ...函数来和我们的驱动程序进行交互的,那么我们的驱动程序是怎么给应用程序提供这些接口的呢?我们在写驱动程序的时候,我们首先需要定义出一个 file_operations 结构体,该结构体便是驱动和应用程序交互的接口。具体定义如下。

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);
};

我们的驱动程序要给应用程序提供哪些接口,就只需要填充相应的成员即可。比如我们想提供 open、read、write 这三个接口,就应该如下定义。

static struct file_operations RT5350_drv_fops = {
.owner = THIS_MODULE, /*这是一个宏,推向编译模块时自动创建的__this_module 变量 */
.open = RT5350_drv_open,
.read = RT5350_drv_read,
.write = RT5350_drv_write,
};

当 file_operations 结构体定义、设置好以后,我们只需要通过 register_chrdev()函数将该机构图注册进内核即可。

2 字符设备驱动程序框架实现

经过前面部分的讲解,相信大家一定对如何写一个自己的驱动程序,有所感悟了。接下来,给大家一个简单的驱动程序的例子,可以用于作为框架模板,以后的驱动都可以基于该驱动进行修改。

#include < linux/mm.h >
#include < linux/miscdevice.h >
#include < linux/slab.h >
#include < linux/vmalloc.h >
#include < linux/mman.h >
#include < linux/random.h >
#include < linux/init.h >
#include < linux/raw.h >
#include < linux/tty.h >
#include < linux/capability.h >
#include < linux/ptrace.h >
#include < linux/device.h >
#include < linux/highmem.h >
#include < linux/crash_dump.h >
#include < linux/backing-dev.h >
#include < linux/bootmem.h >
#include < linux/splice.h >
#include < linux/pfn.h >
#include < linux/export.h >
#include < linux/io.h >
#include < linux/aio.h >
#include < linux/kernel.h >
#include < linux/module.h >

#include < asm/uaccess.h >

#define DEVICE_NAME     "RT5350"  /* 加载模式后,执行”cat /proc/devices”命令看到的设备名称 */
#define RT5350_MAJOR       0       /* 主设备号 */

static struct class *RT5350_drv_class;

static int RT5350_drv_open(struct inode *inode, struct file *file)
{
	printk("%s:Hello RT5350
", __FUNCTION__);	// printk用于驱动中添加打印,用法和应用程序中的printf一样

	return 0;
}

static ssize_t RT5350_drv_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
{
	printk("%s:Hello RT5350
", __FUNCTION__);	// printk用于驱动中添加打印,用法和应用程序中的printf一样

	return 0;
}

static ssize_t RT5350_drv_write(struct file *file, const char __user *buf, size_t size, loff_t *ppos)
{
	printk("%s:Hello RT5350
", __FUNCTION__);	// printk用于驱动中添加打印,用法和应用程序中的printf一样

	return 0;
}

/* 这个结构是字符设备驱动程序的核心
** 当应用程序操作设备文件时所调用的open、read、write等函数,
** 最终会调用这个结构中指定的对应函数
**/
static struct file_operations RT5350_drv_fops = {
	.owner  	= THIS_MODULE,    /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
	.open   	= RT5350_drv_open,     
	.read	= RT5350_drv_read,	   
	.write	= RT5350_drv_write,	   
};

int major;
/*
** 执行insmod命令时就会调用这个函数 
*/
static int __init RT5350_drv_init(void)
{
	/* 注册字符设备
	** 这步是写字符设备驱动程序所必须的
	** 参数为主设备号、设备名字、file_operations结构;
	** 这样,主设备号就和具体的file_operations结构联系起来了,
	** 操作主设备为RT5350_MAJOR的设备文件时,就会调用RT5350_drv_fops中的相关成员函数
	** RT5350_MAJOR可以设为0,表示由内核自动分配主设备号
	*/
	major = register_chrdev(RT5350_MAJOR, DEVICE_NAME, &RT5350_drv_fops);
	if (major < 0)
	{
		printk(DEVICE_NAME " can't register major number
");
		return major;
	}

	/*
	** 以下两行代码用于创建设备节点,是必须的。
	** 当然,如果不写这两行,那么就必须在linux系统命令行中通过mknod这个命令来创建设备节点
	*/
	/* 创建类 */
	RT5350_drv_class = class_create(THIS_MODULE, "RT5350");
	/* 类下面创建设备节点 */
	device_create(RT5350_drv_class, NULL, MKDEV(major, 0), NULL, "RT5350");		// /dev/RT5350

	/*
	** 打印一个调试信息
	*/
	printk("%s:Hello RT5350
", __FUNCTION__);	// printk用于驱动中添加打印,用法和应用程序中的printf一样

	return 0;
}

/*
 * 执行rmmod命令时就会调用这个函数 
 */
static void __exit RT5350_drv_exit(void)
{
	unregister_chrdev(major, "RT5350");		// 与入口函数的register_chrdev函数配对使用
	device_destroy(RT5350_drv_class, MKDEV(major, 0));	// 与入口函数的device_create函数配对使用
	class_destroy(RT5350_drv_class);	// 与入口函数的class_create函数配对使用

	printk("%s:Hello RT5350
", __FUNCTION__);	// printk用于驱动中添加打印,用法和应用程序中的printf一样
}

/* 这两行指定驱动程序的初始化函数和卸载函数 */
module_init(RT5350_drv_init);
module_exit(RT5350_drv_exit);

/* 描述驱动程序的一些信息,不是必须的 */
MODULE_AUTHOR("BruceOu");
MODULE_VERSION("0.1.0");
MODULE_DESCRIPTION("RT5350 FIRST Driver");
MODULE_LICENSE("GPL");
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • C语言
    +关注

    关注

    180

    文章

    7597

    浏览量

    136110
  • 驱动程序
    +关注

    关注

    19

    文章

    823

    浏览量

    47948
  • 函数
    +关注

    关注

    3

    文章

    4303

    浏览量

    62408
  • 驱动开发
    +关注

    关注

    0

    文章

    130

    浏览量

    12061
  • OpenWrt
    +关注

    关注

    10

    文章

    127

    浏览量

    39261
收藏 人收藏

    评论

    相关推荐

    pcie设备驱动程序安装步骤

    PCIe(Peripheral Component Interconnect Express)是一种高速串行计算机扩展总线标准,用于计算机内部硬件组件之间的连接。安装PCIe设备驱动程序是确保硬件
    的头像 发表于 11-13 10:32 175次阅读

    迅为iTOP-RK3568开发驱动开发指南-第十八篇 PWM

    实验 11 创建设备节点实验 12 字符设备
    发表于 10-29 10:13

    文档更新 | 迅为RK3568驱动指南-第十七篇(串口)

    框架编写 172 使用C文件编写I2C client代码 173 完善FT5X06设备
    发表于 09-24 10:42

    Linux设备驱动程序分类有哪些

    Linux设备驱动程序是操作系统与硬件设备之间的桥梁,负责实现硬件设备与操作系统之间的通信和控制。Linux设备
    的头像 发表于 08-30 15:11 424次阅读

    linux驱动程序如何加载进内核

    在Linux系统中,驱动程序是内核与硬件设备之间的桥梁。它们允许内核与硬件设备进行通信,从而实现对硬件设备的控制和管理。 驱动程序的编写
    的头像 发表于 08-30 15:02 369次阅读

    【好书推荐】RT-Thread设备驱动开发指南

    强烈,他们迫切地希望有一本可以指导他们在RT-Thread上开发驱动指南。为了解决开发者的燃眉急,《RT-Thread
    的头像 发表于 08-01 08:35 512次阅读
    【好书推荐】RT-Thread<b class='flag-5'>设备</b><b class='flag-5'>驱动</b><b class='flag-5'>开发指南</b>

    文档更新 |迅为 RK3568开发驱动指南-第十五/十六篇

    i2cget 180.2.5 i2ctransfer 181 使用GPIO模拟I2C驱动 181.1 设备树的修改 181.2编写驱动程序
    发表于 07-08 11:04

    Framebuffer 驱动程序框架

    1. 怎么编写字符设备驱动程序设备号 构造 file_operations 结构体,填充 open/read/write 等成员函数 注册驱动
    的头像 发表于 05-11 08:49 736次阅读
    Framebuffer <b class='flag-5'>驱动程序</b><b class='flag-5'>框架</b>

    ArmSoM系列板卡 嵌入式Linux驱动开发实战指南 字符设备驱动

    字符设备驱动 本章,我们将学习字符设备使用、字符设备
    的头像 发表于 04-10 09:53 1000次阅读
    ArmSoM系列板卡 嵌入式Linux<b class='flag-5'>驱动</b><b class='flag-5'>开发</b>实战<b class='flag-5'>指南</b> <b class='flag-5'>之</b> <b class='flag-5'>字符</b><b class='flag-5'>设备</b><b class='flag-5'>驱动</b>

    怎么编写Framebuffer驱动程序

    Framebuffer 驱动程序框架 分为上下两层: fbmem.c:承上启下 实现、注册 file_operations 结构体 把 APP 的调用向下转发到具体的硬件驱动程序
    的头像 发表于 03-22 09:13 513次阅读
    怎么编写Framebuffer<b class='flag-5'>驱动程序</b>

    RT-Thread驱动开发指南进阶篇-动手驱动先楫未适配的外设LCD

    经过上一篇的《《RT-Thread设备驱动开发指南》基础篇--以先楫bsp的hwtimer设备为例》阐述,可以大致了解到RT-thread设备
    的头像 发表于 02-25 11:04 2276次阅读
    RT-Thread<b class='flag-5'>驱动</b><b class='flag-5'>开发指南</b>进阶篇-动手<b class='flag-5'>驱动</b>先楫未适配的外设LCD

    《RT-Thread设备驱动开发指南》基础篇--以先楫bsp的hwtimer设备为例

    一、概述(一)RT-Thread设备驱动《RT-Thread设备驱动开发指南》书籍是RT-thread官方出品撰写,系统讲解RT-threa
    的头像 发表于 02-24 08:16 1387次阅读
    《RT-Thread<b class='flag-5'>设备</b><b class='flag-5'>驱动</b><b class='flag-5'>开发指南</b>》基础篇--以先楫bsp的hwtimer<b class='flag-5'>设备</b>为例

    迅为RK3568开发驱动开发指南-输入子系统

    迅为RK3568开发驱动开发指南-输入子系统
    的头像 发表于 02-23 15:11 780次阅读
    迅为RK3568<b class='flag-5'>开发</b>板<b class='flag-5'>驱动</b><b class='flag-5'>开发指南</b>-输入子系统

    RT-Thread设备驱动开发指南基础篇—以先楫bsp的hwtimer设备为例

    RT-Thread设备驱动开发指南》书籍是RT-thread官方出品撰写,系统讲解RT-thread IO设备驱动
    的头像 发表于 02-20 16:01 1591次阅读
    RT-Thread<b class='flag-5'>设备</b><b class='flag-5'>驱动</b><b class='flag-5'>开发指南</b>基础篇—以先楫bsp的hwtimer<b class='flag-5'>设备</b>为例

    linux驱动程序的主要流程和功能

    驱动程序是用于控制和管理硬件设备的软件模块,它主要负责与设备进行交互,通过操作设备的寄存器和接口,实现对硬件的控制和访问。在Linux系统中,驱动程
    的头像 发表于 12-08 14:56 2213次阅读