pxa27x_keypad.c 23.3 KB
Newer Older
1
/*
2
 * linux/drivers/input/keyboard/pxa27x_keypad.c
3 4 5 6 7 8 9 10
 *
 * 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
11
 * on some suggestions by Nicolas Pitre <nico@fluxnic.net>.
12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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/interrupt.h>
#include <linux/input.h>
#include <linux/device.h>
#include <linux/platform_device.h>
25 26
#include <linux/clk.h>
#include <linux/err.h>
27
#include <linux/input/matrix_keypad.h>
28
#include <linux/slab.h>
29
#include <linux/of.h>
30 31 32 33

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

34
#include <mach/hardware.h>
35
#include <linux/platform_data/keypad-pxa27x.h>
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/*
 * Keypad Controller registers
 */
#define KPC             0x0000 /* Keypad Control register */
#define KPDK            0x0008 /* Keypad Direct Key register */
#define KPREC           0x0010 /* Keypad Rotary Encoder register */
#define KPMK            0x0018 /* Keypad Matrix Key register */
#define KPAS            0x0020 /* Keypad Automatic Scan register */

/* Keypad Automatic Scan Multiple Key Presser register 0-3 */
#define KPASMKP0        0x0028
#define KPASMKP1        0x0030
#define KPASMKP2        0x0038
#define KPASMKP3        0x0040
#define KPKDI           0x0048

/* bit definitions */
53 54 55
#define KPC_MKRN(n)	((((n) - 1) & 0x7) << 26) /* matrix key row number */
#define KPC_MKCN(n)	((((n) - 1) & 0x7) << 23) /* matrix key column number */
#define KPC_DKN(n)	((((n) - 1) & 0x7) << 6)  /* direct key number */
56

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
#define KPC_AS          (0x1 << 30)  /* Automatic Scan bit */
#define KPC_ASACT       (0x1 << 29)  /* Automatic Scan on Activity */
#define KPC_MI          (0x1 << 22)  /* Matrix interrupt bit */
#define KPC_IMKP        (0x1 << 21)  /* Ignore Multiple Key Press */

#define KPC_MS(n)	(0x1 << (13 + (n)))	/* Matrix scan line 'n' */
#define KPC_MS_ALL      (0xff << 13)

#define KPC_ME          (0x1 << 12)  /* Matrix Keypad Enable */
#define KPC_MIE         (0x1 << 11)  /* Matrix Interrupt Enable */
#define KPC_DK_DEB_SEL	(0x1 <<  9)  /* Direct Keypad Debounce Select */
#define KPC_DI          (0x1 <<  5)  /* Direct key interrupt bit */
#define KPC_RE_ZERO_DEB (0x1 <<  4)  /* Rotary Encoder Zero Debounce */
#define KPC_REE1        (0x1 <<  3)  /* Rotary Encoder1 Enable */
#define KPC_REE0        (0x1 <<  2)  /* Rotary Encoder0 Enable */
#define KPC_DE          (0x1 <<  1)  /* Direct Keypad Enable */
#define KPC_DIE         (0x1 <<  0)  /* Direct Keypad interrupt Enable */

75 76 77
#define KPDK_DKP        (0x1 << 31)
#define KPDK_DK(n)	((n) & 0xff)

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
#define KPREC_OF1       (0x1 << 31)
#define kPREC_UF1       (0x1 << 30)
#define KPREC_OF0       (0x1 << 15)
#define KPREC_UF0       (0x1 << 14)

#define KPREC_RECOUNT0(n)	((n) & 0xff)
#define KPREC_RECOUNT1(n)	(((n) >> 16) & 0xff)

#define KPMK_MKP        (0x1 << 31)
#define KPAS_SO         (0x1 << 31)
#define KPASMKPx_SO     (0x1 << 31)

#define KPAS_MUKP(n)	(((n) >> 26) & 0x1f)
#define KPAS_RP(n)	(((n) >> 4) & 0xf)
#define KPAS_CP(n)	((n) & 0xf)
93

94 95
#define KPASMKP_MKC_MASK	(0xff)

