pxa27x_keypad.c 11.8 KB
Newer Older
1
/*
2
 * linux/drivers/input/keyboard/pxa27x_keypad.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Driver for the pxa27x matrix keyboard controller.
 *
 * Created:	Feb 22, 2007
 * Author:	Rodolfo Giometti <giometti@linux.it>
 *
 * Based on a previous implementations by Kevin O'Connor
 * <kevin_at_koconnor.net> and Alex Osborne <bobofdoom@gmail.com> and
 * on some suggestions by Nicolas Pitre <nico@cam.org>.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */


#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/input.h>
#include <linux/device.h>
#include <linux/platform_device.h>
26 27
#include <linux/clk.h>
#include <linux/err.h>
28 29 30 31 32 33 34 35

#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>

#include <asm/arch/hardware.h>
#include <asm/arch/pxa-regs.h>
#include <asm/arch/irqs.h>
36
#include <asm/arch/pxa27x_keypad.h>
37

38
#define DRIVER_NAME		"pxa27x-keypad"
39

40 41 42 43
#define KPC_MKRN(n)	((((n) & 0x7) - 1) << 26) /* matrix key row number */
#define KPC_MKCN(n)	((((n) & 0x7) - 1) << 23) /* matrix key column number */
#define KPC_DKN(n)	((((n) & 0x7) - 1) << 6)  /* direct key number */

44 45 46
#define KPDK_DKP        (0x1 << 31)
#define KPDK_DK(n)	((n) & 0xff)

47 48 49
#define KPAS_MUKP(n)		(((n) >> 26) & 0x1f)
#define KPAS_RP(n)		(((n) >> 4) & 0xf)
#define KPAS_CP(n)		((n) & 0xf)
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
#define KPASMKP_MKC_MASK	(0xff)

#define MAX_MATRIX_KEY_NUM	(8 * 8)

struct pxa27x_keypad {
	struct pxa27x_keypad_platform_data *pdata;

	struct clk *clk;
	struct input_dev *input_dev;

	/* matrix key code map */
	unsigned int matrix_keycodes[MAX_MATRIX_KEY_NUM];

	/* state row bits of each column scan */
	uint32_t matrix_key_state[MAX_MATRIX_KEY_COLS];
66 67 68 69 70 71 72
	uint32_t direct_key_state;

	unsigned int direct_key_mask;

	int rotary_rel_code[2];
	int rotary_up_key[2];
	int rotary_down_key[2];
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
};

static void pxa27x_keypad_build_keycode(struct pxa27x_keypad *keypad)
{
	struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
	struct input_dev *input_dev = keypad->input_dev;
	unsigned int *key;
	int i;

	key = &pdata->matrix_key_map[0];
	for (i = 0; i < pdata->matrix_key_map_size; i++, key++) {
		int row = ((*key) >> 28) & 0xf;
		int col = ((*key) >> 24) & 0xf;
		int code = (*key) & 0xffffff;

		keypad->matrix_keycodes[(row << 3) + col] = code;
		set_bit(code, input_dev->keybit);
	}
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

	keypad->rotary_up_key[0] = pdata->rotary0_up_key;
	keypad->rotary_up_key[1] = pdata->rotary1_up_key;
	keypad->rotary_down_key[0] = pdata->rotary0_down_key;
	keypad->rotary_down_key[1] = pdata->rotary1_down_key;
	keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
	keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;

	if (pdata->rotary0_up_key && pdata->rotary0_down_key) {
		set_bit(pdata->rotary0_up_key, input_dev->keybit);
		set_bit(pdata->rotary0_down_key, input_dev->keybit);
	} else
		set_bit(pdata->rotary0_rel_code, input_dev->relbit);

	if (pdata->rotary1_up_key && pdata->rotary1_down_key) {
		set_bit(pdata->rotary1_up_key, input_dev->keybit);
		set_bit(pdata->rotary1_down_key, input_dev->keybit);
	} else
		set_bit(pdata->rotary1_rel_code, input_dev->relbit);
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
}

static inline unsigned int lookup_matrix_keycode(
		struct pxa27x_keypad *keypad, int row, int col)
{
	return keypad->matrix_keycodes[(row << 3) + col];
}

