tsc2005.c 18.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * TSC2005 touchscreen driver
 *
 * Copyright (C) 2006-2010 Nokia Corporation
 *
 * Author: Lauri Leukkunen <lauri.leukkunen@nokia.com>
 * based on TSC2301 driver by Klaus K. Pedersen <klaus.k.pedersen@nokia.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/input.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
30
#include <linux/pm.h>
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
#include <linux/spi/spi.h>
#include <linux/spi/tsc2005.h>

/*
 * The touchscreen interface operates as follows:
 *
 * 1) Pen is pressed against the touchscreen.
 * 2) TSC2005 performs AD conversion.
 * 3) After the conversion is done TSC2005 drives DAV line down.
 * 4) GPIO IRQ is received and tsc2005_irq_thread() is scheduled.
 * 5) tsc2005_irq_thread() queues up an spi transfer to fetch the x, y, z1, z2
 *    values.
 * 6) tsc2005_irq_thread() reports coordinates to input layer and sets up
 *    tsc2005_penup_timer() to be called after TSC2005_PENUP_TIME_MS (40ms).
 * 7) When the penup timer expires, there have not been touch or DAV interrupts
 *    during the last 40ms which means the pen has been lifted.
 *
 * ESD recovery via a hardware reset is done if the TSC2005 doesn't respond
 * after a configurable period (in ms) of activity. If esd_timeout is 0, the
 * watchdog is disabled.
 */

/* control byte 1 */
#define TSC2005_CMD			0x80
#define TSC2005_CMD_NORMAL		0x00
#define TSC2005_CMD_STOP		0x01
#define TSC2005_CMD_12BIT		0x04

/* control byte 0 */
#define TSC2005_REG_READ		0x0001
#define TSC2005_REG_PND0		0x0002
#define TSC2005_REG_X			0x0000
#define TSC2005_REG_Y			0x0008
#define TSC2005_REG_Z1			0x0010
#define TSC2005_REG_Z2			0x0018
#define TSC2005_REG_TEMP_HIGH		0x0050
#define TSC2005_REG_CFR0		0x0060
#define TSC2005_REG_CFR1		0x0068
#define TSC2005_REG_CFR2		0x0070

/* configuration register 0 */
#define TSC2005_CFR0_PRECHARGE_276US	0x0040
#define TSC2005_CFR0_STABTIME_1MS	0x0300
#define TSC2005_CFR0_CLOCK_1MHZ		0x1000
#define TSC2005_CFR0_RESOLUTION12	0x2000
#define TSC2005_CFR0_PENMODE		0x8000
#define TSC2005_CFR0_INITVALUE		(TSC2005_CFR0_STABTIME_1MS    | \
					 TSC2005_CFR0_CLOCK_1MHZ      | \
					 TSC2005_CFR0_RESOLUTION12    | \
					 TSC2005_CFR0_PRECHARGE_276US | \
					 TSC2005_CFR0_PENMODE)

/* bits common to both read and write of configuration register 0 */
#define	TSC2005_CFR0_RW_MASK		0x3fff

/* configuration register 1 */
#define TSC2005_CFR1_BATCHDELAY_4MS	0x0003
#define TSC2005_CFR1_INITVALUE		TSC2005_CFR1_BATCHDELAY_4MS

/* configuration register 2 */
#define TSC2005_CFR2_MAVE_Z		0x0004
#define TSC2005_CFR2_MAVE_Y		0x0008
#define TSC2005_CFR2_MAVE_X		0x0010
#define TSC2005_CFR2_AVG_7		0x0800
#define TSC2005_CFR2_MEDIUM_15		0x3000
#define TSC2005_CFR2_INITVALUE		(TSC2005_CFR2_MAVE_X	| \
					 TSC2005_CFR2_MAVE_Y	| \
					 TSC2005_CFR2_MAVE_Z	| \
					 TSC2005_CFR2_MEDIUM_15	| \
					 TSC2005_CFR2_AVG_7)