96 97 98
#define keypad_readl(off)	__raw_readl(keypad->mmio_base + (off))
#define keypad_writel(off, v)	__raw_writel((v), keypad->mmio_base + (off))

99 100
#define MAX_MATRIX_KEY_NUM	(MAX_MATRIX_KEY_ROWS * MAX_MATRIX_KEY_COLS)
#define MAX_KEYPAD_KEYS		(MAX_MATRIX_KEY_NUM + MAX_DIRECT_KEY_NUM)
101 102

struct pxa27x_keypad {
103
	const struct pxa27x_keypad_platform_data *pdata;
104 105 106

	struct clk *clk;
	struct input_dev *input_dev;
107
	void __iomem *mmio_base;
108

109 110
	int irq;

111 112
	unsigned short keycodes[MAX_KEYPAD_KEYS];
	int rotary_rel_code[2];
113

114 115
	unsigned int row_shift;

116 117
	/* state row bits of each column scan */
	uint32_t matrix_key_state[MAX_MATRIX_KEY_COLS];
118 119 120
	uint32_t direct_key_state;

	unsigned int direct_key_mask;
121 122
};

123
#ifdef CONFIG_OF
124 125
static int pxa27x_keypad_matrix_key_parse_dt(struct pxa27x_keypad *keypad,
				struct pxa27x_keypad_platform_data *pdata)
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
{
	struct input_dev *input_dev = keypad->input_dev;
	struct device *dev = input_dev->dev.parent;
	u32 rows, cols;
	int error;

	error = matrix_keypad_parse_of_params(dev, &rows, &cols);
	if (error)
		return error;

	if (rows > MAX_MATRIX_KEY_ROWS || cols > MAX_MATRIX_KEY_COLS) {
		dev_err(dev, "rows or cols exceeds maximum value\n");
		return -EINVAL;
	}

	pdata->matrix_key_rows = rows;
	pdata->matrix_key_cols = cols;

	error = matrix_keypad_build_keymap(NULL, NULL,
					   pdata->matrix_key_rows,
					   pdata->matrix_key_cols,
					   keypad->keycodes, input_dev);
	if (error)
		return error;

	return 0;
}

154 155
static int pxa27x_keypad_direct_key_parse_dt(struct pxa27x_keypad *keypad,
				struct pxa27x_keypad_platform_data *pdata)
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 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
{
	struct input_dev *input_dev = keypad->input_dev;
	struct device *dev = input_dev->dev.parent;
	struct device_node *np = dev->of_node;
	const __be16 *prop;
	unsigned short code;
	unsigned int proplen, size;
	int i;
	int error;

	error = of_property_read_u32(np, "marvell,direct-key-count",
				     &pdata->direct_key_num);
	if (error) {
		/*
		 * If do not have marvel,direct-key-count defined,
		 * it means direct key is not supported.
		 */
		return error == -EINVAL ? 0 : error;
	}

	error = of_property_read_u32(np, "marvell,direct-key-mask",
				     &pdata->direct_key_mask);
	if (error) {
		if (error != -EINVAL)
			return error;

		/*
		 * If marvell,direct-key-mask is not defined, driver will use
		 * default value. Default value is set when configure the keypad.
		 */
		pdata->direct_key_mask = 0;
	}

	pdata->direct_key_low_active = of_property_read_bool(np,
					"marvell,direct-key-low-active");

	prop = of_get_property(np, "marvell,direct-key-map", &proplen);
	if (!prop)
		return -EINVAL;

	if (proplen % sizeof(u16))
		return -EINVAL;

	size = proplen / sizeof(u16);

	/* Only MAX_DIRECT_KEY_NUM is accepted.*/
	if (size > MAX_DIRECT_KEY_NUM)
		return -EINVAL;

	for (i = 0; i < size; i++) {
		code = be16_to_cpup(prop + i);
		keypad->keycodes[MAX_MATRIX_KEY_NUM + i] = code;
		__set_bit(code, input_dev->keybit);
	}

	return 0;
}

