2 * Texas Instruments' TPS65217 and TPS65218 Power Button Input Driver
4 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
5 * Author: Felipe Balbi <balbi@ti.com>
6 * Author: Marcin Niestroj <m.niestroj@grinn-global.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/init.h>
19 #include <linux/input.h>
20 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/mfd/tps65217.h>
23 #include <linux/mfd/tps65218.h>
24 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/regmap.h>
28 #include <linux/slab.h>
30 struct tps6521x_data
{
31 unsigned int reg_status
;
36 static const struct tps6521x_data tps65217_data
= {
37 .reg_status
= TPS65217_REG_STATUS
,
38 .pb_mask
= TPS65217_STATUS_PB
,
39 .name
= "tps65217_pwrbutton",
42 static const struct tps6521x_data tps65218_data
= {
43 .reg_status
= TPS65218_REG_STATUS
,
44 .pb_mask
= TPS65218_STATUS_PB_STATE
,
45 .name
= "tps65218_pwrbutton",
48 struct tps6521x_pwrbutton
{
50 struct regmap
*regmap
;
51 struct input_dev
*idev
;
52 const struct tps6521x_data
*data
;
56 static const struct of_device_id of_tps6521x_pb_match
[] = {
57 { .compatible
= "ti,tps65217-pwrbutton", .data
= &tps65217_data
},
58 { .compatible
= "ti,tps65218-pwrbutton", .data
= &tps65218_data
},
61 MODULE_DEVICE_TABLE(of
, of_tps6521x_pb_match
);
63 static irqreturn_t
tps6521x_pb_irq(int irq
, void *_pwr
)
65 struct tps6521x_pwrbutton
*pwr
= _pwr
;
66 const struct tps6521x_data
*tps_data
= pwr
->data
;
70 error
= regmap_read(pwr
->regmap
, tps_data
->reg_status
, ®
);
72 dev_err(pwr
->dev
, "can't read register: %d\n", error
);
76 if (reg
& tps_data
->pb_mask
) {
77 input_report_key(pwr
->idev
, KEY_POWER
, 1);
78 pm_wakeup_event(pwr
->dev
, 0);
80 input_report_key(pwr
->idev
, KEY_POWER
, 0);
83 input_sync(pwr
->idev
);
89 static int tps6521x_pb_probe(struct platform_device
*pdev
)
91 struct device
*dev
= &pdev
->dev
;
92 struct tps6521x_pwrbutton
*pwr
;
93 struct input_dev
*idev
;
94 const struct of_device_id
*match
;
98 match
= of_match_node(of_tps6521x_pb_match
, dev
->of_node
);
102 pwr
= devm_kzalloc(dev
, sizeof(*pwr
), GFP_KERNEL
);
106 pwr
->data
= match
->data
;
108 idev
= devm_input_allocate_device(dev
);
112 idev
->name
= pwr
->data
->name
;
113 snprintf(pwr
->phys
, sizeof(pwr
->phys
), "%s/input0",
115 idev
->phys
= pwr
->phys
;
116 idev
->dev
.parent
= dev
;
117 idev
->id
.bustype
= BUS_I2C
;
119 input_set_capability(idev
, EV_KEY
, KEY_POWER
);
121 pwr
->regmap
= dev_get_regmap(dev
->parent
, NULL
);
124 device_init_wakeup(dev
, true);
126 irq
= platform_get_irq(pdev
, 0);
128 dev_err(dev
, "No IRQ resource!\n");
132 error
= devm_request_threaded_irq(dev
, irq
, NULL
, tps6521x_pb_irq
,
133 IRQF_TRIGGER_RISING
|
134 IRQF_TRIGGER_FALLING
|
136 pwr
->data
->name
, pwr
);
138 dev_err(dev
, "failed to request IRQ #%d: %d\n", irq
, error
);
142 error
= input_register_device(idev
);
144 dev_err(dev
, "Can't register power button: %d\n", error
);
151 static const struct platform_device_id tps6521x_pwrbtn_id_table
[] = {
152 { "tps65218-pwrbutton", },
153 { "tps65217-pwrbutton", },
156 MODULE_DEVICE_TABLE(platform
, tps6521x_pwrbtn_id_table
);
158 static struct platform_driver tps6521x_pb_driver
= {
159 .probe
= tps6521x_pb_probe
,
161 .name
= "tps6521x_pwrbutton",
162 .of_match_table
= of_tps6521x_pb_match
,
164 .id_table
= tps6521x_pwrbtn_id_table
,
166 module_platform_driver(tps6521x_pb_driver
);
168 MODULE_DESCRIPTION("TPS6521X Power Button");
169 MODULE_LICENSE("GPL v2");
170 MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");