static void pxa27x_keypad_scan_matrix(struct pxa27x_keypad *keypad)
{
	struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
	int row, col, num_keys_pressed = 0;
	uint32_t new_state[MAX_MATRIX_KEY_COLS];
	uint32_t kpas = KPAS;

	num_keys_pressed = KPAS_MUKP(kpas);

	memset(new_state, 0, sizeof(new_state));

	if (num_keys_pressed == 0)
		goto scan;

	if (num_keys_pressed == 1) {
		col = KPAS_CP(kpas);
		row = KPAS_RP(kpas);

		/* if invalid row/col, treat as no key pressed */
		if (col >= pdata->matrix_key_cols ||
		    row >= pdata->matrix_key_rows)
			goto scan;

		new_state[col] = (1 << row);
		goto scan;
	}

	if (num_keys_pressed > 1) {
		uint32_t kpasmkp0 = KPASMKP0;
		uint32_t kpasmkp1 = KPASMKP1;
		uint32_t kpasmkp2 = KPASMKP2;
		uint32_t kpasmkp3 = KPASMKP3;

		new_state[0] = kpasmkp0 & KPASMKP_MKC_MASK;
		new_state[1] = (kpasmkp0 >> 16) & KPASMKP_MKC_MASK;
		new_state[2] = kpasmkp1 & KPASMKP_MKC_MASK;
		new_state[3] = (kpasmkp1 >> 16) & KPASMKP_MKC_MASK;
		new_state[4] = kpasmkp2 & KPASMKP_MKC_MASK;
		new_state[5] = (kpasmkp2 >> 16) & KPASMKP_MKC_MASK;
		new_state[6] = kpasmkp3 & KPASMKP_MKC_MASK;
		new_state[7] = (kpasmkp3 >> 16) & KPASMKP_MKC_MASK;
	}
scan:
	for (col = 0; col < pdata->matrix_key_cols; col++) {
		uint32_t bits_changed;

		bits_changed = keypad->matrix_key_state[col] ^ new_state[col];
		if (bits_changed == 0)
			continue;

		for (row = 0; row < pdata->matrix_key_rows; row++) {
			if ((bits_changed & (1 << row)) == 0)
				continue;

			input_report_key(keypad->input_dev,
				lookup_matrix_keycode(keypad, row, col),
				new_state[col] & (1 << row));
		}
	}
	input_sync(keypad->input_dev);
	memcpy(keypad->matrix_key_state, new_state, sizeof(new_state));
}
180

181 182
#define DEFAULT_KPREC	(0x007f007f)

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
static inline int rotary_delta(uint32_t kprec)
{
	if (kprec & KPREC_OF0)
		return (kprec & 0xff) + 0x7f;
	else if (kprec & KPREC_UF0)
		return (kprec & 0xff) - 0x7f - 0xff;
	else
		return (kprec & 0xff) - 0x7f;
}

static void report_rotary_event(struct pxa27x_keypad *keypad, int r, int delta)
{
	struct input_dev *dev = keypad->input_dev;

	if (delta == 0)
		return;

	if (keypad->rotary_up_key[r] && keypad->rotary_down_key[r]) {
		int keycode = (delta > 0) ? keypad->rotary_up_key[r] :
					    keypad->rotary_down_key[r];

		/* simulate a press-n-release */
		input_report_key(dev, keycode, 1);
		input_sync(dev);
		input_report_key(dev, keycode, 0);
		input_sync(dev);
	} else {
		input_report_rel(dev, keypad->rotary_rel_code[r], delta);
		input_sync(dev);
	}
}

static void pxa27x_keypad_scan_rotary(struct pxa27x_keypad *keypad)
{
	struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
	uint32_t kprec;

	/* read and reset to default count value */
	kprec = KPREC;
	KPREC = DEFAULT_KPREC;

	if (pdata->enable_rotary0)
		report_rotary_event(keypad, 0, rotary_delta(kprec));

	if (pdata->enable_rotary1)
		report_rotary_event(keypad, 1, rotary_delta(kprec >> 16));
}