214 215
static int pxa27x_keypad_rotary_parse_dt(struct pxa27x_keypad *keypad,
				struct pxa27x_keypad_platform_data *pdata)
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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
{
	const __be32 *prop;
	int i, relkey_ret;
	unsigned int code, proplen;
	const char *rotaryname[2] = {
			"marvell,rotary0", "marvell,rotary1"};
	const char relkeyname[] = {"marvell,rotary-rel-key"};
	struct input_dev *input_dev = keypad->input_dev;
	struct device *dev = input_dev->dev.parent;
	struct device_node *np = dev->of_node;

	relkey_ret = of_property_read_u32(np, relkeyname, &code);
	/* if can read correct rotary key-code, we do not need this. */
	if (relkey_ret == 0) {
		unsigned short relcode;

		/* rotary0 taks lower half, rotary1 taks upper half. */
		relcode = code & 0xffff;
		pdata->rotary0_rel_code = (code & 0xffff);
		__set_bit(relcode, input_dev->relbit);

		relcode = code >> 16;
		pdata->rotary1_rel_code = relcode;
		__set_bit(relcode, input_dev->relbit);
	}

	for (i = 0; i < 2; i++) {
		prop = of_get_property(np, rotaryname[i], &proplen);
		/*
		 * If the prop is not set, it means keypad does not need
		 * initialize the rotaryX.
		 */
		if (!prop)
			continue;

		code = be32_to_cpup(prop);
		/*
		 * Not all up/down key code are valid.
		 * Now we depends on direct-rel-code.
		 */
		if ((!(code & 0xffff) || !(code >> 16)) && relkey_ret) {
			return relkey_ret;
		} else {
			unsigned int n = MAX_MATRIX_KEY_NUM + (i << 1);
			unsigned short keycode;

			keycode = code & 0xffff;
			keypad->keycodes[n] = keycode;
			__set_bit(keycode, input_dev->keybit);

			keycode = code >> 16;
			keypad->keycodes[n + 1] = keycode;
			__set_bit(keycode, input_dev->keybit);

			if (i == 0)
				pdata->rotary0_rel_code = -1;
			else
				pdata->rotary1_rel_code = -1;
		}
		if (i == 0)
			pdata->enable_rotary0 = 1;
		else
			pdata->enable_rotary1 = 1;
	}

	keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
	keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;

	return 0;
}

static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
{
	struct input_dev *input_dev = keypad->input_dev;
	struct device *dev = input_dev->dev.parent;
	struct device_node *np = dev->of_node;
292
	struct pxa27x_keypad_platform_data *pdata;
293 294
	int error;

295 296
	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
	if (!pdata) {
297 298 299 300
		dev_err(dev, "failed to allocate memory for pdata\n");
		return -ENOMEM;
	}

301
	error = pxa27x_keypad_matrix_key_parse_dt(keypad, pdata);
302 303 304 305 306
	if (error) {
		dev_err(dev, "failed to parse matrix key\n");
		return error;
	}

307
	error = pxa27x_keypad_direct_key_parse_dt(keypad, pdata);
308 309 310 311 312
	if (error) {
		dev_err(dev, "failed to parse direct key\n");
		return error;
	}

313
	error = pxa27x_keypad_rotary_parse_dt(keypad, pdata);
314 315 316 317 318 319
	if (error) {
		dev_err(dev, "failed to parse rotary key\n");
		return error;
	}

	error = of_property_read_u32(np, "marvell,debounce-interval",
320
				     &pdata->debounce_interval);
321 322 323 324 325 326 327 328 329 330 331
	if (error) {
		dev_err(dev, "failed to parse debpunce-interval\n");
		return error;
	}

	/*
	 * The keycodes may not only includes matrix key but also the direct
	 * key or rotary key.
	 */
	input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);

332
	keypad->pdata = pdata;
333 334 335 336 337 338 339 340 341 342 343 344 345 346
	return 0;
}

#else

static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
{
	dev_info(keypad->input_dev->dev.parent, "missing platform data\n");

	return -EINVAL;
}

#endif

