如何使用linux内核模块获取盖子状态?

时间:2015-05-28 17:12:27

标签: linux linux-kernel linux-device-driver

我可以通过阅读/proc/acpi/button/lid/LID0/state文件来阅读笔记本电脑盖的状态。现在我想从内核模块中读取它。

我在内核源代码中找到了源文件drivers/acpi/button.c。但我仍然不明白如何使用它。它导出acpi_lid_notifier_register, acpi_lid_notifier_unregisteacpi_lid_open个函数。

如何为盖子状态编写模块?

1 个答案:

答案 0 :(得分:2)

acpi_lid_open返回0(已关闭),1(已打开)或否定错误编号(不支持)。

要使用通知程序,您需要在模块中定义回调函数和通知程序块:

static int yourmodule_lid_notify(struct notifier_block *nb, unsigned long val, void *unused) {
    // Whatever you wanted to do here
}
static struct notifier_block lid_notifier;

// Somewhere in a function, likely your module init function:
lid_notifier.notifier_call = yourmodule_lid_notify;
if (acpi_lid_notifier_register(&lid_notifier)) {
    // TODO: Handle the failure here
}

// TODO: Unregister the notifier when your module is unloaded:
acpi_lid_notifier_unregister(&lid_notifier);