blob: b3dd96d6448b324569bdf8dc64b2af6a50e40d58 [file] [log] [blame]
Felipe Balbi68d8bf02009-04-19 23:07:50 -07001/**
2 * twl4030-pwrbutton.c - TWL4030 Power Button Input Driver
3 *
4 * Copyright (C) 2008-2009 Nokia Corporation
5 *
6 * Written by Peter De Schrijver <peter.de-schrijver@nokia.com>
7 * Several fixes by Felipe Balbi <felipe.balbi@nokia.com>
8 *
9 * This file is subject to the terms and conditions of the GNU General
10 * Public License. See the file "COPYING" in the main directory of this
11 * archive for more details.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/input.h>
28#include <linux/interrupt.h>
29#include <linux/platform_device.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010030#include <linux/i2c/twl.h>
Felipe Balbi68d8bf02009-04-19 23:07:50 -070031
32#define PWR_PWRON_IRQ (1 << 0)
33
34#define STS_HW_CONDITIONS 0xf
35
36static irqreturn_t powerbutton_irq(int irq, void *_pwr)
37{
38 struct input_dev *pwr = _pwr;
39 int err;
40 u8 value;
41
Balaji T Kfc7b92f2009-12-13 21:23:33 +010042 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &value,
Felipe Balbi70f94412009-12-29 23:16:28 -080043 STS_HW_CONDITIONS);
Felipe Balbi68d8bf02009-04-19 23:07:50 -070044 if (!err) {
NeilBrown112b51c2012-07-29 22:25:51 -070045 pm_wakeup_event(pwr->dev.parent, 0);
Felipe Balbi68d8bf02009-04-19 23:07:50 -070046 input_report_key(pwr, KEY_POWER, value & PWR_PWRON_IRQ);
47 input_sync(pwr);
48 } else {
49 dev_err(pwr->dev.parent, "twl4030: i2c error %d while reading"
50 " TWL4030 PM_MASTER STS_HW_CONDITIONS register\n", err);
51 }
52
53 return IRQ_HANDLED;
54}
55
Markus Lehtonendda7b732010-07-07 09:45:18 -070056static int __init twl4030_pwrbutton_probe(struct platform_device *pdev)
Felipe Balbi68d8bf02009-04-19 23:07:50 -070057{
58 struct input_dev *pwr;
59 int irq = platform_get_irq(pdev, 0);
60 int err;
61
62 pwr = input_allocate_device();
63 if (!pwr) {
64 dev_dbg(&pdev->dev, "Can't allocate power button\n");
65 return -ENOMEM;
66 }
67
68 pwr->evbit[0] = BIT_MASK(EV_KEY);
69 pwr->keybit[BIT_WORD(KEY_POWER)] = BIT_MASK(KEY_POWER);
70 pwr->name = "twl4030_pwrbutton";
71 pwr->phys = "twl4030_pwrbutton/input0";
72 pwr->dev.parent = &pdev->dev;
73
Felipe Balbi70f94412009-12-29 23:16:28 -080074 err = request_threaded_irq(irq, NULL, powerbutton_irq,
Felipe Balbi68d8bf02009-04-19 23:07:50 -070075 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
76 "twl4030_pwrbutton", pwr);
77 if (err < 0) {
78 dev_dbg(&pdev->dev, "Can't get IRQ for pwrbutton: %d\n", err);
79 goto free_input_dev;
80 }
81
82 err = input_register_device(pwr);
83 if (err) {
84 dev_dbg(&pdev->dev, "Can't register power button: %d\n", err);
85 goto free_irq;
86 }
87
88 platform_set_drvdata(pdev, pwr);
89
90 return 0;
91
92free_irq:
Axel Lin5c9db642011-04-27 21:41:19 -070093 free_irq(irq, pwr);
Felipe Balbi68d8bf02009-04-19 23:07:50 -070094free_input_dev:
95 input_free_device(pwr);
96 return err;
97}
98
Markus Lehtonendda7b732010-07-07 09:45:18 -070099static int __exit twl4030_pwrbutton_remove(struct platform_device *pdev)
Felipe Balbi68d8bf02009-04-19 23:07:50 -0700100{
101 struct input_dev *pwr = platform_get_drvdata(pdev);
102 int irq = platform_get_irq(pdev, 0);
103
104 free_irq(irq, pwr);
105 input_unregister_device(pwr);
106
107 return 0;
108}
109
Markus Lehtonendda7b732010-07-07 09:45:18 -0700110static struct platform_driver twl4030_pwrbutton_driver = {
111 .remove = __exit_p(twl4030_pwrbutton_remove),
Felipe Balbi68d8bf02009-04-19 23:07:50 -0700112 .driver = {
113 .name = "twl4030_pwrbutton",
114 .owner = THIS_MODULE,
115 },
116};
Dmitry Torokhovd3d25802012-01-10 15:08:01 -0800117
118static int __init twl4030_pwrbutton_init(void)
119{
120 return platform_driver_probe(&twl4030_pwrbutton_driver,
121 twl4030_pwrbutton_probe);
122}
123module_init(twl4030_pwrbutton_init);
124
125static void __exit twl4030_pwrbutton_exit(void)
126{
127 platform_driver_unregister(&twl4030_pwrbutton_driver);
128}
129module_exit(twl4030_pwrbutton_exit);
Felipe Balbi68d8bf02009-04-19 23:07:50 -0700130
131MODULE_ALIAS("platform:twl4030_pwrbutton");
132MODULE_DESCRIPTION("Triton2 Power Button");
133MODULE_LICENSE("GPL");
134MODULE_AUTHOR("Peter De Schrijver <peter.de-schrijver@nokia.com>");
135MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");
136