347
static int pxa27x_keypad_build_keycode(struct pxa27x_keypad *keypad)
348
{
349
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
350
	struct input_dev *input_dev = keypad->input_dev;
351 352
	const struct matrix_keymap_data *keymap_data =
				pdata ? pdata->matrix_keymap_data : NULL;
353
	unsigned short keycode;
354
	int i;
355
	int error;
356

357 358 359 360 361 362
	error = matrix_keypad_build_keymap(keymap_data, NULL,
					   pdata->matrix_key_rows,
					   pdata->matrix_key_cols,
					   keypad->keycodes, input_dev);
	if (error)
		return error;
363

364 365 366 367 368
	/*
	 * The keycodes may not only include matrix keys but also the direct
	 * or rotary keys.
	 */
	input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);
369

370
	/* For direct keys. */
371 372 373 374 375
	for (i = 0; i < pdata->direct_key_num; i++) {
		keycode = pdata->direct_key_map[i];
		keypad->keycodes[MAX_MATRIX_KEY_NUM + i] = keycode;
		__set_bit(keycode, input_dev->keybit);
	}
376

377 378
	if (pdata->enable_rotary0) {
		if (pdata->rotary0_up_key && pdata->rotary0_down_key) {
379 380 381 382 383 384 385 386 387 388 389
			keycode = pdata->rotary0_up_key;
			keypad->keycodes[MAX_MATRIX_KEY_NUM + 0] = keycode;
			__set_bit(keycode, input_dev->keybit);

			keycode = pdata->rotary0_down_key;
			keypad->keycodes[MAX_MATRIX_KEY_NUM + 1] = keycode;
			__set_bit(keycode, input_dev->keybit);

			keypad->rotary_rel_code[0] = -1;
		} else {
			keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
390
			__set_bit(pdata->rotary0_rel_code, input_dev->relbit);
391
		}
392 393 394 395
	}

	if (pdata->enable_rotary1) {
		if (pdata->rotary1_up_key && pdata->rotary1_down_key) {
396 397 398 399 400 401 402 403 404 405 406
			keycode = pdata->rotary1_up_key;
			keypad->keycodes[MAX_MATRIX_KEY_NUM + 2] = keycode;
			__set_bit(keycode, input_dev->keybit);

			keycode = pdata->rotary1_down_key;
			keypad->keycodes[MAX_MATRIX_KEY_NUM + 3] = keycode;
			__set_bit(keycode, input_dev->keybit);

			keypad->rotary_rel_code[1] = -1;
		} else {
			keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;
407
			__set_bit(pdata->rotary1_rel_code, input_dev->relbit);
408
		}
409
	}
410

411
	__clear_bit(KEY_RESERVED, input_dev->keybit);
412 413

	return 0;
414 415 416 417
}

static void pxa27x_keypad_scan_matrix(struct pxa27x_keypad *keypad)
{
418
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
419
	struct input_dev *input_dev = keypad->input_dev;
420 421
	int row, col, num_keys_pressed = 0;
	uint32_t new_state[MAX_MATRIX_KEY_COLS];
422
	uint32_t kpas = keypad_readl(KPAS);
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444

	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) {
445 446 447 448
		uint32_t kpasmkp0 = keypad_readl(KPASMKP0);
		uint32_t kpasmkp1 = keypad_readl(KPASMKP1);
		uint32_t kpasmkp2 = keypad_readl(KPASMKP2);
		uint32_t kpasmkp3 = keypad_readl(KPASMKP3);
449 450 451 452 453 454 455 456 457 458 459 460 461

		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;
462
		int code;
463 464 465 466 467 468 469 470 471

		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;

472 473
			code = MATRIX_SCAN_CODE(row, col, keypad->row_shift);

474 475 476
			input_event(input_dev, EV_MSC, MSC_SCAN, code);
			input_report_key(input_dev, keypad->keycodes[code],
					 new_state[col] & (1 << row));
477 478
		}
	}
479
	input_sync(input_dev);
480 481
	memcpy(keypad->matrix_key_state, new_state, sizeof(new_state));
}
482

483 484
#define DEFAULT_KPREC	(0x007f007f)

485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
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;

