]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/i2c/chips/twl4030-pwrbutton.c
Merge current mainline tree into linux-omap tree
[linux-2.6-omap-h63xx.git] / drivers / i2c / chips / twl4030-pwrbutton.c
1 /**
2  * drivers/i2c/chips/twl4030-pwrbutton.c
3  *
4  * Driver for sending triton2 power button event to input-layer
5  *
6  * Copyright (C) 2008 Nokia Corporation
7  *
8  * Written by Peter De Schrijver <peter.de-schrijver@nokia.com>
9  *
10  * This file is subject to the terms and conditions of the GNU General
11  * Public License. See the file "COPYING" in the main directory of this
12  * archive for more details.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/errno.h>
28 #include <linux/input.h>
29 #include <linux/interrupt.h>
30 #include <linux/i2c/twl4030.h>
31
32
33 #define PWR_PWRON_IRQ (1<<0)
34
35 #define STS_HW_CONDITIONS 0xf
36
37
38 /* FIXME have this constant delivered to us as part of the
39  * twl4030-core setup ...
40  */
41 #define TWL4030_PWRIRQ_PWRBTN   (TWL4030_PWR_IRQ_BASE + 0)
42
43 static struct input_dev *powerbutton_dev;
44
45 static irqreturn_t powerbutton_irq(int irq, void *dev_id)
46 {
47         int err;
48         u8 value;
49
50 #ifdef CONFIG_LOCKDEP
51         /* WORKAROUND for lockdep forcing IRQF_DISABLED on us, which
52          * we don't want and can't tolerate.  Although it might be
53          * friendlier not to borrow this thread context...
54          */
55         local_irq_enable();
56 #endif
57
58         err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &value,
59                                   STS_HW_CONDITIONS);
60         if (!err)  {
61                 input_report_key(powerbutton_dev, KEY_POWER,
62                                  value & PWR_PWRON_IRQ);
63         } else {
64                 pr_err("twl4030: i2c error %d while reading TWL4030"
65                         " PM_MASTER STS_HW_CONDITIONS register\n", err);
66         }
67
68         return IRQ_HANDLED;
69 }
70
71 static int __init twl4030_pwrbutton_init(void)
72 {
73         int err = 0;
74
75         /* PWRBTN == PWRON */
76         err = request_irq(TWL4030_PWRIRQ_PWRBTN, powerbutton_irq,
77                         IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
78                         "PwrButton", NULL);
79         if (err < 0) {
80                 pr_debug("Can't get IRQ for power button: %d\n", err);
81                 goto out;
82         }
83
84         powerbutton_dev = input_allocate_device();
85         if (!powerbutton_dev) {
86                 pr_debug("Can't allocate power button\n");
87                 err = -ENOMEM;
88                 goto free_irq_and_out;
89         }
90
91         powerbutton_dev->evbit[0] = BIT_MASK(EV_KEY);
92         powerbutton_dev->keybit[BIT_WORD(KEY_POWER)] = BIT_MASK(KEY_POWER);
93         powerbutton_dev->name = "triton2-pwrbutton";
94
95         err = input_register_device(powerbutton_dev);
96         if (err) {
97                 pr_debug("Can't register power button: %d\n", err);
98                 goto free_input_dev;
99         }
100
101         printk(KERN_INFO "triton2 power button driver initialized\n");
102
103         return 0;
104
105
106 free_input_dev:
107         input_free_device(powerbutton_dev);
108 free_irq_and_out:
109         free_irq(TWL4030_PWRIRQ_PWRBTN, NULL);
110 out:
111         return err;
112 }
113 module_init(twl4030_pwrbutton_init);
114
115 static void __exit twl4030_pwrbutton_exit(void)
116 {
117         free_irq(TWL4030_PWRIRQ_PWRBTN, NULL);
118         input_unregister_device(powerbutton_dev);
119         input_free_device(powerbutton_dev);
120 }
121 module_exit(twl4030_pwrbutton_exit);
122
123 MODULE_DESCRIPTION("Triton2 Power Button");
124 MODULE_LICENSE("GPL");
125 MODULE_AUTHOR("Peter De Schrijver");
126