blob: 6cd7159f1003b6f7bec27cc12bf026111d1e938f [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
Linus Walleij836bd412017-10-19 16:24:24 -07005 * Copyright (C) 2017 Linus Walleij <linus.walleij@linaro.org>
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -04006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040012#include <linux/module.h>
13#include <linux/platform_device.h>
14#include <linux/input-polldev.h>
Linus Walleij836bd412017-10-19 16:24:24 -070015#include <linux/gpio/consumer.h>
16#include <linux/property.h>
Linus Walleijc5053e62017-10-19 16:19:03 -070017
18/**
Linus Walleij34cf5a12017-10-19 16:19:41 -070019 * struct gpio_mouse
Linus Walleij836bd412017-10-19 16:24:24 -070020 * @scan_ms: the scan interval in milliseconds.
Linus Walleijc5053e62017-10-19 16:19:03 -070021 * @up: GPIO line for up value.
22 * @down: GPIO line for down value.
23 * @left: GPIO line for left value.
24 * @right: GPIO line for right value.
25 * @bleft: GPIO line for left button.
26 * @bmiddle: GPIO line for middle button.
27 * @bright: GPIO line for right button.
Linus Walleijc5053e62017-10-19 16:19:03 -070028 *
29 * This struct must be added to the platform_device in the board code.
30 * It is used by the gpio_mouse driver to setup GPIO lines and to
31 * calculate mouse movement.
32 */
Linus Walleij34cf5a12017-10-19 16:19:41 -070033struct gpio_mouse {
Linus Walleij836bd412017-10-19 16:24:24 -070034 u32 scan_ms;
35 struct gpio_desc *up;
36 struct gpio_desc *down;
37 struct gpio_desc *left;
38 struct gpio_desc *right;
39 struct gpio_desc *bleft;
40 struct gpio_desc *bmiddle;
41 struct gpio_desc *bright;
Linus Walleijc5053e62017-10-19 16:19:03 -070042};
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040043
44/*
45 * Timer function which is run every scan_ms ms when the device is opened.
Uwe Kleine-Koenig3a070ad2009-01-12 23:35:48 +010046 * The dev input variable is set to the the input_dev pointer.
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040047 */
48static void gpio_mouse_scan(struct input_polled_dev *dev)
49{
Linus Walleij34cf5a12017-10-19 16:19:41 -070050 struct gpio_mouse *gpio = dev->private;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040051 struct input_dev *input = dev->input;
52 int x, y;
53
Linus Walleij836bd412017-10-19 16:24:24 -070054 if (gpio->bleft)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040055 input_report_key(input, BTN_LEFT,
Linus Walleij836bd412017-10-19 16:24:24 -070056 gpiod_get_value(gpio->bleft));
57 if (gpio->bmiddle)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040058 input_report_key(input, BTN_MIDDLE,
Linus Walleij836bd412017-10-19 16:24:24 -070059 gpiod_get_value(gpio->bmiddle));
60 if (gpio->bright)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040061 input_report_key(input, BTN_RIGHT,
Linus Walleij836bd412017-10-19 16:24:24 -070062 gpiod_get_value(gpio->bright));
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040063
Linus Walleij836bd412017-10-19 16:24:24 -070064 x = gpiod_get_value(gpio->right) - gpiod_get_value(gpio->left);
65 y = gpiod_get_value(gpio->down) - gpiod_get_value(gpio->up);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040066
67 input_report_rel(input, REL_X, x);
68 input_report_rel(input, REL_Y, y);
69 input_sync(input);
70}
71
Bill Pemberton5298cc42012-11-23 21:38:25 -080072static int gpio_mouse_probe(struct platform_device *pdev)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040073{
Linus Walleijc5053e62017-10-19 16:19:03 -070074 struct device *dev = &pdev->dev;
Linus Walleij34cf5a12017-10-19 16:19:41 -070075 struct gpio_mouse *gmouse;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040076 struct input_polled_dev *input_poll;
77 struct input_dev *input;
Linus Walleij836bd412017-10-19 16:24:24 -070078 int ret;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040079
Linus Walleij34cf5a12017-10-19 16:19:41 -070080 gmouse = devm_kzalloc(dev, sizeof(*gmouse), GFP_KERNEL);
81 if (!gmouse)
Linus Walleijc5053e62017-10-19 16:19:03 -070082 return -ENOMEM;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040083
Linus Walleij836bd412017-10-19 16:24:24 -070084 /* Assign some default scanning time */
85 ret = device_property_read_u32(dev, "scan-interval-ms",
86 &gmouse->scan_ms);
87 if (ret || gmouse->scan_ms == 0) {
88 dev_warn(dev, "invalid scan time, set to 50 ms\n");
89 gmouse->scan_ms = 50;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -040090 }
91
Linus Walleij836bd412017-10-19 16:24:24 -070092 gmouse->up = devm_gpiod_get(dev, "up", GPIOD_IN);
93 if (IS_ERR(gmouse->up))
94 return PTR_ERR(gmouse->up);
95 gmouse->down = devm_gpiod_get(dev, "down", GPIOD_IN);
96 if (IS_ERR(gmouse->down))
97 return PTR_ERR(gmouse->down);
98 gmouse->left = devm_gpiod_get(dev, "left", GPIOD_IN);
99 if (IS_ERR(gmouse->left))
100 return PTR_ERR(gmouse->left);
101 gmouse->right = devm_gpiod_get(dev, "right", GPIOD_IN);
102 if (IS_ERR(gmouse->right))
103 return PTR_ERR(gmouse->right);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400104
Linus Walleij836bd412017-10-19 16:24:24 -0700105 gmouse->bleft = devm_gpiod_get_optional(dev, "button-left", GPIOD_IN);
106 if (IS_ERR(gmouse->bleft))
107 return PTR_ERR(gmouse->bleft);
108 gmouse->bmiddle = devm_gpiod_get_optional(dev, "button-middle",
109 GPIOD_IN);
110 if (IS_ERR(gmouse->bmiddle))
111 return PTR_ERR(gmouse->bmiddle);
112 gmouse->bright = devm_gpiod_get_optional(dev, "button-right",
113 GPIOD_IN);
114 if (IS_ERR(gmouse->bright))
115 return PTR_ERR(gmouse->bright);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400116
Linus Walleij836bd412017-10-19 16:24:24 -0700117 input_poll = devm_input_allocate_polled_device(dev);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400118 if (!input_poll) {
Linus Walleij836bd412017-10-19 16:24:24 -0700119 dev_err(dev, "not enough memory for input device\n");
120 return -ENOMEM;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400121 }
122
123 platform_set_drvdata(pdev, input_poll);
124
125 /* set input-polldev handlers */
Linus Walleij34cf5a12017-10-19 16:19:41 -0700126 input_poll->private = gmouse;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400127 input_poll->poll = gpio_mouse_scan;
Linus Walleij34cf5a12017-10-19 16:19:41 -0700128 input_poll->poll_interval = gmouse->scan_ms;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400129
130 input = input_poll->input;
131 input->name = pdev->name;
132 input->id.bustype = BUS_HOST;
133 input->dev.parent = &pdev->dev;
134
135 input_set_capability(input, EV_REL, REL_X);
136 input_set_capability(input, EV_REL, REL_Y);
Linus Walleij836bd412017-10-19 16:24:24 -0700137 if (gmouse->bleft)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400138 input_set_capability(input, EV_KEY, BTN_LEFT);
Linus Walleij836bd412017-10-19 16:24:24 -0700139 if (gmouse->bmiddle)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400140 input_set_capability(input, EV_KEY, BTN_MIDDLE);
Linus Walleij836bd412017-10-19 16:24:24 -0700141 if (gmouse->bright)
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400142 input_set_capability(input, EV_KEY, BTN_RIGHT);
143
Linus Walleij836bd412017-10-19 16:24:24 -0700144 ret = input_register_polled_device(input_poll);
145 if (ret) {
146 dev_err(dev, "could not register input device\n");
147 return ret;
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400148 }
149
Linus Walleij836bd412017-10-19 16:24:24 -0700150 dev_dbg(dev, "%d ms scan time, buttons: %s%s%s\n",
151 gmouse->scan_ms,
152 gmouse->bleft ? "" : "left ",
153 gmouse->bmiddle ? "" : "middle ",
154 gmouse->bright ? "" : "right");
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400155
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400156 return 0;
157}
158
Roel Kluin0de048a2008-12-20 05:19:43 -0500159static struct platform_driver gpio_mouse_device_driver = {
Saeed Bisharaeeafa5e2009-07-07 22:11:52 -0700160 .probe = gpio_mouse_probe,
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400161 .driver = {
162 .name = "gpio_mouse",
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400163 }
164};
JJ Ding4fcdeac2011-11-29 11:08:41 -0800165module_platform_driver(gpio_mouse_device_driver);
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400166
Hans-Christian Egtvedt7c409522011-06-29 00:13:26 -0700167MODULE_AUTHOR("Hans-Christian Egtvedt <egtvedt@samfundet.no>");
Hans-Christian Egtvedt5f565502007-06-14 23:32:35 -0400168MODULE_DESCRIPTION("GPIO mouse driver");
169MODULE_LICENSE("GPL");
Saeed Bisharaeeafa5e2009-07-07 22:11:52 -0700170MODULE_ALIAS("platform:gpio_mouse"); /* work with hotplug and coldplug */