502 503 504
	if (keypad->rotary_rel_code[r] == -1) {
		int code = MAX_MATRIX_KEY_NUM + 2 * r + (delta > 0 ? 0 : 1);
		unsigned char keycode = keypad->keycodes[code];
505 506

		/* simulate a press-n-release */
507
		input_event(dev, EV_MSC, MSC_SCAN, code);
508 509
		input_report_key(dev, keycode, 1);
		input_sync(dev);
510
		input_event(dev, EV_MSC, MSC_SCAN, code);
511 512 513 514 515 516 517 518 519 520
		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)
{
521
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
522 523 524
	uint32_t kprec;

	/* read and reset to default count value */
525 526
	kprec = keypad_readl(KPREC);
	keypad_writel(KPREC, DEFAULT_KPREC);
527 528 529 530 531 532 533 534 535 536

	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)
{
537
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
538
	struct input_dev *input_dev = keypad->input_dev;
539 540 541 542
	unsigned int new_state;
	uint32_t kpdk, bits_changed;
	int i;

543
	kpdk = keypad_readl(KPDK);
544 545 546 547

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

548 549 550 551 552 553 554 555 556
	/*
	 * The KPDR_DK only output the key pin level, so it relates to board,
	 * and low level may be active.
	 */
	if (pdata->direct_key_low_active)
		new_state = ~KPDK_DK(kpdk) & keypad->direct_key_mask;
	else
		new_state = KPDK_DK(kpdk) & keypad->direct_key_mask;

557 558 559 560 561 562
	bits_changed = keypad->direct_key_state ^ new_state;

	if (bits_changed == 0)
		return;

	for (i = 0; i < pdata->direct_key_num; i++) {
563 564 565 566 567 568 569
		if (bits_changed & (1 << i)) {
			int code = MAX_MATRIX_KEY_NUM + i;

			input_event(input_dev, EV_MSC, MSC_SCAN, code);
			input_report_key(input_dev, keypad->keycodes[code],
					 new_state & (1 << i));
		}
570
	}
571
	input_sync(input_dev);
572 573 574
	keypad->direct_key_state = new_state;
}

575 576
static void clear_wakeup_event(struct pxa27x_keypad *keypad)
{
577
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
578 579 580 581 582

	if (pdata->clear_wakeup_event)
		(pdata->clear_wakeup_event)();
}

583
static irqreturn_t pxa27x_keypad_irq_handler(int irq, void *dev_id)
584
{
585
	struct pxa27x_keypad *keypad = dev_id;
586
	unsigned long kpc = keypad_readl(KPC);
587

588 589
	clear_wakeup_event(keypad);

590 591
	if (kpc & KPC_DI)
		pxa27x_keypad_scan_direct(keypad);
592

593 594
	if (kpc & KPC_MI)
		pxa27x_keypad_scan_matrix(keypad);
595 596 597 598

	return IRQ_HANDLED;
}

599
static void pxa27x_keypad_config(struct pxa27x_keypad *keypad)
600
{
601
	const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
602
	unsigned int mask = 0, direct_key_num = 0;
603
	unsigned long kpc = 0;
604

605 606 607
	/* clear pending interrupt bit */
	keypad_readl(KPC);

608 609 610 611 612 613
	/* 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);
	}
614

615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
	/* 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;

631 632 633 634 635 636 637 638
	/*
	 * Direct keys usage may not start from KP_DKIN0, check the platfrom
	 * mask data to config the specific.
	 */
	if (pdata->direct_key_mask)
		keypad->direct_key_mask = pdata->direct_key_mask;
	else
		keypad->direct_key_mask = ((1 << direct_key_num) - 1) & ~mask;
639 640 641 642

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

644 645
	keypad_writel(KPC, kpc | KPC_RE_ZERO_DEB);
	keypad_writel(KPREC, DEFAULT_KPREC);
646
	keypad_writel(KPKDI, pdata->debounce_interval);
647 648 649 650 651
}

static int pxa27x_keypad_open(struct input_dev *dev)
{
	struct pxa27x_keypad *keypad = input_get_drvdata(dev);
652 653

	/* Enable unit clock */
654
	clk_prepare_enable(keypad->clk);
655
	pxa27x_keypad_config(keypad);
656 657 658 659

	return 0;
}

