blob: 7e5222aec7c1e5e5f47b229422e84842a1df43cf [file] [log] [blame]
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -08001/* drivers/input/keyreset.c
2 *
Daniel Rosenberg215234c2014-05-07 14:17:47 -07003 * Copyright (C) 2014 Google, Inc.
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -08004 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16#include <linux/input.h>
17#include <linux/keyreset.h>
18#include <linux/module.h>
19#include <linux/platform_device.h>
20#include <linux/reboot.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23#include <linux/syscalls.h>
Daniel Rosenberg215234c2014-05-07 14:17:47 -070024#include <linux/keycombo.h>
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080025
26struct keyreset_state {
Daniel Rosenberg215234c2014-05-07 14:17:47 -070027 int restart_requested;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080028 int (*reset_fn)(void);
Daniel Rosenberg215234c2014-05-07 14:17:47 -070029 struct platform_device *pdev_child;
Daniel Rosenberg12daace2014-06-27 16:39:35 -070030 struct work_struct restart_work;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080031};
32
Daniel Rosenberg12daace2014-06-27 16:39:35 -070033static void do_restart(struct work_struct *unused)
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080034{
Eric Ernst8d6d1482016-09-02 16:12:06 -070035 orderly_reboot();
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080036}
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080037
Daniel Rosenberg215234c2014-05-07 14:17:47 -070038static void do_reset_fn(void *priv)
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080039{
Daniel Rosenberg215234c2014-05-07 14:17:47 -070040 struct keyreset_state *state = priv;
41 if (state->restart_requested)
42 panic("keyboard reset failed, %d", state->restart_requested);
43 if (state->reset_fn) {
44 state->restart_requested = state->reset_fn();
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080045 } else {
Daniel Rosenberg215234c2014-05-07 14:17:47 -070046 pr_info("keyboard reset\n");
Daniel Rosenberg12daace2014-06-27 16:39:35 -070047 schedule_work(&state->restart_work);
Daniel Rosenberg215234c2014-05-07 14:17:47 -070048 state->restart_requested = 1;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080049 }
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080050}
51
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080052static int keyreset_probe(struct platform_device *pdev)
53{
Daniel Rosenberg215234c2014-05-07 14:17:47 -070054 int ret = -ENOMEM;
55 struct keycombo_platform_data *pdata_child;
56 struct keyreset_platform_data *pdata = pdev->dev.platform_data;
57 int up_size = 0, down_size = 0, size;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080058 int key, *keyp;
59 struct keyreset_state *state;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080060
61 if (!pdata)
62 return -EINVAL;
Daniel Rosenberg215234c2014-05-07 14:17:47 -070063 state = devm_kzalloc(&pdev->dev, sizeof(*state), GFP_KERNEL);
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080064 if (!state)
65 return -ENOMEM;
66
Daniel Rosenberg215234c2014-05-07 14:17:47 -070067 state->pdev_child = platform_device_alloc(KEYCOMBO_NAME,
68 PLATFORM_DEVID_AUTO);
69 if (!state->pdev_child)
70 return -ENOMEM;
71 state->pdev_child->dev.parent = &pdev->dev;
Daniel Rosenberg12daace2014-06-27 16:39:35 -070072 INIT_WORK(&state->restart_work, do_restart);
Daniel Rosenberg215234c2014-05-07 14:17:47 -070073
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080074 keyp = pdata->keys_down;
75 while ((key = *keyp++)) {
76 if (key >= KEY_MAX)
77 continue;
Daniel Rosenberg215234c2014-05-07 14:17:47 -070078 down_size++;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080079 }
80 if (pdata->keys_up) {
81 keyp = pdata->keys_up;
82 while ((key = *keyp++)) {
83 if (key >= KEY_MAX)
84 continue;
Daniel Rosenberg215234c2014-05-07 14:17:47 -070085 up_size++;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -080086 }
87 }
Daniel Rosenberg215234c2014-05-07 14:17:47 -070088 size = sizeof(struct keycombo_platform_data)
89 + sizeof(int) * (down_size + 1);
90 pdata_child = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
91 if (!pdata_child)
92 goto error;
93 memcpy(pdata_child->keys_down, pdata->keys_down,
94 sizeof(int) * down_size);
95 if (up_size > 0) {
96 pdata_child->keys_up = devm_kzalloc(&pdev->dev, up_size + 1,
97 GFP_KERNEL);
98 if (!pdata_child->keys_up)
99 goto error;
100 memcpy(pdata_child->keys_up, pdata->keys_up,
101 sizeof(int) * up_size);
102 if (!pdata_child->keys_up)
103 goto error;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -0800104 }
Daniel Rosenberg215234c2014-05-07 14:17:47 -0700105 state->reset_fn = pdata->reset_fn;
106 pdata_child->key_down_fn = do_reset_fn;
107 pdata_child->priv = state;
108 pdata_child->key_down_delay = pdata->key_down_delay;
109 ret = platform_device_add_data(state->pdev_child, pdata_child, size);
110 if (ret)
111 goto error;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -0800112 platform_set_drvdata(pdev, state);
Daniel Rosenberg215234c2014-05-07 14:17:47 -0700113 return platform_device_add(state->pdev_child);
114error:
115 platform_device_put(state->pdev_child);
116 return ret;
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -0800117}
118
119int keyreset_remove(struct platform_device *pdev)
120{
121 struct keyreset_state *state = platform_get_drvdata(pdev);
Daniel Rosenberg215234c2014-05-07 14:17:47 -0700122 platform_device_put(state->pdev_child);
Arve Hjønnevåg6ca5fa02008-11-21 21:47:23 -0800123 return 0;
124}
125
126
127struct platform_driver keyreset_driver = {
128 .driver.name = KEYRESET_NAME,
129 .probe = keyreset_probe,
130 .remove = keyreset_remove,
131};
132
133static int __init keyreset_init(void)
134{
135 return platform_driver_register(&keyreset_driver);
136}
137
138static void __exit keyreset_exit(void)
139{
140 return platform_driver_unregister(&keyreset_driver);
141}
142
143module_init(keyreset_init);
144module_exit(keyreset_exit);