Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 2 | /* |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 3 | * Generic helper functions for touchscreens and other two-dimensional |
| 4 | * pointing devices |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (c) 2014 Sebastian Reichel <sre@kernel.org> |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 9 | #include <linux/property.h> |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 10 | #include <linux/input.h> |
Maxime Ripard | 0a363a3 | 2015-03-21 20:17:57 -0700 | [diff] [blame] | 11 | #include <linux/input/mt.h> |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 12 | #include <linux/input/touchscreen.h> |
Arnd Bergmann | 43173a0 | 2018-01-10 11:29:23 -0800 | [diff] [blame] | 13 | #include <linux/module.h> |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 14 | |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 15 | static bool touchscreen_get_prop_u32(struct device *dev, |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 16 | const char *property, |
| 17 | unsigned int default_value, |
| 18 | unsigned int *value) |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 19 | { |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 20 | u32 val; |
| 21 | int error; |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 22 | |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 23 | error = device_property_read_u32(dev, property, &val); |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 24 | if (error) { |
| 25 | *value = default_value; |
| 26 | return false; |
| 27 | } |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 28 | |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 29 | *value = val; |
| 30 | return true; |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | static void touchscreen_set_params(struct input_dev *dev, |
| 34 | unsigned long axis, |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 35 | int min, int max, int fuzz) |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 36 | { |
| 37 | struct input_absinfo *absinfo; |
| 38 | |
| 39 | if (!test_bit(axis, dev->absbit)) { |
Dmitry Torokhov | f61fd21 | 2015-07-06 14:45:25 -0700 | [diff] [blame] | 40 | dev_warn(&dev->dev, |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 41 | "Parameters are specified but the axis %lu is not set up\n", |
Dmitry Torokhov | f61fd21 | 2015-07-06 14:45:25 -0700 | [diff] [blame] | 42 | axis); |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 43 | return; |
| 44 | } |
| 45 | |
| 46 | absinfo = &dev->absinfo[axis]; |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 47 | absinfo->minimum = min; |
Maxime Ripard | 3eea8b5 | 2015-03-21 20:17:48 -0700 | [diff] [blame] | 48 | absinfo->maximum = max; |
| 49 | absinfo->fuzz = fuzz; |
| 50 | } |
| 51 | |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 52 | /** |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 53 | * touchscreen_parse_properties - parse common touchscreen properties |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 54 | * @input: input device that should be parsed |
| 55 | * @multitouch: specifies whether parsed properties should be applied to |
| 56 | * single-touch or multi-touch axes |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 57 | * @prop: pointer to a struct touchscreen_properties into which to store |
| 58 | * axis swap and invert info for use with touchscreen_report_x_y(); |
| 59 | * or %NULL |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 60 | * |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 61 | * This function parses common properties for touchscreens and sets up the |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 62 | * input device accordingly. The function keeps previously set up default |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 63 | * values if no value is specified. |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 64 | */ |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 65 | void touchscreen_parse_properties(struct input_dev *input, bool multitouch, |
| 66 | struct touchscreen_properties *prop) |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 67 | { |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 68 | struct device *dev = input->dev.parent; |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 69 | struct input_absinfo *absinfo; |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 70 | unsigned int axis, axis_x, axis_y; |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 71 | unsigned int minimum, maximum, fuzz; |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 72 | bool data_present; |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 73 | |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 74 | input_alloc_absinfo(input); |
| 75 | if (!input->absinfo) |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 76 | return; |
| 77 | |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 78 | axis_x = multitouch ? ABS_MT_POSITION_X : ABS_X; |
| 79 | axis_y = multitouch ? ABS_MT_POSITION_Y : ABS_Y; |
| 80 | |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 81 | data_present = touchscreen_get_prop_u32(dev, "touchscreen-min-x", |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 82 | input_abs_get_min(input, axis_x), |
Nathan Chancellor | a02dcde | 2021-10-15 13:13:06 -0700 | [diff] [blame] | 83 | &minimum); |
| 84 | data_present |= touchscreen_get_prop_u32(dev, "touchscreen-size-x", |
| 85 | input_abs_get_max(input, |
| 86 | axis_x) + 1, |
| 87 | &maximum); |
| 88 | data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-x", |
| 89 | input_abs_get_fuzz(input, axis_x), |
| 90 | &fuzz); |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 91 | if (data_present) |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 92 | touchscreen_set_params(input, axis_x, minimum, maximum - 1, fuzz); |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 93 | |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 94 | data_present = touchscreen_get_prop_u32(dev, "touchscreen-min-y", |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 95 | input_abs_get_min(input, axis_y), |
Nathan Chancellor | a02dcde | 2021-10-15 13:13:06 -0700 | [diff] [blame] | 96 | &minimum); |
| 97 | data_present |= touchscreen_get_prop_u32(dev, "touchscreen-size-y", |
| 98 | input_abs_get_max(input, |
| 99 | axis_y) + 1, |
| 100 | &maximum); |
| 101 | data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-y", |
| 102 | input_abs_get_fuzz(input, axis_y), |
| 103 | &fuzz); |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 104 | if (data_present) |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 105 | touchscreen_set_params(input, axis_y, minimum, maximum - 1, fuzz); |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 106 | |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 107 | axis = multitouch ? ABS_MT_PRESSURE : ABS_PRESSURE; |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 108 | data_present = touchscreen_get_prop_u32(dev, |
| 109 | "touchscreen-max-pressure", |
| 110 | input_abs_get_max(input, axis), |
Nathan Chancellor | a02dcde | 2021-10-15 13:13:06 -0700 | [diff] [blame] | 111 | &maximum); |
| 112 | data_present |= touchscreen_get_prop_u32(dev, |
| 113 | "touchscreen-fuzz-pressure", |
| 114 | input_abs_get_fuzz(input, axis), |
| 115 | &fuzz); |
Dmitry Torokhov | 7c49437 | 2015-06-01 10:35:16 -0700 | [diff] [blame] | 116 | if (data_present) |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 117 | touchscreen_set_params(input, axis, 0, maximum, fuzz); |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 118 | |
| 119 | if (!prop) |
| 120 | return; |
| 121 | |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 122 | prop->max_x = input_abs_get_max(input, axis_x); |
| 123 | prop->max_y = input_abs_get_max(input, axis_y); |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 124 | |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 125 | prop->invert_x = |
| 126 | device_property_read_bool(dev, "touchscreen-inverted-x"); |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 127 | if (prop->invert_x) { |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 128 | absinfo = &input->absinfo[axis_x]; |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 129 | absinfo->maximum -= absinfo->minimum; |
| 130 | absinfo->minimum = 0; |
| 131 | } |
| 132 | |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 133 | prop->invert_y = |
| 134 | device_property_read_bool(dev, "touchscreen-inverted-y"); |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 135 | if (prop->invert_y) { |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 136 | absinfo = &input->absinfo[axis_y]; |
Hans de Goede | d9265e8 | 2018-10-11 17:04:13 -0700 | [diff] [blame] | 137 | absinfo->maximum -= absinfo->minimum; |
| 138 | absinfo->minimum = 0; |
| 139 | } |
| 140 | |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 141 | prop->swap_x_y = |
| 142 | device_property_read_bool(dev, "touchscreen-swapped-x-y"); |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 143 | if (prop->swap_x_y) |
Andy Shevchenko | cc5117d | 2020-03-06 17:11:46 -0800 | [diff] [blame] | 144 | swap(input->absinfo[axis_x], input->absinfo[axis_y]); |
Sebastian Reichel | b98abe5 | 2014-05-28 23:51:53 -0700 | [diff] [blame] | 145 | } |
Dmitry Torokhov | 4200e83 | 2015-07-06 15:18:24 -0700 | [diff] [blame] | 146 | EXPORT_SYMBOL(touchscreen_parse_properties); |
Hans de Goede | ed7c987 | 2016-07-15 14:05:29 -0700 | [diff] [blame] | 147 | |
| 148 | static void |
| 149 | touchscreen_apply_prop_to_x_y(const struct touchscreen_properties *prop, |
| 150 | unsigned int *x, unsigned int *y) |
| 151 | { |
| 152 | if (prop->invert_x) |
| 153 | *x = prop->max_x - *x; |
| 154 | |
| 155 | if (prop->invert_y) |
| 156 | *y = prop->max_y - *y; |
| 157 | |
| 158 | if (prop->swap_x_y) |
| 159 | swap(*x, *y); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * touchscreen_set_mt_pos - Set input_mt_pos coordinates |
| 164 | * @pos: input_mt_pos to set coordinates of |
| 165 | * @prop: pointer to a struct touchscreen_properties |
| 166 | * @x: X coordinate to store in pos |
| 167 | * @y: Y coordinate to store in pos |
| 168 | * |
| 169 | * Adjust the passed in x and y values applying any axis inversion and |
| 170 | * swapping requested in the passed in touchscreen_properties and store |
| 171 | * the result in a struct input_mt_pos. |
| 172 | */ |
| 173 | void touchscreen_set_mt_pos(struct input_mt_pos *pos, |
| 174 | const struct touchscreen_properties *prop, |
| 175 | unsigned int x, unsigned int y) |
| 176 | { |
| 177 | touchscreen_apply_prop_to_x_y(prop, &x, &y); |
| 178 | pos->x = x; |
| 179 | pos->y = y; |
| 180 | } |
| 181 | EXPORT_SYMBOL(touchscreen_set_mt_pos); |
| 182 | |
| 183 | /** |
| 184 | * touchscreen_report_pos - Report touchscreen coordinates |
| 185 | * @input: input_device to report coordinates for |
| 186 | * @prop: pointer to a struct touchscreen_properties |
| 187 | * @x: X coordinate to report |
| 188 | * @y: Y coordinate to report |
| 189 | * @multitouch: Report coordinates on single-touch or multi-touch axes |
| 190 | * |
| 191 | * Adjust the passed in x and y values applying any axis inversion and |
| 192 | * swapping requested in the passed in touchscreen_properties and then |
| 193 | * report the resulting coordinates on the input_dev's x and y axis. |
| 194 | */ |
| 195 | void touchscreen_report_pos(struct input_dev *input, |
| 196 | const struct touchscreen_properties *prop, |
| 197 | unsigned int x, unsigned int y, |
| 198 | bool multitouch) |
| 199 | { |
| 200 | touchscreen_apply_prop_to_x_y(prop, &x, &y); |
| 201 | input_report_abs(input, multitouch ? ABS_MT_POSITION_X : ABS_X, x); |
| 202 | input_report_abs(input, multitouch ? ABS_MT_POSITION_Y : ABS_Y, y); |
| 203 | } |
| 204 | EXPORT_SYMBOL(touchscreen_report_pos); |
Arnd Bergmann | 43173a0 | 2018-01-10 11:29:23 -0800 | [diff] [blame] | 205 | |
| 206 | MODULE_LICENSE("GPL v2"); |
Jeff LaBundy | 51e01fc | 2021-03-22 16:43:00 -0700 | [diff] [blame] | 207 | MODULE_DESCRIPTION("Helper functions for touchscreens and other devices"); |