660
static void pxa27x_keypad_close(struct input_dev *dev)
661
{
662 663
	struct pxa27x_keypad *keypad = input_get_drvdata(dev);

664
	/* Disable clock unit */
665
	clk_disable_unprepare(keypad->clk);
666 667
}

668
#ifdef CONFIG_PM_SLEEP
669
static int pxa27x_keypad_suspend(struct device *dev)
670
{
671
	struct platform_device *pdev = to_platform_device(dev);
672
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
673

674 675 676 677
	/*
	 * If the keypad is used a wake up source, clock can not be disabled.
	 * Or it can not detect the key pressing.
	 */
678 679
	if (device_may_wakeup(&pdev->dev))
		enable_irq_wake(keypad->irq);
680 681
	else
		clk_disable_unprepare(keypad->clk);
682

683 684 685
	return 0;
}

686
static int pxa27x_keypad_resume(struct device *dev)
687
{
688
	struct platform_device *pdev = to_platform_device(dev);
689 690
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
	struct input_dev *input_dev = keypad->input_dev;
691

692 693 694 695 696
	/*
	 * If the keypad is used as wake up source, the clock is not turned
	 * off. So do not need configure it again.
	 */
	if (device_may_wakeup(&pdev->dev)) {
697
		disable_irq_wake(keypad->irq);
698 699
	} else {
		mutex_lock(&input_dev->mutex);
700

701 702 703 704 705
		if (input_dev->users) {
			/* Enable unit clock */
			clk_prepare_enable(keypad->clk);
			pxa27x_keypad_config(keypad);
		}
706

707
		mutex_unlock(&input_dev->mutex);
708 709 710 711 712 713
	}

	return 0;
}
#endif

714 715 716 717
static SIMPLE_DEV_PM_OPS(pxa27x_keypad_pm_ops,
			 pxa27x_keypad_suspend, pxa27x_keypad_resume);


B
Bill Pemberton 已提交
718
static int pxa27x_keypad_probe(struct platform_device *pdev)
719
{
720 721
	const struct pxa27x_keypad_platform_data *pdata =
					dev_get_platdata(&pdev->dev);
722
	struct device_node *np = pdev->dev.of_node;
723
	struct pxa27x_keypad *keypad;
724
	struct input_dev *input_dev;
725 726
	struct resource *res;
	int irq, error;
727

728 729
	/* Driver need build keycode from device tree or pdata */
	if (!np && !pdata)
730
		return -EINVAL;
731

732 733 734
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		dev_err(&pdev->dev, "failed to get keypad irq\n");
735
		return -ENXIO;
736 737 738 739 740
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "failed to get I/O memory\n");
741 742 743 744 745 746 747 748
		return -ENXIO;
	}

	keypad = kzalloc(sizeof(struct pxa27x_keypad), GFP_KERNEL);
	input_dev = input_allocate_device();
	if (!keypad || !input_dev) {
		dev_err(&pdev->dev, "failed to allocate memory\n");
		error = -ENOMEM;
749 750 751
		goto failed_free;
	}

752 753 754 755
	keypad->pdata = pdata;
	keypad->input_dev = input_dev;
	keypad->irq = irq;

756
	res = request_mem_region(res->start, resource_size(res), pdev->name);
757 758 759 760 761 762
	if (res == NULL) {
		dev_err(&pdev->dev, "failed to request I/O memory\n");
		error = -EBUSY;
		goto failed_free;
	}

763
	keypad->mmio_base = ioremap(res->start, resource_size(res));
764 765 766 767 768 769
	if (keypad->mmio_base == NULL) {
		dev_err(&pdev->dev, "failed to remap I/O memory\n");
		error = -ENXIO;
		goto failed_free_mem;
	}

770
	keypad->clk = clk_get(&pdev->dev, NULL);
771 772 773
	if (IS_ERR(keypad->clk)) {
		dev_err(&pdev->dev, "failed to get keypad clock\n");
		error = PTR_ERR(keypad->clk);
774
		goto failed_free_io;
775 776
	}

777
	input_dev->name = pdev->name;
778
	input_dev->id.bustype = BUS_HOST;