#define MAX_12BIT			0xfff
#define TSC2005_SPI_MAX_SPEED_HZ	10000000
#define TSC2005_PENUP_TIME_MS		40

struct tsc2005_spi_rd {
	struct spi_transfer	spi_xfer;
	u32			spi_tx;
	u32			spi_rx;
};

struct tsc2005 {
	struct spi_device	*spi;

	struct spi_message      spi_read_msg;
	struct tsc2005_spi_rd	spi_x;
	struct tsc2005_spi_rd	spi_y;
	struct tsc2005_spi_rd	spi_z1;
	struct tsc2005_spi_rd	spi_z2;

	struct input_dev	*idev;
	char			phys[32];

	struct mutex		mutex;

	/* raw copy of previous x,y,z */
	int			in_x;
	int			in_y;
	int                     in_z1;
	int			in_z2;

132
	spinlock_t		lock;
133 134 135
	struct timer_list	penup_timer;

	unsigned int		esd_timeout;
136 137
	struct delayed_work	esd_work;
	unsigned long		last_valid_interrupt;
138 139 140

	unsigned int		x_plate_ohm;

141 142
	bool			opened;
	bool			suspended;
143 144

	bool			pen_down;
145 146 147 148

	void			(*set_reset)(bool enable);
};

149
static int tsc2005_cmd(struct tsc2005 *ts, u8 cmd)
150
{
151 152 153 154 155 156
	u8 tx = TSC2005_CMD | TSC2005_CMD_12BIT | cmd;
	struct spi_transfer xfer = {
		.tx_buf		= &tx,
		.len		= 1,
		.bits_per_word	= 8,
	};
157
	struct spi_message msg;
158
	int error;
159 160 161

	spi_message_init(&msg);
	spi_message_add_tail(&xfer, &msg);
162 163 164 165 166 167 168 169 170

	error = spi_sync(ts->spi, &msg);
	if (error) {
		dev_err(&ts->spi->dev, "%s: failed, command: %x, error: %d\n",
			__func__, cmd, error);
		return error;
	}

	return 0;
171 172
}

173
static int tsc2005_write(struct tsc2005 *ts, u8 reg, u16 value)
174
{
175 176 177 178 179 180
	u32 tx = ((reg | TSC2005_REG_PND0) << 16) | value;
	struct spi_transfer xfer = {
		.tx_buf		= &tx,
		.len		= 4,
		.bits_per_word	= 24,
	};
181
	struct spi_message msg;
182
	int error;
183 184 185

	spi_message_init(&msg);
	spi_message_add_tail(&xfer, &msg);
186 187 188 189 190 191 192 193 194 195

	error = spi_sync(ts->spi, &msg);
	if (error) {
		dev_err(&ts->spi->dev,
			"%s: failed, register: %x, value: %x, error: %d\n",
			__func__, reg, value, error);
		return error;
	}

	return 0;
196 197 198 199
}

static void tsc2005_setup_read(struct tsc2005_spi_rd *rd, u8 reg, bool last)
{
200 201
	memset(rd, 0, sizeof(*rd));

202 203 204 205 206 207 208 209
	rd->spi_tx		   = (reg | TSC2005_REG_READ) << 16;
	rd->spi_xfer.tx_buf	   = &rd->spi_tx;
	rd->spi_xfer.rx_buf	   = &rd->spi_rx;
	rd->spi_xfer.len	   = 4;
	rd->spi_xfer.bits_per_word = 24;
	rd->spi_xfer.cs_change	   = !last;
}

210
static int tsc2005_read(struct tsc2005 *ts, u8 reg, u16 *value)
211
{
212
	struct tsc2005_spi_rd spi_rd;
213
	struct spi_message msg;
214
	int error;
215

216
	tsc2005_setup_read(&spi_rd, reg, true);
217 218 219

	spi_message_init(&msg);
	spi_message_add_tail(&spi_rd.spi_xfer, &msg);
220 221 222 223

	error = spi_sync(ts->spi, &msg);
	if (error)
		return error;
224

225
	*value = spi_rd.spi_rx;
226
	return 0;
227 228 229 230 231 232 233 234 235 236 237
}

