blob: d1914bb3531f92a4e089e8a70ab5983b436f72e1 [file] [log] [blame]
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -04001/*
2 * Driver for simulating a mouse on GPIO lines.
3 *
4 * Copyright (C) 2007 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040011#include <linux/module.h>
12#include <linux/platform_device.h>
13#include <linux/input-polldev.h>
Mark Brown55158c82012-04-10 09:03:03 -070014#include <linux/gpio.h>
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040015
Linus Walleijc5053e62017-10-19 16:19:03 -070016#define GPIO_MOUSE_POLARITY_ACT_HIGH 0x00
17#define GPIO_MOUSE_POLARITY_ACT_LOW 0x01
18
19#define GPIO_MOUSE_PIN_UP 0
20#define GPIO_MOUSE_PIN_DOWN 1
21#define GPIO_MOUSE_PIN_LEFT 2
22#define GPIO_MOUSE_PIN_RIGHT 3
23#define GPIO_MOUSE_PIN_BLEFT 4
24#define GPIO_MOUSE_PIN_BMIDDLE 5
25#define GPIO_MOUSE_PIN_BRIGHT 6
26#define GPIO_MOUSE_PIN_MAX 7
27
28/**
Linus Walleij34cf5a12017-10-19 16:19:41 -070029 * struct gpio_mouse
Linus Walleijc5053e62017-10-19 16:19:03 -070030 * @scan_ms: integer in ms specifying the scan periode.
31 * @polarity: Pin polarity, active high or low.
32 * @up: GPIO line for up value.
33 * @down: GPIO line for down value.
34 * @left: GPIO line for left value.
35 * @right: GPIO line for right value.
36 * @bleft: GPIO line for left button.
37 * @bmiddle: GPIO line for middle button.
38 * @bright: GPIO line for right button.
39 * @pins: GPIO line numbers used for the mouse.
40 *
41 * This struct must be added to the platform_device in the board code.
42 * It is used by the gpio_mouse driver to setup GPIO lines and to
43 * calculate mouse movement.
44 */
Linus Walleij34cf5a12017-10-19 16:19:41 -070045struct gpio_mouse {
Linus Walleijc5053e62017-10-19 16:19:03 -070046 int scan_ms;
47 int polarity;
48
49 union {
50 struct {
51 int up;
52 int down;
53 int left;
54 int right;
55
56 int bleft;
57 int bmiddle;
58 int bright;
59 };
60 int pins[GPIO_MOUSE_PIN_MAX];
61 };
62};
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040063
64/*
65 * Timer function which is run every scan_ms ms when the device is opened.
Uwe Kleine-Koenig3a070ad2009-01-12 23:35:48 +010066 * The dev input variable is set to the the input_dev pointer.
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040067 */
68static void gpio_mouse_scan(struct input_polled_dev *dev)
69{
Linus Walleij34cf5a12017-10-19 16:19:41 -070070 struct gpio_mouse *gpio = dev->private;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040071 struct input_dev *input = dev->input;
72 int x, y;
73
74 if (gpio->bleft >= 0)
75 input_report_key(input, BTN_LEFT,
76 gpio_get_value(gpio->bleft) ^ gpio->polarity);
77 if (gpio->bmiddle >= 0)
78 input_report_key(input, BTN_MIDDLE,
79 gpio_get_value(gpio->bmiddle) ^ gpio->polarity);
80 if (gpio->bright >= 0)
81 input_report_key(input, BTN_RIGHT,
82 gpio_get_value(gpio->bright) ^ gpio->polarity);
83
84 x = (gpio_get_value(gpio->right) ^ gpio->polarity)
85 - (gpio_get_value(gpio->left) ^ gpio->polarity);
86 y = (gpio_get_value(gpio->down) ^ gpio->polarity)
87 - (gpio_get_value(gpio->up) ^ gpio->polarity);
88
89 input_report_rel(input, REL_X, x);
90 input_report_rel(input, REL_Y, y);
91 input_sync(input);
92}
93
Bill Pemberton5298cc42012-11-23 21:38:25 -080094static int gpio_mouse_probe(struct platform_device *pdev)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040095{
Linus Walleijc5053e62017-10-19 16:19:03 -070096 struct device *dev = &pdev->dev;
Linus Walleij34cf5a12017-10-19 16:19:41 -070097 struct gpio_mouse *gmouse;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040098 struct input_polled_dev *input_poll;
99 struct input_dev *input;
100 int pin, i;
101 int error;
102
Linus Walleij34cf5a12017-10-19 16:19:41 -0700103 gmouse = devm_kzalloc(dev, sizeof(*gmouse), GFP_KERNEL);
104 if (!gmouse)
Linus Walleijc5053e62017-10-19 16:19:03 -0700105 return -ENOMEM;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400106
Linus Walleij34cf5a12017-10-19 16:19:41 -0700107 if (gmouse->scan_ms < 0) {
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400108 dev_err(&pdev->dev, "invalid scan time\n");
109 error = -EINVAL;
110 goto out;
111 }
112
113 for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
Linus Walleij34cf5a12017-10-19 16:19:41 -0700114 pin = gmouse->pins[i];
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400115
116 if (pin < 0) {
117
118 if (i <= GPIO_MOUSE_PIN_RIGHT) {
119 /* Mouse direction is required. */
120 dev_err(&pdev->dev,
121 "missing GPIO for directions\n");
122 error = -EINVAL;
123 goto out_free_gpios;
124 }
125
126 if (i == GPIO_MOUSE_PIN_BLEFT)
127 dev_dbg(&pdev->dev, "no left button defined\n");
128
129 } else {
130 error = gpio_request(pin, "gpio_mouse");
131 if (error) {
132 dev_err(&pdev->dev, "fail %d pin (%d idx)\n",
133 pin, i);
134 goto out_free_gpios;
135 }
136
137 gpio_direction_input(pin);
138 }
139 }
140
141 input_poll = input_allocate_polled_device();
142 if (!input_poll) {
143 dev_err(&pdev->dev, "not enough memory for input device\n");
144 error = -ENOMEM;
145 goto out_free_gpios;
146 }
147
148 platform_set_drvdata(pdev, input_poll);
149
150 /* set input-polldev handlers */
Linus Walleij34cf5a12017-10-19 16:19:41 -0700151 input_poll->private = gmouse;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400152 input_poll->poll = gpio_mouse_scan;
Linus Walleij34cf5a12017-10-19 16:19:41 -0700153 input_poll->poll_interval = gmouse->scan_ms;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400154
155 input = input_poll->input;
156 input->name = pdev->name;
157 input->id.bustype = BUS_HOST;
158 input->dev.parent = &pdev->dev;
159
160 input_set_capability(input, EV_REL, REL_X);
161 input_set_capability(input, EV_REL, REL_Y);
Linus Walleij34cf5a12017-10-19 16:19:41 -0700162 if (gmouse->bleft >= 0)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400163 input_set_capability(input, EV_KEY, BTN_LEFT);
Linus Walleij34cf5a12017-10-19 16:19:41 -0700164 if (gmouse->bmiddle >= 0)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400165 input_set_capability(input, EV_KEY, BTN_MIDDLE);
Linus Walleij34cf5a12017-10-19 16:19:41 -0700166 if (gmouse->bright >= 0)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400167 input_set_capability(input, EV_KEY, BTN_RIGHT);
168
169 error = input_register_polled_device(input_poll);
170 if (error) {
171 dev_err(&pdev->dev, "could not register input device\n");
172 goto out_free_polldev;
173 }
174
175 dev_dbg(&pdev->dev, "%d ms scan time, buttons: %s%s%s\n",
Linus Walleij34cf5a12017-10-19 16:19:41 -0700176 gmouse->scan_ms,
177 gmouse->bleft < 0 ? "" : "left ",
178 gmouse->bmiddle < 0 ? "" : "middle ",
179 gmouse->bright < 0 ? "" : "right");
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400180
181 return 0;
182
183 out_free_polldev:
184 input_free_polled_device(input_poll);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400185
186 out_free_gpios:
187 while (--i >= 0) {
Linus Walleij34cf5a12017-10-19 16:19:41 -0700188 pin = gmouse->pins[i];
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400189 if (pin)
190 gpio_free(pin);
191 }
192 out:
193 return error;
194}
195
Bill Pembertone2619cf2012-11-23 21:50:47 -0800196static int gpio_mouse_remove(struct platform_device *pdev)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400197{
198 struct input_polled_dev *input = platform_get_drvdata(pdev);
Linus Walleij34cf5a12017-10-19 16:19:41 -0700199 struct gpio_mouse *gmouse = input->private;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400200 int pin, i;
201
202 input_unregister_polled_device(input);
203 input_free_polled_device(input);
204
205 for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
Linus Walleij34cf5a12017-10-19 16:19:41 -0700206 pin = gmouse->pins[i];
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400207 if (pin >= 0)
208 gpio_free(pin);
209 }
210
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400211 return 0;
212}
213
Roel Kluin0de048a2008-12-20 05:19:43 -0500214static struct platform_driver gpio_mouse_device_driver = {
Saeed Bisharaeeafa5e2009-07-07 22:11:52 -0700215 .probe = gpio_mouse_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800216 .remove = gpio_mouse_remove,
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400217 .driver = {
218 .name = "gpio_mouse",
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400219 }
220};
JJ Ding4fcdeac2011-11-29 11:08:41 -0800221module_platform_driver(gpio_mouse_device_driver);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400222
Hans-Christian Egtvedt7c409522011-06-29 00:13:26 -0700223MODULE_AUTHOR("Hans-Christian Egtvedt <egtvedt@samfundet.no>");
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400224MODULE_DESCRIPTION("GPIO mouse driver");
225MODULE_LICENSE("GPL");
Saeed Bisharaeeafa5e2009-07-07 22:11:52 -0700226MODULE_ALIAS("platform:gpio_mouse"); /* work with hotplug and coldplug */
227