779 780
	input_dev->open = pxa27x_keypad_open;
	input_dev->close = pxa27x_keypad_close;
781
	input_dev->dev.parent = &pdev->dev;
782

783 784 785 786
	input_dev->keycode = keypad->keycodes;
	input_dev->keycodesize = sizeof(keypad->keycodes[0]);
	input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);

787 788
	input_set_drvdata(input_dev, keypad);

789
	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
790
	input_set_capability(input_dev, EV_MSC, MSC_SCAN);
791

792
	if (pdata) {
793
		error = pxa27x_keypad_build_keycode(keypad);
794
	} else {
795
		error = pxa27x_keypad_build_keycode_from_dt(keypad);
796 797 798 799 800 801 802
		/*
		 * Data that we get from DT resides in dynamically
		 * allocated memory so we need to update our pdata
		 * pointer.
		 */
		pdata = keypad->pdata;
	}
803 804 805 806
	if (error) {
		dev_err(&pdev->dev, "failed to build keycode\n");
		goto failed_put_clk;
	}
807

808 809
	keypad->row_shift = get_count_order(pdata->matrix_key_cols);

810 811 812 813
	if ((pdata->enable_rotary0 && keypad->rotary_rel_code[0] != -1) ||
	    (pdata->enable_rotary1 && keypad->rotary_rel_code[1] != -1)) {
		input_dev->evbit[0] |= BIT_MASK(EV_REL);
	}
814

815
	error = request_irq(irq, pxa27x_keypad_irq_handler, 0,
816
			    pdev->name, keypad);
817
	if (error) {
818
		dev_err(&pdev->dev, "failed to request IRQ\n");
819
		goto failed_put_clk;
820 821 822 823
	}

	/* Register the input device */
	error = input_register_device(input_dev);
824 825 826 827
	if (error) {
		dev_err(&pdev->dev, "failed to register input device\n");
		goto failed_free_irq;
	}
828

829
	platform_set_drvdata(pdev, keypad);
830 831
	device_init_wakeup(&pdev->dev, 1);

832 833
	return 0;

834
failed_free_irq:
835
	free_irq(irq, keypad);
836 837
failed_put_clk:
	clk_put(keypad->clk);
838 839 840
failed_free_io:
	iounmap(keypad->mmio_base);
failed_free_mem:
841
	release_mem_region(res->start, resource_size(res));
842
failed_free:
843
	input_free_device(input_dev);
844
	kfree(keypad);
845 846 847
	return error;
}

B
Bill Pemberton 已提交
848
static int pxa27x_keypad_remove(struct platform_device *pdev)
849
{
850
	struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
851
	struct resource *res;
852

853
	free_irq(keypad->irq, keypad);
854 855 856
	clk_put(keypad->clk);

	input_unregister_device(keypad->input_dev);
857 858 859
	iounmap(keypad->mmio_base);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
860
	release_mem_region(res->start, resource_size(res));
861 862

	kfree(keypad);
863

864 865 866
	return 0;
}

867 868 869
/* work with hotplug and coldplug */
MODULE_ALIAS("platform:pxa27x-keypad");

870 871 872 873 874 875 876 877
#ifdef CONFIG_OF
static const struct of_device_id pxa27x_keypad_dt_match[] = {
	{ .compatible = "marvell,pxa27x-keypad" },
	{},
};
MODULE_DEVICE_TABLE(of, pxa27x_keypad_dt_match);
#endif

878 879
static struct platform_driver pxa27x_keypad_driver = {
	.probe		= pxa27x_keypad_probe,
B
Bill Pemberton 已提交
880
	.remove		= pxa27x_keypad_remove,
881
	.driver		= {
882
		.name	= "pxa27x-keypad",
883
		.of_match_table = of_match_ptr(pxa27x_keypad_dt_match),
884
		.owner	= THIS_MODULE,
885
		.pm	= &pxa27x_keypad_pm_ops,
886 887
	},
};
888
module_platform_driver(pxa27x_keypad_driver);
889

890
MODULE_DESCRIPTION("PXA27x Keypad Controller Driver");
891
MODULE_LICENSE("GPL");