在很多情况下,在加载驱动时我们需要接收外部的指令。我们可以通过加载模块传递参数的方式实现。在驱动中,通过“module_param(参数名,参数类型,参数读/写权限)”为模块定义一个参数,在加载模块时,向其传递参数。如果不传递,则参数为驱动中定义的默认值。 参数类型可以是 byte、short、ushort、int、uint、long、ulong、charp(字符指针)、bool 或 invbool(布尔的反),在模块被编译时会将module_param中声明的类型与变量定义的类型进行比较,判断是否一致。 在上一章节编写的hello x4412驱动模块中,修改hello-x4412.c文件,内容如下: - #include <linux/module.h>
- #include <linux/init.h>
-
- static char *str = "This is a simple character driver";
- static int count = 12345;
-
- module_param(str,charp,0644);
- MODULE_PARM_DESC(str,"a string variable");
-
- module_param(count,int,0644);
- MODULE_PARM_DESC(str,"a integer variable");
-
- static int __devinit hello_x4412_init(void)
- {
- printk("string:%s\r\n",str);
- printk("count:%d\r\n",count);
- return 0;
- }
-
- static void hello_x4412_exit(void)
- {
- printk("Goodbye,x4412!\r\n");
- }
-
- module_init(hello_x4412_init);
- module_exit(hello_x4412_exit);
-
- MODULE_LICENSE("GPL");
- MODULE_VERSION("1.0");
- MODULE_AUTHOR("www.9tripod.com");
- MODULE_ALIAS("a character driver sample");
- MODULE_DESCRIPTION("hello x4412 driver");
复制代码 程序清单定义了两个默认的参数str和count,初赋予了默认的值。我们编译成KO文件后,不传递任何参数加载模块: - [root@x4412 mnt]# insmod hello-x4412.ko
- [ 1461.196000] string:This is a simple character driver
- [ 1461.199606] count:12345
- [root@x4412 mnt]#
复制代码 传递参数加载模块: - [root@x4412 mnt]# rmmod hello-x4412.ko
- [ 1746.059685] Goodbye,x4412!
- [root@x4412 mnt]# insmod hello-x4412.ko str='www.9tripod.com' count=54321
- [ 1786.885420] string:www.9tripod.com
- [ 1786.887461] count:54321
- [root@x4412 mnt]#
复制代码 可见,在加载模块时我们定义的str字符串和整形变量count被传进内核,并打印出来了。
附做好的hello-x4412.ko文件,可直接在x4412开发板或ibox卡片电脑上测试:
hello-x4412.ko
(3.34 KB, 下载次数: 5)
|