blob: 25943e9bc8bff96a3df9417c9e7e85d3fa16cbee [file] [log] [blame]
Simon Glass6af6dc22013-02-25 14:08:41 -08001/*
2 * ChromeOS EC keyboard driver
3 *
4 * Copyright (C) 2012 Google, Inc
5 *
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.
9 *
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.
14 *
15 * This driver uses the Chrome OS EC byte-level message-based protocol for
16 * communicating the keyboard state (which keys are pressed) from a keyboard EC
17 * to the AP over some bus (such as i2c, lpc, spi). The EC does debouncing,
18 * but everything else (including deghosting) is done here. The main
19 * motivation for this is to keep the EC firmware as simple as possible, since
20 * it cannot be easily upgraded and EC flash/IRAM space is relatively
21 * expensive.
22 */
23
24#include <linux/module.h>
Todd Broch017f14e2014-09-03 16:56:12 -070025#include <linux/bitops.h>
Simon Glass6af6dc22013-02-25 14:08:41 -080026#include <linux/i2c.h>
27#include <linux/input.h>
Andrew Brestickerd1fd3452014-06-18 11:14:07 -070028#include <linux/interrupt.h>
Simon Glass6af6dc22013-02-25 14:08:41 -080029#include <linux/kernel.h>
Vic Yang44051a62016-08-10 19:05:25 +020030#include <linux/notifier.h>
Simon Glass6af6dc22013-02-25 14:08:41 -080031#include <linux/platform_device.h>
32#include <linux/slab.h>
33#include <linux/input/matrix_keypad.h>
34#include <linux/mfd/cros_ec.h>
35#include <linux/mfd/cros_ec_commands.h>
36
37/*
38 * @rows: Number of rows in the keypad
39 * @cols: Number of columns in the keypad
40 * @row_shift: log2 or number of rows, rounded up
41 * @keymap_data: Matrix keymap data used to convert to keyscan values
42 * @ghost_filter: true to enable the matrix key-ghosting filter
Todd Broch017f14e2014-09-03 16:56:12 -070043 * @valid_keys: bitmap of existing keys for each matrix column
Doug Anderson64757eb2013-12-29 16:52:46 -080044 * @old_kb_state: bitmap of keys pressed last scan
Simon Glass6af6dc22013-02-25 14:08:41 -080045 * @dev: Device pointer
46 * @idev: Input device
47 * @ec: Top level ChromeOS device to use to talk to EC
Vic Yang44051a62016-08-10 19:05:25 +020048 * @notifier: interrupt event notifier for transport devices
Simon Glass6af6dc22013-02-25 14:08:41 -080049 */
50struct cros_ec_keyb {
51 unsigned int rows;
52 unsigned int cols;
53 int row_shift;
54 const struct matrix_keymap_data *keymap_data;
55 bool ghost_filter;
Todd Broch017f14e2014-09-03 16:56:12 -070056 uint8_t *valid_keys;
Doug Anderson64757eb2013-12-29 16:52:46 -080057 uint8_t *old_kb_state;
Simon Glass6af6dc22013-02-25 14:08:41 -080058
59 struct device *dev;
60 struct input_dev *idev;
61 struct cros_ec_device *ec;
Vic Yang44051a62016-08-10 19:05:25 +020062 struct notifier_block notifier;
Simon Glass6af6dc22013-02-25 14:08:41 -080063};
64
65
Simon Glass6af6dc22013-02-25 14:08:41 -080066/*
67 * Returns true when there is at least one combination of pressed keys that
68 * results in ghosting.
69 */
70static bool cros_ec_keyb_has_ghosting(struct cros_ec_keyb *ckdev, uint8_t *buf)
71{
Todd Broch017f14e2014-09-03 16:56:12 -070072 int col1, col2, buf1, buf2;
73 struct device *dev = ckdev->dev;
74 uint8_t *valid_keys = ckdev->valid_keys;
Simon Glass6af6dc22013-02-25 14:08:41 -080075
76 /*
77 * Ghosting happens if for any pressed key X there are other keys
78 * pressed both in the same row and column of X as, for instance,
79 * in the following diagram:
80 *
81 * . . Y . g .
82 * . . . . . .
83 * . . . . . .
84 * . . X . Z .
85 *
86 * In this case only X, Y, and Z are pressed, but g appears to be
87 * pressed too (see Wikipedia).
Simon Glass6af6dc22013-02-25 14:08:41 -080088 */
Todd Broch017f14e2014-09-03 16:56:12 -070089 for (col1 = 0; col1 < ckdev->cols; col1++) {
90 buf1 = buf[col1] & valid_keys[col1];
91 for (col2 = col1 + 1; col2 < ckdev->cols; col2++) {
92 buf2 = buf[col2] & valid_keys[col2];
93 if (hweight8(buf1 & buf2) > 1) {
94 dev_dbg(dev, "ghost found at: B[%02d]:0x%02x & B[%02d]:0x%02x",
95 col1, buf1, col2, buf2);
96 return true;
97 }
98 }
99 }
Simon Glass6af6dc22013-02-25 14:08:41 -0800100
101 return false;
102}
103
Todd Broch017f14e2014-09-03 16:56:12 -0700104
Simon Glass6af6dc22013-02-25 14:08:41 -0800105/*
106 * Compares the new keyboard state to the old one and produces key
107 * press/release events accordingly. The keyboard state is 13 bytes (one byte
108 * per column)
109 */
110static void cros_ec_keyb_process(struct cros_ec_keyb *ckdev,
111 uint8_t *kb_state, int len)
112{
113 struct input_dev *idev = ckdev->idev;
114 int col, row;
115 int new_state;
Doug Anderson64757eb2013-12-29 16:52:46 -0800116 int old_state;
Simon Glass6af6dc22013-02-25 14:08:41 -0800117 int num_cols;
118
119 num_cols = len;
120
121 if (ckdev->ghost_filter && cros_ec_keyb_has_ghosting(ckdev, kb_state)) {
122 /*
123 * Simple-minded solution: ignore this state. The obvious
124 * improvement is to only ignore changes to keys involved in
125 * the ghosting, but process the other changes.
126 */
127 dev_dbg(ckdev->dev, "ghosting found\n");
128 return;
129 }
130
131 for (col = 0; col < ckdev->cols; col++) {
132 for (row = 0; row < ckdev->rows; row++) {
133 int pos = MATRIX_SCAN_CODE(row, col, ckdev->row_shift);
134 const unsigned short *keycodes = idev->keycode;
Simon Glass6af6dc22013-02-25 14:08:41 -0800135
Simon Glass6af6dc22013-02-25 14:08:41 -0800136 new_state = kb_state[col] & (1 << row);
Doug Anderson64757eb2013-12-29 16:52:46 -0800137 old_state = ckdev->old_kb_state[col] & (1 << row);
138 if (new_state != old_state) {
Simon Glass6af6dc22013-02-25 14:08:41 -0800139 dev_dbg(ckdev->dev,
140 "changed: [r%d c%d]: byte %02x\n",
141 row, col, new_state);
142
Doug Anderson64757eb2013-12-29 16:52:46 -0800143 input_report_key(idev, keycodes[pos],
144 new_state);
Simon Glass6af6dc22013-02-25 14:08:41 -0800145 }
146 }
Doug Anderson64757eb2013-12-29 16:52:46 -0800147 ckdev->old_kb_state[col] = kb_state[col];
Simon Glass6af6dc22013-02-25 14:08:41 -0800148 }
149 input_sync(ckdev->idev);
150}
151
Andrew Brestickerd1fd3452014-06-18 11:14:07 -0700152static int cros_ec_keyb_open(struct input_dev *dev)
153{
154 struct cros_ec_keyb *ckdev = input_get_drvdata(dev);
Andrew Brestickerd1fd3452014-06-18 11:14:07 -0700155
Vic Yang44051a62016-08-10 19:05:25 +0200156 return blocking_notifier_chain_register(&ckdev->ec->event_notifier,
157 &ckdev->notifier);
Andrew Brestickerd1fd3452014-06-18 11:14:07 -0700158}
159
160static void cros_ec_keyb_close(struct input_dev *dev)
161{
162 struct cros_ec_keyb *ckdev = input_get_drvdata(dev);
Andrew Brestickerd1fd3452014-06-18 11:14:07 -0700163
Vic Yang44051a62016-08-10 19:05:25 +0200164 blocking_notifier_chain_unregister(&ckdev->ec->event_notifier,
165 &ckdev->notifier);
166}
167
168static int cros_ec_keyb_work(struct notifier_block *nb,
169 unsigned long queued_during_suspend, void *_notify)
170{
171 struct cros_ec_keyb *ckdev = container_of(nb, struct cros_ec_keyb,
172 notifier);
173
174 if (ckdev->ec->event_data.event_type != EC_MKBP_EVENT_KEY_MATRIX)
175 return NOTIFY_DONE;
176 /*
177 * If EC is not the wake source, discard key state changes during
178 * suspend.
179 */
180 if (queued_during_suspend)
181 return NOTIFY_OK;
182 if (ckdev->ec->event_size != ckdev->cols) {
183 dev_err(ckdev->dev,
184 "Discarded incomplete key matrix event.\n");
185 return NOTIFY_OK;
186 }
187 cros_ec_keyb_process(ckdev, ckdev->ec->event_data.data.key_matrix,
188 ckdev->ec->event_size);
189 return NOTIFY_OK;
Simon Glass6af6dc22013-02-25 14:08:41 -0800190}
191
Todd Broch017f14e2014-09-03 16:56:12 -0700192/*
193 * Walks keycodes flipping bit in buffer COLUMNS deep where bit is ROW. Used by
194 * ghosting logic to ignore NULL or virtual keys.
195 */
196static void cros_ec_keyb_compute_valid_keys(struct cros_ec_keyb *ckdev)
197{
198 int row, col;
199 int row_shift = ckdev->row_shift;
200 unsigned short *keymap = ckdev->idev->keycode;
201 unsigned short code;
202
203 BUG_ON(ckdev->idev->keycodesize != sizeof(*keymap));
204
205 for (col = 0; col < ckdev->cols; col++) {
206 for (row = 0; row < ckdev->rows; row++) {
207 code = keymap[MATRIX_SCAN_CODE(row, col, row_shift)];
208 if (code && (code != KEY_BATTERY))
209 ckdev->valid_keys[col] |= 1 << row;
210 }
211 dev_dbg(ckdev->dev, "valid_keys[%02d] = 0x%02x\n",
212 col, ckdev->valid_keys[col]);
213 }
214}
215
Simon Glass6af6dc22013-02-25 14:08:41 -0800216static int cros_ec_keyb_probe(struct platform_device *pdev)
217{
218 struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700219 struct device *dev = &pdev->dev;
Simon Glass6af6dc22013-02-25 14:08:41 -0800220 struct cros_ec_keyb *ckdev;
221 struct input_dev *idev;
222 struct device_node *np;
223 int err;
224
225 np = pdev->dev.of_node;
226 if (!np)
227 return -ENODEV;
228
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700229 ckdev = devm_kzalloc(dev, sizeof(*ckdev), GFP_KERNEL);
Simon Glass6af6dc22013-02-25 14:08:41 -0800230 if (!ckdev)
231 return -ENOMEM;
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700232 err = matrix_keypad_parse_of_params(dev, &ckdev->rows, &ckdev->cols);
Simon Glass6af6dc22013-02-25 14:08:41 -0800233 if (err)
234 return err;
Todd Broch017f14e2014-09-03 16:56:12 -0700235
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700236 ckdev->valid_keys = devm_kzalloc(dev, ckdev->cols, GFP_KERNEL);
Todd Broch017f14e2014-09-03 16:56:12 -0700237 if (!ckdev->valid_keys)
238 return -ENOMEM;
239
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700240 ckdev->old_kb_state = devm_kzalloc(dev, ckdev->cols, GFP_KERNEL);
Doug Anderson64757eb2013-12-29 16:52:46 -0800241 if (!ckdev->old_kb_state)
242 return -ENOMEM;
Simon Glass6af6dc22013-02-25 14:08:41 -0800243
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700244 idev = devm_input_allocate_device(dev);
Simon Glass6af6dc22013-02-25 14:08:41 -0800245 if (!idev)
246 return -ENOMEM;
247
248 ckdev->ec = ec;
Vic Yang44051a62016-08-10 19:05:25 +0200249 ckdev->notifier.notifier_call = cros_ec_keyb_work;
Simon Glass6af6dc22013-02-25 14:08:41 -0800250 ckdev->dev = dev;
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700251 dev_set_drvdata(dev, ckdev);
Simon Glass6af6dc22013-02-25 14:08:41 -0800252
Gwendal Grignou57b33ff2015-06-09 13:04:47 +0200253 idev->name = CROS_EC_DEV_NAME;
Simon Glass6af6dc22013-02-25 14:08:41 -0800254 idev->phys = ec->phys_name;
255 __set_bit(EV_REP, idev->evbit);
256
257 idev->id.bustype = BUS_VIRTUAL;
258 idev->id.version = 1;
259 idev->id.product = 0;
Douglas Anderson8f97f8e2016-07-25 13:47:52 -0700260 idev->dev.parent = dev;
Simon Glass6af6dc22013-02-25 14:08:41 -0800261 idev->open = cros_ec_keyb_open;
262 idev->close = cros_ec_keyb_close;
263
264 ckdev->ghost_filter = of_property_read_bool(np,
265 "google,needs-ghost-filter");
266
267 err = matrix_keypad_build_keymap(NULL, NULL, ckdev->rows, ckdev->cols,
268 NULL, idev);
269 if (err) {
270 dev_err(dev, "cannot build key matrix\n");
271 return err;
272 }
273
274 ckdev->row_shift = get_count_order(ckdev->cols);
275
276 input_set_capability(idev, EV_MSC, MSC_SCAN);
277 input_set_drvdata(idev, ckdev);
278 ckdev->idev = idev;
Todd Broch017f14e2014-09-03 16:56:12 -0700279 cros_ec_keyb_compute_valid_keys(ckdev);
280
Simon Glass6af6dc22013-02-25 14:08:41 -0800281 err = input_register_device(ckdev->idev);
282 if (err) {
283 dev_err(dev, "cannot register input device\n");
284 return err;
285 }
286
287 return 0;
288}
289
Sjoerd Simons3f1fe732014-10-08 11:38:21 -0700290#ifdef CONFIG_OF
291static const struct of_device_id cros_ec_keyb_of_match[] = {
292 { .compatible = "google,cros-ec-keyb" },
293 {},
294};
295MODULE_DEVICE_TABLE(of, cros_ec_keyb_of_match);
296#endif
297
Simon Glass6af6dc22013-02-25 14:08:41 -0800298static struct platform_driver cros_ec_keyb_driver = {
299 .probe = cros_ec_keyb_probe,
300 .driver = {
301 .name = "cros-ec-keyb",
Sjoerd Simons3f1fe732014-10-08 11:38:21 -0700302 .of_match_table = of_match_ptr(cros_ec_keyb_of_match),
Simon Glass6af6dc22013-02-25 14:08:41 -0800303 },
304};
305
306module_platform_driver(cros_ec_keyb_driver);
307
308MODULE_LICENSE("GPL");
309MODULE_DESCRIPTION("ChromeOS EC keyboard driver");
310MODULE_ALIAS("platform:cros-ec-keyb");