diff options
author | Simon Glass <sjg@chromium.org> | 2013-02-25 17:08:41 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-04-05 05:20:13 -0400 |
commit | 6af6dc2d2aa654e928ed0a64c28724d1cd2c36c1 (patch) | |
tree | 323ea72f7fe7d9fb897865ee47184d84ca52c318 | |
parent | 43840415339f1600f281211cfb5400fab696536e (diff) |
input: Add ChromeOS EC keyboard driver
Use the key-matrix layer to interpret key scan information from the EC
and inject input based on the FDT-supplied key map. This driver registers
itself with the ChromeOS EC driver to perform communications.
The matrix-keypad FDT binding is used with a small addition to control
ghosting.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Luigi Semenzato <semenzato@chromium.org>
Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | Documentation/devicetree/bindings/input/cros-ec-keyb.txt | 72 | ||||
-rw-r--r-- | drivers/input/keyboard/Kconfig | 12 | ||||
-rw-r--r-- | drivers/input/keyboard/Makefile | 1 | ||||
-rw-r--r-- | drivers/input/keyboard/cros_ec_keyb.c | 334 |
4 files changed, 419 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/cros-ec-keyb.txt b/Documentation/devicetree/bindings/input/cros-ec-keyb.txt new file mode 100644 index 000000000000..0f6355ce39b5 --- /dev/null +++ b/Documentation/devicetree/bindings/input/cros-ec-keyb.txt | |||
@@ -0,0 +1,72 @@ | |||
1 | ChromeOS EC Keyboard | ||
2 | |||
3 | Google's ChromeOS EC Keyboard is a simple matrix keyboard implemented on | ||
4 | a separate EC (Embedded Controller) device. It provides a message for reading | ||
5 | key scans from the EC. These are then converted into keycodes for processing | ||
6 | by the kernel. | ||
7 | |||
8 | This binding is based on matrix-keymap.txt and extends/modifies it as follows: | ||
9 | |||
10 | Required properties: | ||
11 | - compatible: "google,cros-ec-keyb" | ||
12 | |||
13 | Optional properties: | ||
14 | - google,needs-ghost-filter: True to enable a ghost filter for the matrix | ||
15 | keyboard. This is recommended if the EC does not have its own logic or | ||
16 | hardware for this. | ||
17 | |||
18 | |||
19 | Example: | ||
20 | |||
21 | cros-ec-keyb { | ||
22 | compatible = "google,cros-ec-keyb"; | ||
23 | keypad,num-rows = <8>; | ||
24 | keypad,num-columns = <13>; | ||
25 | google,needs-ghost-filter; | ||
26 | /* | ||
27 | * Keymap entries take the form of 0xRRCCKKKK where | ||
28 | * RR=Row CC=Column KKKK=Key Code | ||
29 | * The values below are for a US keyboard layout and | ||
30 | * are taken from the Linux driver. Note that the | ||
31 | * 102ND key is not used for US keyboards. | ||
32 | */ | ||
33 | linux,keymap = < | ||
34 | /* CAPSLCK F1 B F10 */ | ||
35 | 0x0001003a 0x0002003b 0x00030030 0x00040044 | ||
36 | /* N = R_ALT ESC */ | ||
37 | 0x00060031 0x0008000d 0x000a0064 0x01010001 | ||
38 | /* F4 G F7 H */ | ||
39 | 0x0102003e 0x01030022 0x01040041 0x01060023 | ||
40 | /* ' F9 BKSPACE L_CTRL */ | ||
41 | 0x01080028 0x01090043 0x010b000e 0x0200001d | ||
42 | /* TAB F3 T F6 */ | ||
43 | 0x0201000f 0x0202003d 0x02030014 0x02040040 | ||
44 | /* ] Y 102ND [ */ | ||
45 | 0x0205001b 0x02060015 0x02070056 0x0208001a | ||
46 | /* F8 GRAVE F2 5 */ | ||
47 | 0x02090042 0x03010029 0x0302003c 0x03030006 | ||
48 | /* F5 6 - \ */ | ||
49 | 0x0304003f 0x03060007 0x0308000c 0x030b002b | ||
50 | /* R_CTRL A D F */ | ||
51 | 0x04000061 0x0401001e 0x04020020 0x04030021 | ||
52 | /* S K J ; */ | ||
53 | 0x0404001f 0x04050025 0x04060024 0x04080027 | ||
54 | /* L ENTER Z C */ | ||
55 | 0x04090026 0x040b001c 0x0501002c 0x0502002e | ||
56 | /* V X , M */ | ||
57 | 0x0503002f 0x0504002d 0x05050033 0x05060032 | ||
58 | /* L_SHIFT / . SPACE */ | ||
59 | 0x0507002a 0x05080035 0x05090034 0x050B0039 | ||
60 | /* 1 3 4 2 */ | ||
61 | 0x06010002 0x06020004 0x06030005 0x06040003 | ||
62 | /* 8 7 0 9 */ | ||
63 | 0x06050009 0x06060008 0x0608000b 0x0609000a | ||
64 | /* L_ALT DOWN RIGHT Q */ | ||
65 | 0x060a0038 0x060b006c 0x060c006a 0x07010010 | ||
66 | /* E R W I */ | ||
67 | 0x07020012 0x07030013 0x07040011 0x07050017 | ||
68 | /* U R_SHIFT P O */ | ||
69 | 0x07060016 0x07070036 0x07080019 0x07090018 | ||
70 | /* UP LEFT */ | ||
71 | 0x070b0067 0x070c0069>; | ||
72 | }; | ||
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig index ac0500667000..6a195d5e90ff 100644 --- a/drivers/input/keyboard/Kconfig +++ b/drivers/input/keyboard/Kconfig | |||
@@ -628,4 +628,16 @@ config KEYBOARD_W90P910 | |||
628 | To compile this driver as a module, choose M here: the | 628 | To compile this driver as a module, choose M here: the |
629 | module will be called w90p910_keypad. | 629 | module will be called w90p910_keypad. |
630 | 630 | ||
631 | config KEYBOARD_CROS_EC | ||
632 | tristate "ChromeOS EC keyboard" | ||
633 | select INPUT_MATRIXKMAP | ||
634 | depends on MFD_CROS_EC | ||
635 | help | ||
636 | Say Y here to enable the matrix keyboard used by ChromeOS devices | ||
637 | and implemented on the ChromeOS EC. You must enable one bus option | ||
638 | (MFD_CROS_EC_I2C or MFD_CROS_EC_SPI) to use this. | ||
639 | |||
640 | To compile this driver as a module, choose M here: the | ||
641 | module will be called cros_ec_keyb. | ||
642 | |||
631 | endif | 643 | endif |
diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile index 49b16453d00e..0c43e8cf8d0e 100644 --- a/drivers/input/keyboard/Makefile +++ b/drivers/input/keyboard/Makefile | |||
@@ -11,6 +11,7 @@ obj-$(CONFIG_KEYBOARD_AMIGA) += amikbd.o | |||
11 | obj-$(CONFIG_KEYBOARD_ATARI) += atakbd.o | 11 | obj-$(CONFIG_KEYBOARD_ATARI) += atakbd.o |
12 | obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o | 12 | obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o |
13 | obj-$(CONFIG_KEYBOARD_BFIN) += bf54x-keys.o | 13 | obj-$(CONFIG_KEYBOARD_BFIN) += bf54x-keys.o |
14 | obj-$(CONFIG_KEYBOARD_CROS_EC) += cros_ec_keyb.o | ||
14 | obj-$(CONFIG_KEYBOARD_DAVINCI) += davinci_keyscan.o | 15 | obj-$(CONFIG_KEYBOARD_DAVINCI) += davinci_keyscan.o |
15 | obj-$(CONFIG_KEYBOARD_EP93XX) += ep93xx_keypad.o | 16 | obj-$(CONFIG_KEYBOARD_EP93XX) += ep93xx_keypad.o |
16 | obj-$(CONFIG_KEYBOARD_GOLDFISH_EVENTS) += goldfish_events.o | 17 | obj-$(CONFIG_KEYBOARD_GOLDFISH_EVENTS) += goldfish_events.o |
diff --git a/drivers/input/keyboard/cros_ec_keyb.c b/drivers/input/keyboard/cros_ec_keyb.c new file mode 100644 index 000000000000..49557f27bfa6 --- /dev/null +++ b/drivers/input/keyboard/cros_ec_keyb.c | |||
@@ -0,0 +1,334 @@ | |||
1 | /* | ||
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> | ||
25 | #include <linux/i2c.h> | ||
26 | #include <linux/input.h> | ||
27 | #include <linux/kernel.h> | ||
28 | #include <linux/notifier.h> | ||
29 | #include <linux/platform_device.h> | ||
30 | #include <linux/slab.h> | ||
31 | #include <linux/input/matrix_keypad.h> | ||
32 | #include <linux/mfd/cros_ec.h> | ||
33 | #include <linux/mfd/cros_ec_commands.h> | ||
34 | |||
35 | /* | ||
36 | * @rows: Number of rows in the keypad | ||
37 | * @cols: Number of columns in the keypad | ||
38 | * @row_shift: log2 or number of rows, rounded up | ||
39 | * @keymap_data: Matrix keymap data used to convert to keyscan values | ||
40 | * @ghost_filter: true to enable the matrix key-ghosting filter | ||
41 | * @dev: Device pointer | ||
42 | * @idev: Input device | ||
43 | * @ec: Top level ChromeOS device to use to talk to EC | ||
44 | * @event_notifier: interrupt event notifier for transport devices | ||
45 | */ | ||
46 | struct cros_ec_keyb { | ||
47 | unsigned int rows; | ||
48 | unsigned int cols; | ||
49 | int row_shift; | ||
50 | const struct matrix_keymap_data *keymap_data; | ||
51 | bool ghost_filter; | ||
52 | |||
53 | struct device *dev; | ||
54 | struct input_dev *idev; | ||
55 | struct cros_ec_device *ec; | ||
56 | struct notifier_block notifier; | ||
57 | }; | ||
58 | |||
59 | |||
60 | static bool cros_ec_keyb_row_has_ghosting(struct cros_ec_keyb *ckdev, | ||
61 | uint8_t *buf, int row) | ||
62 | { | ||
63 | int pressed_in_row = 0; | ||
64 | int row_has_teeth = 0; | ||
65 | int col, mask; | ||
66 | |||
67 | mask = 1 << row; | ||
68 | for (col = 0; col < ckdev->cols; col++) { | ||
69 | if (buf[col] & mask) { | ||
70 | pressed_in_row++; | ||
71 | row_has_teeth |= buf[col] & ~mask; | ||
72 | if (pressed_in_row > 1 && row_has_teeth) { | ||
73 | /* ghosting */ | ||
74 | dev_dbg(ckdev->dev, | ||
75 | "ghost found at: r%d c%d, pressed %d, teeth 0x%x\n", | ||
76 | row, col, pressed_in_row, | ||
77 | row_has_teeth); | ||
78 | return true; | ||
79 | } | ||
80 | } | ||
81 | } | ||
82 | |||
83 | return false; | ||
84 | } | ||
85 | |||
86 | /* | ||
87 | * Returns true when there is at least one combination of pressed keys that | ||
88 | * results in ghosting. | ||
89 | */ | ||
90 | static bool cros_ec_keyb_has_ghosting(struct cros_ec_keyb *ckdev, uint8_t *buf) | ||
91 | { | ||
92 | int row; | ||
93 | |||
94 | /* | ||
95 | * Ghosting happens if for any pressed key X there are other keys | ||
96 | * pressed both in the same row and column of X as, for instance, | ||
97 | * in the following diagram: | ||
98 | * | ||
99 | * . . Y . g . | ||
100 | * . . . . . . | ||
101 | * . . . . . . | ||
102 | * . . X . Z . | ||
103 | * | ||
104 | * In this case only X, Y, and Z are pressed, but g appears to be | ||
105 | * pressed too (see Wikipedia). | ||
106 | * | ||
107 | * We can detect ghosting in a single pass (*) over the keyboard state | ||
108 | * by maintaining two arrays. pressed_in_row counts how many pressed | ||
109 | * keys we have found in a row. row_has_teeth is true if any of the | ||
110 | * pressed keys for this row has other pressed keys in its column. If | ||
111 | * at any point of the scan we find that a row has multiple pressed | ||
112 | * keys, and at least one of them is at the intersection with a column | ||
113 | * with multiple pressed keys, we're sure there is ghosting. | ||
114 | * Conversely, if there is ghosting, we will detect such situation for | ||
115 | * at least one key during the pass. | ||
116 | * | ||
117 | * (*) This looks linear in the number of keys, but it's not. We can | ||
118 | * cheat because the number of rows is small. | ||
119 | */ | ||
120 | for (row = 0; row < ckdev->rows; row++) | ||
121 | if (cros_ec_keyb_row_has_ghosting(ckdev, buf, row)) | ||
122 | return true; | ||
123 | |||
124 | return false; | ||
125 | } | ||
126 | |||
127 | /* | ||
128 | * Compares the new keyboard state to the old one and produces key | ||
129 | * press/release events accordingly. The keyboard state is 13 bytes (one byte | ||
130 | * per column) | ||
131 | */ | ||
132 | static void cros_ec_keyb_process(struct cros_ec_keyb *ckdev, | ||
133 | uint8_t *kb_state, int len) | ||
134 | { | ||
135 | struct input_dev *idev = ckdev->idev; | ||
136 | int col, row; | ||
137 | int new_state; | ||
138 | int num_cols; | ||
139 | |||
140 | num_cols = len; | ||
141 | |||
142 | if (ckdev->ghost_filter && cros_ec_keyb_has_ghosting(ckdev, kb_state)) { | ||
143 | /* | ||
144 | * Simple-minded solution: ignore this state. The obvious | ||
145 | * improvement is to only ignore changes to keys involved in | ||
146 | * the ghosting, but process the other changes. | ||
147 | */ | ||
148 | dev_dbg(ckdev->dev, "ghosting found\n"); | ||
149 | return; | ||
150 | } | ||
151 | |||
152 | for (col = 0; col < ckdev->cols; col++) { | ||
153 | for (row = 0; row < ckdev->rows; row++) { | ||
154 | int pos = MATRIX_SCAN_CODE(row, col, ckdev->row_shift); | ||
155 | const unsigned short *keycodes = idev->keycode; | ||
156 | int code; | ||
157 | |||
158 | code = keycodes[pos]; | ||
159 | new_state = kb_state[col] & (1 << row); | ||
160 | if (!!new_state != test_bit(code, idev->key)) { | ||
161 | dev_dbg(ckdev->dev, | ||
162 | "changed: [r%d c%d]: byte %02x\n", | ||
163 | row, col, new_state); | ||
164 | |||
165 | input_report_key(idev, code, new_state); | ||
166 | } | ||
167 | } | ||
168 | } | ||
169 | input_sync(ckdev->idev); | ||
170 | } | ||
171 | |||
172 | static int cros_ec_keyb_open(struct input_dev *dev) | ||
173 | { | ||
174 | struct cros_ec_keyb *ckdev = input_get_drvdata(dev); | ||
175 | |||
176 | return blocking_notifier_chain_register(&ckdev->ec->event_notifier, | ||
177 | &ckdev->notifier); | ||
178 | } | ||
179 | |||
180 | static void cros_ec_keyb_close(struct input_dev *dev) | ||
181 | { | ||
182 | struct cros_ec_keyb *ckdev = input_get_drvdata(dev); | ||
183 | |||
184 | blocking_notifier_chain_unregister(&ckdev->ec->event_notifier, | ||
185 | &ckdev->notifier); | ||
186 | } | ||
187 | |||
188 | static int cros_ec_keyb_get_state(struct cros_ec_keyb *ckdev, uint8_t *kb_state) | ||
189 | { | ||
190 | return ckdev->ec->command_recv(ckdev->ec, EC_CMD_MKBP_STATE, | ||
191 | kb_state, ckdev->cols); | ||
192 | } | ||
193 | |||
194 | static int cros_ec_keyb_work(struct notifier_block *nb, | ||
195 | unsigned long state, void *_notify) | ||
196 | { | ||
197 | int ret; | ||
198 | struct cros_ec_keyb *ckdev = container_of(nb, struct cros_ec_keyb, | ||
199 | notifier); | ||
200 | uint8_t kb_state[ckdev->cols]; | ||
201 | |||
202 | ret = cros_ec_keyb_get_state(ckdev, kb_state); | ||
203 | if (ret >= 0) | ||
204 | cros_ec_keyb_process(ckdev, kb_state, ret); | ||
205 | |||
206 | return NOTIFY_DONE; | ||
207 | } | ||
208 | |||
209 | /* Clear any keys in the buffer */ | ||
210 | static void cros_ec_keyb_clear_keyboard(struct cros_ec_keyb *ckdev) | ||
211 | { | ||
212 | uint8_t old_state[ckdev->cols]; | ||
213 | uint8_t new_state[ckdev->cols]; | ||
214 | unsigned long duration; | ||
215 | int i, ret; | ||
216 | |||
217 | /* | ||
218 | * Keep reading until we see that the scan state does not change. | ||
219 | * That indicates that we are done. | ||
220 | * | ||
221 | * Assume that the EC keyscan buffer is at most 32 deep. | ||
222 | */ | ||
223 | duration = jiffies; | ||
224 | ret = cros_ec_keyb_get_state(ckdev, new_state); | ||
225 | for (i = 1; !ret && i < 32; i++) { | ||
226 | memcpy(old_state, new_state, sizeof(old_state)); | ||
227 | ret = cros_ec_keyb_get_state(ckdev, new_state); | ||
228 | if (0 == memcmp(old_state, new_state, sizeof(old_state))) | ||
229 | break; | ||
230 | } | ||
231 | duration = jiffies - duration; | ||
232 | dev_info(ckdev->dev, "Discarded %d keyscan(s) in %dus\n", i, | ||
233 | jiffies_to_usecs(duration)); | ||
234 | } | ||
235 | |||
236 | static int cros_ec_keyb_probe(struct platform_device *pdev) | ||
237 | { | ||
238 | struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent); | ||
239 | struct device *dev = ec->dev; | ||
240 | struct cros_ec_keyb *ckdev; | ||
241 | struct input_dev *idev; | ||
242 | struct device_node *np; | ||
243 | int err; | ||
244 | |||
245 | np = pdev->dev.of_node; | ||
246 | if (!np) | ||
247 | return -ENODEV; | ||
248 | |||
249 | ckdev = devm_kzalloc(&pdev->dev, sizeof(*ckdev), GFP_KERNEL); | ||
250 | if (!ckdev) | ||
251 | return -ENOMEM; | ||
252 | err = matrix_keypad_parse_of_params(&pdev->dev, &ckdev->rows, | ||
253 | &ckdev->cols); | ||
254 | if (err) | ||
255 | return err; | ||
256 | |||
257 | idev = devm_input_allocate_device(&pdev->dev); | ||
258 | if (!idev) | ||
259 | return -ENOMEM; | ||
260 | |||
261 | ckdev->ec = ec; | ||
262 | ckdev->notifier.notifier_call = cros_ec_keyb_work; | ||
263 | ckdev->dev = dev; | ||
264 | dev_set_drvdata(&pdev->dev, ckdev); | ||
265 | |||
266 | idev->name = ec->ec_name; | ||
267 | idev->phys = ec->phys_name; | ||
268 | __set_bit(EV_REP, idev->evbit); | ||
269 | |||
270 | idev->id.bustype = BUS_VIRTUAL; | ||
271 | idev->id.version = 1; | ||
272 | idev->id.product = 0; | ||
273 | idev->dev.parent = &pdev->dev; | ||
274 | idev->open = cros_ec_keyb_open; | ||
275 | idev->close = cros_ec_keyb_close; | ||
276 | |||
277 | ckdev->ghost_filter = of_property_read_bool(np, | ||
278 | "google,needs-ghost-filter"); | ||
279 | |||
280 | err = matrix_keypad_build_keymap(NULL, NULL, ckdev->rows, ckdev->cols, | ||
281 | NULL, idev); | ||
282 | if (err) { | ||
283 | dev_err(dev, "cannot build key matrix\n"); | ||
284 | return err; | ||
285 | } | ||
286 | |||
287 | ckdev->row_shift = get_count_order(ckdev->cols); | ||
288 | |||
289 | input_set_capability(idev, EV_MSC, MSC_SCAN); | ||
290 | input_set_drvdata(idev, ckdev); | ||
291 | ckdev->idev = idev; | ||
292 | err = input_register_device(ckdev->idev); | ||
293 | if (err) { | ||
294 | dev_err(dev, "cannot register input device\n"); | ||
295 | return err; | ||
296 | } | ||
297 | |||
298 | return 0; | ||
299 | } | ||
300 | |||
301 | #ifdef CONFIG_PM_SLEEP | ||
302 | static int cros_ec_keyb_resume(struct device *dev) | ||
303 | { | ||
304 | struct cros_ec_keyb *ckdev = dev_get_drvdata(dev); | ||
305 | |||
306 | /* | ||
307 | * When the EC is not a wake source, then it could not have caused the | ||
308 | * resume, so we clear the EC's key scan buffer. If the EC was a | ||
309 | * wake source (e.g. the lid is open and the user might press a key to | ||
310 | * wake) then the key scan buffer should be preserved. | ||
311 | */ | ||
312 | if (ckdev->ec->was_wake_device) | ||
313 | cros_ec_keyb_clear_keyboard(ckdev); | ||
314 | |||
315 | return 0; | ||
316 | } | ||
317 | |||
318 | #endif | ||
319 | |||
320 | static SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume); | ||
321 | |||
322 | static struct platform_driver cros_ec_keyb_driver = { | ||
323 | .probe = cros_ec_keyb_probe, | ||
324 | .driver = { | ||
325 | .name = "cros-ec-keyb", | ||
326 | .pm = &cros_ec_keyb_pm_ops, | ||
327 | }, | ||
328 | }; | ||
329 | |||
330 | module_platform_driver(cros_ec_keyb_driver); | ||
331 | |||
332 | MODULE_LICENSE("GPL"); | ||
333 | MODULE_DESCRIPTION("ChromeOS EC keyboard driver"); | ||
334 | MODULE_ALIAS("platform:cros-ec-keyb"); | ||