static void tsc2005_update_pen_state(struct tsc2005 *ts,
				     int x, int y, int pressure)
{
	if (pressure) {
		input_report_abs(ts->idev, ABS_X, x);
		input_report_abs(ts->idev, ABS_Y, y);
		input_report_abs(ts->idev, ABS_PRESSURE, pressure);
		if (!ts->pen_down) {
			input_report_key(ts->idev, BTN_TOUCH, !!pressure);
238
			ts->pen_down = true;
239 240 241 242 243
		}
	} else {
		input_report_abs(ts->idev, ABS_PRESSURE, 0);
		if (ts->pen_down) {
			input_report_key(ts->idev, BTN_TOUCH, 0);
244
			ts->pen_down = false;
245 246 247 248 249 250 251 252 253 254
		}
	}
	input_sync(ts->idev);
	dev_dbg(&ts->spi->dev, "point(%4d,%4d), pressure (%4d)\n", x, y,
		pressure);
}

static irqreturn_t tsc2005_irq_thread(int irq, void *_ts)
{
	struct tsc2005 *ts = _ts;
255
	unsigned long flags;
256
	unsigned int pressure;
257 258
	u32 x, y;
	u32 z1, z2;
259
	int error;
260 261

	/* read the coordinates */
262 263 264 265
	error = spi_sync(ts->spi, &ts->spi_read_msg);
	if (unlikely(error))
		goto out;

266 267 268 269 270 271 272 273 274
	x = ts->spi_x.spi_rx;
	y = ts->spi_y.spi_rx;
	z1 = ts->spi_z1.spi_rx;
	z2 = ts->spi_z2.spi_rx;

	/* validate position */
	if (unlikely(x > MAX_12BIT || y > MAX_12BIT))
		goto out;

275
	/* Skip reading if the pressure components are out of range */
276 277 278
	if (unlikely(z1 == 0 || z2 > MAX_12BIT || z1 >= z2))
		goto out;

279 280
       /*
	* Skip point if this is a pen down with the exact same values as
281 282 283
	* the value before pen-up - that implies SPI fed us stale data
	*/
	if (!ts->pen_down &&
284 285
	    ts->in_x == x && ts->in_y == y &&
	    ts->in_z1 == z1 && ts->in_z2 == z2) {
286
		goto out;
287
	}
288

289 290 291 292
	/*
	 * At this point we are happy we have a valid and useful reading.
	 * Remember it for later comparisons. We may now begin downsampling.
	 */
293 294 295 296 297
	ts->in_x = x;
	ts->in_y = y;
	ts->in_z1 = z1;
	ts->in_z2 = z2;

298
	/* Compute touch pressure resistance using equation #1 */
299 300 301 302 303
	pressure = x * (z2 - z1) / z1;
	pressure = pressure * ts->x_plate_ohm / 4096;
	if (unlikely(pressure > MAX_12BIT))
		goto out;

304 305
	spin_lock_irqsave(&ts->lock, flags);

306 307 308 309
	tsc2005_update_pen_state(ts, x, y, pressure);
	mod_timer(&ts->penup_timer,
		  jiffies + msecs_to_jiffies(TSC2005_PENUP_TIME_MS));

310
	spin_unlock_irqrestore(&ts->lock, flags);
311

312
	ts->last_valid_interrupt = jiffies;
313 314 315 316 317 318 319
out:
	return IRQ_HANDLED;
}

static void tsc2005_penup_timer(unsigned long data)
{
	struct tsc2005 *ts = (struct tsc2005 *)data;
320
	unsigned long flags;
321

322
	spin_lock_irqsave(&ts->lock, flags);
323
	tsc2005_update_pen_state(ts, 0, 0, 0);
324
	spin_unlock_irqrestore(&ts->lock, flags);
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
}

