为什么加载它时这个内核模块什么都不做?
#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#define DEVICE_NAME "hello-1.00.a"
#define DRIVER_NAME "hello"
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(struct platform_device *pdev){
printk(KERN_ALERT "Hello, world\n");
return 0;
}
static int hello_exit(struct platform_device *pdev){
printk(KERN_ALERT "Goodbye, cruel world\n");
return 0;
}
static const struct of_device_id myled_of_match[] =
{
{.compatible = DEVICE_NAME},
{},
};
MODULE_DEVICE_TABLE(of, myled_of_match);
static struct platform_driver hello_driver =
{
.driver = {
.name = DRIVER_NAME,
.owner = THIS_MODULE,
.of_match_table = myled_of_match
},
.probe = hello_init,
.remove = hello_exit
};
module_platform_driver(hello_driver);
必须打印Hello, world\n
,如果我lsmod
模块似乎已加载:
lsmod
hello_world 1538 0 - Live 0xbf000000 (O)
但是在控制台和dmesg
中都没有打印任何内容。
如果我使用module_init
和module_exit
一切正常,但我需要指针platform_device *pdev
到设备,我该怎么办?
编辑:
原始模块如下所示:
#include <linux/init.h>
#include <linux/module.h>
static int hello_init(void){
printk(KERN_ALERT "Hello, world\n");
return 0;
}
static void hello_exit(void){
printk(KERN_ALERT "Goodbye, cruel world\n");
}
module_init(hello_init);
module_exit(hello_exit);
在我的设备树中,blob出现在此条目中:
hello {
compatible = "dglnt,hello-1.00.a";
reg = <0x41220000 0x10000>;
};
答案 0 :(得分:5)
如果我使用module_init和module_exit都可以
那短暂的&#34;原创&#34;代码只包含模块框架。保证在加载模块时调用init例程,并在卸载之前调用exit例程。那&#34;原创&#34;代码不是驱动程序。
较长的内核模块是一个驱动程序并且正在加载,但由于它具有无效的默认init和退出代码(由 module_platform_driver()宏的扩展生成),没有消息。当内核使用设备树时,不保证可以调用可加载模块中的驱动程序代码。
为什么这个内核模块在加载它时什么都不做?
驱动程序的探测功能(可以输出消息)可能没有被调用,因为您的设备树中没有任何内容表明需要此设备驱动程序。
电路板设备树的片段
compatible = "dglnt,hello-1.00.a";
但是驱动程序声明它应该指定为
#define DEVICE_NAME "hello-1.00.a"
...
{.compatible = DEVICE_NAME},
这些字符串应匹配,以便驱动程序可以在“设备树”节点中与此引用的设备绑定。
此外,设备节点应声明为
status = "okay";
覆盖可能会禁用设备的任何默认状态。
设备树中正确配置的节点应该使驱动程序的探测功能按预期执行。