Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  2 * linux/drivers/input/keyboard/omap-keypad.c
  3 *
  4 * OMAP Keypad Driver
  5 *
  6 * Copyright (C) 2003 Nokia Corporation
  7 * Written by Timo Teräs <ext-timo.teras@nokia.com>
  8 *
  9 * Added support for H2 & H3 Keypad
 10 * Copyright (C) 2004 Texas Instruments
 11 *
 12 * This program is free software; you can redistribute it and/or modify
 13 * it under the terms of the GNU General Public License as published by
 14 * the Free Software Foundation; either version 2 of the License, or
 15 * (at your option) any later version.
 16 *
 17 * This program is distributed in the hope that it will be useful,
 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 20 * GNU General Public License for more details.
 21 *
 22 * You should have received a copy of the GNU General Public License
 23 * along with this program; if not, write to the Free Software
 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 25 */
 26
 27#include <linux/module.h>
 28#include <linux/init.h>
 29#include <linux/interrupt.h>
 30#include <linux/types.h>
 31#include <linux/input.h>
 32#include <linux/kernel.h>
 33#include <linux/delay.h>
 34#include <linux/platform_device.h>
 35#include <linux/mutex.h>
 36#include <linux/errno.h>
 37#include <linux/slab.h>
 38#include <mach/gpio.h>
 39#include <plat/keypad.h>
 40#include <plat/menelaus.h>
 41#include <asm/irq.h>
 42#include <mach/hardware.h>
 43#include <asm/io.h>
 44#include <plat/mux.h>
 45
 46#undef NEW_BOARD_LEARNING_MODE
 47
 48static void omap_kp_tasklet(unsigned long);
 49static void omap_kp_timer(unsigned long);
 50
 51static unsigned char keypad_state[8];
 52static DEFINE_MUTEX(kp_enable_mutex);
 53static int kp_enable = 1;
 54static int kp_cur_group = -1;
 55
 56struct omap_kp {
 57	struct input_dev *input;
 58	struct timer_list timer;
 59	int irq;
 60	unsigned int rows;
 61	unsigned int cols;
 62	unsigned long delay;
 63	unsigned int debounce;
 
 64};
 65
 66static DECLARE_TASKLET_DISABLED(kp_tasklet, omap_kp_tasklet, 0);
 67
 68static unsigned int *row_gpios;
 69static unsigned int *col_gpios;
 70
 71#ifdef CONFIG_ARCH_OMAP2
 72static void set_col_gpio_val(struct omap_kp *omap_kp, u8 value)
 73{
 74	int col;
 75
 76	for (col = 0; col < omap_kp->cols; col++)
 77		gpio_set_value(col_gpios[col], value & (1 << col));
 78}
 79
 80static u8 get_row_gpio_val(struct omap_kp *omap_kp)
 81{
 82	int row;
 83	u8 value = 0;
 84
 85	for (row = 0; row < omap_kp->rows; row++) {
 86		if (gpio_get_value(row_gpios[row]))
 87			value |= (1 << row);
 88	}
 89	return value;
 90}
 91#else
 92#define		set_col_gpio_val(x, y)	do {} while (0)
 93#define		get_row_gpio_val(x)	0
 94#endif
 95
 96static irqreturn_t omap_kp_interrupt(int irq, void *dev_id)
 97{
 98	struct omap_kp *omap_kp = dev_id;
 99
100	/* disable keyboard interrupt and schedule for handling */
101	if (cpu_is_omap24xx()) {
102		int i;
103
104		for (i = 0; i < omap_kp->rows; i++) {
105			int gpio_irq = gpio_to_irq(row_gpios[i]);
106			/*
107			 * The interrupt which we're currently handling should
108			 * be disabled _nosync() to avoid deadlocks waiting
109			 * for this handler to complete.  All others should
110			 * be disabled the regular way for SMP safety.
111			 */
112			if (gpio_irq == irq)
113				disable_irq_nosync(gpio_irq);
114			else
115				disable_irq(gpio_irq);
116		}
117	} else
118		/* disable keyboard interrupt and schedule for handling */
119		omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
120
121	tasklet_schedule(&kp_tasklet);
122
123	return IRQ_HANDLED;
124}
125
126static void omap_kp_timer(unsigned long data)
127{
128	tasklet_schedule(&kp_tasklet);
129}
130
131static void omap_kp_scan_keypad(struct omap_kp *omap_kp, unsigned char *state)
132{
133	int col = 0;
134
135	/* read the keypad status */
136	if (cpu_is_omap24xx()) {
137		/* read the keypad status */
138		for (col = 0; col < omap_kp->cols; col++) {
139			set_col_gpio_val(omap_kp, ~(1 << col));
140			state[col] = ~(get_row_gpio_val(omap_kp)) & 0xff;
141		}
142		set_col_gpio_val(omap_kp, 0);
143
144	} else {
145		/* disable keyboard interrupt and schedule for handling */
146		omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
147
148		/* read the keypad status */
149		omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
150		for (col = 0; col < omap_kp->cols; col++) {
151			omap_writew(~(1 << col) & 0xff,
152				    OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
153
154			udelay(omap_kp->delay);
155
156			state[col] = ~omap_readw(OMAP1_MPUIO_BASE +
157						 OMAP_MPUIO_KBR_LATCH) & 0xff;
158		}
159		omap_writew(0x00, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
160		udelay(2);
161	}
 
 
162}
163
164static void omap_kp_tasklet(unsigned long data)
165{
166	struct omap_kp *omap_kp_data = (struct omap_kp *) data;
167	unsigned short *keycodes = omap_kp_data->input->keycode;
168	unsigned int row_shift = get_count_order(omap_kp_data->cols);
169	unsigned char new_state[8], changed, key_down = 0;
170	int col, row;
171	int spurious = 0;
172
173	/* check for any changes */
174	omap_kp_scan_keypad(omap_kp_data, new_state);
175
176	/* check for changes and print those */
177	for (col = 0; col < omap_kp_data->cols; col++) {
178		changed = new_state[col] ^ keypad_state[col];
179		key_down |= new_state[col];
180		if (changed == 0)
181			continue;
182
183		for (row = 0; row < omap_kp_data->rows; row++) {
184			int key;
185			if (!(changed & (1 << row)))
186				continue;
187#ifdef NEW_BOARD_LEARNING_MODE
188			printk(KERN_INFO "omap-keypad: key %d-%d %s\n", col,
189			       row, (new_state[col] & (1 << row)) ?
190			       "pressed" : "released");
191#else
192			key = keycodes[MATRIX_SCAN_CODE(row, col, row_shift)];
193			if (key < 0) {
194				printk(KERN_WARNING
195				      "omap-keypad: Spurious key event %d-%d\n",
196				       col, row);
197				/* We scan again after a couple of seconds */
198				spurious = 1;
199				continue;
200			}
201
202			if (!(kp_cur_group == (key & GROUP_MASK) ||
203			      kp_cur_group == -1))
204				continue;
205
206			kp_cur_group = key & GROUP_MASK;
207			input_report_key(omap_kp_data->input, key & ~GROUP_MASK,
208					 new_state[col] & (1 << row));
209#endif
210		}
211	}
212	input_sync(omap_kp_data->input);
213	memcpy(keypad_state, new_state, sizeof(keypad_state));
214
215	if (key_down) {
216                int delay = HZ / 20;
217		/* some key is pressed - keep irq disabled and use timer
218		 * to poll the keypad */
219		if (spurious)
220			delay = 2 * HZ;
221		mod_timer(&omap_kp_data->timer, jiffies + delay);
222	} else {
223		/* enable interrupts */
224		if (cpu_is_omap24xx()) {
225			int i;
226			for (i = 0; i < omap_kp_data->rows; i++)
227				enable_irq(gpio_to_irq(row_gpios[i]));
228		} else {
229			omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
230			kp_cur_group = -1;
231		}
232	}
233}
234
235static ssize_t omap_kp_enable_show(struct device *dev,
236				   struct device_attribute *attr, char *buf)
237{
238	return sprintf(buf, "%u\n", kp_enable);
239}
240
241static ssize_t omap_kp_enable_store(struct device *dev, struct device_attribute *attr,
242				    const char *buf, size_t count)
243{
 
244	int state;
245
246	if (sscanf(buf, "%u", &state) != 1)
247		return -EINVAL;
248
249	if ((state != 1) && (state != 0))
250		return -EINVAL;
251
252	mutex_lock(&kp_enable_mutex);
253	if (state != kp_enable) {
254		if (state)
255			enable_irq(INT_KEYBOARD);
256		else
257			disable_irq(INT_KEYBOARD);
258		kp_enable = state;
259	}
260	mutex_unlock(&kp_enable_mutex);
261
262	return strnlen(buf, count);
263}
264
265static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, omap_kp_enable_show, omap_kp_enable_store);
266
267#ifdef CONFIG_PM
268static int omap_kp_suspend(struct platform_device *dev, pm_message_t state)
269{
270	/* Nothing yet */
271
272	return 0;
273}
274
275static int omap_kp_resume(struct platform_device *dev)
276{
277	/* Nothing yet */
278
279	return 0;
280}
281#else
282#define omap_kp_suspend	NULL
283#define omap_kp_resume	NULL
284#endif
285
286static int __devinit omap_kp_probe(struct platform_device *pdev)
287{
288	struct omap_kp *omap_kp;
289	struct input_dev *input_dev;
290	struct omap_kp_platform_data *pdata =  pdev->dev.platform_data;
291	int i, col_idx, row_idx, irq_idx, ret;
292	unsigned int row_shift, keycodemax;
293
294	if (!pdata->rows || !pdata->cols || !pdata->keymap_data) {
295		printk(KERN_ERR "No rows, cols or keymap_data from pdata\n");
296		return -EINVAL;
297	}
298
299	row_shift = get_count_order(pdata->cols);
300	keycodemax = pdata->rows << row_shift;
301
302	omap_kp = kzalloc(sizeof(struct omap_kp) +
303			keycodemax * sizeof(unsigned short), GFP_KERNEL);
304	input_dev = input_allocate_device();
305	if (!omap_kp || !input_dev) {
306		kfree(omap_kp);
307		input_free_device(input_dev);
308		return -ENOMEM;
309	}
310
311	platform_set_drvdata(pdev, omap_kp);
312
313	omap_kp->input = input_dev;
314
315	/* Disable the interrupt for the MPUIO keyboard */
316	if (!cpu_is_omap24xx())
317		omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
318
319	input_dev->keycode      = &omap_kp[1];
320	input_dev->keycodesize  = sizeof(unsigned short);
321	input_dev->keycodemax   = keycodemax;
322
323	if (pdata->rep)
324		__set_bit(EV_REP, input_dev->evbit);
325
326	if (pdata->delay)
327		omap_kp->delay = pdata->delay;
328
329	if (pdata->row_gpios && pdata->col_gpios) {
330		row_gpios = pdata->row_gpios;
331		col_gpios = pdata->col_gpios;
332	}
333
334	omap_kp->rows = pdata->rows;
335	omap_kp->cols = pdata->cols;
336
337	if (cpu_is_omap24xx()) {
338		/* Cols: outputs */
339		for (col_idx = 0; col_idx < omap_kp->cols; col_idx++) {
340			if (gpio_request(col_gpios[col_idx], "omap_kp_col") < 0) {
341				printk(KERN_ERR "Failed to request"
342				       "GPIO%d for keypad\n",
343				       col_gpios[col_idx]);
344				goto err1;
345			}
346			gpio_direction_output(col_gpios[col_idx], 0);
347		}
348		/* Rows: inputs */
349		for (row_idx = 0; row_idx < omap_kp->rows; row_idx++) {
350			if (gpio_request(row_gpios[row_idx], "omap_kp_row") < 0) {
351				printk(KERN_ERR "Failed to request"
352				       "GPIO%d for keypad\n",
353				       row_gpios[row_idx]);
354				goto err2;
355			}
356			gpio_direction_input(row_gpios[row_idx]);
357		}
358	} else {
359		col_idx = 0;
360		row_idx = 0;
361	}
362
363	setup_timer(&omap_kp->timer, omap_kp_timer, (unsigned long)omap_kp);
364
365	/* get the irq and init timer*/
366	tasklet_enable(&kp_tasklet);
367	kp_tasklet.data = (unsigned long) omap_kp;
 
368
369	ret = device_create_file(&pdev->dev, &dev_attr_enable);
370	if (ret < 0)
371		goto err2;
372
373	/* setup input device */
374	__set_bit(EV_KEY, input_dev->evbit);
375	matrix_keypad_build_keymap(pdata->keymap_data, row_shift,
376			input_dev->keycode, input_dev->keybit);
377	input_dev->name = "omap-keypad";
378	input_dev->phys = "omap-keypad/input0";
379	input_dev->dev.parent = &pdev->dev;
380
381	input_dev->id.bustype = BUS_HOST;
382	input_dev->id.vendor = 0x0001;
383	input_dev->id.product = 0x0001;
384	input_dev->id.version = 0x0100;
385
 
 
 
 
 
 
 
 
 
386	ret = input_register_device(omap_kp->input);
387	if (ret < 0) {
388		printk(KERN_ERR "Unable to register omap-keypad input device\n");
389		goto err3;
390	}
391
392	if (pdata->dbounce)
393		omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_GPIO_DEBOUNCING);
394
395	/* scan current status and enable interrupt */
396	omap_kp_scan_keypad(omap_kp, keypad_state);
397	if (!cpu_is_omap24xx()) {
398		omap_kp->irq = platform_get_irq(pdev, 0);
399		if (omap_kp->irq >= 0) {
400			if (request_irq(omap_kp->irq, omap_kp_interrupt, 0,
401					"omap-keypad", omap_kp) < 0)
402				goto err4;
403		}
404		omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
405	} else {
406		for (irq_idx = 0; irq_idx < omap_kp->rows; irq_idx++) {
407			if (request_irq(gpio_to_irq(row_gpios[irq_idx]),
408					omap_kp_interrupt,
409					IRQF_TRIGGER_FALLING,
410					"omap-keypad", omap_kp) < 0)
411				goto err5;
412		}
413	}
 
 
414	return 0;
415err5:
416	for (i = irq_idx - 1; i >=0; i--)
417		free_irq(row_gpios[i], omap_kp);
418err4:
419	input_unregister_device(omap_kp->input);
420	input_dev = NULL;
421err3:
422	device_remove_file(&pdev->dev, &dev_attr_enable);
423err2:
424	for (i = row_idx - 1; i >=0; i--)
425		gpio_free(row_gpios[i]);
426err1:
427	for (i = col_idx - 1; i >=0; i--)
428		gpio_free(col_gpios[i]);
429
430	kfree(omap_kp);
431	input_free_device(input_dev);
432
433	return -EINVAL;
434}
435
436static int __devexit omap_kp_remove(struct platform_device *pdev)
437{
438	struct omap_kp *omap_kp = platform_get_drvdata(pdev);
439
440	/* disable keypad interrupt handling */
441	tasklet_disable(&kp_tasklet);
442	if (cpu_is_omap24xx()) {
443		int i;
444		for (i = 0; i < omap_kp->cols; i++)
445			gpio_free(col_gpios[i]);
446		for (i = 0; i < omap_kp->rows; i++) {
447			gpio_free(row_gpios[i]);
448			free_irq(gpio_to_irq(row_gpios[i]), omap_kp);
449		}
450	} else {
451		omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
452		free_irq(omap_kp->irq, omap_kp);
453	}
454
455	del_timer_sync(&omap_kp->timer);
456	tasklet_kill(&kp_tasklet);
457
458	/* unregister everything */
459	input_unregister_device(omap_kp->input);
460
461	kfree(omap_kp);
462
463	return 0;
464}
465
466static struct platform_driver omap_kp_driver = {
467	.probe		= omap_kp_probe,
468	.remove		= __devexit_p(omap_kp_remove),
469	.suspend	= omap_kp_suspend,
470	.resume		= omap_kp_resume,
471	.driver		= {
472		.name	= "omap-keypad",
473		.owner	= THIS_MODULE,
474	},
475};
476
477static int __init omap_kp_init(void)
478{
479	printk(KERN_INFO "OMAP Keypad Driver\n");
480	return platform_driver_register(&omap_kp_driver);
481}
482
483static void __exit omap_kp_exit(void)
484{
485	platform_driver_unregister(&omap_kp_driver);
486}
487
488module_init(omap_kp_init);
489module_exit(omap_kp_exit);
490
491MODULE_AUTHOR("Timo Teräs");
492MODULE_DESCRIPTION("OMAP Keypad Driver");
493MODULE_LICENSE("GPL");
494MODULE_ALIAS("platform:omap-keypad");
v4.17
  1/*
  2 * linux/drivers/input/keyboard/omap-keypad.c
  3 *
  4 * OMAP Keypad Driver
  5 *
  6 * Copyright (C) 2003 Nokia Corporation
  7 * Written by Timo Teräs <ext-timo.teras@nokia.com>
  8 *
  9 * Added support for H2 & H3 Keypad
 10 * Copyright (C) 2004 Texas Instruments
 11 *
 12 * This program is free software; you can redistribute it and/or modify
 13 * it under the terms of the GNU General Public License as published by
 14 * the Free Software Foundation; either version 2 of the License, or
 15 * (at your option) any later version.
 16 *
 17 * This program is distributed in the hope that it will be useful,
 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 20 * GNU General Public License for more details.
 21 *
 22 * You should have received a copy of the GNU General Public License
 23 * along with this program; if not, write to the Free Software
 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 25 */
 26
 27#include <linux/module.h>
 
 28#include <linux/interrupt.h>
 29#include <linux/types.h>
 30#include <linux/input.h>
 31#include <linux/kernel.h>
 32#include <linux/delay.h>
 33#include <linux/platform_device.h>
 34#include <linux/mutex.h>
 35#include <linux/errno.h>
 36#include <linux/slab.h>
 37#include <linux/gpio.h>
 38#include <linux/platform_data/gpio-omap.h>
 39#include <linux/platform_data/keypad-omap.h>
 
 
 
 
 40
 41#undef NEW_BOARD_LEARNING_MODE
 42
 43static void omap_kp_tasklet(unsigned long);
 44static void omap_kp_timer(struct timer_list *);
 45
 46static unsigned char keypad_state[8];
 47static DEFINE_MUTEX(kp_enable_mutex);
 48static int kp_enable = 1;
 49static int kp_cur_group = -1;
 50
 51struct omap_kp {
 52	struct input_dev *input;
 53	struct timer_list timer;
 54	int irq;
 55	unsigned int rows;
 56	unsigned int cols;
 57	unsigned long delay;
 58	unsigned int debounce;
 59	unsigned short keymap[];
 60};
 61
 62static DECLARE_TASKLET_DISABLED(kp_tasklet, omap_kp_tasklet, 0);
 63
 64static unsigned int *row_gpios;
 65static unsigned int *col_gpios;
 66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 67static irqreturn_t omap_kp_interrupt(int irq, void *dev_id)
 68{
 
 
 69	/* disable keyboard interrupt and schedule for handling */
 70	omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 71
 72	tasklet_schedule(&kp_tasklet);
 73
 74	return IRQ_HANDLED;
 75}
 76
 77static void omap_kp_timer(struct timer_list *unused)
 78{
 79	tasklet_schedule(&kp_tasklet);
 80}
 81
 82static void omap_kp_scan_keypad(struct omap_kp *omap_kp, unsigned char *state)
 83{
 84	int col = 0;
 85
 86	/* disable keyboard interrupt and schedule for handling */
 87	omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
 
 
 
 
 
 
 
 
 
 
 88
 89	/* read the keypad status */
 90	omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
 91	for (col = 0; col < omap_kp->cols; col++) {
 92		omap_writew(~(1 << col) & 0xff,
 93			    OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
 94
 95		udelay(omap_kp->delay);
 96
 97		state[col] = ~omap_readw(OMAP1_MPUIO_BASE +
 98					 OMAP_MPUIO_KBR_LATCH) & 0xff;
 
 
 
 99	}
100	omap_writew(0x00, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBC);
101	udelay(2);
102}
103
104static void omap_kp_tasklet(unsigned long data)
105{
106	struct omap_kp *omap_kp_data = (struct omap_kp *) data;
107	unsigned short *keycodes = omap_kp_data->input->keycode;
108	unsigned int row_shift = get_count_order(omap_kp_data->cols);
109	unsigned char new_state[8], changed, key_down = 0;
110	int col, row;
 
111
112	/* check for any changes */
113	omap_kp_scan_keypad(omap_kp_data, new_state);
114
115	/* check for changes and print those */
116	for (col = 0; col < omap_kp_data->cols; col++) {
117		changed = new_state[col] ^ keypad_state[col];
118		key_down |= new_state[col];
119		if (changed == 0)
120			continue;
121
122		for (row = 0; row < omap_kp_data->rows; row++) {
123			int key;
124			if (!(changed & (1 << row)))
125				continue;
126#ifdef NEW_BOARD_LEARNING_MODE
127			printk(KERN_INFO "omap-keypad: key %d-%d %s\n", col,
128			       row, (new_state[col] & (1 << row)) ?
129			       "pressed" : "released");
130#else
131			key = keycodes[MATRIX_SCAN_CODE(row, col, row_shift)];
 
 
 
 
 
 
 
 
132
133			if (!(kp_cur_group == (key & GROUP_MASK) ||
134			      kp_cur_group == -1))
135				continue;
136
137			kp_cur_group = key & GROUP_MASK;
138			input_report_key(omap_kp_data->input, key & ~GROUP_MASK,
139					 new_state[col] & (1 << row));
140#endif
141		}
142	}
143	input_sync(omap_kp_data->input);
144	memcpy(keypad_state, new_state, sizeof(keypad_state));
145
146	if (key_down) {
 
147		/* some key is pressed - keep irq disabled and use timer
148		 * to poll the keypad */
149		mod_timer(&omap_kp_data->timer, jiffies + HZ / 20);
 
 
150	} else {
151		/* enable interrupts */
152		omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
153		kp_cur_group = -1;
 
 
 
 
 
 
154	}
155}
156
157static ssize_t omap_kp_enable_show(struct device *dev,
158				   struct device_attribute *attr, char *buf)
159{
160	return sprintf(buf, "%u\n", kp_enable);
161}
162
163static ssize_t omap_kp_enable_store(struct device *dev, struct device_attribute *attr,
164				    const char *buf, size_t count)
165{
166	struct omap_kp *omap_kp = dev_get_drvdata(dev);
167	int state;
168
169	if (sscanf(buf, "%u", &state) != 1)
170		return -EINVAL;
171
172	if ((state != 1) && (state != 0))
173		return -EINVAL;
174
175	mutex_lock(&kp_enable_mutex);
176	if (state != kp_enable) {
177		if (state)
178			enable_irq(omap_kp->irq);
179		else
180			disable_irq(omap_kp->irq);
181		kp_enable = state;
182	}
183	mutex_unlock(&kp_enable_mutex);
184
185	return strnlen(buf, count);
186}
187
188static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, omap_kp_enable_show, omap_kp_enable_store);
189
190static int omap_kp_probe(struct platform_device *pdev)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191{
192	struct omap_kp *omap_kp;
193	struct input_dev *input_dev;
194	struct omap_kp_platform_data *pdata = dev_get_platdata(&pdev->dev);
195	int i, col_idx, row_idx, ret;
196	unsigned int row_shift, keycodemax;
197
198	if (!pdata->rows || !pdata->cols || !pdata->keymap_data) {
199		printk(KERN_ERR "No rows, cols or keymap_data from pdata\n");
200		return -EINVAL;
201	}
202
203	row_shift = get_count_order(pdata->cols);
204	keycodemax = pdata->rows << row_shift;
205
206	omap_kp = kzalloc(sizeof(struct omap_kp) +
207			keycodemax * sizeof(unsigned short), GFP_KERNEL);
208	input_dev = input_allocate_device();
209	if (!omap_kp || !input_dev) {
210		kfree(omap_kp);
211		input_free_device(input_dev);
212		return -ENOMEM;
213	}
214
215	platform_set_drvdata(pdev, omap_kp);
216
217	omap_kp->input = input_dev;
218
219	/* Disable the interrupt for the MPUIO keyboard */
220	omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
 
 
 
 
 
 
 
 
221
222	if (pdata->delay)
223		omap_kp->delay = pdata->delay;
224
225	if (pdata->row_gpios && pdata->col_gpios) {
226		row_gpios = pdata->row_gpios;
227		col_gpios = pdata->col_gpios;
228	}
229
230	omap_kp->rows = pdata->rows;
231	omap_kp->cols = pdata->cols;
232
233	col_idx = 0;
234	row_idx = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
236	timer_setup(&omap_kp->timer, omap_kp_timer, 0);
237
238	/* get the irq and init timer*/
 
239	kp_tasklet.data = (unsigned long) omap_kp;
240	tasklet_enable(&kp_tasklet);
241
242	ret = device_create_file(&pdev->dev, &dev_attr_enable);
243	if (ret < 0)
244		goto err2;
245
246	/* setup input device */
 
 
 
247	input_dev->name = "omap-keypad";
248	input_dev->phys = "omap-keypad/input0";
249	input_dev->dev.parent = &pdev->dev;
250
251	input_dev->id.bustype = BUS_HOST;
252	input_dev->id.vendor = 0x0001;
253	input_dev->id.product = 0x0001;
254	input_dev->id.version = 0x0100;
255
256	if (pdata->rep)
257		__set_bit(EV_REP, input_dev->evbit);
258
259	ret = matrix_keypad_build_keymap(pdata->keymap_data, NULL,
260					 pdata->rows, pdata->cols,
261					 omap_kp->keymap, input_dev);
262	if (ret < 0)
263		goto err3;
264
265	ret = input_register_device(omap_kp->input);
266	if (ret < 0) {
267		printk(KERN_ERR "Unable to register omap-keypad input device\n");
268		goto err3;
269	}
270
271	if (pdata->dbounce)
272		omap_writew(0xff, OMAP1_MPUIO_BASE + OMAP_MPUIO_GPIO_DEBOUNCING);
273
274	/* scan current status and enable interrupt */
275	omap_kp_scan_keypad(omap_kp, keypad_state);
276	omap_kp->irq = platform_get_irq(pdev, 0);
277	if (omap_kp->irq >= 0) {
278		if (request_irq(omap_kp->irq, omap_kp_interrupt, 0,
279				"omap-keypad", omap_kp) < 0)
280			goto err4;
 
 
 
 
 
 
 
 
 
 
 
281	}
282	omap_writew(0, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
283
284	return 0;
285
 
 
286err4:
287	input_unregister_device(omap_kp->input);
288	input_dev = NULL;
289err3:
290	device_remove_file(&pdev->dev, &dev_attr_enable);
291err2:
292	for (i = row_idx - 1; i >= 0; i--)
293		gpio_free(row_gpios[i]);
294	for (i = col_idx - 1; i >= 0; i--)
 
295		gpio_free(col_gpios[i]);
296
297	kfree(omap_kp);
298	input_free_device(input_dev);
299
300	return -EINVAL;
301}
302
303static int omap_kp_remove(struct platform_device *pdev)
304{
305	struct omap_kp *omap_kp = platform_get_drvdata(pdev);
306
307	/* disable keypad interrupt handling */
308	tasklet_disable(&kp_tasklet);
309	omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
310	free_irq(omap_kp->irq, omap_kp);
 
 
 
 
 
 
 
 
 
 
311
312	del_timer_sync(&omap_kp->timer);
313	tasklet_kill(&kp_tasklet);
314
315	/* unregister everything */
316	input_unregister_device(omap_kp->input);
317
318	kfree(omap_kp);
319
320	return 0;
321}
322
323static struct platform_driver omap_kp_driver = {
324	.probe		= omap_kp_probe,
325	.remove		= omap_kp_remove,
 
 
326	.driver		= {
327		.name	= "omap-keypad",
 
328	},
329};
330module_platform_driver(omap_kp_driver);
 
 
 
 
 
 
 
 
 
 
 
 
 
331
332MODULE_AUTHOR("Timo Teräs");
333MODULE_DESCRIPTION("OMAP Keypad Driver");
334MODULE_LICENSE("GPL");
335MODULE_ALIAS("platform:omap-keypad");