static void tsc2005_start_scan(struct tsc2005 *ts)
{
	tsc2005_write(ts, TSC2005_REG_CFR0, TSC2005_CFR0_INITVALUE);
	tsc2005_write(ts, TSC2005_REG_CFR1, TSC2005_CFR1_INITVALUE);
	tsc2005_write(ts, TSC2005_REG_CFR2, TSC2005_CFR2_INITVALUE);
	tsc2005_cmd(ts, TSC2005_CMD_NORMAL);
}

static void tsc2005_stop_scan(struct tsc2005 *ts)
{
	tsc2005_cmd(ts, TSC2005_CMD_STOP);
}

340 341
/* must be called with ts->mutex held */
static void __tsc2005_disable(struct tsc2005 *ts)
342
{
343 344
	tsc2005_stop_scan(ts);

345 346
	disable_irq(ts->spi->irq);
	del_timer_sync(&ts->penup_timer);
347 348 349 350

	cancel_delayed_work_sync(&ts->esd_work);

	enable_irq(ts->spi->irq);
351 352
}

353 354
/* must be called with ts->mutex held */
static void __tsc2005_enable(struct tsc2005 *ts)
355 356
{
	tsc2005_start_scan(ts);
357 358 359 360 361 362 363 364

	if (ts->esd_timeout && ts->set_reset) {
		ts->last_valid_interrupt = jiffies;
		schedule_delayed_work(&ts->esd_work,
				round_jiffies(jiffies +
					msecs_to_jiffies(ts->esd_timeout)));
	}

365 366 367 368 369 370
}

static ssize_t tsc2005_selftest_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
371 372
	struct spi_device *spi = to_spi_device(dev);
	struct tsc2005 *ts = spi_get_drvdata(spi);
373 374 375
	u16 temp_high;
	u16 temp_high_orig;
	u16 temp_high_test;
376 377
	bool success = true;
	int error;
378 379 380 381 382 383

	mutex_lock(&ts->mutex);

	/*
	 * Test TSC2005 communications via temp high register.
	 */
384
	__tsc2005_disable(ts);
385 386 387 388 389 390 391 392

	error = tsc2005_read(ts, TSC2005_REG_TEMP_HIGH, &temp_high_orig);
	if (error) {
		dev_warn(dev, "selftest failed: read error %d\n", error);
		success = false;
		goto out;
	}

393
	temp_high_test = (temp_high_orig - 1) & MAX_12BIT;
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409

	error = tsc2005_write(ts, TSC2005_REG_TEMP_HIGH, temp_high_test);
	if (error) {
		dev_warn(dev, "selftest failed: write error %d\n", error);
		success = false;
		goto out;
	}

	error = tsc2005_read(ts, TSC2005_REG_TEMP_HIGH, &temp_high);
	if (error) {
		dev_warn(dev, "selftest failed: read error %d after write\n",
			 error);
		success = false;
		goto out;
	}

410 411 412
	if (temp_high != temp_high_test) {
		dev_warn(dev, "selftest failed: %d != %d\n",
			 temp_high, temp_high_test);
413
		success = false;
414 415 416
	}

	/* hardware reset */
417
	ts->set_reset(false);
418
	usleep_range(100, 500); /* only 10us required */
419
	ts->set_reset(true);
420 421 422

	if (!success)
		goto out;
423 424

	/* test that the reset really happened */
425 426 427 428 429 430 431 432
	error = tsc2005_read(ts, TSC2005_REG_TEMP_HIGH, &temp_high);
	if (error) {
		dev_warn(dev, "selftest failed: read error %d after reset\n",
			 error);
		success = false;
		goto out;
	}

433 434 435
	if (temp_high != temp_high_orig) {
		dev_warn(dev, "selftest failed after reset: %d != %d\n",
			 temp_high, temp_high_orig);
436
		success = false;
437 438
	}

