Skip to content

Commit

Permalink
Input: tsc2007 - accept standard properties
Browse files Browse the repository at this point in the history
Only some driver-specific properties were accepted, change it
to use the now-available standard properties which are
found in devicetrees containing this chip.

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Link: https://lore.kernel.org/r/20241205204413.2466775-2-akemnade@kernel.org
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
  • Loading branch information
Andreas Kemnade authored and Kevin Hilman committed Dec 11, 2024
1 parent 40384c8 commit 6ef4ea3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions drivers/input/touchscreen/tsc2007.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#ifndef _TSC2007_H
#define _TSC2007_H

#include <linux/input/touchscreen.h>
struct gpio_desc;

#define TSC2007_MEASURE_TEMP0 (0x0 << 4)
Expand Down Expand Up @@ -63,6 +64,7 @@ struct tsc2007 {

struct i2c_client *client;

struct touchscreen_properties prop;
u16 model;
u16 x_plate_ohms;
u16 max_rt;
Expand Down
5 changes: 2 additions & 3 deletions drivers/input/touchscreen/tsc2007_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ static irqreturn_t tsc2007_soft_irq(int irq, void *handle)
rt = ts->max_rt - rt;

input_report_key(input, BTN_TOUCH, 1);
input_report_abs(input, ABS_X, tc.x);
input_report_abs(input, ABS_Y, tc.y);
touchscreen_report_pos(input, &ts->prop, tc.x, tc.y, false);
input_report_abs(input, ABS_PRESSURE, rt);

input_sync(input);
Expand Down Expand Up @@ -339,9 +338,9 @@ static int tsc2007_probe(struct i2c_client *client)
input_set_drvdata(input_dev, ts);

input_set_capability(input_dev, EV_KEY, BTN_TOUCH);

input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, ts->fuzzx, 0);
input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, ts->fuzzy, 0);
touchscreen_parse_properties(input_dev, false, &ts->prop);
input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT,
ts->fuzzz, 0);

Expand Down

0 comments on commit 6ef4ea3

Please sign in to comment.