我是靠谱客的博主 搞怪钻石,最近开发中收集的这篇文章主要介绍使用 module_param 和 module_param_array 向内核驱动传递参数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

对于如何向模块传递参数,Linux kernel 提供了一个简单的方法。

  • 宏定义
​kernel# include/linux/moduleparam.h

module_param(name, type, perm);        // 用于模块传递参数

module_param_array(para , type , &n_para , perm);   // 用于模块传递多个参数,传递的是数组

name:既是用户看到的参数名,又是模块内接受参数的变量

type: 表示参数类型,是下列之一:byte, short, ushort, int, uint, long, ulong, charp, bool, invbool

n_para:参数个数。这个变量其实无决定性作用,只要para数组大小够大,在插入模块的时候,输入的参数个数会改变n_para的值,最终传递数组元素个数存在n_para中。

perm: 指定了在sysfs中相应文件的访问权限,与linux文件访问权限相同的管理方式如0644;或使用stat.h中的宏如S_IRUGO表示。

 0    表示完全关闭在sysfs中相对应的项。
#define S_IRUSR    00400 文件所有者可读
#define S_IWUSR    00200 文件所有者可写
#define S_IXUSR    00100 文件所有者可执行
#define S_IRGRP    00040 与文件所有者同组的用户可读
#define S_IWGRP    00020
#define S_IXGRP    00010
#define S_IROTH    00004 与文件所有者不同组的用户可读
#define S_IWOTH    00002
#define S_IXOTH    00001

这些宏不会声明变量,因此在使用宏之前,必须声明变量(或加上头文件),典型地用法如下:

// 传递单个参数
static unsigned int int_var = 0;
module_param(int_var, uint, S_IRUGO);
insmod xxxx.ko int_var=x

// 传递多个参数
static int para[MAX_FISH];
static int n_para;
module_param_array(para , int , &n_para , S_IRUGO);  
  • 举例(网上摘抄一个例子)

驱动层代码如下:

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <asm/uaccess.h>
#include <asm/irq.h>
#include <asm/io.h>
#include <asm/arch/regs-gpio.h>
#include <asm/hardware.h>

static char *name = "Ocean";
static int count = 2;
static int para[8] = {1,2,3,4};
static int n_para = 1;

module_param(count, int, S_IRUGO);
module_param(name, charp, S_IRUGO);
module_param_array(para , int , &n_para , S_IRUGO);

static struct file_operations first_drv_fops={
    .owner = THIS_MODULE,
    .open = first_drv_open,
    .write = first_drv_write,
};

int first_drv_init(void)
{
    int i;
    printk("init first_drv drv!n");
    for (i = 0; i < count; i++)
        printk(KERN_ALERT "(%d) Hello, %s !n", i, name);
        
    for (i = 0; i < 8; i++)
        printk(KERN_ALERT "para[%d] : %d n", i, para[i]);
    for(i = 0; i < n_para; i++)
        printk(KERN_ALERT "para[%d] : %d n", i, para[i]);
    return 0;
}

void first_drv_exit(void)
{
    printk("exit first_drv drv!n");
}   

module_init(first_drv_init);
module_exit(first_drv_exit);

MODULE_AUTHOR("Ocean Byond");
MODULE_DESCRIPTION("my first char driver");
MODULE_LICENSE("GPL");

应用层使用如下:

编译成模块 test.ko
	1、数组大小为8,但只传入4个参数,则n_para=4
	insmod test.ko  name="ocean" count="3" para=8,7,6,5
	
	2、数组大小为8,但只传入8个参数,则n_para=8
	insmod test.ko  name="ocean" count="3" para=8,7,6,5,44,33,22,11
	
	3、数组大小为8,传入9个参数,数组不够大,无法传入
	insmod test.ko  name="ocean" count="3" para=8,7,6,5,44,33,22,11,88

最后

以上就是搞怪钻石为你收集整理的使用 module_param 和 module_param_array 向内核驱动传递参数的全部内容,希望文章能够帮你解决使用 module_param 和 module_param_array 向内核驱动传递参数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部