blob: 3b2e9ed2aeec3482c7ec178b238410fc93424ff2 [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 Hennerichb4be4682009-03-09 20:12:52 -0700121 u16 conversion_data[AD7879_NR_SENSE];
122 char phys[32];
123 u8 first_conversion_delay;
124 u8 acquisition_time;
125 u8 averaging;
126 u8 pen_down_acc_interval;
127 u8 median;
128 u16 x_plate_ohms;
129 u16 pressure_max;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700130 u16 cmd_crtl1;
131 u16 cmd_crtl2;
132 u16 cmd_crtl3;
Michael Hennerichb584efc2010-10-28 14:59:05 -0700133 int x;
134 int y;
135 int Rt;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700136};
137
Mike Frysinger4397c982010-06-30 01:40:52 -0700138static int ad7879_read(struct ad7879 *ts, u8 reg)
139{
140 return ts->bops->read(ts->dev, reg);
141}
142
143static int ad7879_multi_read(struct ad7879 *ts, u8 first_reg, u8 count, u16 *buf)
144{
145 return ts->bops->multi_read(ts->dev, first_reg, count, buf);
146}
147
148static int ad7879_write(struct ad7879 *ts, u8 reg, u16 val)
149{
150 return ts->bops->write(ts->dev, reg, val);
151}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700152
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700153static int ad7879_report(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700154{
155 struct input_dev *input_dev = ts->input;
156 unsigned Rt;
157 u16 x, y, z1, z2;
158
159 x = ts->conversion_data[AD7879_SEQ_XPOS] & MAX_12BIT;
160 y = ts->conversion_data[AD7879_SEQ_YPOS] & MAX_12BIT;
161 z1 = ts->conversion_data[AD7879_SEQ_Z1] & MAX_12BIT;
162 z2 = ts->conversion_data[AD7879_SEQ_Z2] & MAX_12BIT;
163
164 /*
165 * The samples processed here are already preprocessed by the AD7879.
Mike Frysinger4397c982010-06-30 01:40:52 -0700166 * The preprocessing function consists of a median and an averaging
167 * filter. The combination of these two techniques provides a robust
168 * solution, discarding the spurious noise in the signal and keeping
169 * only the data of interest. The size of both filters is
170 * programmable. (dev.platform_data, see linux/spi/ad7879.h) Other
171 * user-programmable conversion controls include variable acquisition
172 * time, and first conversion delay. Up to 16 averages can be taken
173 * per conversion.
Michael Hennerichb4be4682009-03-09 20:12:52 -0700174 */
175
176 if (likely(x && z1)) {
177 /* compute touch pressure resistance using equation #1 */
178 Rt = (z2 - z1) * x * ts->x_plate_ohms;
179 Rt /= z1;
180 Rt = (Rt + 2047) >> 12;
181
Michael Hennerichb584efc2010-10-28 14:59:05 -0700182 /*
183 * Sample found inconsistent, pressure is beyond
184 * the maximum. Don't report it to user space.
185 */
186 if (Rt > ts->pressure_max)
187 return -EINVAL;
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700188
Michael Hennerichb584efc2010-10-28 14:59:05 -0700189 /*
190 * Note that we delay reporting events by one sample.
191 * This is done to avoid reporting last sample of the
192 * touch sequence, which may be incomplete if finger
193 * leaves the surface before last reading is taken.
194 */
195 if (timer_pending(&ts->timer)) {
196 /* Touch continues */
197 input_report_key(input_dev, BTN_TOUCH, 1);
198 input_report_abs(input_dev, ABS_X, ts->x);
199 input_report_abs(input_dev, ABS_Y, ts->y);
200 input_report_abs(input_dev, ABS_PRESSURE, ts->Rt);
201 input_sync(input_dev);
202 }
203
204 ts->x = x;
205 ts->y = y;
206 ts->Rt = Rt;
207
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700208 return 0;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700209 }
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700210
211 return -EINVAL;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700212}
213
Michael Hennerichb4be4682009-03-09 20:12:52 -0700214static void ad7879_ts_event_release(struct ad7879 *ts)
215{
216 struct input_dev *input_dev = ts->input;
217
218 input_report_abs(input_dev, ABS_PRESSURE, 0);
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700219 input_report_key(input_dev, BTN_TOUCH, 0);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700220 input_sync(input_dev);
221}
222
223static void ad7879_timer(unsigned long handle)
224{
225 struct ad7879 *ts = (void *)handle;
226
227 ad7879_ts_event_release(ts);
228}
229
230static irqreturn_t ad7879_irq(int irq, void *handle)
231{
232 struct ad7879 *ts = handle;
233
Mike Frysinger4397c982010-06-30 01:40:52 -0700234 ad7879_multi_read(ts, AD7879_REG_XPLUS, AD7879_NR_SENSE, ts->conversion_data);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700235
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700236 if (!ad7879_report(ts))
237 mod_timer(&ts->timer, jiffies + TS_PEN_UP_TIMEOUT);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700238
239 return IRQ_HANDLED;
240}
241
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700242static void __ad7879_enable(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700243{
Mike Frysinger4397c982010-06-30 01:40:52 -0700244 ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
245 ad7879_write(ts, AD7879_REG_CTRL3, ts->cmd_crtl3);
246 ad7879_write(ts, AD7879_REG_CTRL1, ts->cmd_crtl1);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700247
248 enable_irq(ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700249}
250
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700251static void __ad7879_disable(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700252{
Michael Hennerich4fecc202011-08-02 15:41:37 -0700253 u16 reg = (ts->cmd_crtl2 & ~AD7879_PM(-1)) |
254 AD7879_PM(AD7879_PM_SHUTDOWN);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700255 disable_irq(ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700256
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700257 if (del_timer_sync(&ts->timer))
258 ad7879_ts_event_release(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700259
Michael Hennerich4fecc202011-08-02 15:41:37 -0700260 ad7879_write(ts, AD7879_REG_CTRL2, reg);
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700261}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700262
Michael Hennerichb4be4682009-03-09 20:12:52 -0700263
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700264static int ad7879_open(struct input_dev *input)
265{
266 struct ad7879 *ts = input_get_drvdata(input);
267
268 /* protected by input->mutex */
269 if (!ts->disabled && !ts->suspended)
270 __ad7879_enable(ts);
271
272 return 0;
273}
274
275static void ad7879_close(struct input_dev* input)
276{
277 struct ad7879 *ts = input_get_drvdata(input);
278
279 /* protected by input->mutex */
280 if (!ts->disabled && !ts->suspended)
281 __ad7879_disable(ts);
282}
283
284void ad7879_suspend(struct ad7879 *ts)
285{
286 mutex_lock(&ts->input->mutex);
287
288 if (!ts->suspended && !ts->disabled && ts->input->users)
289 __ad7879_disable(ts);
290
291 ts->suspended = true;
292
293 mutex_unlock(&ts->input->mutex);
294}
295EXPORT_SYMBOL(ad7879_suspend);
296
297void ad7879_resume(struct ad7879 *ts)
298{
299 mutex_lock(&ts->input->mutex);
300
301 if (ts->suspended && !ts->disabled && ts->input->users)
302 __ad7879_enable(ts);
303
304 ts->suspended = false;
305
306 mutex_unlock(&ts->input->mutex);
307}
308EXPORT_SYMBOL(ad7879_resume);
309
310static void ad7879_toggle(struct ad7879 *ts, bool disable)
311{
312 mutex_lock(&ts->input->mutex);
313
314 if (!ts->suspended && ts->input->users != 0) {
315
316 if (disable) {
317 if (ts->disabled)
318 __ad7879_enable(ts);
319 } else {
320 if (!ts->disabled)
321 __ad7879_disable(ts);
322 }
Michael Hennerichb4be4682009-03-09 20:12:52 -0700323 }
324
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700325 ts->disabled = disable;
326
327 mutex_unlock(&ts->input->mutex);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700328}
Michael Hennerichb4be4682009-03-09 20:12:52 -0700329
330static ssize_t ad7879_disable_show(struct device *dev,
331 struct device_attribute *attr, char *buf)
332{
333 struct ad7879 *ts = dev_get_drvdata(dev);
334
335 return sprintf(buf, "%u\n", ts->disabled);
336}
337
338static ssize_t ad7879_disable_store(struct device *dev,
339 struct device_attribute *attr,
340 const char *buf, size_t count)
341{
342 struct ad7879 *ts = dev_get_drvdata(dev);
343 unsigned long val;
344 int error;
345
346 error = strict_strtoul(buf, 10, &val);
347 if (error)
348 return error;
349
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700350 ad7879_toggle(ts, val);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700351
352 return count;
353}
354
355static DEVICE_ATTR(disable, 0664, ad7879_disable_show, ad7879_disable_store);
356
Michael Hennerichb4be4682009-03-09 20:12:52 -0700357static struct attribute *ad7879_attributes[] = {
358 &dev_attr_disable.attr,
Michael Hennerichb4be4682009-03-09 20:12:52 -0700359 NULL
360};
361
362static const struct attribute_group ad7879_attr_group = {
363 .attrs = ad7879_attributes,
364};
365
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800366#ifdef CONFIG_GPIOLIB
367static int ad7879_gpio_direction_input(struct gpio_chip *chip,
368 unsigned gpio)
369{
370 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
371 int err;
372
373 mutex_lock(&ts->mutex);
374 ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIODIR | AD7879_GPIOPOL;
Mike Frysinger4397c982010-06-30 01:40:52 -0700375 err = ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800376 mutex_unlock(&ts->mutex);
377
378 return err;
379}
380
381static int ad7879_gpio_direction_output(struct gpio_chip *chip,
382 unsigned gpio, int level)
383{
384 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
385 int err;
386
387 mutex_lock(&ts->mutex);
388 ts->cmd_crtl2 &= ~AD7879_GPIODIR;
389 ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIOPOL;
390 if (level)
391 ts->cmd_crtl2 |= AD7879_GPIO_DATA;
392 else
393 ts->cmd_crtl2 &= ~AD7879_GPIO_DATA;
394
Mike Frysinger4397c982010-06-30 01:40:52 -0700395 err = ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800396 mutex_unlock(&ts->mutex);
397
398 return err;
399}
400
401static int ad7879_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
402{
403 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
404 u16 val;
405
406 mutex_lock(&ts->mutex);
Mike Frysinger4397c982010-06-30 01:40:52 -0700407 val = ad7879_read(ts, AD7879_REG_CTRL2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800408 mutex_unlock(&ts->mutex);
409
410 return !!(val & AD7879_GPIO_DATA);
411}
412
413static void ad7879_gpio_set_value(struct gpio_chip *chip,
414 unsigned gpio, int value)
415{
416 struct ad7879 *ts = container_of(chip, struct ad7879, gc);
417
418 mutex_lock(&ts->mutex);
419 if (value)
420 ts->cmd_crtl2 |= AD7879_GPIO_DATA;
421 else
422 ts->cmd_crtl2 &= ~AD7879_GPIO_DATA;
423
Mike Frysinger4397c982010-06-30 01:40:52 -0700424 ad7879_write(ts, AD7879_REG_CTRL2, ts->cmd_crtl2);
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800425 mutex_unlock(&ts->mutex);
426}
427
Mike Frysinger4397c982010-06-30 01:40:52 -0700428static int ad7879_gpio_add(struct ad7879 *ts,
429 const struct ad7879_platform_data *pdata)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800430{
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800431 int ret = 0;
432
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700433 mutex_init(&ts->mutex);
434
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800435 if (pdata->gpio_export) {
436 ts->gc.direction_input = ad7879_gpio_direction_input;
437 ts->gc.direction_output = ad7879_gpio_direction_output;
438 ts->gc.get = ad7879_gpio_get_value;
439 ts->gc.set = ad7879_gpio_set_value;
440 ts->gc.can_sleep = 1;
441 ts->gc.base = pdata->gpio_base;
442 ts->gc.ngpio = 1;
443 ts->gc.label = "AD7879-GPIO";
444 ts->gc.owner = THIS_MODULE;
Mike Frysinger4397c982010-06-30 01:40:52 -0700445 ts->gc.dev = ts->dev;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800446
447 ret = gpiochip_add(&ts->gc);
448 if (ret)
Mike Frysinger4397c982010-06-30 01:40:52 -0700449 dev_err(ts->dev, "failed to register gpio %d\n",
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800450 ts->gc.base);
451 }
452
453 return ret;
454}
455
Mike Frysinger4397c982010-06-30 01:40:52 -0700456static void ad7879_gpio_remove(struct ad7879 *ts)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800457{
Mike Frysinger4397c982010-06-30 01:40:52 -0700458 const struct ad7879_platform_data *pdata = ts->dev->platform_data;
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800459 int ret;
460
461 if (pdata->gpio_export) {
462 ret = gpiochip_remove(&ts->gc);
463 if (ret)
Mike Frysinger4397c982010-06-30 01:40:52 -0700464 dev_err(ts->dev, "failed to remove gpio %d\n",
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800465 ts->gc.base);
466 }
467}
468#else
Mike Frysinger4397c982010-06-30 01:40:52 -0700469static inline int ad7879_gpio_add(struct ad7879 *ts,
470 const struct ad7879_platform_data *pdata)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800471{
472 return 0;
473}
474
Mike Frysinger4397c982010-06-30 01:40:52 -0700475static inline void ad7879_gpio_remove(struct ad7879 *ts)
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800476{
477}
478#endif
479
Mike Frysinger4397c982010-06-30 01:40:52 -0700480struct ad7879 *ad7879_probe(struct device *dev, u8 devid, unsigned int irq,
481 const struct ad7879_bus_ops *bops)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700482{
Mike Frysinger4397c982010-06-30 01:40:52 -0700483 struct ad7879_platform_data *pdata = dev->platform_data;
484 struct ad7879 *ts;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700485 struct input_dev *input_dev;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700486 int err;
487 u16 revid;
488
Mike Frysinger4397c982010-06-30 01:40:52 -0700489 if (!irq) {
490 dev_err(dev, "no IRQ?\n");
491 err = -EINVAL;
492 goto err_out;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700493 }
494
495 if (!pdata) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700496 dev_err(dev, "no platform data?\n");
497 err = -EINVAL;
498 goto err_out;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700499 }
500
Mike Frysinger4397c982010-06-30 01:40:52 -0700501 ts = kzalloc(sizeof(*ts), GFP_KERNEL);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700502 input_dev = input_allocate_device();
Mike Frysinger4397c982010-06-30 01:40:52 -0700503 if (!ts || !input_dev) {
504 err = -ENOMEM;
505 goto err_free_mem;
506 }
Michael Hennerichb4be4682009-03-09 20:12:52 -0700507
Mike Frysinger4397c982010-06-30 01:40:52 -0700508 ts->bops = bops;
509 ts->dev = dev;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700510 ts->input = input_dev;
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700511 ts->irq = irq;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700512
513 setup_timer(&ts->timer, ad7879_timer, (unsigned long) ts);
Mike Frysinger4397c982010-06-30 01:40:52 -0700514
Michael Hennerichb4be4682009-03-09 20:12:52 -0700515 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
516 ts->pressure_max = pdata->pressure_max ? : ~0;
517
518 ts->first_conversion_delay = pdata->first_conversion_delay;
519 ts->acquisition_time = pdata->acquisition_time;
520 ts->averaging = pdata->averaging;
521 ts->pen_down_acc_interval = pdata->pen_down_acc_interval;
522 ts->median = pdata->median;
523
Mike Frysinger4397c982010-06-30 01:40:52 -0700524 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(dev));
Michael Hennerichb4be4682009-03-09 20:12:52 -0700525
526 input_dev->name = "AD7879 Touchscreen";
527 input_dev->phys = ts->phys;
Mike Frysinger4397c982010-06-30 01:40:52 -0700528 input_dev->dev.parent = dev;
529 input_dev->id.bustype = bops->bustype;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700530
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700531 input_dev->open = ad7879_open;
532 input_dev->close = ad7879_close;
533
534 input_set_drvdata(input_dev, ts);
535
Michael Hennerichb4be4682009-03-09 20:12:52 -0700536 __set_bit(EV_ABS, input_dev->evbit);
537 __set_bit(ABS_X, input_dev->absbit);
538 __set_bit(ABS_Y, input_dev->absbit);
539 __set_bit(ABS_PRESSURE, input_dev->absbit);
540
Michael Hennerich963ce8a2010-06-30 14:51:10 -0700541 __set_bit(EV_KEY, input_dev->evbit);
542 __set_bit(BTN_TOUCH, input_dev->keybit);
543
Michael Hennerichb4be4682009-03-09 20:12:52 -0700544 input_set_abs_params(input_dev, ABS_X,
545 pdata->x_min ? : 0,
546 pdata->x_max ? : MAX_12BIT,
547 0, 0);
548 input_set_abs_params(input_dev, ABS_Y,
549 pdata->y_min ? : 0,
550 pdata->y_max ? : MAX_12BIT,
551 0, 0);
552 input_set_abs_params(input_dev, ABS_PRESSURE,
553 pdata->pressure_min, pdata->pressure_max, 0, 0);
554
Mike Frysinger4397c982010-06-30 01:40:52 -0700555 err = ad7879_write(ts, AD7879_REG_CTRL2, AD7879_RESET);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700556 if (err < 0) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700557 dev_err(dev, "Failed to write %s\n", input_dev->name);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700558 goto err_free_mem;
559 }
560
Mike Frysinger4397c982010-06-30 01:40:52 -0700561 revid = ad7879_read(ts, AD7879_REG_REVID);
562 input_dev->id.product = (revid & 0xff);
563 input_dev->id.version = revid >> 8;
564 if (input_dev->id.product != devid) {
565 dev_err(dev, "Failed to probe %s (%x vs %x)\n",
566 input_dev->name, devid, revid);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700567 err = -ENODEV;
568 goto err_free_mem;
569 }
570
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800571 ts->cmd_crtl3 = AD7879_YPLUS_BIT |
572 AD7879_XPLUS_BIT |
573 AD7879_Z2_BIT |
574 AD7879_Z1_BIT |
575 AD7879_TEMPMASK_BIT |
576 AD7879_AUXVBATMASK_BIT |
577 AD7879_GPIOALERTMASK_BIT;
578
579 ts->cmd_crtl2 = AD7879_PM(AD7879_PM_DYN) | AD7879_DFR |
580 AD7879_AVG(ts->averaging) |
581 AD7879_MFS(ts->median) |
582 AD7879_FCD(ts->first_conversion_delay);
583
584 ts->cmd_crtl1 = AD7879_MODE_INT | AD7879_MODE_SEQ1 |
585 AD7879_ACQ(ts->acquisition_time) |
586 AD7879_TMR(ts->pen_down_acc_interval);
587
Mike Frysinger4397c982010-06-30 01:40:52 -0700588 err = request_threaded_irq(ts->irq, NULL, ad7879_irq,
Dmitry Torokhov7cd7a822010-06-30 01:40:52 -0700589 IRQF_TRIGGER_FALLING,
Mike Frysinger4397c982010-06-30 01:40:52 -0700590 dev_name(dev), ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700591 if (err) {
Mike Frysinger4397c982010-06-30 01:40:52 -0700592 dev_err(dev, "irq %d busy?\n", ts->irq);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700593 goto err_free_mem;
594 }
595
Dmitry Torokhov14fbbc32010-06-30 14:50:51 -0700596 __ad7879_disable(ts);
597
Mike Frysinger4397c982010-06-30 01:40:52 -0700598 err = sysfs_create_group(&dev->kobj, &ad7879_attr_group);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700599 if (err)
600 goto err_free_irq;
601
Mike Frysinger4397c982010-06-30 01:40:52 -0700602 err = ad7879_gpio_add(ts, pdata);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700603 if (err)
604 goto err_remove_attr;
605
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800606 err = input_register_device(input_dev);
607 if (err)
608 goto err_remove_gpio;
609
Mike Frysinger4397c982010-06-30 01:40:52 -0700610 return ts;
Michael Hennerichb4be4682009-03-09 20:12:52 -0700611
Michael Hennerichec51b7f2010-01-19 00:27:58 -0800612err_remove_gpio:
Mike Frysinger4397c982010-06-30 01:40:52 -0700613 ad7879_gpio_remove(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700614err_remove_attr:
Mike Frysinger4397c982010-06-30 01:40:52 -0700615 sysfs_remove_group(&dev->kobj, &ad7879_attr_group);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700616err_free_irq:
Mike Frysinger4397c982010-06-30 01:40:52 -0700617 free_irq(ts->irq, ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700618err_free_mem:
619 input_free_device(input_dev);
Mike Frysinger4397c982010-06-30 01:40:52 -0700620 kfree(ts);
621err_out:
622 return ERR_PTR(err);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700623}
Mike Frysinger4397c982010-06-30 01:40:52 -0700624EXPORT_SYMBOL(ad7879_probe);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700625
Mike Frysinger4397c982010-06-30 01:40:52 -0700626void ad7879_remove(struct ad7879 *ts)
Michael Hennerichb4be4682009-03-09 20:12:52 -0700627{
Mike Frysinger4397c982010-06-30 01:40:52 -0700628 ad7879_gpio_remove(ts);
Mike Frysinger4397c982010-06-30 01:40:52 -0700629 sysfs_remove_group(&ts->dev->kobj, &ad7879_attr_group);
630 free_irq(ts->irq, ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700631 input_unregister_device(ts->input);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700632 kfree(ts);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700633}
Mike Frysinger4397c982010-06-30 01:40:52 -0700634EXPORT_SYMBOL(ad7879_remove);
Michael Hennerichb4be4682009-03-09 20:12:52 -0700635
636MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
637MODULE_DESCRIPTION("AD7879(-1) touchscreen Driver");
638MODULE_LICENSE("GPL");