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

How to get lid state using linux kernel module?

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

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

如何编写lid state的模块?

acpi_lid_open returns 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);