blob: facd3057b62dcb4aa634c41a674197ad1c5871e2 [file] [log] [blame]
Michael Hennerichb4be4682009-03-09 20:12:52 -07001/*
Mike Frysinger4397c982010-06-30 01:40:52 -07002 * AD7879/AD7889 based touchscreen and GPIO driver
Michael Hennerichb4be4682009-03-09 20:12:52 -07003 *
Mike Frysinger4397c982010-06-30 01:40:52 -07004 * Copyright (C) 2008-2010 Michael Hennerich, Analog Devices Inc.
Michael Hennerichb4be4682009-03-09 20:12:52 -07005 *
Mike Frysinger4397c982010-06-30 01:40:52 -07006 * Licensed under the GPL-2 or later.
Michael Hennerichb4be4682009-03-09 20:12:52 -07007 *
8 * History:
9 * Copyright (c) 2005 David Brownell
10 * Copyright (c) 2006 Nokia Corporation
11 * Various changes: Imre Deak <imre.deak@nokia.com>
12 *
13 * Using code from:
14 * - corgi_ts.c
15 * Copyright (C) 2004-2005 Richard Purdie
16 * - omap_ts.[hc], ads7846.h, ts_osk.c
17 * Copyright (C) 2002 MontaVista Software
18 * Copyright (C) 2004 Texas Instruments
19 * Copyright (C) 2005 Dirk Behme
20 * - ad7877.c
21 * Copyright (C) 2006-2008 Analog Devices Inc.
22 */
23
24#include <linux/device.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/input.h>
28#include <linux/interrupt.h>
29#include <linux/irq.h>
30#include <linux/slab.h>
Michael Hennerichb4be4682009-03-09 20:12:52 -070031#include <linux/spi/spi.h>
32#include <linux/i2c.h>
Michael Hennerichec51b7f2010-01-19 00:27:58 -080033#include <linux/gpio.h>
Michael Hennerichb4be4682009-03-09 20:12:52 -070034
35#include <linux/spi/ad7879.h>
Paul Gortmakerd2d84422011-07-03 13:53:48 -040036#include <linux/module.h>
Mike Frysinger4397c982010-06-30 01:40:52 -070037#include "ad7879.h"
Michael Hennerichb4be4682009-03-09 20:12:52 -070038
39#define AD7879_REG_ZEROS 0
40#define AD7879_REG_CTRL1 1
41#define AD7879_REG_CTRL2 2
42#define AD7879_REG_CTRL3 3
43#define AD7879_REG_AUX1HIGH 4
44#define AD7879_REG_AUX1LOW 5
45#define AD7879_REG_TEMP1HIGH 6
46#define AD7879_REG_TEMP1LOW 7
47#define AD7879_REG_XPLUS 8
48#define AD7879_REG_YPLUS 9
49#define AD7879_REG_Z1 10
50#define AD7879_REG_Z2 11
51#define AD7879_REG_AUXVBAT 12
52#define AD7879_REG_TEMP 13
53#define AD7879_REG_REVID 14
54
55/* Control REG 1 */
56#define AD7879_TMR(x) ((x & 0xFF) << 0)
57#define AD7879_ACQ(x) ((x & 0x3) << 8)
58#define AD7879_MODE_NOC (0 << 10) /* Do not convert */
59#define AD7879_MODE_SCC (1 << 10) /* Single channel conversion */
60#define AD7879_MODE_SEQ0 (2 << 10) /* Sequence 0 in Slave Mode */
61#define AD7879_MODE_SEQ1 (3 << 10) /* Sequence 1 in Master Mode */
62#define AD7879_MODE_INT (1 << 15) /* PENIRQ disabled INT enabled */
63
64/* Control REG 2 */
65#define AD7879_FCD(x) ((x & 0x3) << 0)
66#define AD7879_RESET (1 << 4)
67#define AD7879_MFS(x) ((x & 0x3) << 5)
68#define AD7879_AVG(x) ((x & 0x3) << 7)
69#define AD7879_SER (1 << 9) /* non-differential */
70#define AD7879_DFR (0 << 9) /* differential */
71#define AD7879_GPIOPOL (1 << 10)
72#define AD7879_GPIODIR (1 << 11)
73#define AD7879_GPIO_DATA (1 << 12)
74#define AD7879_GPIO_EN (1 << 13)
75#define AD7879_PM(x) ((x & 0x3) << 14)
76#define AD7879_PM_SHUTDOWN (0)
77#define AD7879_PM_DYN (1)
78#define AD7879_PM_FULLON (2)
79
80/* Control REG 3 */
81#define AD7879_TEMPMASK_BIT (1<<15)
82#define AD7879_AUXVBATMASK_BIT (1<<14)
83#define AD7879_INTMODE_BIT (1<<13)
84#define AD7879_GPIOALERTMASK_BIT (1<<12)
85#define AD7879_AUXLOW_BIT (1<<11)
86#define AD7879_AUXHIGH_BIT (1<<10)
87#define AD7879_TEMPLOW_BIT (1<<9)
88#define AD7879_TEMPHIGH_BIT (1<<8)
89#define AD7879_YPLUS_BIT (1<<7)
90#define AD7879_XPLUS_BIT (1<<6)
91#define AD7879_Z1_BIT (1<<5)
92#define AD7879_Z2_BIT (1<<4)
93#define AD7879_AUX_BIT (1<<3)
94#define AD7879_VBAT_BIT (1<<2)
95#define AD7879_TEMP_BIT (1<<1)
96
97enum {
98 AD7879_SEQ_XPOS = 0,
99 AD7879_SEQ_YPOS = 1,
100 AD7879_SEQ_Z1 = 2,
101 AD7879_SEQ_Z2 = 3,
102 AD7879_NR_SENSE = 4,
103};
104
105#define MAX_12BIT ((1<<12)-1)
106#define TS_PEN_UP_TIMEOUT msecs_to_jiffies(50)
107
Michael Hennerichb4be4682009-03-09 20:12:52 -0700108struct ad7879 {
Mike Frysinger4397c982010-06-30 01:40:52 -0700109 const struct ad7879_bus_ops *bops;
110
111 struct device *dev;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700112 struct input_dev *input;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700113 struct timer_list timer;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800114#ifdef CONFIG_GPIOLIB
115 struct gpio_chip gc;
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700116 struct mutex mutex;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800117#endif
Mike Frysinger4397c982010-06-30 01:40:52 -0700118 unsigned int irq;
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700119 bool disabled; /* P: input->mutex */
120 bool suspended; /* P: input->mutex */
Michael Hennerich66808842012-07-06 10:44:19 -0700121 bool swap_xy;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700122 u16 conversion_data[AD7879_NR_SENSE];
123 char phys[32];
124 u8 first_conversion_delay;
125 u8 acquisition_time;
126 u8 averaging;
127 u8 pen_down_acc_interval;
128 u8 median;
129 u16 x_plate_ohms;
130 u16 pressure_max;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700131 u16 cmd_crtl1;
132 u16 cmd_crtl2;
133 u16 cmd_crtl3;
Michael Hennerichb584efc2010-10-28 14:59:05 -0700134 int x;
135 int y;
136 int Rt;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700137};
138
Mike Frysinger4397c982010-06-30 01:40:52 -0700139static int ad7879_read(struct ad7879 *ts, u8 reg)
140{
141 return ts->bops->read(ts->dev, reg);
142}
143
144static int ad7879_multi_read(struct ad7879 *ts, u8 first_reg, u8 count, u16 *buf)
145{
146 return ts->bops->multi_read(ts->dev, first_reg, count, buf);
147}
148
149static int ad7879_write(struct ad7879 *ts, u8 reg, u16 val)
150{
151 return ts->bops->write(ts->dev, reg, val);
152}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700153
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700154static int ad7879_report(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700155{
156 struct input_dev *input_dev = ts->input;
157 unsigned Rt;
158 u16 x, y, z1, z2;
159
160 x = ts->conversion_data[AD7879_SEQ_XPOS] & MAX_12BIT;
161 y = ts->conversion_data[AD7879_SEQ_YPOS] & MAX_12BIT;
162 z1 = ts->conversion_data[AD7879_SEQ_Z1] & MAX_12BIT;
163 z2 = ts->conversion_data[AD7879_SEQ_Z2] & MAX_12BIT;
164
Michael Hennerich66808842012-07-06 10:44:19 -0700165 if (ts->swap_xy)
166 swap(x, y);
167
Michael Hennerichb4be4682009-03-09 20:12:52 -0700168 /*
169 * The samples processed here are already preprocessed by the AD7879.
Mike Frysinger4397c982010-06-30 01:40:52 -0700170 * The preprocessing function consists of a median and an averaging
171 * filter. The combination of these two techniques provides a robust
172 * solution, discarding the spurious noise in the signal and keeping
173 * only the data of interest. The size of both filters is
174 * programmable. (dev.platform_data, see linux/spi/ad7879.h) Other
175 * user-programmable conversion controls include variable acquisition
176 * time, and first conversion delay. Up to 16 averages can be taken
177 * per conversion.
Michael Hennerichb4be4682009-03-09 20:12:52 -0700178 */
179
180 if (likely(x && z1)) {
181 /* compute touch pressure resistance using equation #1 */
182 Rt = (z2 - z1) * x * ts->x_plate_ohms;
183 Rt /= z1;
184 Rt = (Rt + 2047) >> 12;
185
Michael Hennerichb584efc2010-10-28 14:59:05 -0700186 /*
187 * Sample found inconsistent, pressure is beyond
188 * the maximum. Don't report it to user space.
189 */
190 if (Rt > ts->pressure_max)
191 return -EINVAL;
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700192
Michael Hennerichb584efc2010-10-28 14:59:05 -0700193 /*
194 * Note that we delay reporting events by one sample.
195 * This is done to avoid reporting last sample of the
196 * touch sequence, which may be incomplete if finger
197 * leaves the surface before last reading is taken.
198 */
199 if (timer_pending(&ts->timer)) {
200 /* Touch continues */
201 input_report_key(input_dev, BTN_TOUCH, 1);
202 input_report_abs(input_dev, ABS_X, ts->x);
203 input_report_abs(input_dev, ABS_Y, ts->y);
204 input_report_abs(input_dev, ABS_PRESSURE, ts->Rt);
205 input_sync(input_dev);
206 }
207
208 ts->x = x;
209 ts->y = y;
210 ts->Rt = Rt;
211
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700212 return 0;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700213 }
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700214
215 return -EINVAL;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700216}
217
Michael Hennerichb4be4682009-03-09 20:12:52 -0700218static void ad7879_ts_event_release(struct ad7879 *ts)
219{
220 struct input_dev *input_dev = ts->input;
221
222 input_report_abs(input_dev, ABS_PRESSURE, 0);
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700223 input_report_key(input_dev, BTN_TOUCH, 0);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700224 input_sync(input_dev);
225}
226
227static void ad7879_timer(unsigned long handle)
228{
229 struct ad7879 *ts = (void *)handle;
230
231 ad7879_ts_event_release(ts);
232}
233
234static irqreturn_t ad7879_irq(int irq, void *handle)
235{
236 struct ad7879 *ts = handle;
237
Mike Frysinger4397c982010-06-30 01:40:52 -0700238 ad7879_multi_read(ts, AD7879_REG_XPLUS, AD7879_NR_SENSE, ts->conversion_data);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700239
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700240 if (!ad7879_report(ts))
241 mod_timer(&ts->timer, jiffies + TS_PEN_UP_TIMEOUT);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700242
243 return IRQ_HANDLED;
244}
245
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700246static void __ad7879_enable(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700247{
Mike Frysinger4397c982010-06-30 01:40:52 -0700248 ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
249 ad7879_write(ts, AD7879_REG_CTRL3, ts->cmd_crtl3);
250 ad7879_write(ts, AD7879_REG_CTRL1, ts->cmd_crtl1);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700251
252 enable_irq(ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700253}
254
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700255static void __ad7879_disable(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700256{
Michael Hennerich4fecc202011-08-02 15:41:37 -0700257 u16 reg = (ts->cmd_crtl2 & ~AD7879_PM(-1)) |
258 AD7879_PM(AD7879_PM_SHUTDOWN);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700259 disable_irq(ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700260
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700261 if (del_timer_sync(&ts->timer))
262 ad7879_ts_event_release(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700263
Michael Hennerich4fecc202011-08-02 15:41:37 -0700264 ad7879_write(ts, AD7879_REG_CTRL2, reg);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700265}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700266
Michael Hennerichb4be4682009-03-09 20:12:52 -0700267
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700268static int ad7879_open(struct input_dev *input)
269{
270 struct ad7879 *ts = input_get_drvdata(input);
271
272 /* protected by input->mutex */
273 if (!ts->disabled && !ts->suspended)
274 __ad7879_enable(ts);
275
276 return 0;
277}
278
279static void ad7879_close(struct input_dev* input)
280{
281 struct ad7879 *ts = input_get_drvdata(input);
282
283 /* protected by input->mutex */
284 if (!ts->disabled && !ts->suspended)
285 __ad7879_disable(ts);
286}
287
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800288#ifdef CONFIG_PM_SLEEP
289static int ad7879_suspend(struct device *dev)
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700290{
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800291 struct ad7879 *ts = dev_get_drvdata(dev);
292
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700293 mutex_lock(&ts->input->mutex);
294
295 if (!ts->suspended && !ts->disabled && ts->input->users)
296 __ad7879_disable(ts);
297
298 ts->suspended = true;
299
300 mutex_unlock(&ts->input->mutex);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700301
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800302 return 0;
303}
304
305static int ad7879_resume(struct device *dev)
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700306{
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800307 struct ad7879 *ts = dev_get_drvdata(dev);
308
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700309 mutex_lock(&ts->input->mutex);
310
311 if (ts->suspended && !ts->disabled && ts->input->users)
312 __ad7879_enable(ts);
313
314 ts->suspended = false;
315
316 mutex_unlock(&ts->input->mutex);
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800317
318 return 0;
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700319}
Dmitry Torokhov8672bd92011-11-14 00:32:09 -0800320#endif
321
322SIMPLE_DEV_PM_OPS(ad7879_pm_ops, ad7879_suspend, ad7879_resume);
323EXPORT_SYMBOL(ad7879_pm_ops);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700324
325static void ad7879_toggle(struct ad7879 *ts, bool disable)
326{
327 mutex_lock(&ts->input->mutex);
328
329 if (!ts->suspended && ts->input->users != 0) {
330
331 if (disable) {
332 if (ts->disabled)
333 __ad7879_enable(ts);
334 } else {
335 if (!ts->disabled)
336 __ad7879_disable(ts);
337 }
Michael Hennerichb4be4682009-03-09 20:12:52 -0700338 }
339
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700340 ts->disabled = disable;
341
342 mutex_unlock(&ts->input->mutex);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700343}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700344
345static ssize_t ad7879_disable_show(struct device *dev,
346 struct device_attribute *attr, char *buf)
347{
348 struct ad7879 *ts = dev_get_drvdata(dev);
349
350 return sprintf(buf, "%u\n", ts->disabled);
351}
352
353static ssize_t ad7879_disable_store(struct device *dev,
354 struct device_attribute *attr,
355 const char *buf, size_t count)
356{
357 struct ad7879 *ts = dev_get_drvdata(dev);
JJ Ding76496e72011-11-09 10:20:14 -0800358 unsigned int val;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700359 int error;
360
JJ Ding76496e72011-11-09 10:20:14 -0800361 error = kstrtouint(buf, 10, &val);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700362 if (error)
363 return error;
364
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700365 ad7879_toggle(ts, val);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700366
367 return count;
368}
369
370static DEVICE_ATTR(disable, 0664, ad7879_disable_show, ad7879_disable_store);
371
Michael Hennerichb4be4682009-03-09 20:12:52 -0700372static struct attribute *ad7879_attributes[] = {
373 &dev_attr_disable.attr,
Michael Hennerichb4be4682009-03-09 20:12:52 -0700374 NULL
375};
376
377static const struct attribute_group ad7879_attr_group = {
378 .attrs = ad7879_attributes,
379};
380
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800381#ifdef CONFIG_GPIOLIB
382static int ad7879_gpio_direction_input(struct gpio_chip *chip,
383 unsigned gpio)
384{
385 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
386 int err;
387
388 mutex_lock(&ts->mutex);
389 ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIODIR | AD7879_GPIOPOL;
Mike Frysinger4397c982010-06-30 01:40:52 -0700390 err = ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800391 mutex_unlock(&ts->mutex);
392
393 return err;
394}
395
396static int ad7879_gpio_direction_output(struct gpio_chip *chip,
397 unsigned gpio, int level)
398{
399 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
400 int err;
401
402 mutex_lock(&ts->mutex);
403 ts->cmd_crtl2 &= ~AD7879_GPIODIR;
404 ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIOPOL;
405 if (level)
406 ts->cmd_crtl2 |= AD7879_GPIO_DATA;
407 else
408 ts->cmd_crtl2 &= ~AD7879_GPIO_DATA;
409
Mike Frysinger4397c982010-06-30 01:40:52 -0700410 err = ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800411 mutex_unlock(&ts->mutex);
412
413 return err;
414}
415
416static int ad7879_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
417{
418 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
419 u16 val;
420
421 mutex_lock(&ts->mutex);
Mike Frysinger4397c982010-06-30 01:40:52 -0700422 val = ad7879_read(ts, AD7879_REG_CTRL2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800423 mutex_unlock(&ts->mutex);
424
425 return !!(val & AD7879_GPIO_DATA);
426}
427
428static void ad7879_gpio_set_value(struct gpio_chip *chip,
429 unsigned gpio, int value)
430{
431 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
432
433 mutex_lock(&ts->mutex);
434 if (value)
435 ts->cmd_crtl2 |= AD7879_GPIO_DATA;
436 else
437 ts->cmd_crtl2 &= ~AD7879_GPIO_DATA;
438
Mike Frysinger4397c982010-06-30 01:40:52 -0700439 ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800440 mutex_unlock(&ts->mutex);
441}
442
Mike Frysinger4397c982010-06-30 01:40:52 -0700443static int ad7879_gpio_add(struct ad7879 *ts,
444 const struct ad7879_platform_data *pdata)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800445{
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800446 int ret = 0;
447
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700448 mutex_init(&ts->mutex);
449
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800450 if (pdata->gpio_export) {
451 ts->gc.direction_input = ad7879_gpio_direction_input;
452 ts->gc.direction_output = ad7879_gpio_direction_output;
453 ts->gc.get = ad7879_gpio_get_value;
454 ts->gc.set = ad7879_gpio_set_value;
455 ts->gc.can_sleep = 1;
456 ts->gc.base = pdata->gpio_base;
457 ts->gc.ngpio = 1;
458 ts->gc.label = "AD7879-GPIO";
459 ts->gc.owner = THIS_MODULE;
Mike Frysinger4397c982010-06-30 01:40:52 -0700460 ts->gc.dev = ts->dev;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800461
462 ret = gpiochip_add(&ts->gc);
463 if (ret)
Mike Frysinger4397c982010-06-30 01:40:52 -0700464 dev_err(ts->dev, "failed to register gpio %d\n",
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800465 ts->gc.base);
466 }
467
468 return ret;
469}
470
Mike Frysinger4397c982010-06-30 01:40:52 -0700471static void ad7879_gpio_remove(struct ad7879 *ts)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800472{
Mike Frysinger4397c982010-06-30 01:40:52 -0700473 const struct ad7879_platform_data *pdata = ts->dev->platform_data;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800474 int ret;
475
476 if (pdata->gpio_export) {
477 ret = gpiochip_remove(&ts->gc);
478 if (ret)
Mike Frysinger4397c982010-06-30 01:40:52 -0700479 dev_err(ts->dev, "failed to remove gpio %d\n",
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800480 ts->gc.base);
481 }
482}
483#else
Mike Frysinger4397c982010-06-30 01:40:52 -0700484static inline int ad7879_gpio_add(struct ad7879 *ts,
485 const struct ad7879_platform_data *pdata)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800486{
487 return 0;
488}
489
Mike Frysinger4397c982010-06-30 01:40:52 -0700490static inline void ad7879_gpio_remove(struct ad7879 *ts)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800491{
492}
493#endif
494
Mike Frysinger4397c982010-06-30 01:40:52 -0700495struct ad7879 *ad7879_probe(struct device *dev, u8 devid, unsigned int irq,
496 const struct ad7879_bus_ops *bops)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700497{
Mike Frysinger4397c982010-06-30 01:40:52 -0700498 struct ad7879_platform_data *pdata = dev->platform_data;
499 struct ad7879 *ts;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700500 struct input_dev *input_dev;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700501 int err;
502 u16 revid;
503
Mike Frysinger4397c982010-06-30 01:40:52 -0700504 if (!irq) {
505 dev_err(dev, "no IRQ?\n");
506 err = -EINVAL;
507 goto err_out;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700508 }
509
510 if (!pdata) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700511 dev_err(dev, "no platform data?\n");
512 err = -EINVAL;
513 goto err_out;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700514 }
515
Mike Frysinger4397c982010-06-30 01:40:52 -0700516 ts = kzalloc(sizeof(*ts), GFP_KERNEL);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700517 input_dev = input_allocate_device();
Mike Frysinger4397c982010-06-30 01:40:52 -0700518 if (!ts || !input_dev) {
519 err = -ENOMEM;
520 goto err_free_mem;
521 }
Michael Hennerichb4be4682009-03-09 20:12:52 -0700522
Mike Frysinger4397c982010-06-30 01:40:52 -0700523 ts->bops = bops;
524 ts->dev = dev;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700525 ts->input = input_dev;
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700526 ts->irq = irq;
Michael Hennerich66808842012-07-06 10:44:19 -0700527 ts->swap_xy = pdata->swap_xy;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700528
529 setup_timer(&ts->timer, ad7879_timer, (unsigned long) ts);
Mike Frysinger4397c982010-06-30 01:40:52 -0700530
Michael Hennerichb4be4682009-03-09 20:12:52 -0700531 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
532 ts->pressure_max = pdata->pressure_max ? : ~0;
533
534 ts->first_conversion_delay = pdata->first_conversion_delay;
535 ts->acquisition_time = pdata->acquisition_time;
536 ts->averaging = pdata->averaging;
537 ts->pen_down_acc_interval = pdata->pen_down_acc_interval;
538 ts->median = pdata->median;
539
Mike Frysinger4397c982010-06-30 01:40:52 -0700540 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(dev));
Michael Hennerichb4be4682009-03-09 20:12:52 -0700541
542 input_dev->name = "AD7879 Touchscreen";
543 input_dev->phys = ts->phys;
Mike Frysinger4397c982010-06-30 01:40:52 -0700544 input_dev->dev.parent = dev;
545 input_dev->id.bustype = bops->bustype;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700546
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700547 input_dev->open = ad7879_open;
548 input_dev->close = ad7879_close;
549
550 input_set_drvdata(input_dev, ts);
551
Michael Hennerichb4be4682009-03-09 20:12:52 -0700552 __set_bit(EV_ABS, input_dev->evbit);
553 __set_bit(ABS_X, input_dev->absbit);
554 __set_bit(ABS_Y, input_dev->absbit);
555 __set_bit(ABS_PRESSURE, input_dev->absbit);
556
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700557 __set_bit(EV_KEY, input_dev->evbit);
558 __set_bit(BTN_TOUCH, input_dev->keybit);
559
Michael Hennerichb4be4682009-03-09 20:12:52 -0700560 input_set_abs_params(input_dev, ABS_X,
561 pdata->x_min ? : 0,
562 pdata->x_max ? : MAX_12BIT,
563 0, 0);
564 input_set_abs_params(input_dev, ABS_Y,
565 pdata->y_min ? : 0,
566 pdata->y_max ? : MAX_12BIT,
567 0, 0);
568 input_set_abs_params(input_dev, ABS_PRESSURE,
569 pdata->pressure_min, pdata->pressure_max, 0, 0);
570
Mike Frysinger4397c982010-06-30 01:40:52 -0700571 err = ad7879_write(ts, AD7879_REG_CTRL2, AD7879_RESET);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700572 if (err < 0) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700573 dev_err(dev, "Failed to write %s\n", input_dev->name);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700574 goto err_free_mem;
575 }
576
Mike Frysinger4397c982010-06-30 01:40:52 -0700577 revid = ad7879_read(ts, AD7879_REG_REVID);
578 input_dev->id.product = (revid & 0xff);
579 input_dev->id.version = revid >> 8;
580 if (input_dev->id.product != devid) {
581 dev_err(dev, "Failed to probe %s (%x vs %x)\n",
582 input_dev->name, devid, revid);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700583 err = -ENODEV;
584 goto err_free_mem;
585 }
586
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800587 ts->cmd_crtl3 = AD7879_YPLUS_BIT |
588 AD7879_XPLUS_BIT |
589 AD7879_Z2_BIT |
590 AD7879_Z1_BIT |
591 AD7879_TEMPMASK_BIT |
592 AD7879_AUXVBATMASK_BIT |
593 AD7879_GPIOALERTMASK_BIT;
594
595 ts->cmd_crtl2 = AD7879_PM(AD7879_PM_DYN) | AD7879_DFR |
596 AD7879_AVG(ts->averaging) |
597 AD7879_MFS(ts->median) |
598 AD7879_FCD(ts->first_conversion_delay);
599
600 ts->cmd_crtl1 = AD7879_MODE_INT | AD7879_MODE_SEQ1 |
601 AD7879_ACQ(ts->acquisition_time) |
602 AD7879_TMR(ts->pen_down_acc_interval);
603
Mike Frysinger4397c982010-06-30 01:40:52 -0700604 err = request_threaded_irq(ts->irq, NULL, ad7879_irq,
Lars-Peter Clausen9b7e31b2012-07-04 13:02:56 -0700605 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
Mike Frysinger4397c982010-06-30 01:40:52 -0700606 dev_name(dev), ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700607 if (err) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700608 dev_err(dev, "irq %d busy?\n", ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700609 goto err_free_mem;
610 }
611
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700612 __ad7879_disable(ts);
613
Mike Frysinger4397c982010-06-30 01:40:52 -0700614 err = sysfs_create_group(&dev->kobj, &ad7879_attr_group);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700615 if (err)
616 goto err_free_irq;
617
Mike Frysinger4397c982010-06-30 01:40:52 -0700618 err = ad7879_gpio_add(ts, pdata);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700619 if (err)
620 goto err_remove_attr;
621
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800622 err = input_register_device(input_dev);
623 if (err)
624 goto err_remove_gpio;
625
Mike Frysinger4397c982010-06-30 01:40:52 -0700626 return ts;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700627
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800628err_remove_gpio:
Mike Frysinger4397c982010-06-30 01:40:52 -0700629 ad7879_gpio_remove(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700630err_remove_attr:
Mike Frysinger4397c982010-06-30 01:40:52 -0700631 sysfs_remove_group(&dev->kobj, &ad7879_attr_group);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700632err_free_irq:
Mike Frysinger4397c982010-06-30 01:40:52 -0700633 free_irq(ts->irq, ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700634err_free_mem:
635 input_free_device(input_dev);
Mike Frysinger4397c982010-06-30 01:40:52 -0700636 kfree(ts);
637err_out:
638 return ERR_PTR(err);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700639}
Mike Frysinger4397c982010-06-30 01:40:52 -0700640EXPORT_SYMBOL(ad7879_probe);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700641
Mike Frysinger4397c982010-06-30 01:40:52 -0700642void ad7879_remove(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700643{
Mike Frysinger4397c982010-06-30 01:40:52 -0700644 ad7879_gpio_remove(ts);
Mike Frysinger4397c982010-06-30 01:40:52 -0700645 sysfs_remove_group(&ts->dev->kobj, &ad7879_attr_group);
646 free_irq(ts->irq, ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700647 input_unregister_device(ts->input);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700648 kfree(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700649}
Mike Frysinger4397c982010-06-30 01:40:52 -0700650EXPORT_SYMBOL(ad7879_remove);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700651
652MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
653MODULE_DESCRIPTION("AD7879(-1) touchscreen Driver");
654MODULE_LICENSE("GPL");