2 * ON pin driver for Dialog DA9055 PMICs
4 * Copyright(c) 2012 Dialog Semiconductor Ltd.
6 * Author: David Dajun Chen <dchen@diasemi.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/input.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
18 #include <linux/mfd/da9055/core.h>
19 #include <linux/mfd/da9055/reg.h>
22 struct da9055
*da9055
;
23 struct input_dev
*input
;
24 struct delayed_work work
;
27 static void da9055_onkey_query(struct da9055_onkey
*onkey
)
31 key_stat
= da9055_reg_read(onkey
->da9055
, DA9055_REG_STATUS_A
);
33 dev_err(onkey
->da9055
->dev
,
34 "Failed to read onkey event %d\n", key_stat
);
36 key_stat
&= DA9055_NOKEY_STS
;
38 * Onkey status bit is cleared when onkey button is released.
41 input_report_key(onkey
->input
, KEY_POWER
, 0);
42 input_sync(onkey
->input
);
47 * Interrupt is generated only when the ONKEY pin is asserted.
48 * Hence the deassertion of the pin is simulated through work queue.
51 schedule_delayed_work(&onkey
->work
, msecs_to_jiffies(10));
55 static void da9055_onkey_work(struct work_struct
*work
)
57 struct da9055_onkey
*onkey
= container_of(work
, struct da9055_onkey
,
60 da9055_onkey_query(onkey
);
63 static irqreturn_t
da9055_onkey_irq(int irq
, void *data
)
65 struct da9055_onkey
*onkey
= data
;
67 input_report_key(onkey
->input
, KEY_POWER
, 1);
68 input_sync(onkey
->input
);
70 da9055_onkey_query(onkey
);
75 static int da9055_onkey_probe(struct platform_device
*pdev
)
77 struct da9055
*da9055
= dev_get_drvdata(pdev
->dev
.parent
);
78 struct da9055_onkey
*onkey
;
79 struct input_dev
*input_dev
;
82 irq
= platform_get_irq_byname(pdev
, "ONKEY");
85 "Failed to get an IRQ for input device, %d\n", irq
);
89 onkey
= devm_kzalloc(&pdev
->dev
, sizeof(*onkey
), GFP_KERNEL
);
91 dev_err(&pdev
->dev
, "Failed to allocate memory\n");
95 input_dev
= input_allocate_device();
97 dev_err(&pdev
->dev
, "Failed to allocate memory\n");
101 onkey
->input
= input_dev
;
102 onkey
->da9055
= da9055
;
103 input_dev
->name
= "da9055-onkey";
104 input_dev
->phys
= "da9055-onkey/input0";
105 input_dev
->dev
.parent
= &pdev
->dev
;
107 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
108 __set_bit(KEY_POWER
, input_dev
->keybit
);
110 INIT_DELAYED_WORK(&onkey
->work
, da9055_onkey_work
);
112 err
= request_threaded_irq(irq
, NULL
, da9055_onkey_irq
,
113 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
117 "Failed to register ONKEY IRQ %d, error = %d\n",
122 err
= input_register_device(input_dev
);
124 dev_err(&pdev
->dev
, "Unable to register input device, %d\n",
129 platform_set_drvdata(pdev
, onkey
);
134 free_irq(irq
, onkey
);
135 cancel_delayed_work_sync(&onkey
->work
);
137 input_free_device(input_dev
);
142 static int da9055_onkey_remove(struct platform_device
*pdev
)
144 struct da9055_onkey
*onkey
= platform_get_drvdata(pdev
);
145 int irq
= platform_get_irq_byname(pdev
, "ONKEY");
147 irq
= regmap_irq_get_virq(onkey
->da9055
->irq_data
, irq
);
148 free_irq(irq
, onkey
);
149 cancel_delayed_work_sync(&onkey
->work
);
150 input_unregister_device(onkey
->input
);
155 static struct platform_driver da9055_onkey_driver
= {
156 .probe
= da9055_onkey_probe
,
157 .remove
= da9055_onkey_remove
,
159 .name
= "da9055-onkey",
163 module_platform_driver(da9055_onkey_driver
);
165 MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
166 MODULE_DESCRIPTION("Onkey driver for DA9055");
167 MODULE_LICENSE("GPL");
168 MODULE_ALIAS("platform:da9055-onkey");