android:按键唤醒kernel系统-e3x0-button

源代码路径

https://android.googlesource.com/kernel/msm/+/android-4.4/drivers/input/misc/e3x0-button.c

 

android / kernel / msm / android-4.4 / . / drivers / input / misc / e3x0-button.c
/*
 * Copyright (c) 2014, National Instruments Corp. All rights reserved.
 *
 * Driver for NI Ettus Research USRP E3x0 Button Driver
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 */
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/interrupt.h>
#include <linux/of.h>
#include <linux/slab.h>
static irqreturn_t e3x0_button_release_handler(int irq, void *data)
{
	struct input_dev *idev = data;
	input_report_key(idev, KEY_POWER, 0);
	input_sync(idev);
	return IRQ_HANDLED;
}
static irqreturn_t e3x0_button_press_handler(int irq, void *data)
{
	struct input_dev *idev = data;
	input_report_key(idev, KEY_POWER, 1);
	pm_wakeup_event(idev->dev.parent, 0);
	input_sync(idev);
	return IRQ_HANDLED;
}
static int __maybe_unused e3x0_button_suspend(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	if (device_may_wakeup(dev))
		enable_irq_wake(platform_get_irq_byname(pdev, "press"));
	return 0;
}
static int __maybe_unused e3x0_button_resume(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	if (device_may_wakeup(dev))
		disable_irq_wake(platform_get_irq_byname(pdev, "press"));
	return 0;
}
static SIMPLE_DEV_PM_OPS(e3x0_button_pm_ops,
			 e3x0_button_suspend, e3x0_button_resume);
static int e3x0_button_probe(struct platform_device *pdev)
{
	struct input_dev *input;
	int irq_press, irq_release;
	int error;
	irq_press = platform_get_irq_byname(pdev, "press");
	if (irq_press < 0) {
		dev_err(&pdev->dev, "No IRQ for 'press', error=%d\n",
			irq_press);
		return irq_press;
	}
	irq_release = platform_get_irq_byname(pdev, "release");
	if (irq_release < 0) {
		dev_err(&pdev->dev, "No IRQ for 'release', error=%d\n",
			irq_release);
		return irq_release;
	}
	input = devm_input_allocate_device(&pdev->dev);
	if (!input)
		return -ENOMEM;
	input->name = "NI Ettus Research USRP E3x0 Button Driver";
	input->phys = "e3x0_button/input0";
	input->dev.parent = &pdev->dev;
	input_set_capability(input, EV_KEY, KEY_POWER);
	error = devm_request_irq(&pdev->dev, irq_press,
				 e3x0_button_press_handler, 0,
				 "e3x0-button", input);
	if (error) {
		dev_err(&pdev->dev, "Failed to request 'press' IRQ#%d: %d\n",
			irq_press, error);
		return error;
	}
	error = devm_request_irq(&pdev->dev, irq_release,
				 e3x0_button_release_handler, 0,
				 "e3x0-button", input);
	if (error) {
		dev_err(&pdev->dev, "Failed to request 'release' IRQ#%d: %d\n",
			irq_release, error);
		return error;
	}
	error = input_register_device(input);
	if (error) {
		dev_err(&pdev->dev, "Can't register input device: %d\n", error);
		return error;
	}
	platform_set_drvdata(pdev, input);
	device_init_wakeup(&pdev->dev, 1);
	return 0;
}
static int e3x0_button_remove(struct platform_device *pdev)
{
	device_init_wakeup(&pdev->dev, 0);
	return 0;
}
#ifdef CONFIG_OF
static const struct of_device_id e3x0_button_match[] = {
	{ .compatible = "ettus,e3x0-button", },
	{ }
};
MODULE_DEVICE_TABLE(of, e3x0_button_match);
#endif
static struct platform_driver e3x0_button_driver = {
	.driver		= {
		.name	= "e3x0-button",
		.of_match_table = of_match_ptr(e3x0_button_match),
		.pm	= &e3x0_button_pm_ops,
	},
	.probe		= e3x0_button_probe,
	.remove		= e3x0_button_remove,
};
module_platform_driver(e3x0_button_driver);
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Moritz Fischer <moritz.fischer@ettus.com>");
MODULE_DESCRIPTION("NI Ettus Research USRP E3x0 Button driver");
MODULE_ALIAS("platform:e3x0-button");
pm_wakeup_event(idev->dev.parent, 0);

if (device_may_wakeup(dev))
		enable_irq_wake(platform_get_irq_byname(pdev, "press"));
		enable_irq_wake(platform_get_irq_byname(pdev, "press"));
if (device_may_wakeup(dev))
		disable_irq_wake(platform_get_irq_byname(pdev, "press"));
		disable_irq_wake(platform_get_irq_byname(pdev, "press"));
device_init_wakeup(&pdev->dev, 1);
Subsystem / Driver control:
- device_init_wakeup(dev, bool)
- enable_irq_wake()
- disable_irq_wake()
设置设备是否支持唤醒功能,以及是否开启irq唤醒功能
When wakeup occurs (e.g. in ISR):
- pm_wakeup_event()
当中断发生时,调用此函数唤醒kernel
Enable / disable from user space:
- /sys/devices/.../power/wakeup
通过节点进行操作

 关于中断,FLAG:http://lkml.iu.edu/hypermail/linux/kernel/0908.1/02114.html

IRQF_ONESHOT,它允许驱动程序请求硬中断上下文处理程序执行之前,不会取消屏蔽中断,直到
已执行并且线程已被唤醒。意思就是:在中断被触发,中断处理线程唤醒之前的这个时间段,不会再次接收中断信号,避免中断嵌套

请注意,目前IRQF_ONESHOT不能与IRQF_SHARED一起使用。

这两个问题都涉及到了与 Perl 相关的模块依赖冲突。 对于第一个问题,错误消息指出 `perl-DBD-SQLite` 模块需要 Perl 的版本为 5.26,但系统中没有可用的符合此要求的 Perl 模块。类似地,第二个问题中的 `perl-DBI` 模块也需要 Perl 的版本为 5.26。 要解决这些问题,您可以尝试以下步骤: 1. 检查系统中是否已经安装了 Perl。您可以运行以下命令来验证 Perl 的安装情况: ``` perl -v ``` 如果 Perl 未安装,请使用适当的命令进行安装。根据您使用的操作系统,可能是: ``` sudo apt-get install perl ``` 或 ``` sudo yum install perl ``` 2. 如果 Perl 已经安装,但版本不符合要求,您可以尝试使用适当的包管理器来更新 Perl 到所需的版本。具体命令取决于您使用的操作系统和包管理器。例如,如果您使用的是 CentOS/RHEL 系统,并且使用的是 yum 包管理器,可以运行以下命令: ``` sudo yum update perl ``` 如果您使用的是 Ubuntu/Debian 系统,并且使用的是 apt-get 包管理器,可以运行以下命令: ``` sudo apt-get install perl ``` 3. 如果更新 Perl 不可行或者不适用于您的情况,请考虑使用其他方法来安装所需的 Perl 模块。您可以尝试使用 CPAN 或其他 Perl 模块管理工具来安装特定版本的模块。具体步骤取决于您使用的工具和模块。 至于第二个问题中提到的 `new-kernel-pkg`,根据错误消息,看起来这个包在系统中无法找到。这可能是因为您使用的包管理器不支持或没有安装该包。请确保您使用的是正确的包管理器,并且已经正确安装了该包。 如果问题仍然存在,请提供更多关于您使用的操作系统、包管理器和其他相关信息,以便我能够更好地帮助您解决问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值