Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 1 | /* |
| 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 Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <linux/input-polldev.h> |
Mark Brown | 55158c8 | 2012-04-10 09:03:03 -0700 | [diff] [blame] | 14 | #include <linux/gpio.h> |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 15 | |
Linus Walleij | c5053e6 | 2017-10-19 16:19:03 -0700 | [diff] [blame] | 16 | #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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 29 | * struct gpio_mouse |
Linus Walleij | c5053e6 | 2017-10-19 16:19:03 -0700 | [diff] [blame] | 30 | * @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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 45 | struct gpio_mouse { |
Linus Walleij | c5053e6 | 2017-10-19 16:19:03 -0700 | [diff] [blame] | 46 | 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 Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * Timer function which is run every scan_ms ms when the device is opened. |
Uwe Kleine-Koenig | 3a070ad | 2009-01-12 23:35:48 +0100 | [diff] [blame] | 66 | * The dev input variable is set to the the input_dev pointer. |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 67 | */ |
| 68 | static void gpio_mouse_scan(struct input_polled_dev *dev) |
| 69 | { |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 70 | struct gpio_mouse *gpio = dev->private; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 71 | 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 Pemberton | 5298cc4 | 2012-11-23 21:38:25 -0800 | [diff] [blame] | 94 | static int gpio_mouse_probe(struct platform_device *pdev) |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 95 | { |
Linus Walleij | c5053e6 | 2017-10-19 16:19:03 -0700 | [diff] [blame] | 96 | struct device *dev = &pdev->dev; |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 97 | struct gpio_mouse *gmouse; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 98 | struct input_polled_dev *input_poll; |
| 99 | struct input_dev *input; |
| 100 | int pin, i; |
| 101 | int error; |
| 102 | |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 103 | gmouse = devm_kzalloc(dev, sizeof(*gmouse), GFP_KERNEL); |
| 104 | if (!gmouse) |
Linus Walleij | c5053e6 | 2017-10-19 16:19:03 -0700 | [diff] [blame] | 105 | return -ENOMEM; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 106 | |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 107 | if (gmouse->scan_ms < 0) { |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 108 | 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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 114 | pin = gmouse->pins[i]; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 115 | |
| 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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 151 | input_poll->private = gmouse; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 152 | input_poll->poll = gpio_mouse_scan; |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 153 | input_poll->poll_interval = gmouse->scan_ms; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 154 | |
| 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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 162 | if (gmouse->bleft >= 0) |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 163 | input_set_capability(input, EV_KEY, BTN_LEFT); |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 164 | if (gmouse->bmiddle >= 0) |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 165 | input_set_capability(input, EV_KEY, BTN_MIDDLE); |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 166 | if (gmouse->bright >= 0) |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 167 | 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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 176 | gmouse->scan_ms, |
| 177 | gmouse->bleft < 0 ? "" : "left ", |
| 178 | gmouse->bmiddle < 0 ? "" : "middle ", |
| 179 | gmouse->bright < 0 ? "" : "right"); |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 180 | |
| 181 | return 0; |
| 182 | |
| 183 | out_free_polldev: |
| 184 | input_free_polled_device(input_poll); |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 185 | |
| 186 | out_free_gpios: |
| 187 | while (--i >= 0) { |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 188 | pin = gmouse->pins[i]; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 189 | if (pin) |
| 190 | gpio_free(pin); |
| 191 | } |
| 192 | out: |
| 193 | return error; |
| 194 | } |
| 195 | |
Bill Pemberton | e2619cf | 2012-11-23 21:50:47 -0800 | [diff] [blame] | 196 | static int gpio_mouse_remove(struct platform_device *pdev) |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 197 | { |
| 198 | struct input_polled_dev *input = platform_get_drvdata(pdev); |
Linus Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 199 | struct gpio_mouse *gmouse = input->private; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 200 | 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 Walleij | 34cf5a1 | 2017-10-19 16:19:41 -0700 | [diff] [blame^] | 206 | pin = gmouse->pins[i]; |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 207 | if (pin >= 0) |
| 208 | gpio_free(pin); |
| 209 | } |
| 210 | |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 211 | return 0; |
| 212 | } |
| 213 | |
Roel Kluin | 0de048a | 2008-12-20 05:19:43 -0500 | [diff] [blame] | 214 | static struct platform_driver gpio_mouse_device_driver = { |
Saeed Bishara | eeafa5e | 2009-07-07 22:11:52 -0700 | [diff] [blame] | 215 | .probe = gpio_mouse_probe, |
Bill Pemberton | 1cb0aa8 | 2012-11-23 21:27:39 -0800 | [diff] [blame] | 216 | .remove = gpio_mouse_remove, |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 217 | .driver = { |
| 218 | .name = "gpio_mouse", |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 219 | } |
| 220 | }; |
JJ Ding | 4fcdeac | 2011-11-29 11:08:41 -0800 | [diff] [blame] | 221 | module_platform_driver(gpio_mouse_device_driver); |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 222 | |
Hans-Christian Egtvedt | 7c40952 | 2011-06-29 00:13:26 -0700 | [diff] [blame] | 223 | MODULE_AUTHOR("Hans-Christian Egtvedt <egtvedt@samfundet.no>"); |
Hans-Christian Egtvedt | 5f56550 | 2007-06-14 23:32:35 -0400 | [diff] [blame] | 224 | MODULE_DESCRIPTION("GPIO mouse driver"); |
| 225 | MODULE_LICENSE("GPL"); |
Saeed Bishara | eeafa5e | 2009-07-07 22:11:52 -0700 | [diff] [blame] | 226 | MODULE_ALIAS("platform:gpio_mouse"); /* work with hotplug and coldplug */ |
| 227 | |