439
out:
440
	__tsc2005_enable(ts);
441 442
	mutex_unlock(&ts->mutex);

443
	return sprintf(buf, "%d\n", success);
444
}
445

446 447
static DEVICE_ATTR(selftest, S_IRUGO, tsc2005_selftest_show, NULL);

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
static struct attribute *tsc2005_attrs[] = {
	&dev_attr_selftest.attr,
	NULL
};

static mode_t tsc2005_attr_is_visible(struct kobject *kobj,
				      struct attribute *attr, int n)
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct spi_device *spi = to_spi_device(dev);
	struct tsc2005 *ts = spi_get_drvdata(spi);
	mode_t mode = attr->mode;

	if (attr == &dev_attr_selftest.attr) {
		if (!ts->set_reset)
			mode = 0;
	}

	return mode;
}

static const struct attribute_group tsc2005_attr_group = {
	.is_visible	= tsc2005_attr_is_visible,
	.attrs		= tsc2005_attrs,
};

474 475
static void tsc2005_esd_work(struct work_struct *work)
{
476
	struct tsc2005 *ts = container_of(work, struct tsc2005, esd_work.work);
477
	int error;
478 479 480 481
	u16 r;

	mutex_lock(&ts->mutex);

482 483
	if (time_is_after_jiffies(ts->last_valid_interrupt +
				  msecs_to_jiffies(ts->esd_timeout)))
484 485
		goto out;

486
	/* We should be able to read register without disabling interrupts. */
487
	error = tsc2005_read(ts, TSC2005_REG_CFR0, &r);
488 489 490
	if (!error &&
	    !((r ^ TSC2005_CFR0_INITVALUE) & TSC2005_CFR0_RW_MASK)) {
		goto out;
491 492
	}

493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
	/*
	 * If we could not read our known value from configuration register 0
	 * then we should reset the controller as if from power-up and start
	 * scanning again.
	 */
	dev_info(&ts->spi->dev, "TSC2005 not responding - resetting\n");

	disable_irq(ts->spi->irq);
	del_timer_sync(&ts->penup_timer);

	tsc2005_update_pen_state(ts, 0, 0, 0);

	ts->set_reset(false);
	usleep_range(100, 500); /* only 10us required */
	ts->set_reset(true);

	enable_irq(ts->spi->irq);
	tsc2005_start_scan(ts);
511 512

out:
513 514 515 516 517 518 519 520 521 522 523 524 525
	/* re-arm the watchdog */
	schedule_delayed_work(&ts->esd_work,
			      round_jiffies(jiffies +
					msecs_to_jiffies(ts->esd_timeout)));
	mutex_unlock(&ts->mutex);
}

static int tsc2005_open(struct input_dev *input)
{
	struct tsc2005 *ts = input_get_drvdata(input);

	mutex_lock(&ts->mutex);

526
	if (!ts->suspended)
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
		__tsc2005_enable(ts);

	ts->opened = true;

	mutex_unlock(&ts->mutex);

	return 0;
}

static void tsc2005_close(struct input_dev *input)
{
	struct tsc2005 *ts = input_get_drvdata(input);

	mutex_lock(&ts->mutex);

542
	if (!ts->suspended)
543 544 545 546
		__tsc2005_disable(ts);

	ts->opened = false;

547 548 549 550 551
	mutex_unlock(&ts->mutex);
}

static void __devinit tsc2005_setup_spi_xfer(struct tsc2005 *ts)
{
552 553 554 555
	tsc2005_setup_read(&ts->spi_x, TSC2005_REG_X, false);
	tsc2005_setup_read(&ts->spi_y, TSC2005_REG_Y, false);
	tsc2005_setup_read(&ts->spi_z1, TSC2005_REG_Z1, false);
	tsc2005_setup_read(&ts->spi_z2, TSC2005_REG_Z2, true);
556 557 558 559 560 561 562 563

	spi_message_init(&ts->spi_read_msg);
	spi_message_add_tail(&ts->spi_x.spi_xfer, &ts->spi_read_msg);
	spi_message_add_tail(&ts->spi_y.spi_xfer, &ts->spi_read_msg);
	spi_message_add_tail(&ts->spi_z1.spi_xfer, &ts->spi_read_msg);
	spi_message_add_tail(&ts->spi_z2.spi_xfer, &ts->spi_read_msg);
}

