drm/client: Fix drm client endless Kconfig loop
[drm/drm-misc.git] / drivers / input / touchscreen / ts4800-ts.c
blob98422d1e80d6d4bb858292e420998bcc93a5cdbb
1 /*
2 * Touchscreen driver for the TS-4800 board
4 * Copyright (c) 2015 - Savoir-faire Linux
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
11 #include <linux/bitops.h>
12 #include <linux/input.h>
13 #include <linux/io.h>
14 #include <linux/kernel.h>
15 #include <linux/mfd/syscon.h>
16 #include <linux/module.h>
17 #include <linux/of.h>
18 #include <linux/platform_device.h>
19 #include <linux/regmap.h>
21 /* polling interval in ms */
22 #define POLL_INTERVAL 3
24 #define DEBOUNCE_COUNT 1
26 /* sensor values are 12-bit wide */
27 #define MAX_12BIT ((1 << 12) - 1)
29 #define PENDOWN_MASK 0x1
31 #define X_OFFSET 0x0
32 #define Y_OFFSET 0x2
34 struct ts4800_ts {
35 struct input_dev *input;
36 struct device *dev;
37 char phys[32];
39 void __iomem *base;
40 struct regmap *regmap;
41 unsigned int reg;
42 unsigned int bit;
44 bool pendown;
45 int debounce;
48 static int ts4800_ts_open(struct input_dev *input_dev)
50 struct ts4800_ts *ts = input_get_drvdata(input_dev);
51 int error;
53 ts->pendown = false;
54 ts->debounce = DEBOUNCE_COUNT;
56 error = regmap_update_bits(ts->regmap, ts->reg, ts->bit, ts->bit);
57 if (error) {
58 dev_warn(ts->dev, "Failed to enable touchscreen: %d\n", error);
59 return error;
62 return 0;
65 static void ts4800_ts_close(struct input_dev *input_dev)
67 struct ts4800_ts *ts = input_get_drvdata(input_dev);
68 int ret;
70 ret = regmap_update_bits(ts->regmap, ts->reg, ts->bit, 0);
71 if (ret)
72 dev_warn(ts->dev, "Failed to disable touchscreen\n");
76 static void ts4800_ts_poll(struct input_dev *input_dev)
78 struct ts4800_ts *ts = input_get_drvdata(input_dev);
79 u16 last_x = readw(ts->base + X_OFFSET);
80 u16 last_y = readw(ts->base + Y_OFFSET);
81 bool pendown = last_x & PENDOWN_MASK;
83 if (pendown) {
84 if (ts->debounce) {
85 ts->debounce--;
86 return;
89 if (!ts->pendown) {
90 input_report_key(input_dev, BTN_TOUCH, 1);
91 ts->pendown = true;
94 last_x = ((~last_x) >> 4) & MAX_12BIT;
95 last_y = ((~last_y) >> 4) & MAX_12BIT;
97 input_report_abs(input_dev, ABS_X, last_x);
98 input_report_abs(input_dev, ABS_Y, last_y);
99 input_sync(input_dev);
100 } else if (ts->pendown) {
101 ts->pendown = false;
102 ts->debounce = DEBOUNCE_COUNT;
103 input_report_key(input_dev, BTN_TOUCH, 0);
104 input_sync(input_dev);
108 static int ts4800_parse_dt(struct platform_device *pdev,
109 struct ts4800_ts *ts)
111 struct device *dev = &pdev->dev;
112 struct device_node *np = dev->of_node;
113 u32 reg, bit;
114 int error;
116 struct device_node *syscon_np __free(device_node) =
117 of_parse_phandle(np, "syscon", 0);
118 if (!syscon_np) {
119 dev_err(dev, "no syscon property\n");
120 return -ENODEV;
123 ts->regmap = syscon_node_to_regmap(syscon_np);
124 if (IS_ERR(ts->regmap)) {
125 dev_err(dev, "cannot get parent's regmap\n");
126 return PTR_ERR(ts->regmap);
129 error = of_property_read_u32_index(np, "syscon", 1, &reg);
130 if (error < 0) {
131 dev_err(dev, "no offset in syscon\n");
132 return error;
135 ts->reg = reg;
137 error = of_property_read_u32_index(np, "syscon", 2, &bit);
138 if (error < 0) {
139 dev_err(dev, "no bit in syscon\n");
140 return error;
143 ts->bit = BIT(bit);
145 return 0;
148 static int ts4800_ts_probe(struct platform_device *pdev)
150 struct input_dev *input_dev;
151 struct ts4800_ts *ts;
152 int error;
154 ts = devm_kzalloc(&pdev->dev, sizeof(*ts), GFP_KERNEL);
155 if (!ts)
156 return -ENOMEM;
158 error = ts4800_parse_dt(pdev, ts);
159 if (error)
160 return error;
162 ts->base = devm_platform_ioremap_resource(pdev, 0);
163 if (IS_ERR(ts->base))
164 return PTR_ERR(ts->base);
166 input_dev = devm_input_allocate_device(&pdev->dev);
167 if (!input_dev)
168 return -ENOMEM;
170 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&pdev->dev));
171 ts->input = input_dev;
172 ts->dev = &pdev->dev;
174 input_set_drvdata(input_dev, ts);
176 input_dev->name = "TS-4800 Touchscreen";
177 input_dev->phys = ts->phys;
179 input_dev->open = ts4800_ts_open;
180 input_dev->close = ts4800_ts_close;
182 input_set_capability(input_dev, EV_KEY, BTN_TOUCH);
183 input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
184 input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
186 error = input_setup_polling(input_dev, ts4800_ts_poll);
187 if (error) {
188 dev_err(&pdev->dev, "Unable to set up polling: %d\n", error);
189 return error;
192 input_set_poll_interval(input_dev, POLL_INTERVAL);
194 error = input_register_device(input_dev);
195 if (error) {
196 dev_err(&pdev->dev,
197 "Unable to register input device: %d\n", error);
198 return error;
201 return 0;
204 static const struct of_device_id ts4800_ts_of_match[] = {
205 { .compatible = "technologic,ts4800-ts", },
206 { },
208 MODULE_DEVICE_TABLE(of, ts4800_ts_of_match);
210 static struct platform_driver ts4800_ts_driver = {
211 .driver = {
212 .name = "ts4800-ts",
213 .of_match_table = ts4800_ts_of_match,
215 .probe = ts4800_ts_probe,
217 module_platform_driver(ts4800_ts_driver);
219 MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>");
220 MODULE_DESCRIPTION("TS-4800 Touchscreen Driver");
221 MODULE_LICENSE("GPL v2");
222 MODULE_ALIAS("platform:ts4800_ts");