2 * Copyright (C) 2017 MediaTek, Inc.
4 * Author: Chen Zhong <chen.zhong@mediatek.com>
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #include <linux/input.h>
18 #include <linux/interrupt.h>
19 #include <linux/kernel.h>
20 #include <linux/mfd/mt6323/registers.h>
21 #include <linux/mfd/mt6397/core.h>
22 #include <linux/mfd/mt6397/registers.h>
23 #include <linux/module.h>
24 #include <linux/of_device.h>
26 #include <linux/platform_device.h>
27 #include <linux/regmap.h>
29 #define MTK_PMIC_PWRKEY_RST_EN_MASK 0x1
30 #define MTK_PMIC_PWRKEY_RST_EN_SHIFT 6
31 #define MTK_PMIC_HOMEKEY_RST_EN_MASK 0x1
32 #define MTK_PMIC_HOMEKEY_RST_EN_SHIFT 5
33 #define MTK_PMIC_RST_DU_MASK 0x3
34 #define MTK_PMIC_RST_DU_SHIFT 8
36 #define MTK_PMIC_PWRKEY_RST \
37 (MTK_PMIC_PWRKEY_RST_EN_MASK << MTK_PMIC_PWRKEY_RST_EN_SHIFT)
38 #define MTK_PMIC_HOMEKEY_RST \
39 (MTK_PMIC_HOMEKEY_RST_EN_MASK << MTK_PMIC_HOMEKEY_RST_EN_SHIFT)
41 #define MTK_PMIC_PWRKEY_INDEX 0
42 #define MTK_PMIC_HOMEKEY_INDEX 1
43 #define MTK_PMIC_MAX_KEY_COUNT 2
45 struct mtk_pmic_keys_regs
{
52 #define MTK_PMIC_KEYS_REGS(_deb_reg, _deb_mask, \
53 _intsel_reg, _intsel_mask) \
55 .deb_reg = _deb_reg, \
56 .deb_mask = _deb_mask, \
57 .intsel_reg = _intsel_reg, \
58 .intsel_mask = _intsel_mask, \
61 struct mtk_pmic_regs
{
62 const struct mtk_pmic_keys_regs keys_regs
[MTK_PMIC_MAX_KEY_COUNT
];
66 static const struct mtk_pmic_regs mt6397_regs
= {
67 .keys_regs
[MTK_PMIC_PWRKEY_INDEX
] =
68 MTK_PMIC_KEYS_REGS(MT6397_CHRSTATUS
,
69 0x8, MT6397_INT_RSV
, 0x10),
70 .keys_regs
[MTK_PMIC_HOMEKEY_INDEX
] =
71 MTK_PMIC_KEYS_REGS(MT6397_OCSTATUS2
,
72 0x10, MT6397_INT_RSV
, 0x8),
73 .pmic_rst_reg
= MT6397_TOP_RST_MISC
,
76 static const struct mtk_pmic_regs mt6323_regs
= {
77 .keys_regs
[MTK_PMIC_PWRKEY_INDEX
] =
78 MTK_PMIC_KEYS_REGS(MT6323_CHRSTATUS
,
79 0x2, MT6323_INT_MISC_CON
, 0x10),
80 .keys_regs
[MTK_PMIC_HOMEKEY_INDEX
] =
81 MTK_PMIC_KEYS_REGS(MT6323_CHRSTATUS
,
82 0x4, MT6323_INT_MISC_CON
, 0x8),
83 .pmic_rst_reg
= MT6323_TOP_RST_MISC
,
86 struct mtk_pmic_keys_info
{
87 struct mtk_pmic_keys
*keys
;
88 const struct mtk_pmic_keys_regs
*regs
;
94 struct mtk_pmic_keys
{
95 struct input_dev
*input_dev
;
97 struct regmap
*regmap
;
98 struct mtk_pmic_keys_info keys
[MTK_PMIC_MAX_KEY_COUNT
];
101 enum mtk_pmic_keys_lp_mode
{
107 static void mtk_pmic_keys_lp_reset_setup(struct mtk_pmic_keys
*keys
,
111 u32 long_press_mode
, long_press_debounce
;
113 ret
= of_property_read_u32(keys
->dev
->of_node
,
114 "power-off-time-sec", &long_press_debounce
);
116 long_press_debounce
= 0;
118 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
119 MTK_PMIC_RST_DU_MASK
<< MTK_PMIC_RST_DU_SHIFT
,
120 long_press_debounce
<< MTK_PMIC_RST_DU_SHIFT
);
122 ret
= of_property_read_u32(keys
->dev
->of_node
,
123 "mediatek,long-press-mode", &long_press_mode
);
125 long_press_mode
= LP_DISABLE
;
127 switch (long_press_mode
) {
129 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
131 MTK_PMIC_PWRKEY_RST
);
132 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
133 MTK_PMIC_HOMEKEY_RST
,
137 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
139 MTK_PMIC_PWRKEY_RST
);
140 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
141 MTK_PMIC_HOMEKEY_RST
,
142 MTK_PMIC_HOMEKEY_RST
);
145 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
148 regmap_update_bits(keys
->regmap
, pmic_rst_reg
,
149 MTK_PMIC_HOMEKEY_RST
,
157 static irqreturn_t
mtk_pmic_keys_irq_handler_thread(int irq
, void *data
)
159 struct mtk_pmic_keys_info
*info
= data
;
160 u32 key_deb
, pressed
;
162 regmap_read(info
->keys
->regmap
, info
->regs
->deb_reg
, &key_deb
);
164 key_deb
&= info
->regs
->deb_mask
;
168 input_report_key(info
->keys
->input_dev
, info
->keycode
, pressed
);
169 input_sync(info
->keys
->input_dev
);
171 dev_dbg(info
->keys
->dev
, "(%s) key =%d using PMIC\n",
172 pressed
? "pressed" : "released", info
->keycode
);
177 static int mtk_pmic_key_setup(struct mtk_pmic_keys
*keys
,
178 struct mtk_pmic_keys_info
*info
)
184 ret
= regmap_update_bits(keys
->regmap
, info
->regs
->intsel_reg
,
185 info
->regs
->intsel_mask
,
186 info
->regs
->intsel_mask
);
190 ret
= devm_request_threaded_irq(keys
->dev
, info
->irq
, NULL
,
191 mtk_pmic_keys_irq_handler_thread
,
192 IRQF_ONESHOT
| IRQF_TRIGGER_HIGH
,
193 "mtk-pmic-keys", info
);
195 dev_err(keys
->dev
, "Failed to request IRQ: %d: %d\n",
200 input_set_capability(keys
->input_dev
, EV_KEY
, info
->keycode
);
205 static int __maybe_unused
mtk_pmic_keys_suspend(struct device
*dev
)
207 struct mtk_pmic_keys
*keys
= dev_get_drvdata(dev
);
210 for (index
= 0; index
< MTK_PMIC_MAX_KEY_COUNT
; index
++) {
211 if (keys
->keys
[index
].wakeup
)
212 enable_irq_wake(keys
->keys
[index
].irq
);
218 static int __maybe_unused
mtk_pmic_keys_resume(struct device
*dev
)
220 struct mtk_pmic_keys
*keys
= dev_get_drvdata(dev
);
223 for (index
= 0; index
< MTK_PMIC_MAX_KEY_COUNT
; index
++) {
224 if (keys
->keys
[index
].wakeup
)
225 disable_irq_wake(keys
->keys
[index
].irq
);
231 static SIMPLE_DEV_PM_OPS(mtk_pmic_keys_pm_ops
, mtk_pmic_keys_suspend
,
232 mtk_pmic_keys_resume
);
234 static const struct of_device_id of_mtk_pmic_keys_match_tbl
[] = {
236 .compatible
= "mediatek,mt6397-keys",
237 .data
= &mt6397_regs
,
239 .compatible
= "mediatek,mt6323-keys",
240 .data
= &mt6323_regs
,
245 MODULE_DEVICE_TABLE(of
, of_mtk_pmic_keys_match_tbl
);
247 static int mtk_pmic_keys_probe(struct platform_device
*pdev
)
249 int error
, index
= 0;
250 unsigned int keycount
;
251 struct mt6397_chip
*pmic_chip
= dev_get_drvdata(pdev
->dev
.parent
);
252 struct device_node
*node
= pdev
->dev
.of_node
, *child
;
253 struct mtk_pmic_keys
*keys
;
254 const struct mtk_pmic_regs
*mtk_pmic_regs
;
255 struct input_dev
*input_dev
;
256 const struct of_device_id
*of_id
=
257 of_match_device(of_mtk_pmic_keys_match_tbl
, &pdev
->dev
);
259 keys
= devm_kzalloc(&pdev
->dev
, sizeof(*keys
), GFP_KERNEL
);
263 keys
->dev
= &pdev
->dev
;
264 keys
->regmap
= pmic_chip
->regmap
;
265 mtk_pmic_regs
= of_id
->data
;
267 keys
->input_dev
= input_dev
= devm_input_allocate_device(keys
->dev
);
269 dev_err(keys
->dev
, "input allocate device fail.\n");
273 input_dev
->name
= "mtk-pmic-keys";
274 input_dev
->id
.bustype
= BUS_HOST
;
275 input_dev
->id
.vendor
= 0x0001;
276 input_dev
->id
.product
= 0x0001;
277 input_dev
->id
.version
= 0x0001;
279 keycount
= of_get_available_child_count(node
);
280 if (keycount
> MTK_PMIC_MAX_KEY_COUNT
) {
281 dev_err(keys
->dev
, "too many keys defined (%d)\n", keycount
);
285 for_each_child_of_node(node
, child
) {
286 keys
->keys
[index
].regs
= &mtk_pmic_regs
->keys_regs
[index
];
288 keys
->keys
[index
].irq
= platform_get_irq(pdev
, index
);
289 if (keys
->keys
[index
].irq
< 0)
290 return keys
->keys
[index
].irq
;
292 error
= of_property_read_u32(child
,
293 "linux,keycodes", &keys
->keys
[index
].keycode
);
296 "failed to read key:%d linux,keycode property: %d\n",
301 if (of_property_read_bool(child
, "wakeup-source"))
302 keys
->keys
[index
].wakeup
= true;
304 error
= mtk_pmic_key_setup(keys
, &keys
->keys
[index
]);
311 error
= input_register_device(input_dev
);
314 "register input device failed (%d)\n", error
);
318 mtk_pmic_keys_lp_reset_setup(keys
, mtk_pmic_regs
->pmic_rst_reg
);
320 platform_set_drvdata(pdev
, keys
);
325 static struct platform_driver pmic_keys_pdrv
= {
326 .probe
= mtk_pmic_keys_probe
,
328 .name
= "mtk-pmic-keys",
329 .of_match_table
= of_mtk_pmic_keys_match_tbl
,
330 .pm
= &mtk_pmic_keys_pm_ops
,
334 module_platform_driver(pmic_keys_pdrv
);
336 MODULE_LICENSE("GPL v2");
337 MODULE_AUTHOR("Chen Zhong <chen.zhong@mediatek.com>");
338 MODULE_DESCRIPTION("MTK pmic-keys driver v0.1");