2 * Copyright (C) ST-Ericsson SA 2010
7 * License Terms: GNU General Public License, version 2
9 * TC35893 MFD Keypad Controller driver
12 #include <linux/module.h>
13 #include <linux/interrupt.h>
14 #include <linux/input.h>
15 #include <linux/platform_device.h>
16 #include <linux/input/matrix_keypad.h>
17 #include <linux/i2c.h>
18 #include <linux/slab.h>
19 #include <linux/mfd/tc3589x.h>
21 /* Maximum supported keypad matrix row/columns size */
22 #define TC3589x_MAX_KPROW 8
23 #define TC3589x_MAX_KPCOL 12
25 /* keypad related Constants */
26 #define TC3589x_MAX_DEBOUNCE_SETTLE 0xFF
27 #define DEDICATED_KEY_VAL 0xFF
29 /* Pull up/down masks */
30 #define TC3589x_NO_PULL_MASK 0x0
31 #define TC3589x_PULL_DOWN_MASK 0x1
32 #define TC3589x_PULL_UP_MASK 0x2
33 #define TC3589x_PULLUP_ALL_MASK 0xAA
34 #define TC3589x_IO_PULL_VAL(index, mask) ((mask)<<((index)%4)*2))
36 /* Bit masks for IOCFG register */
37 #define IOCFG_BALLCFG 0x01
40 #define KP_EVCODE_COL_MASK 0x0F
41 #define KP_EVCODE_ROW_MASK 0x70
42 #define KP_RELEASE_EVT_MASK 0x80
44 #define KP_ROW_SHIFT 4
46 #define KP_NO_VALID_KEY_MASK 0x7F
48 /* bit masks for RESTCTRL register */
49 #define TC3589x_KBDRST 0x2
50 #define TC3589x_IRQRST 0x10
51 #define TC3589x_RESET_ALL 0x1B
53 /* KBDMFS register bit mask */
54 #define TC3589x_KBDMFS_EN 0x1
56 /* CLKEN register bitmask */
57 #define KPD_CLK_EN 0x1
59 /* RSTINTCLR register bit mask */
62 /* bit masks for keyboard interrupts*/
63 #define TC3589x_EVT_LOSS_INT 0x8
64 #define TC3589x_EVT_INT 0x4
65 #define TC3589x_KBD_LOSS_INT 0x2
66 #define TC3589x_KBD_INT 0x1
68 /* bit masks for keyboard interrupt clear*/
69 #define TC3589x_EVT_INT_CLR 0x2
70 #define TC3589x_KBD_INT_CLR 0x1
73 * struct tc_keypad - data structure used by keypad driver
74 * @tc3589x: pointer to tc35893
75 * @input: pointer to input device object
76 * @board: keypad platform device
77 * @krow: number of rows
78 * @kcol: number of columns
79 * @keymap: matrix scan code table for keycodes
80 * @keypad_stopped: holds keypad status
83 struct tc3589x *tc3589x;
84 struct input_dev *input;
85 const struct tc3589x_keypad_platform_data *board;
88 unsigned short *keymap;
92 static int tc3589x_keypad_init_key_hardware(struct tc_keypad *keypad)
95 struct tc3589x *tc3589x = keypad->tc3589x;
96 const struct tc3589x_keypad_platform_data *board = keypad->board;
98 /* validate platform configuration */
99 if (board->kcol > TC3589x_MAX_KPCOL || board->krow > TC3589x_MAX_KPROW)
102 /* configure KBDSIZE 4 LSbits for cols and 4 MSbits for rows */
103 ret = tc3589x_reg_write(tc3589x, TC3589x_KBDSIZE,
104 (board->krow << KP_ROW_SHIFT) | board->kcol);
108 /* configure dedicated key config, no dedicated key selected */
109 ret = tc3589x_reg_write(tc3589x, TC3589x_KBCFG_LSB, DEDICATED_KEY_VAL);
113 ret = tc3589x_reg_write(tc3589x, TC3589x_KBCFG_MSB, DEDICATED_KEY_VAL);
117 /* Configure settle time */
118 ret = tc3589x_reg_write(tc3589x, TC3589x_KBDSETTLE_REG,
123 /* Configure debounce time */
124 ret = tc3589x_reg_write(tc3589x, TC3589x_KBDBOUNCE,
125 board->debounce_period);
129 /* Start of initialise keypad GPIOs */
130 ret = tc3589x_set_bits(tc3589x, TC3589x_IOCFG, 0x0, IOCFG_IG);
134 /* Configure pull-up resistors for all row GPIOs */
135 ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG0_LSB,
136 TC3589x_PULLUP_ALL_MASK);
140 ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG0_MSB,
141 TC3589x_PULLUP_ALL_MASK);
145 /* Configure pull-up resistors for all column GPIOs */
146 ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG1_LSB,
147 TC3589x_PULLUP_ALL_MASK);
151 ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG1_MSB,
152 TC3589x_PULLUP_ALL_MASK);
156 ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG2_LSB,
157 TC3589x_PULLUP_ALL_MASK);
162 #define TC35893_DATA_REGS 4
163 #define TC35893_KEYCODE_FIFO_EMPTY 0x7f
164 #define TC35893_KEYCODE_FIFO_CLEAR 0xff
165 #define TC35893_KEYPAD_ROW_SHIFT 0x3
167 static irqreturn_t tc3589x_keypad_irq(int irq, void *dev)
169 struct tc_keypad *keypad = dev;
170 struct tc3589x *tc3589x = keypad->tc3589x;
171 u8 i, row_index, col_index, kbd_code, up;
174 for (i = 0; i < TC35893_DATA_REGS * 2; i++) {
175 kbd_code = tc3589x_reg_read(tc3589x, TC3589x_EVTCODE_FIFO);
177 /* loop till fifo is empty and no more keys are pressed */
178 if (kbd_code == TC35893_KEYCODE_FIFO_EMPTY ||
179 kbd_code == TC35893_KEYCODE_FIFO_CLEAR)
182 /* valid key is found */
183 col_index = kbd_code & KP_EVCODE_COL_MASK;
184 row_index = (kbd_code & KP_EVCODE_ROW_MASK) >> KP_ROW_SHIFT;
185 code = MATRIX_SCAN_CODE(row_index, col_index,
186 TC35893_KEYPAD_ROW_SHIFT);
187 up = kbd_code & KP_RELEASE_EVT_MASK;
189 input_event(keypad->input, EV_MSC, MSC_SCAN, code);
190 input_report_key(keypad->input, keypad->keymap[code], !up);
191 input_sync(keypad->input);
195 tc3589x_set_bits(tc3589x, TC3589x_KBDIC,
196 0x0, TC3589x_EVT_INT_CLR | TC3589x_KBD_INT_CLR);
198 tc3589x_set_bits(tc3589x, TC3589x_KBDMSK,
199 0x0, TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT);
204 static int tc3589x_keypad_enable(struct tc_keypad *keypad)
206 struct tc3589x *tc3589x = keypad->tc3589x;
209 /* pull the keypad module out of reset */
210 ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL, TC3589x_KBDRST, 0x0);
214 /* configure KBDMFS */
215 ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMFS, 0x0, TC3589x_KBDMFS_EN);
219 /* enable the keypad clock */
220 ret = tc3589x_set_bits(tc3589x, TC3589x_CLKEN, 0x0, KPD_CLK_EN);
224 /* clear pending IRQs */
225 ret = tc3589x_set_bits(tc3589x, TC3589x_RSTINTCLR, 0x0, 0x1);
229 /* enable the IRQs */
230 ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMSK, 0x0,
231 TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT);
235 keypad->keypad_stopped = false;
240 static int tc3589x_keypad_disable(struct tc_keypad *keypad)
242 struct tc3589x *tc3589x = keypad->tc3589x;
246 ret = tc3589x_set_bits(tc3589x, TC3589x_KBDIC,
247 0x0, TC3589x_EVT_INT_CLR | TC3589x_KBD_INT_CLR);
251 /* disable all interrupts */
252 ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMSK,
253 ~(TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT), 0x0);
257 /* disable the keypad module */
258 ret = tc3589x_set_bits(tc3589x, TC3589x_CLKEN, 0x1, 0x0);
262 /* put the keypad module into reset */
263 ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL, TC3589x_KBDRST, 0x1);
265 keypad->keypad_stopped = true;
270 static int tc3589x_keypad_open(struct input_dev *input)
273 struct tc_keypad *keypad = input_get_drvdata(input);
275 /* enable the keypad module */
276 error = tc3589x_keypad_enable(keypad);
278 dev_err(&input->dev, "failed to enable keypad module\n");
282 error = tc3589x_keypad_init_key_hardware(keypad);
284 dev_err(&input->dev, "failed to configure keypad module\n");
291 static void tc3589x_keypad_close(struct input_dev *input)
293 struct tc_keypad *keypad = input_get_drvdata(input);
295 /* disable the keypad module */
296 tc3589x_keypad_disable(keypad);
300 static const struct tc3589x_keypad_platform_data *
301 tc3589x_keypad_of_probe(struct device *dev)
303 struct device_node *np = dev->of_node;
304 struct tc3589x_keypad_platform_data *plat;
310 return ERR_PTR(-ENODEV);
312 plat = devm_kzalloc(dev, sizeof(*plat), GFP_KERNEL);
314 return ERR_PTR(-ENOMEM);
316 of_property_read_u32(np, "keypad,num-columns", &cols);
317 of_property_read_u32(np, "keypad,num-rows", &rows);
318 plat->kcol = (u8) cols;
319 plat->krow = (u8) rows;
320 if (!plat->krow || !plat->kcol ||
321 plat->krow > TC_KPD_ROWS || plat->kcol > TC_KPD_COLUMNS) {
323 "keypad columns/rows not properly specified (%ux%u)\n",
324 plat->kcol, plat->krow);
325 return ERR_PTR(-EINVAL);
328 if (!of_get_property(np, "linux,keymap", &proplen)) {
329 dev_err(dev, "property linux,keymap not found\n");
330 return ERR_PTR(-ENOENT);
333 plat->no_autorepeat = of_property_read_bool(np, "linux,no-autorepeat");
334 plat->enable_wakeup = of_property_read_bool(np, "linux,wakeup");
336 /* The custom delay format is ms/16 */
337 of_property_read_u32(np, "debounce-delay-ms", &debounce_ms);
339 plat->debounce_period = debounce_ms * 16;
341 plat->debounce_period = TC_KPD_DEBOUNCE_PERIOD;
343 plat->settle_time = TC_KPD_SETTLE_TIME;
344 /* FIXME: should be property of the IRQ resource? */
345 plat->irqtype = IRQF_TRIGGER_FALLING;
350 static inline const struct tc3589x_keypad_platform_data *
351 tc3589x_keypad_of_probe(struct device *dev)
353 return ERR_PTR(-ENODEV);
358 static int tc3589x_keypad_probe(struct platform_device *pdev)
360 struct tc3589x *tc3589x = dev_get_drvdata(pdev->dev.parent);
361 struct tc_keypad *keypad;
362 struct input_dev *input;
363 const struct tc3589x_keypad_platform_data *plat;
366 plat = tc3589x->pdata->keypad;
368 plat = tc3589x_keypad_of_probe(&pdev->dev);
370 dev_err(&pdev->dev, "invalid keypad platform data\n");
371 return PTR_ERR(plat);
375 irq = platform_get_irq(pdev, 0);
379 keypad = kzalloc(sizeof(struct tc_keypad), GFP_KERNEL);
380 input = input_allocate_device();
381 if (!keypad || !input) {
382 dev_err(&pdev->dev, "failed to allocate keypad memory\n");
387 keypad->board = plat;
388 keypad->input = input;
389 keypad->tc3589x = tc3589x;
391 input->id.bustype = BUS_I2C;
392 input->name = pdev->name;
393 input->dev.parent = &pdev->dev;
395 input->open = tc3589x_keypad_open;
396 input->close = tc3589x_keypad_close;
398 error = matrix_keypad_build_keymap(plat->keymap_data, NULL,
399 TC3589x_MAX_KPROW, TC3589x_MAX_KPCOL,
402 dev_err(&pdev->dev, "Failed to build keymap\n");
406 keypad->keymap = input->keycode;
408 input_set_capability(input, EV_MSC, MSC_SCAN);
409 if (!plat->no_autorepeat)
410 __set_bit(EV_REP, input->evbit);
412 input_set_drvdata(input, keypad);
414 error = request_threaded_irq(irq, NULL, tc3589x_keypad_irq,
415 plat->irqtype | IRQF_ONESHOT,
416 "tc3589x-keypad", keypad);
419 "Could not allocate irq %d,error %d\n",
424 error = input_register_device(input);
426 dev_err(&pdev->dev, "Could not register input device\n");
430 /* let platform decide if keypad is a wakeup source or not */
431 device_init_wakeup(&pdev->dev, plat->enable_wakeup);
432 device_set_wakeup_capable(&pdev->dev, plat->enable_wakeup);
434 platform_set_drvdata(pdev, keypad);
439 free_irq(irq, keypad);
441 input_free_device(input);
446 static int tc3589x_keypad_remove(struct platform_device *pdev)
448 struct tc_keypad *keypad = platform_get_drvdata(pdev);
449 int irq = platform_get_irq(pdev, 0);
451 if (!keypad->keypad_stopped)
452 tc3589x_keypad_disable(keypad);
454 free_irq(irq, keypad);
456 input_unregister_device(keypad->input);
463 #ifdef CONFIG_PM_SLEEP
464 static int tc3589x_keypad_suspend(struct device *dev)
466 struct platform_device *pdev = to_platform_device(dev);
467 struct tc_keypad *keypad = platform_get_drvdata(pdev);
468 int irq = platform_get_irq(pdev, 0);
470 /* keypad is already off; we do nothing */
471 if (keypad->keypad_stopped)
474 /* if device is not a wakeup source, disable it for powersave */
475 if (!device_may_wakeup(&pdev->dev))
476 tc3589x_keypad_disable(keypad);
478 enable_irq_wake(irq);
483 static int tc3589x_keypad_resume(struct device *dev)
485 struct platform_device *pdev = to_platform_device(dev);
486 struct tc_keypad *keypad = platform_get_drvdata(pdev);
487 int irq = platform_get_irq(pdev, 0);
489 if (!keypad->keypad_stopped)
492 /* enable the device to resume normal operations */
493 if (!device_may_wakeup(&pdev->dev))
494 tc3589x_keypad_enable(keypad);
496 disable_irq_wake(irq);
502 static SIMPLE_DEV_PM_OPS(tc3589x_keypad_dev_pm_ops,
503 tc3589x_keypad_suspend, tc3589x_keypad_resume);
505 static struct platform_driver tc3589x_keypad_driver = {
507 .name = "tc3589x-keypad",
508 .pm = &tc3589x_keypad_dev_pm_ops,
510 .probe = tc3589x_keypad_probe,
511 .remove = tc3589x_keypad_remove,
513 module_platform_driver(tc3589x_keypad_driver);
515 MODULE_LICENSE("GPL v2");
516 MODULE_AUTHOR("Jayeeta Banerjee/Sundar Iyer");
517 MODULE_DESCRIPTION("TC35893 Keypad Driver");
518 MODULE_ALIAS("platform:tc3589x-keypad");