564
static int __devinit tsc2005_probe(struct spi_device *spi)
565
{
566 567 568 569 570 571
	const struct tsc2005_platform_data *pdata = spi->dev.platform_data;
	struct tsc2005 *ts;
	struct input_dev *input_dev;
	unsigned int max_x, max_y, max_p;
	unsigned int fudge_x, fudge_y, fudge_p;
	int error;
572

573 574 575 576
	if (!pdata) {
		dev_dbg(&spi->dev, "no platform data\n");
		return -ENODEV;
	}
577

578 579 580 581 582 583
	fudge_x	= pdata->ts_x_fudge	   ? : 4;
	fudge_y	= pdata->ts_y_fudge	   ? : 8;
	fudge_p	= pdata->ts_pressure_fudge ? : 2;
	max_x	= pdata->ts_x_max	   ? : MAX_12BIT;
	max_y	= pdata->ts_y_max	   ? : MAX_12BIT;
	max_p	= pdata->ts_pressure_max   ? : MAX_12BIT;
584

585 586 587 588
	if (spi->irq <= 0) {
		dev_dbg(&spi->dev, "no irq\n");
		return -ENODEV;
	}
589

590 591 592 593
	spi->mode = SPI_MODE_0;
	spi->bits_per_word = 8;
	if (!spi->max_speed_hz)
		spi->max_speed_hz = TSC2005_SPI_MAX_SPEED_HZ;
594

595 596 597
	error = spi_setup(spi);
	if (error)
		return error;
598

599 600 601 602 603
	ts = kzalloc(sizeof(*ts), GFP_KERNEL);
	input_dev = input_allocate_device();
	if (!ts || !input_dev) {
		error = -ENOMEM;
		goto err_free_mem;
604 605
	}

606 607 608 609 610 611
	ts->spi = spi;
	ts->idev = input_dev;

	ts->x_plate_ohm	= pdata->ts_x_plate_ohm	? : 280;
	ts->esd_timeout	= pdata->esd_timeout_ms;
	ts->set_reset	= pdata->set_reset;
612

613
	mutex_init(&ts->mutex);
614

615
	spin_lock_init(&ts->lock);
616
	setup_timer(&ts->penup_timer, tsc2005_penup_timer, (unsigned long)ts);
617

618
	INIT_DELAYED_WORK(&ts->esd_work, tsc2005_esd_work);
619

620
	tsc2005_setup_spi_xfer(ts);
621

622 623 624 625 626 627 628 629 630 631 632 633 634 635
	snprintf(ts->phys, sizeof(ts->phys),
		 "%s/input-ts", dev_name(&spi->dev));

	input_dev->name = "TSC2005 touchscreen";
	input_dev->phys = ts->phys;
	input_dev->id.bustype = BUS_SPI;
	input_dev->dev.parent = &spi->dev;
	input_dev->evbit[0] = BIT(EV_ABS) | BIT(EV_KEY);
	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);

	input_set_abs_params(input_dev, ABS_X, 0, max_x, fudge_x, 0);
	input_set_abs_params(input_dev, ABS_Y, 0, max_y, fudge_y, 0);
	input_set_abs_params(input_dev, ABS_PRESSURE, 0, max_p, fudge_p, 0);

636 637 638 639 640 641 642 643
	input_dev->open = tsc2005_open;
	input_dev->close = tsc2005_close;

	input_set_drvdata(input_dev, ts);

	/* Ensure the touchscreen is off */
	tsc2005_stop_scan(ts);

