2 * Copyright (C) ST-Ericsson SA 2010
4 * Author: Jayeeta Banerjee <jayeeta.banerjee@stericsson.com>
5 * Author: Sundar Iyer <sundar.iyer@stericsson.com>
7 * License Terms: GNU General Public License, version 2
9 * TC35893 MFD Keypad Controller driver
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/input.h>
16 #include <linux/platform_device.h>
17 #include <linux/input/matrix_keypad.h>
18 #include <linux/i2c.h>
19 #include <linux/slab.h>
20 #include <linux/mfd/tc3589x.h>
22 /* Maximum supported keypad matrix row/columns size */
23 #define TC3589x_MAX_KPROW 8
24 #define TC3589x_MAX_KPCOL 12
26 /* keypad related Constants */
27 #define TC3589x_MAX_DEBOUNCE_SETTLE 0xFF
28 #define DEDICATED_KEY_VAL 0xFF
30 /* Pull up/down masks */
31 #define TC3589x_NO_PULL_MASK 0x0
32 #define TC3589x_PULL_DOWN_MASK 0x1
33 #define TC3589x_PULL_UP_MASK 0x2
34 #define TC3589x_PULLUP_ALL_MASK 0xAA
35 #define TC3589x_IO_PULL_VAL(index, mask) ((mask)<<((index)%4)*2))
37 /* Bit masks for IOCFG register */
38 #define IOCFG_BALLCFG 0x01
41 #define KP_EVCODE_COL_MASK 0x0F
42 #define KP_EVCODE_ROW_MASK 0x70
43 #define KP_RELEASE_EVT_MASK 0x80
45 #define KP_ROW_SHIFT 4
47 #define KP_NO_VALID_KEY_MASK 0x7F
49 /* bit masks for RESTCTRL register */
50 #define TC3589x_KBDRST 0x2
51 #define TC3589x_IRQRST 0x10
52 #define TC3589x_RESET_ALL 0x1B
54 /* KBDMFS register bit mask */
55 #define TC3589x_KBDMFS_EN 0x1
57 /* CLKEN register bitmask */
58 #define KPD_CLK_EN 0x1
60 /* RSTINTCLR register bit mask */
63 /* bit masks for keyboard interrupts*/
64 #define TC3589x_EVT_LOSS_INT 0x8
65 #define TC3589x_EVT_INT 0x4
66 #define TC3589x_KBD_LOSS_INT 0x2
67 #define TC3589x_KBD_INT 0x1
69 /* bit masks for keyboard interrupt clear*/
70 #define TC3589x_EVT_INT_CLR 0x2
71 #define TC3589x_KBD_INT_CLR 0x1
73 #define TC3589x_KBD_KEYMAP_SIZE 64
76 * struct tc_keypad - data structure used by keypad driver
77 * @tc3589x: pointer to tc35893
78 * @input: pointer to input device object
79 * @board: keypad platform device
80 * @krow: number of rows
81 * @kcol: number of coloumns
82 * @keymap: matrix scan code table for keycodes
83 * @keypad_stopped: holds keypad status
86 struct tc3589x
*tc3589x
;
87 struct input_dev
*input
;
88 const struct tc3589x_keypad_platform_data
*board
;
91 unsigned short keymap
[TC3589x_KBD_KEYMAP_SIZE
];
95 static int tc3589x_keypad_init_key_hardware(struct tc_keypad
*keypad
)
98 struct tc3589x
*tc3589x
= keypad
->tc3589x
;
99 u8 settle_time
= keypad
->board
->settle_time
;
100 u8 dbounce_period
= keypad
->board
->debounce_period
;
101 u8 rows
= keypad
->board
->krow
& 0xf; /* mask out the nibble */
102 u8 column
= keypad
->board
->kcol
& 0xf; /* mask out the nibble */
104 /* validate platform configurations */
105 if (keypad
->board
->kcol
> TC3589x_MAX_KPCOL
||
106 keypad
->board
->krow
> TC3589x_MAX_KPROW
||
107 keypad
->board
->debounce_period
> TC3589x_MAX_DEBOUNCE_SETTLE
||
108 keypad
->board
->settle_time
> TC3589x_MAX_DEBOUNCE_SETTLE
)
111 /* configure KBDSIZE 4 LSbits for cols and 4 MSbits for rows */
112 ret
= tc3589x_reg_write(tc3589x
, TC3589x_KBDSIZE
,
113 (rows
<< KP_ROW_SHIFT
) | column
);
117 /* configure dedicated key config, no dedicated key selected */
118 ret
= tc3589x_reg_write(tc3589x
, TC3589x_KBCFG_LSB
, DEDICATED_KEY_VAL
);
122 ret
= tc3589x_reg_write(tc3589x
, TC3589x_KBCFG_MSB
, DEDICATED_KEY_VAL
);
126 /* Configure settle time */
127 ret
= tc3589x_reg_write(tc3589x
, TC3589x_KBDSETTLE_REG
, settle_time
);
131 /* Configure debounce time */
132 ret
= tc3589x_reg_write(tc3589x
, TC3589x_KBDBOUNCE
, dbounce_period
);
136 /* Start of initialise keypad GPIOs */
137 ret
= tc3589x_set_bits(tc3589x
, TC3589x_IOCFG
, 0x0, IOCFG_IG
);
141 /* Configure pull-up resistors for all row GPIOs */
142 ret
= tc3589x_reg_write(tc3589x
, TC3589x_IOPULLCFG0_LSB
,
143 TC3589x_PULLUP_ALL_MASK
);
147 ret
= tc3589x_reg_write(tc3589x
, TC3589x_IOPULLCFG0_MSB
,
148 TC3589x_PULLUP_ALL_MASK
);
152 /* Configure pull-up resistors for all column GPIOs */
153 ret
= tc3589x_reg_write(tc3589x
, TC3589x_IOPULLCFG1_LSB
,
154 TC3589x_PULLUP_ALL_MASK
);
158 ret
= tc3589x_reg_write(tc3589x
, TC3589x_IOPULLCFG1_MSB
,
159 TC3589x_PULLUP_ALL_MASK
);
163 ret
= tc3589x_reg_write(tc3589x
, TC3589x_IOPULLCFG2_LSB
,
164 TC3589x_PULLUP_ALL_MASK
);
169 #define TC35893_DATA_REGS 4
170 #define TC35893_KEYCODE_FIFO_EMPTY 0x7f
171 #define TC35893_KEYCODE_FIFO_CLEAR 0xff
172 #define TC35893_KEYPAD_ROW_SHIFT 0x3
174 static irqreturn_t
tc3589x_keypad_irq(int irq
, void *dev
)
176 struct tc_keypad
*keypad
= dev
;
177 struct tc3589x
*tc3589x
= keypad
->tc3589x
;
178 u8 i
, row_index
, col_index
, kbd_code
, up
;
181 for (i
= 0; i
< TC35893_DATA_REGS
* 2; i
++) {
182 kbd_code
= tc3589x_reg_read(tc3589x
, TC3589x_EVTCODE_FIFO
);
184 /* loop till fifo is empty and no more keys are pressed */
185 if (kbd_code
== TC35893_KEYCODE_FIFO_EMPTY
||
186 kbd_code
== TC35893_KEYCODE_FIFO_CLEAR
)
189 /* valid key is found */
190 col_index
= kbd_code
& KP_EVCODE_COL_MASK
;
191 row_index
= (kbd_code
& KP_EVCODE_ROW_MASK
) >> KP_ROW_SHIFT
;
192 code
= MATRIX_SCAN_CODE(row_index
, col_index
,
193 TC35893_KEYPAD_ROW_SHIFT
);
194 up
= kbd_code
& KP_RELEASE_EVT_MASK
;
196 input_event(keypad
->input
, EV_MSC
, MSC_SCAN
, code
);
197 input_report_key(keypad
->input
, keypad
->keymap
[code
], !up
);
198 input_sync(keypad
->input
);
202 tc3589x_set_bits(tc3589x
, TC3589x_KBDIC
,
203 0x0, TC3589x_EVT_INT_CLR
| TC3589x_KBD_INT_CLR
);
205 tc3589x_set_bits(tc3589x
, TC3589x_KBDMSK
,
206 0x0, TC3589x_EVT_LOSS_INT
| TC3589x_EVT_INT
);
211 static int tc3589x_keypad_enable(struct tc_keypad
*keypad
)
213 struct tc3589x
*tc3589x
= keypad
->tc3589x
;
216 /* pull the keypad module out of reset */
217 ret
= tc3589x_set_bits(tc3589x
, TC3589x_RSTCTRL
, TC3589x_KBDRST
, 0x0);
221 /* configure KBDMFS */
222 ret
= tc3589x_set_bits(tc3589x
, TC3589x_KBDMFS
, 0x0, TC3589x_KBDMFS_EN
);
226 /* enable the keypad clock */
227 ret
= tc3589x_set_bits(tc3589x
, TC3589x_CLKEN
, 0x0, KPD_CLK_EN
);
231 /* clear pending IRQs */
232 ret
= tc3589x_set_bits(tc3589x
, TC3589x_RSTINTCLR
, 0x0, 0x1);
236 /* enable the IRQs */
237 ret
= tc3589x_set_bits(tc3589x
, TC3589x_KBDMSK
, 0x0,
238 TC3589x_EVT_LOSS_INT
| TC3589x_EVT_INT
);
242 keypad
->keypad_stopped
= false;
247 static int tc3589x_keypad_disable(struct tc_keypad
*keypad
)
249 struct tc3589x
*tc3589x
= keypad
->tc3589x
;
253 ret
= tc3589x_set_bits(tc3589x
, TC3589x_KBDIC
,
254 0x0, TC3589x_EVT_INT_CLR
| TC3589x_KBD_INT_CLR
);
258 /* disable all interrupts */
259 ret
= tc3589x_set_bits(tc3589x
, TC3589x_KBDMSK
,
260 ~(TC3589x_EVT_LOSS_INT
| TC3589x_EVT_INT
), 0x0);
264 /* disable the keypad module */
265 ret
= tc3589x_set_bits(tc3589x
, TC3589x_CLKEN
, 0x1, 0x0);
269 /* put the keypad module into reset */
270 ret
= tc3589x_set_bits(tc3589x
, TC3589x_RSTCTRL
, TC3589x_KBDRST
, 0x1);
272 keypad
->keypad_stopped
= true;
277 static int tc3589x_keypad_open(struct input_dev
*input
)
280 struct tc_keypad
*keypad
= input_get_drvdata(input
);
282 /* enable the keypad module */
283 error
= tc3589x_keypad_enable(keypad
);
285 dev_err(&input
->dev
, "failed to enable keypad module\n");
289 error
= tc3589x_keypad_init_key_hardware(keypad
);
291 dev_err(&input
->dev
, "failed to configure keypad module\n");
298 static void tc3589x_keypad_close(struct input_dev
*input
)
300 struct tc_keypad
*keypad
= input_get_drvdata(input
);
302 /* disable the keypad module */
303 tc3589x_keypad_disable(keypad
);
306 static int __devinit
tc3589x_keypad_probe(struct platform_device
*pdev
)
308 struct tc3589x
*tc3589x
= dev_get_drvdata(pdev
->dev
.parent
);
309 struct tc_keypad
*keypad
;
310 struct input_dev
*input
;
311 const struct tc3589x_keypad_platform_data
*plat
;
314 plat
= tc3589x
->pdata
->keypad
;
316 dev_err(&pdev
->dev
, "invalid keypad platform data\n");
320 irq
= platform_get_irq(pdev
, 0);
324 keypad
= kzalloc(sizeof(struct tc_keypad
), GFP_KERNEL
);
325 input
= input_allocate_device();
326 if (!keypad
|| !input
) {
327 dev_err(&pdev
->dev
, "failed to allocate keypad memory\n");
332 keypad
->board
= plat
;
333 keypad
->input
= input
;
334 keypad
->tc3589x
= tc3589x
;
336 input
->id
.bustype
= BUS_I2C
;
337 input
->name
= pdev
->name
;
338 input
->dev
.parent
= &pdev
->dev
;
340 input
->keycode
= keypad
->keymap
;
341 input
->keycodesize
= sizeof(keypad
->keymap
[0]);
342 input
->keycodemax
= ARRAY_SIZE(keypad
->keymap
);
344 input
->open
= tc3589x_keypad_open
;
345 input
->close
= tc3589x_keypad_close
;
347 input_set_drvdata(input
, keypad
);
349 input_set_capability(input
, EV_MSC
, MSC_SCAN
);
351 __set_bit(EV_KEY
, input
->evbit
);
352 if (!plat
->no_autorepeat
)
353 __set_bit(EV_REP
, input
->evbit
);
355 matrix_keypad_build_keymap(plat
->keymap_data
, 0x3,
356 input
->keycode
, input
->keybit
);
358 error
= request_threaded_irq(irq
, NULL
,
359 tc3589x_keypad_irq
, plat
->irqtype
,
360 "tc3589x-keypad", keypad
);
363 "Could not allocate irq %d,error %d\n",
368 error
= input_register_device(input
);
370 dev_err(&pdev
->dev
, "Could not register input device\n");
374 /* let platform decide if keypad is a wakeup source or not */
375 device_init_wakeup(&pdev
->dev
, plat
->enable_wakeup
);
376 device_set_wakeup_capable(&pdev
->dev
, plat
->enable_wakeup
);
378 platform_set_drvdata(pdev
, keypad
);
383 free_irq(irq
, keypad
);
385 input_free_device(input
);
390 static int __devexit
tc3589x_keypad_remove(struct platform_device
*pdev
)
392 struct tc_keypad
*keypad
= platform_get_drvdata(pdev
);
393 int irq
= platform_get_irq(pdev
, 0);
395 if (!keypad
->keypad_stopped
)
396 tc3589x_keypad_disable(keypad
);
398 free_irq(irq
, keypad
);
400 input_unregister_device(keypad
->input
);
407 #ifdef CONFIG_PM_SLEEP
408 static int tc3589x_keypad_suspend(struct device
*dev
)
410 struct platform_device
*pdev
= to_platform_device(dev
);
411 struct tc_keypad
*keypad
= platform_get_drvdata(pdev
);
412 int irq
= platform_get_irq(pdev
, 0);
414 /* keypad is already off; we do nothing */
415 if (keypad
->keypad_stopped
)
418 /* if device is not a wakeup source, disable it for powersave */
419 if (!device_may_wakeup(&pdev
->dev
))
420 tc3589x_keypad_disable(keypad
);
422 enable_irq_wake(irq
);
427 static int tc3589x_keypad_resume(struct device
*dev
)
429 struct platform_device
*pdev
= to_platform_device(dev
);
430 struct tc_keypad
*keypad
= platform_get_drvdata(pdev
);
431 int irq
= platform_get_irq(pdev
, 0);
433 if (!keypad
->keypad_stopped
)
436 /* enable the device to resume normal operations */
437 if (!device_may_wakeup(&pdev
->dev
))
438 tc3589x_keypad_enable(keypad
);
440 disable_irq_wake(irq
);
446 static SIMPLE_DEV_PM_OPS(tc3589x_keypad_dev_pm_ops
,
447 tc3589x_keypad_suspend
, tc3589x_keypad_resume
);
449 static struct platform_driver tc3589x_keypad_driver
= {
451 .name
= "tc3589x-keypad",
452 .owner
= THIS_MODULE
,
453 .pm
= &tc3589x_keypad_dev_pm_ops
,
455 .probe
= tc3589x_keypad_probe
,
456 .remove
= __devexit_p(tc3589x_keypad_remove
),
458 module_platform_driver(tc3589x_keypad_driver
);
460 MODULE_LICENSE("GPL v2");
461 MODULE_AUTHOR("Jayeeta Banerjee/Sundar Iyer");
462 MODULE_DESCRIPTION("TC35893 Keypad Driver");
463 MODULE_ALIAS("platform:tc3589x-keypad");