gpio_keys.c 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Driver for keys on GPIO lines capable of generating interrupts.
 *
 * Copyright 2005 Phil Blundell
 *
 * 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/module.h>
#include <linux/version.h>

#include <linux/init.h>
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/sched.h>
#include <linux/pm.h>
#include <linux/sysctl.h>
#include <linux/proc_fs.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/input.h>
25
#include <linux/gpio_keys.h>
26

27
#include <asm/gpio.h>
28 29 30 31 32 33 34 35 36

static irqreturn_t gpio_keys_isr(int irq, void *dev_id)
{
	int i;
	struct platform_device *pdev = dev_id;
	struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
	struct input_dev *input = platform_get_drvdata(pdev);

	for (i = 0; i < pdata->nbuttons; i++) {
37 38 39
		struct gpio_keys_button *button = &pdata->buttons[i];
		int gpio = button->gpio;

40
		if (irq == gpio_to_irq(gpio)) {
41 42
			unsigned int type = button->type ?: EV_KEY;
			int state = (gpio_get_value(gpio) ? 1 : 0) ^ button->active_low;
43

44
			input_event(input, type, button->code, !!state);
45 46 47 48 49 50 51 52 53 54 55 56
			input_sync(input);
		}
	}

	return IRQ_HANDLED;
}

static int __devinit gpio_keys_probe(struct platform_device *pdev)
{
	struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
	struct input_dev *input;
	int i, error;
57
	int wakeup = 0;
58 59 60 61 62 63 64

	input = input_allocate_device();
	if (!input)
		return -ENOMEM;

	platform_set_drvdata(pdev, input);

65
	input->evbit[0] = BIT_MASK(EV_KEY);
66 67 68

	input->name = pdev->name;
	input->phys = "gpio-keys/input0";
69
	input->dev.parent = &pdev->dev;
70 71 72 73 74 75 76

	input->id.bustype = BUS_HOST;
	input->id.vendor = 0x0001;
	input->id.product = 0x0001;
	input->id.version = 0x0100;

	for (i = 0; i < pdata->nbuttons; i++) {
77 78 79
		struct gpio_keys_button *button = &pdata->buttons[i];
		int irq = gpio_to_irq(button->gpio);
		unsigned int type = button->type ?: EV_KEY;
80

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
		if (irq < 0) {
			error = irq;
			printk(KERN_ERR
				"gpio-keys: "
				"Unable to get irq number for GPIO %d,"
				"error %d\n",
				button->gpio, error);
			goto fail;
		}

		error = request_irq(irq, gpio_keys_isr,
				    IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_RISING |
					IRQF_TRIGGER_FALLING,
				    button->desc ? button->desc : "gpio_keys",
				    pdev);
96
		if (error) {
97 98
			printk(KERN_ERR
				"gpio-keys: Unable to claim irq %d; error %d\n",
99
				irq, error);
100 101
			goto fail;
		}
102

103 104 105
		if (button->wakeup)
			wakeup = 1;

106
		input_set_capability(input, type, button->code);
107 108 109 110
	}

	error = input_register_device(input);
	if (error) {
111 112 113
		printk(KERN_ERR
			"gpio-keys: Unable to register input device, "
			"error: %d\n", error);
114 115 116
		goto fail;
	}

117 118
	device_init_wakeup(&pdev->dev, wakeup);

119 120 121
	return 0;

 fail:
122
	while (--i >= 0)
123
		free_irq(gpio_to_irq(pdata->buttons[i].gpio), pdev);
124

125
	platform_set_drvdata(pdev, NULL);
126 127 128 129 130 131 132 133 134 135 136
	input_free_device(input);

	return error;
}

static int __devexit gpio_keys_remove(struct platform_device *pdev)
{
	struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
	struct input_dev *input = platform_get_drvdata(pdev);
	int i;

137 138
	device_init_wakeup(&pdev->dev, 0);

139
	for (i = 0; i < pdata->nbuttons; i++) {
140
		int irq = gpio_to_irq(pdata->buttons[i].gpio);
141 142 143 144 145 146 147 148
		free_irq(irq, pdev);
	}

	input_unregister_device(input);

	return 0;
}

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 180 181 182 183 184 185 186 187 188 189 190

#ifdef CONFIG_PM
static int gpio_keys_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
	int i;

	if (device_may_wakeup(&pdev->dev)) {
		for (i = 0; i < pdata->nbuttons; i++) {
			struct gpio_keys_button *button = &pdata->buttons[i];
			if (button->wakeup) {
				int irq = gpio_to_irq(button->gpio);
				enable_irq_wake(irq);
			}
		}
	}

	return 0;
}

static int gpio_keys_resume(struct platform_device *pdev)
{
	struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
	int i;

	if (device_may_wakeup(&pdev->dev)) {
		for (i = 0; i < pdata->nbuttons; i++) {
			struct gpio_keys_button *button = &pdata->buttons[i];
			if (button->wakeup) {
				int irq = gpio_to_irq(button->gpio);
				disable_irq_wake(irq);
			}
		}
	}

	return 0;
}
#else
#define gpio_keys_suspend	NULL
#define gpio_keys_resume	NULL
#endif

191 192 193
struct platform_driver gpio_keys_device_driver = {
	.probe		= gpio_keys_probe,
	.remove		= __devexit_p(gpio_keys_remove),
194 195
	.suspend	= gpio_keys_suspend,
	.resume		= gpio_keys_resume,
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	.driver		= {
		.name	= "gpio-keys",
	}
};

static int __init gpio_keys_init(void)
{
	return platform_driver_register(&gpio_keys_device_driver);
}

static void __exit gpio_keys_exit(void)
{
	platform_driver_unregister(&gpio_keys_device_driver);
}

module_init(gpio_keys_init);
module_exit(gpio_keys_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
MODULE_DESCRIPTION("Keyboard driver for CPU GPIOs");