644
	error = request_threaded_irq(spi->irq, NULL, tsc2005_irq_thread,
645 646 647 648
				     IRQF_TRIGGER_RISING, "tsc2005", ts);
	if (error) {
		dev_err(&spi->dev, "Failed to request irq, err: %d\n", error);
		goto err_free_mem;
649 650
	}

651 652 653 654 655 656
	spi_set_drvdata(spi, ts);
	error = sysfs_create_group(&spi->dev.kobj, &tsc2005_attr_group);
	if (error) {
		dev_err(&spi->dev,
			"Failed to create sysfs attributes, err: %d\n", error);
		goto err_clear_drvdata;
657 658
	}

659 660 661 662 663 664
	error = input_register_device(ts->idev);
	if (error) {
		dev_err(&spi->dev,
			"Failed to register input device, err: %d\n", error);
		goto err_remove_sysfs;
	}
665

666 667 668 669 670 671 672 673 674 675 676 677
	set_irq_wake(spi->irq, 1);
	return 0;

err_remove_sysfs:
	sysfs_remove_group(&spi->dev.kobj, &tsc2005_attr_group);
err_clear_drvdata:
	spi_set_drvdata(spi, NULL);
	free_irq(spi->irq, ts);
err_free_mem:
	input_free_device(input_dev);
	kfree(ts);
	return error;
678 679 680 681
}

static int __devexit tsc2005_remove(struct spi_device *spi)
{
682
	struct tsc2005 *ts = spi_get_drvdata(spi);
683

684 685
	sysfs_remove_group(&ts->spi->dev.kobj, &tsc2005_attr_group);

686 687 688 689
	free_irq(ts->spi->irq, ts);
	input_unregister_device(ts->idev);
	kfree(ts);

690
	spi_set_drvdata(spi, NULL);
691 692 693
	return 0;
}

694 695
#ifdef CONFIG_PM_SLEEP
static int tsc2005_suspend(struct device *dev)
696
{
697 698
	struct spi_device *spi = to_spi_device(dev);
	struct tsc2005 *ts = spi_get_drvdata(spi);
699 700

	mutex_lock(&ts->mutex);
701

702
	if (!ts->suspended && ts->opened)
703 704 705 706
		__tsc2005_disable(ts);

	ts->suspended = true;

707 708 709 710 711
	mutex_unlock(&ts->mutex);

	return 0;
}

712
static int tsc2005_resume(struct device *dev)
713
{
714 715
	struct spi_device *spi = to_spi_device(dev);
	struct tsc2005 *ts = spi_get_drvdata(spi);
716 717

	mutex_lock(&ts->mutex);
718

719
	if (ts->suspended && ts->opened)
720 721 722 723
		__tsc2005_enable(ts);

	ts->suspended = false;

724 725 726 727 728 729
	mutex_unlock(&ts->mutex);

	return 0;
}
#endif

730 731
static SIMPLE_DEV_PM_OPS(tsc2005_pm_ops, tsc2005_suspend, tsc2005_resume);

732
static struct spi_driver tsc2005_driver = {
733 734 735 736
	.driver	= {
		.name	= "tsc2005",
		.owner	= THIS_MODULE,
		.pm	= &tsc2005_pm_ops,
737
	},
738 739
	.probe	= tsc2005_probe,
	.remove	= __devexit_p(tsc2005_remove),
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
};

static int __init tsc2005_init(void)
{
	return spi_register_driver(&tsc2005_driver);
}
module_init(tsc2005_init);

static void __exit tsc2005_exit(void)
{
	spi_unregister_driver(&tsc2005_driver);
}
module_exit(tsc2005_exit);

MODULE_AUTHOR("Lauri Leukkunen <lauri.leukkunen@nokia.com>");
755
MODULE_DESCRIPTION("TSC2005 Touchscreen Driver");
756
MODULE_LICENSE("GPL");