static void pxa27x_keypad_scan_direct(struct pxa27x_keypad *keypad)
{
	struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
	unsigned int new_state;
	uint32_t kpdk, bits_changed;
	int i;

	kpdk = KPDK;

	if (pdata->enable_rotary0 || pdata->enable_rotary1)
		pxa27x_keypad_scan_rotary(keypad);

	if (pdata->direct_key_map == NULL)
		return;

	new_state = KPDK_DK(kpdk) & keypad->direct_key_mask;
	bits_changed = keypad->direct_key_state ^ new_state;

	if (bits_changed == 0)
		return;

	for (i = 0; i < pdata->direct_key_num; i++) {
		if (bits_changed & (1 << i))
			input_report_key(keypad->input_dev,
					pdata->direct_key_map[i],
					(new_state & (1 << i)));
	}
	input_sync(keypad->input_dev);
	keypad->direct_key_state = new_state;
}

262
static irqreturn_t pxa27x_keypad_irq_handler(int irq, void *dev_id)
263
{
264
	struct pxa27x_keypad *keypad = dev_id;
265
	unsigned long kpc = KPC;
266 267 268

	if (kpc & KPC_DI)
		pxa27x_keypad_scan_direct(keypad);
269

270 271
	if (kpc & KPC_MI)
		pxa27x_keypad_scan_matrix(keypad);
272 273 274 275

	return IRQ_HANDLED;
}

276
static void pxa27x_keypad_config(struct pxa27x_keypad *keypad)
277
{
278
	struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
279
	unsigned int mask = 0, direct_key_num = 0;
280
	unsigned long kpc = 0;
281

282 283 284 285 286 287
	/* enable matrix keys with automatic scan */
	if (pdata->matrix_key_rows && pdata->matrix_key_cols) {
		kpc |= KPC_ASACT | KPC_MIE | KPC_ME | KPC_MS_ALL;
		kpc |= KPC_MKRN(pdata->matrix_key_rows) |
		       KPC_MKCN(pdata->matrix_key_cols);
	}
288

289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
	/* enable rotary key, debounce interval same as direct keys */
	if (pdata->enable_rotary0) {
		mask |= 0x03;
		direct_key_num = 2;
		kpc |= KPC_REE0;
	}

	if (pdata->enable_rotary1) {
		mask |= 0x0c;
		direct_key_num = 4;
		kpc |= KPC_REE1;
	}

	if (pdata->direct_key_num > direct_key_num)
		direct_key_num = pdata->direct_key_num;

	keypad->direct_key_mask = ((2 << direct_key_num) - 1) & ~mask;

	/* enable direct key */
	if (direct_key_num)
		kpc |= KPC_DE | KPC_DIE | KPC_DKN(direct_key_num);
310

311
	KPC = kpc | KPC_RE_ZERO_DEB;
312 313 314 315 316 317
	KPREC = DEFAULT_KPREC;
}

static int pxa27x_keypad_open(struct input_dev *dev)
{
	struct pxa27x_keypad *keypad = input_get_drvdata(dev);
318 319

	/* Enable unit clock */
320
	clk_enable(keypad->clk);
321
	pxa27x_keypad_config(keypad);
322 323 324 325

	return 0;
}

326
static void pxa27x_keypad_close(struct input_dev *dev)
327
{
328 329
	struct pxa27x_keypad *keypad = input_get_drvdata(dev);

330
	/* Disable clock unit */
331
	clk_disable(keypad->clk);
332 333 334
}

#ifdef CONFIG_PM
335
static int pxa27x_keypad_suspend(struct platform_device *pdev, pm_message_t state)
336
{
337
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
338

339
	clk_disable(keypad->clk);
340 341 342
	return 0;
}

343
static int pxa27x_keypad_resume(struct platform_device *pdev)
344
{
345 346
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
	struct input_dev *input_dev = keypad->input_dev;
347 348 349 350 351

	mutex_lock(&input_dev->mutex);

	if (input_dev->users) {
		/* Enable unit clock */
352
		clk_enable(keypad->clk);
353
		pxa27x_keypad_config(keypad);
354 355 356 357 358 359 360
	}

	mutex_unlock(&input_dev->mutex);

	return 0;
}
#else
361 362
#define pxa27x_keypad_suspend	NULL
#define pxa27x_keypad_resume	NULL
363 364
#endif

