blob: 7c49b8d23894f5b957de1b4170959828a3b95247 [file] [log] [blame]
Haojian Zhuang37345742010-05-22 00:57:26 -07001/**
Dmitry Torokhov104a5f32012-03-06 09:10:21 -08002 * MAX8925 ONKEY driver
Haojian Zhuang37345742010-05-22 00:57:26 -07003 *
4 * Copyright (C) 2009 Marvell International Ltd.
5 * Haojian Zhuang <haojian.zhuang@marvell.com>
6 *
7 * This file is subject to the terms and conditions of the GNU General
8 * Public License. See the file "COPYING" in the main directory of this
9 * archive for more details.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/platform_device.h>
24#include <linux/i2c.h>
25#include <linux/input.h>
26#include <linux/interrupt.h>
27#include <linux/mfd/max8925.h>
28#include <linux/slab.h>
Himangi Saraogi04115e42014-05-29 00:21:56 -070029#include <linux/device.h>
Haojian Zhuang37345742010-05-22 00:57:26 -070030
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040031#define SW_INPUT (1 << 7) /* 0/1 -- up/down */
Haojian Zhuang37345742010-05-22 00:57:26 -070032#define HARDRESET_EN (1 << 7)
33#define PWREN_EN (1 << 7)
34
35struct max8925_onkey_info {
36 struct input_dev *idev;
37 struct i2c_client *i2c;
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040038 struct device *dev;
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080039 unsigned int irq[2];
Haojian Zhuang37345742010-05-22 00:57:26 -070040};
41
42/*
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040043 * MAX8925 gives us an interrupt when ONKEY is pressed or released.
Haojian Zhuang37345742010-05-22 00:57:26 -070044 * max8925_set_bits() operates I2C bus and may sleep. So implement
45 * it in thread IRQ handler.
46 */
47static irqreturn_t max8925_onkey_handler(int irq, void *data)
48{
49 struct max8925_onkey_info *info = data;
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080050 int state;
Haojian Zhuang37345742010-05-22 00:57:26 -070051
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080052 state = max8925_reg_read(info->i2c, MAX8925_ON_OFF_STATUS);
53
54 input_report_key(info->idev, KEY_POWER, state & SW_INPUT);
Haojian Zhuang37345742010-05-22 00:57:26 -070055 input_sync(info->idev);
56
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080057 dev_dbg(info->dev, "onkey state:%d\n", state);
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040058
Haojian Zhuang37345742010-05-22 00:57:26 -070059 /* Enable hardreset to halt if system isn't shutdown on time */
60 max8925_set_bits(info->i2c, MAX8925_SYSENSEL,
61 HARDRESET_EN, HARDRESET_EN);
62
63 return IRQ_HANDLED;
64}
65
Bill Pemberton5298cc42012-11-23 21:38:25 -080066static int max8925_onkey_probe(struct platform_device *pdev)
Haojian Zhuang37345742010-05-22 00:57:26 -070067{
68 struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
69 struct max8925_onkey_info *info;
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080070 struct input_dev *input;
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040071 int irq[2], error;
72
73 irq[0] = platform_get_irq(pdev, 0);
74 if (irq[0] < 0) {
75 dev_err(&pdev->dev, "No IRQ resource!\n");
76 return -EINVAL;
77 }
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080078
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040079 irq[1] = platform_get_irq(pdev, 1);
80 if (irq[1] < 0) {
81 dev_err(&pdev->dev, "No IRQ resource!\n");
82 return -EINVAL;
83 }
Haojian Zhuang37345742010-05-22 00:57:26 -070084
Himangi Saraogi04115e42014-05-29 00:21:56 -070085 info = devm_kzalloc(&pdev->dev, sizeof(struct max8925_onkey_info),
86 GFP_KERNEL);
87 if (!info)
88 return -ENOMEM;
89
90 input = devm_input_allocate_device(&pdev->dev);
91 if (!input)
92 return -ENOMEM;
Haojian Zhuang37345742010-05-22 00:57:26 -070093
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080094 info->idev = input;
Haojian Zhuang37345742010-05-22 00:57:26 -070095 info->i2c = chip->i2c;
Haojian Zhuang2d95ae32010-09-08 09:44:35 -040096 info->dev = &pdev->dev;
Dmitry Torokhov104a5f32012-03-06 09:10:21 -080097 info->irq[0] = irq[0];
98 info->irq[1] = irq[1];
99
100 input->name = "max8925_on";
101 input->phys = "max8925_on/input0";
102 input->id.bustype = BUS_I2C;
103 input->dev.parent = &pdev->dev;
104 input_set_capability(input, EV_KEY, KEY_POWER);
105
Himangi Saraogi04115e42014-05-29 00:21:56 -0700106 error = devm_request_threaded_irq(&pdev->dev, irq[0], NULL,
107 max8925_onkey_handler, IRQF_ONESHOT,
108 "onkey-down", info);
Haojian Zhuang2d95ae32010-09-08 09:44:35 -0400109 if (error < 0) {
110 dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
111 irq[0], error);
Himangi Saraogi04115e42014-05-29 00:21:56 -0700112 return error;
Haojian Zhuang2d95ae32010-09-08 09:44:35 -0400113 }
Dmitry Torokhov104a5f32012-03-06 09:10:21 -0800114
Himangi Saraogi04115e42014-05-29 00:21:56 -0700115 error = devm_request_threaded_irq(&pdev->dev, irq[1], NULL,
116 max8925_onkey_handler, IRQF_ONESHOT,
117 "onkey-up", info);
Haojian Zhuang2d95ae32010-09-08 09:44:35 -0400118 if (error < 0) {
119 dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
120 irq[1], error);
Himangi Saraogi04115e42014-05-29 00:21:56 -0700121 return error;
Haojian Zhuang2d95ae32010-09-08 09:44:35 -0400122 }
Haojian Zhuang37345742010-05-22 00:57:26 -0700123
Haojian Zhuang37345742010-05-22 00:57:26 -0700124 error = input_register_device(info->idev);
125 if (error) {
126 dev_err(chip->dev, "Can't register input device: %d\n", error);
Himangi Saraogi04115e42014-05-29 00:21:56 -0700127 return error;
Haojian Zhuang37345742010-05-22 00:57:26 -0700128 }
129
130 platform_set_drvdata(pdev, info);
Dmitry Torokhov104a5f32012-03-06 09:10:21 -0800131 device_init_wakeup(&pdev->dev, 1);
Haojian Zhuang37345742010-05-22 00:57:26 -0700132
133 return 0;
Haojian Zhuang37345742010-05-22 00:57:26 -0700134}
135
Jingoo Han97a652a2014-11-02 00:02:46 -0700136static int __maybe_unused max8925_onkey_suspend(struct device *dev)
Kevin Liuadab30d2012-03-05 22:24:54 -0800137{
138 struct platform_device *pdev = to_platform_device(dev);
139 struct max8925_onkey_info *info = platform_get_drvdata(pdev);
140 struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
141
142 if (device_may_wakeup(dev)) {
Dmitry Torokhov104a5f32012-03-06 09:10:21 -0800143 chip->wakeup_flag |= 1 << info->irq[0];
144 chip->wakeup_flag |= 1 << info->irq[1];
Kevin Liuadab30d2012-03-05 22:24:54 -0800145 }
146
147 return 0;
148}
149
Jingoo Han97a652a2014-11-02 00:02:46 -0700150static int __maybe_unused max8925_onkey_resume(struct device *dev)
Kevin Liuadab30d2012-03-05 22:24:54 -0800151{
152 struct platform_device *pdev = to_platform_device(dev);
153 struct max8925_onkey_info *info = platform_get_drvdata(pdev);
154 struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
155
156 if (device_may_wakeup(dev)) {
Dmitry Torokhov104a5f32012-03-06 09:10:21 -0800157 chip->wakeup_flag &= ~(1 << info->irq[0]);
158 chip->wakeup_flag &= ~(1 << info->irq[1]);
Kevin Liuadab30d2012-03-05 22:24:54 -0800159 }
160
161 return 0;
162}
Kevin Liuadab30d2012-03-05 22:24:54 -0800163
164static SIMPLE_DEV_PM_OPS(max8925_onkey_pm_ops, max8925_onkey_suspend, max8925_onkey_resume);
165
Haojian Zhuang37345742010-05-22 00:57:26 -0700166static struct platform_driver max8925_onkey_driver = {
167 .driver = {
168 .name = "max8925-onkey",
Kevin Liuadab30d2012-03-05 22:24:54 -0800169 .pm = &max8925_onkey_pm_ops,
Haojian Zhuang37345742010-05-22 00:57:26 -0700170 },
171 .probe = max8925_onkey_probe,
Haojian Zhuang37345742010-05-22 00:57:26 -0700172};
JJ Ding840a7462011-11-29 11:08:40 -0800173module_platform_driver(max8925_onkey_driver);
Haojian Zhuang37345742010-05-22 00:57:26 -0700174
175MODULE_DESCRIPTION("Maxim MAX8925 ONKEY driver");
176MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>");
177MODULE_LICENSE("GPL");