365
static int __devinit pxa27x_keypad_probe(struct platform_device *pdev)
366
{
367
	struct pxa27x_keypad *keypad;
368
	struct input_dev *input_dev;
369
	int error;
370

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	keypad = kzalloc(sizeof(struct pxa27x_keypad), GFP_KERNEL);
	if (keypad == NULL) {
		dev_err(&pdev->dev, "failed to allocate driver data\n");
		return -ENOMEM;
	}

	keypad->pdata = pdev->dev.platform_data;
	if (keypad->pdata == NULL) {
		dev_err(&pdev->dev, "no platform data defined\n");
		error = -EINVAL;
		goto failed_free;
	}

	keypad->clk = clk_get(&pdev->dev, "KBDCLK");
	if (IS_ERR(keypad->clk)) {
		dev_err(&pdev->dev, "failed to get keypad clock\n");
		error = PTR_ERR(keypad->clk);
		goto failed_free;
389 390
	}

391 392 393
	/* Create and register the input driver. */
	input_dev = input_allocate_device();
	if (!input_dev) {
394
		dev_err(&pdev->dev, "failed to allocate input device\n");
395
		error = -ENOMEM;
396
		goto failed_put_clk;
397 398 399 400
	}

	input_dev->name = DRIVER_NAME;
	input_dev->id.bustype = BUS_HOST;
401 402
	input_dev->open = pxa27x_keypad_open;
	input_dev->close = pxa27x_keypad_close;
403
	input_dev->dev.parent = &pdev->dev;
404

405 406 407
	keypad->input_dev = input_dev;
	input_set_drvdata(input_dev, keypad);

408 409
	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP) |
		BIT_MASK(EV_REL);
410 411

	pxa27x_keypad_build_keycode(keypad);
412

413
	error = request_irq(IRQ_KEYPAD, pxa27x_keypad_irq_handler, IRQF_DISABLED,
414
			    DRIVER_NAME, keypad);
415 416 417 418 419
	if (error) {
		printk(KERN_ERR "Cannot request keypad IRQ\n");
		goto err_free_dev;
	}

420
	platform_set_drvdata(pdev, keypad);
421 422 423 424 425 426 427 428 429 430 431 432 433

	/* Register the input device */
	error = input_register_device(input_dev);
	if (error)
		goto err_free_irq;

	return 0;

 err_free_irq:
	platform_set_drvdata(pdev, NULL);
	free_irq(IRQ_KEYPAD, pdev);
 err_free_dev:
	input_free_device(input_dev);
434 435 436 437
failed_put_clk:
	clk_put(keypad->clk);
failed_free:
	kfree(keypad);
438 439 440
	return error;
}

441
static int __devexit pxa27x_keypad_remove(struct platform_device *pdev)
442
{
443
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
444 445 446

	free_irq(IRQ_KEYPAD, pdev);

447 448 449 450 451 452 453
	clk_disable(keypad->clk);
	clk_put(keypad->clk);

	input_unregister_device(keypad->input_dev);

	platform_set_drvdata(pdev, NULL);
	kfree(keypad);
454 455 456
	return 0;
}

457 458 459 460 461
static struct platform_driver pxa27x_keypad_driver = {
	.probe		= pxa27x_keypad_probe,
	.remove		= __devexit_p(pxa27x_keypad_remove),
	.suspend	= pxa27x_keypad_suspend,
	.resume		= pxa27x_keypad_resume,
462 463 464 465 466
	.driver		= {
		.name	= DRIVER_NAME,
	},
};

467
static int __init pxa27x_keypad_init(void)
468
{
469
	return platform_driver_register(&pxa27x_keypad_driver);
470 471
}

472
static void __exit pxa27x_keypad_exit(void)
473
{
474
	platform_driver_unregister(&pxa27x_keypad_driver);
475 476
}

477 478
module_init(pxa27x_keypad_init);
module_exit(pxa27x_keypad_exit);
479

480
MODULE_DESCRIPTION("PXA27x Keypad Controller Driver");
481
MODULE_LICENSE("GPL");