linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Chris Verges" <chrisv@cyberswitching.com>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>, linux-input@vger.kernel.org
Subject: [PATCH 1/1] linux-2.6.32-tsc2008.patch
Date: Wed, 20 Jan 2010 11:39:58 -0800	[thread overview]
Message-ID: <68FBE0F3CE97264395875AC1C468F22C220789@mail03.cyberswitching.local> (raw)

[-- Attachment #1: Type: text/plain, Size: 18839 bytes --]

Hi Dmitry and fellow input driver developers,

Attached is an updated driver for the tsc2008.  This new driver
completely replaces older versions, and has been confirmed to work on
actual hardware.  The TSC2008 is an SPI touchscreen controller produced
by Texas Instruments.

An example of integrating this driver into board-sam9263ek board is
below.  Note that only the sections relevant to the tsc2008 driver are
included.

   #include "linux/spi/tsc2008.h"

   #if defined (CONFIG_TOUCHSCREEN_TSC2008)
   static int tsc2008_pendown_state(void)
   {
      return !at91_get_gpio_value(AT91_PIN_PA15);
   }

   static struct tsc2008_platform_data tsc2008_info = {
      .x_plate_ohms        = 450,
      .bit_mode            = 8,
      .get_pendown_state   = tsc2008_pendown_state,
      .clear_penirq        = NULL,
      .init_platform_hw    = NULL,
      .exit_platform_hw    = NULL,
   };

   static void __init ek_add_device_ts(void)
   {
      at91_set_B_periph(AT91_PIN_PA15, 1);
      at91_set_gpio_input(AT91_PIN_PA31, 1);
   }
   #else
   static void __init ek_add_device_ts(void) {}
   #endif

   static struct spi_board_info ek_spi_devices[] = {
   # if defined(CONFIG_TOUCHSCREEN_TSC2008)
      {
         .modalias       = "tsc2008",
         .bus_num        = 1,
         .chip_select    = 1,
         .max_speed_hz   = 25000000,
         .platform_data  = &tsc2008_info,
         .irq            = AT91SAM9263_ID_IRQ1,
      },
   #endif
   }

   static void __init ek_board_init(void)
   {
      ek_add_device_ts();
   }

Please review, provide feedback, and consider the driver for inclusion
in the upstream.

Thanks,
Chris

------ PATCH BELOW ------

Signed-off-by: Chris Verges <chrisv@cyberswitching.com>

Index: include/linux/spi/tsc2008.h
===================================================================
--- a/include/linux/spi/tsc2008.h	(.../tags/linux-2.6.32.1)
(revision 0)
+++ b/include/linux/spi/tsc2008.h
(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -0,0 +1,18 @@
+#ifndef __LINUX_SPI_TSC2008_H
+#define __LINUX_SPI_TSC2008_H
+
+/* linux/spi/tsc2008.h */
+
+struct tsc2008_platform_data {
+	u16	model;				/* 2008. */
+	u16	x_plate_ohms;
+	u16	bit_mode;			/* 8 (default) or 12 */
+
+	int	(*get_pendown_state)(void);
+	void	(*clear_penirq)(void);		/* If needed, clear 2nd
level
+						   interrupt source */
+	int	(*init_platform_hw)(void);
+	void	(*exit_platform_hw)(void);
+};
+
+#endif
Index: drivers/input/touchscreen/Kconfig
===================================================================
--- a/drivers/input/touchscreen/Kconfig	(.../tags/linux-2.6.32.1)
(revision 184)
+++ b/drivers/input/touchscreen/Kconfig
(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -512,6 +512,19 @@
 	  To compile this driver as a module, choose M here: the
 	  module will be called tsc2007.
 
+config TOUCHSCREEN_TSC2008
+	tristate "TSC2008 based touchscreens"
+	depends on SPI_MASTER
+	help
+	  Say Y here if you have a touchscreen interface using the
+	  TSC2008 controller, and your board-specific setup code
+	  includes that in its table of SPI devices.
+
+	  If unsure, say N.
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called tsc2008.
+
 config TOUCHSCREEN_W90X900
 	tristate "W90P910 touchscreen driver"
 	depends on HAVE_CLK
Index: drivers/input/touchscreen/tsc2008.c
===================================================================
--- a/drivers/input/touchscreen/tsc2008.c
(.../tags/linux-2.6.32.1)	(revision 0)
+++ b/drivers/input/touchscreen/tsc2008.c
(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -0,0 +1,519 @@
+/*
+ * drivers/input/touchscreen/tsc2008.c
+ *
+ * Copyright (c) 2010 Cyber Switching, Inc.
+ *    Chris Verges <chrisv@cyberswitching.com>
+ *    Robert Mehranfar <robertme@earthlink.net>
+ *
+ * Using code from:
+ *  - tsc2008.c
+ *      Copyright (c) 2008 MtekVision Co., Ltd.
+ *	Kwangwoo Lee <kwlee@mtekvision.com>
+ *  - ads7846.c
+ *	Copyright (c) 2005 David Brownell
+ *	Copyright (c) 2006 Nokia Corporation
+ *  - corgi_ts.c
+ *	Copyright (C) 2004-2005 Richard Purdie
+ *  - omap_ts.[hc], ads7846.h, ts_osk.c
+ *	Copyright (C) 2002 MontaVista Software
+ *	Copyright (C) 2004 Texas Instruments
+ *	Copyright (C) 2005 Dirk Behme
+ *
+ *  This program is free software; you can redistribute it and/or
modify
+ *  it under the terms of the GNU General Public License version 2 as
+ *  published by the Free Software Foundation.
+ */
+
+#include <linux/delay.h>
+#include <linux/input.h>
+#include <linux/interrupt.h>
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/spi/spi.h>
+#include <linux/spi/tsc2008.h>
+
+#define TS_POLL_DELAY			1 /* ms delay between samples */
+#define TS_POLL_PERIOD			1 /* ms delay between samples */
+
+#define TSC2008_START_CMD		(0x1 << 7)
+
+#define TSC2008_MEASURE_TEMP1		(0x0 << 4)
+#define TSC2008_MEASURE_Y		(0x1 << 4)
+#define TSC2008_SETUP			(0x2 << 4)
+#define TSC2008_MEASURE_Z1		(0x3 << 4)
+#define TSC2008_MEASURE_Z2		(0x4 << 4)
+#define TSC2008_MEASURE_X		(0x5 << 4)
+#define TSC2008_MEASURE_AUX		(0x6 << 4)
+#define TSC2008_MEASURE_TEMP2		(0x7 << 4)
+
+#define TSC2008_USE_50K			(0x0 << 3)
+#define TSC2008_USE_90K			(0x1 << 3)
+
+#define TSC2008_ENABLE_MAV		(0x0 << 2)
+#define TSC2008_DISABLE_MAV		(0x1 << 2)
+
+#define TSC2008_SOFTWARE_RESET		(0x1 << 0)
+
+#define TSC2008_POWER_OFF_IRQ_EN	(0x0 << 0)
+#define TSC2008_ADC_ON_IRQ_DIS0		(0x1 << 0)
+#define TSC2008_ADC_OFF_IRQ_EN		(0x2 << 0)
+#define TSC2008_ADC_ON_IRQ_DIS1		(0x3 << 0)
+
+#define TSC2008_12BIT			(0x0 << 1)
+#define TSC2008_8BIT			(0x1 << 1)
+
+#define	MAX_12BIT			(1 << 12)
+#define MAX_8BIT			(1 << 8)
+
+#define ADC_ON_12BIT	(TSC2008_START_CMD | TSC2008_12BIT |
TSC2008_POWER_OFF_IRQ_EN)
+#define ADC_ON_8BIT	(TSC2008_START_CMD | TSC2008_8BIT |
TSC2008_POWER_OFF_IRQ_EN)
+
+/* usec, SCLK=25MHz w/o MAV */
+#define TX_DELAY	(40)
+#define RX_DELAY	(40)
+
+struct ts_event {
+	uint16_t	x;
+	uint16_t	y;
+	uint16_t	z1, z2;
+};
+
+struct tsc2008 {
+	struct input_dev	*input;
+	char			phys[32];
+	struct delayed_work	work;
+
+	struct spi_device	*spi;
+	struct spi_message	msg;
+	struct spi_transfer	xfer[8];
+	uint8_t			tx_buf[4];
+
+	uint16_t		model;
+	uint16_t		x_plate_ohms;
+	uint16_t		max_bits;
+
+	bool			pendown;
+	int			irq;
+
+	int			(*get_pendown_state)(void);
+	void			(*clear_penirq)(void);
+};
+
+static void tsc2008_read_values(struct tsc2008 *tsc, struct ts_event
*tc)
+{
+	/* Read the values from the TSC2008 */
+	tsc->xfer[1].rx_buf = &tc->x;
+	tsc->xfer[3].rx_buf = &tc->y;
+	tsc->xfer[5].rx_buf = &tc->z1;
+	tsc->xfer[7].rx_buf = &tc->z2;
+
+	spi_sync(tsc->spi, &tsc->msg);
+
+	dev_dbg(&tsc->spi->dev, "data: x  %05u 0x%08x\n", tc->x, tc->x);
+	dev_dbg(&tsc->spi->dev, "data: y  %05u 0x%08x\n", tc->y, tc->y);
+	dev_dbg(&tsc->spi->dev, "data: z1 %05u 0x%08x\n", tc->z1,
tc->z1);
+	dev_dbg(&tsc->spi->dev, "data: z2 %05u 0x%08x\n", tc->z2,
tc->z2);
+
+	if (tsc->max_bits == MAX_8BIT) {
+		tc->x  = (tc->x  << 1) & 0x00FF;
+		tc->y  = (tc->y  << 1) & 0x00FF;
+		tc->z1 = (tc->z1 << 1) & 0x00FF;
+		tc->z2 = (tc->z2 << 1) & 0x00FF;
+	} else if (tsc->max_bits == MAX_12BIT) {
+		tc->x  = (be16_to_cpu(tc->x)  << 1) >> 4 & 0x0FFF;
+		tc->y  = (be16_to_cpu(tc->y)  << 1) >> 4 & 0x0FFF;
+		tc->z1 = (be16_to_cpu(tc->z1) << 1) >> 4 & 0x0FFF;
+		tc->z2 = (be16_to_cpu(tc->z2) << 1) >> 4 & 0x0FFF;
+	} else {
+		dev_err(&tsc->spi->dev, "invalid number of bits
expected\n");
+	}
+
+	dev_dbg(&tsc->spi->dev, "data: x  %05u 0x%08x\n", tc->x, tc->x);
+	dev_dbg(&tsc->spi->dev, "data: y  %05u 0x%08x\n", tc->y, tc->y);
+	dev_dbg(&tsc->spi->dev, "data: z1 %05u 0x%08x\n", tc->z1,
tc->z1);
+	dev_dbg(&tsc->spi->dev, "data: z2 %05u 0x%08x\n", tc->z2,
tc->z2);
+}
+
+static uint32_t tsc2008_calculate_pressure(struct tsc2008 *tsc, struct
ts_event *tc)
+{
+	uint32_t rt = 0;
+
+	/* range filtering */
+	if (tc->x == (tsc->max_bits - 1))
+		tc->x = 0;
+
+	if (likely(tc->x && tc->z1)) {
+		rt = (tc->z2 / tc->z1) - 1;
+		rt *= tc->y * tsc->x_plate_ohms;
+		rt /= tsc->max_bits;
+
+		if (tsc->max_bits == MAX_8BIT)
+			rt &= 0x00FF;
+		else
+			rt &= 0x0FFF;
+	}
+
+	dev_dbg(&tsc->spi->dev, "pressure: %05u 0x%08x\n", rt, rt);
+
+	return rt;
+}
+
+static void tsc2008_send_up_event(struct tsc2008 *tsc)
+{
+	struct input_dev *input = tsc->input;
+
+	dev_dbg(&tsc->spi->dev, "UP\n");
+
+	input_report_key(input, BTN_TOUCH, 0);
+	input_report_abs(input, ABS_PRESSURE, 0);
+	input_sync(input);
+}
+
+static void tsc2008_work(struct work_struct *work)
+{
+	struct tsc2008 *ts =
+		container_of(to_delayed_work(work), struct tsc2008,
work);
+	struct ts_event tc;
+	uint32_t rt;
+
+	/*
+	 * NOTE: We can't rely on the pressure to determine the pen down
+	 * state, even though this controller has a pressure sensor.
+	 * The pressure value can fluctuate for quite a while after
+	 * lifting the pen and in some cases may not even settle at the
+	 * expected value.
+	 *
+	 * The only safe way to check for the pen up condition is in the
+	 * work function by reading the pen signal state (it's a GPIO
+	 * and IRQ). Unfortunately such callback is not always
available,
+	 * in that case we have rely on the pressure anyway.
+	 */
+	if (ts->get_pendown_state) {
+		if (unlikely(!ts->get_pendown_state())) {
+			dev_dbg(&ts->spi->dev, "detected pen UP via GPIO
read\n");
+
+			tsc2008_send_up_event(ts);
+			ts->pendown = false;
+			goto out;
+		}
+
+		dev_dbg(&ts->spi->dev, "pen is still down\n");
+	} else {
+		dev_dbg(&ts->spi->dev, "get_pendown_state undefined, "
+				"using pressure instead\n");
+	}
+
+	tsc2008_read_values(ts, &tc);
+
+	rt = tsc2008_calculate_pressure(ts, &tc);
+	if (rt >= ts->max_bits) {
+		/*
+		 * Sample found inconsistent by debouncing or pressure
is
+		 * beyond the maximum. Don't report it to user space,
+		 * repeat at least once more the measurement.
+		 */
+		dev_dbg(&ts->spi->dev, "ignored pressure %d\n", rt);
+		goto out;
+	}
+
+	if (rt) {
+		struct input_dev *input = ts->input;
+
+		if (!ts->pendown) {
+			dev_dbg(&ts->spi->dev, "DOWN\n");
+
+			input_report_key(input, BTN_TOUCH, 1);
+			ts->pendown = true;
+		}
+
+		input_report_abs(input, ABS_X, tc.x);
+		input_report_abs(input, ABS_Y, tc.y);
+		input_report_abs(input, ABS_PRESSURE, rt);
+
+		input_sync(input);
+
+		dev_dbg(&ts->spi->dev, "point(%4d,%4d), pressure
(%4u)\n",
+			tc.x, tc.y, rt);
+	} else if (!ts->get_pendown_state && ts->pendown) {
+		/*
+		 * We don't have callback to check pendown state, so we
+		 * have to assume that since pressure reported is 0 the
+		 * pen was lifted up.
+		 */
+		tsc2008_send_up_event(ts);
+		ts->pendown = false;
+	} else {
+		dev_dbg(&ts->spi->dev, "no change in pen state
detected\n");
+	}
+
+ out:
+	if (ts->pendown)
+		schedule_delayed_work(&ts->work,
+				      msecs_to_jiffies(TS_POLL_PERIOD));
+	else
+		enable_irq(ts->irq);
+}
+
+static irqreturn_t tsc2008_irq(int irq, void *handle)
+{
+	struct tsc2008 *ts = handle;
+
+	if (!ts->get_pendown_state || likely(ts->get_pendown_state())) {
+		disable_irq_nosync(ts->irq);
+		schedule_delayed_work(&ts->work,
+				      msecs_to_jiffies(TS_POLL_DELAY));
+	}
+
+	if (ts->clear_penirq)
+		ts->clear_penirq();
+
+	return IRQ_HANDLED;
+}
+
+static void tsc2008_free_irq(struct tsc2008 *ts)
+{
+	free_irq(ts->irq, ts);
+	if (cancel_delayed_work_sync(&ts->work)) {
+		/*
+		 * Work was pending, therefore we need to enable
+		 * IRQ here to balance the disable_irq() done in the
+		 * interrupt handler.
+		 */
+		enable_irq(ts->irq);
+	}
+}
+
+static int __devinit tsc2008_probe(struct spi_device *spi)
+{
+	struct tsc2008 *ts;
+	struct tsc2008_platform_data *pdata = spi->dev.platform_data;
+	struct input_dev *input_dev;
+	struct spi_transfer *x;
+	uint8_t tx_buf;
+	int num_bytes_rx;
+	int err;
+
+	if (!pdata) {
+		dev_err(&spi->dev, "platform data is required!\n");
+		return -EINVAL;
+	}
+
+	if (!pdata->get_pendown_state) {
+		dev_err(&spi->dev, "pendown function is required!\n");
+		return -EINVAL;
+	}
+
+	if (!pdata->bit_mode) {
+		dev_dbg(&spi->dev, "bit mode not specified, using 8-bit
mode\n");
+		pdata->bit_mode = 8;
+	} else if (pdata->bit_mode != 8 && pdata->bit_mode != 12) {
+		dev_err(&spi->dev, "invalid bit mode specified, 8-bit or
12-bit expected\n");
+		return -EINVAL;
+	}
+
+	err = spi_setup(spi);
+	if (err) {
+		dev_err(&spi->dev, "unable to initialize spi\n");
+		return -ENODEV;
+	}
+
+	ts = kzalloc(sizeof(struct tsc2008), GFP_KERNEL);
+	input_dev = input_allocate_device();
+	if (!ts || !input_dev) {
+		err = -ENOMEM;
+		goto err_free_mem;
+	}
+
+	dev_set_drvdata(&spi->dev, ts);
+	ts->spi = spi;
+	ts->irq = spi->irq;
+	ts->input = input_dev;
+	INIT_DELAYED_WORK(&ts->work, tsc2008_work);
+
+	ts->model             = pdata->model;
+	ts->x_plate_ohms      = pdata->x_plate_ohms;
+	ts->max_bits          = 1 << pdata->bit_mode;	/* Match either
MAX_8BIT or MAX_12BIT */
+	ts->get_pendown_state = pdata->get_pendown_state;
+	ts->clear_penirq      = pdata->clear_penirq;
+
+	snprintf(ts->phys, sizeof(ts->phys),
+		 "%s/input0", dev_name(&spi->dev));
+
+	input_dev->name = "TSC2008 Touchscreen";
+	input_dev->dev.parent = &spi->dev;
+	input_dev->phys = ts->phys;
+
+	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
+	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
+
+	input_set_abs_params(input_dev, ABS_X, 0, ts->max_bits, 0, 0);
+	input_set_abs_params(input_dev, ABS_Y, 0, ts->max_bits, 0, 0);
+	input_set_abs_params(input_dev, ABS_PRESSURE, 0, ts->max_bits,
0, 0);
+
+	if (pdata->init_platform_hw)
+		pdata->init_platform_hw();
+
+	err = request_irq(ts->irq, tsc2008_irq, 0,
+			spi->dev.driver->name, ts);
+	if (err < 0) {
+		dev_err(&spi->dev, "irq %d busy?\n", ts->irq);
+		goto err_free_mem;
+	}
+
+	/* Setup SPI variables */
+	spi_message_init(&ts->msg);
+
+	/*
+	 * TSC2008_MEASURE_X and TSC2008_MEASURE_Y are intentionally
+	 * swapped below.
+	 */
+	if (ts->max_bits == MAX_8BIT) {
+		dev_dbg(&spi->dev, "using 8-bit mode\n");
+		num_bytes_rx = 1;
+		ts->tx_buf[0] = ADC_ON_8BIT | TSC2008_MEASURE_Y;
+		ts->tx_buf[1] = ADC_ON_8BIT | TSC2008_MEASURE_X;
+		ts->tx_buf[2] = ADC_ON_8BIT | TSC2008_MEASURE_Z1;
+		ts->tx_buf[3] = ADC_ON_8BIT | TSC2008_MEASURE_Z2;
+	} else {
+		dev_dbg(&spi->dev, "using 12-bit mode\n");
+		num_bytes_rx = 2;
+		ts->tx_buf[0] = ADC_ON_12BIT | TSC2008_MEASURE_Y;
+		ts->tx_buf[1] = ADC_ON_12BIT | TSC2008_MEASURE_X;
+		ts->tx_buf[2] = ADC_ON_12BIT | TSC2008_MEASURE_Z1;
+		ts->tx_buf[3] = ADC_ON_12BIT | TSC2008_MEASURE_Z2;
+	}
+
+	x = &ts->xfer[0];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[0];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[1];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[2];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[1];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[3];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[4];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[2];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[5];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[6];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[3];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[7];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	spi_message_add_tail(x, &ts->msg);
+
+	/*
+	 * Reset the controller once using the sequence described
+	 * on page 29 of the TSC2008 manual (March 2009 revision)
+	 */
+	tx_buf = TSC2008_START_CMD
+			| TSC2008_SETUP
+			| TSC2008_SOFTWARE_RESET;
+	err = spi_write(spi, &tx_buf, 1);
+	if (err < 0)
+		goto err_free_irq;
+	udelay(1);
+
+	/* Configure the pull-up resistor and MAV settings */
+	tx_buf = TSC2008_START_CMD
+			| TSC2008_SETUP
+			| TSC2008_USE_90K
+			| TSC2008_DISABLE_MAV;
+	err = spi_write(spi, &tx_buf, 1);
+	if (err < 0)
+		goto err_free_irq;
+
+	/* Finish input device registration */
+	err = input_register_device(input_dev);
+	if (err)
+		goto err_free_irq;
+
+	return 0;
+
+ err_free_irq:
+	tsc2008_free_irq(ts);
+	if (pdata->exit_platform_hw)
+		pdata->exit_platform_hw();
+ err_free_mem:
+	input_free_device(input_dev);
+	kfree(ts);
+	return err;
+}
+
+static int __devexit tsc2008_remove(struct spi_device *spi)
+{
+	struct tsc2008 *ts = dev_get_drvdata(&spi->dev);
+	struct tsc2008_platform_data *pdata = spi->dev.platform_data;
+
+	tsc2008_free_irq(ts);
+
+	if (pdata->exit_platform_hw)
+		pdata->exit_platform_hw();
+
+	input_unregister_device(ts->input);
+	kfree(ts);
+
+	dev_dbg(&spi->dev, "unregistered touchscreen\n");
+
+	return 0;
+}
+
+static struct spi_driver tsc2008_driver = {
+	.driver = {
+		.owner	= THIS_MODULE,
+		.name	= "tsc2008",
+		.bus	= &spi_bus_type,
+	},
+	.probe		= tsc2008_probe,
+	.remove		= __devexit_p(tsc2008_remove),
+};
+
+static int __init tsc2008_init(void)
+{
+	return spi_register_driver(&tsc2008_driver);
+}
+
+static void __exit tsc2008_exit(void)
+{
+	spi_unregister_driver(&tsc2008_driver);
+}
+
+module_init(tsc2008_init);
+module_exit(tsc2008_exit);
+
+MODULE_AUTHOR("Chris Verges <chrisv@cyberswitching.com>, "
+		"Robert Mehranfar <robertme@earthlink.net>");
+MODULE_DESCRIPTION("TSC2008 Touchscreen Driver");
+MODULE_LICENSE("GPL");
Index: drivers/input/touchscreen/Makefile
===================================================================
--- a/drivers/input/touchscreen/Makefile
(.../tags/linux-2.6.32.1)	(revision 184)
+++ b/drivers/input/touchscreen/Makefile
(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -30,6 +30,7 @@
 obj-$(CONFIG_TOUCHSCREEN_TOUCHRIGHT)	+= touchright.o
 obj-$(CONFIG_TOUCHSCREEN_TOUCHWIN)	+= touchwin.o
 obj-$(CONFIG_TOUCHSCREEN_TSC2007)	+= tsc2007.o
+obj-$(CONFIG_TOUCHSCREEN_TSC2008)	+= tsc2008.o
 obj-$(CONFIG_TOUCHSCREEN_UCB1400)	+= ucb1400_ts.o
 obj-$(CONFIG_TOUCHSCREEN_WACOM_W8001)	+= wacom_w8001.o
 obj-$(CONFIG_TOUCHSCREEN_WM97XX)	+= wm97xx-ts.o

[-- Attachment #2: linux-2.6.32-tsc2008.patch --]
[-- Type: application/octet-stream, Size: 16492 bytes --]

Signed-off-by: Chris Verges <chrisv@cyberswitching.com>

Index: include/linux/spi/tsc2008.h
===================================================================
--- a/include/linux/spi/tsc2008.h	(.../tags/linux-2.6.32.1)	(revision 0)
+++ b/include/linux/spi/tsc2008.h	(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -0,0 +1,18 @@
+#ifndef __LINUX_SPI_TSC2008_H
+#define __LINUX_SPI_TSC2008_H
+
+/* linux/spi/tsc2008.h */
+
+struct tsc2008_platform_data {
+	u16	model;				/* 2008. */
+	u16	x_plate_ohms;
+	u16	bit_mode;			/* 8 (default) or 12 */
+
+	int	(*get_pendown_state)(void);
+	void	(*clear_penirq)(void);		/* If needed, clear 2nd level
+						   interrupt source */
+	int	(*init_platform_hw)(void);
+	void	(*exit_platform_hw)(void);
+};
+
+#endif
Index: drivers/input/touchscreen/Kconfig
===================================================================
--- a/drivers/input/touchscreen/Kconfig	(.../tags/linux-2.6.32.1)	(revision 184)
+++ b/drivers/input/touchscreen/Kconfig	(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -512,6 +512,19 @@
 	  To compile this driver as a module, choose M here: the
 	  module will be called tsc2007.
 
+config TOUCHSCREEN_TSC2008
+	tristate "TSC2008 based touchscreens"
+	depends on SPI_MASTER
+	help
+	  Say Y here if you have a touchscreen interface using the
+	  TSC2008 controller, and your board-specific setup code
+	  includes that in its table of SPI devices.
+
+	  If unsure, say N.
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called tsc2008.
+
 config TOUCHSCREEN_W90X900
 	tristate "W90P910 touchscreen driver"
 	depends on HAVE_CLK
Index: drivers/input/touchscreen/tsc2008.c
===================================================================
--- a/drivers/input/touchscreen/tsc2008.c	(.../tags/linux-2.6.32.1)	(revision 0)
+++ b/drivers/input/touchscreen/tsc2008.c	(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -0,0 +1,519 @@
+/*
+ * drivers/input/touchscreen/tsc2008.c
+ *
+ * Copyright (c) 2010 Cyber Switching, Inc.
+ *    Chris Verges <chrisv@cyberswitching.com>
+ *    Robert Mehranfar <robertme@earthlink.net>
+ *
+ * Using code from:
+ *  - tsc2008.c
+ *      Copyright (c) 2008 MtekVision Co., Ltd.
+ *	Kwangwoo Lee <kwlee@mtekvision.com>
+ *  - ads7846.c
+ *	Copyright (c) 2005 David Brownell
+ *	Copyright (c) 2006 Nokia Corporation
+ *  - corgi_ts.c
+ *	Copyright (C) 2004-2005 Richard Purdie
+ *  - omap_ts.[hc], ads7846.h, ts_osk.c
+ *	Copyright (C) 2002 MontaVista Software
+ *	Copyright (C) 2004 Texas Instruments
+ *	Copyright (C) 2005 Dirk Behme
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2 as
+ *  published by the Free Software Foundation.
+ */
+
+#include <linux/delay.h>
+#include <linux/input.h>
+#include <linux/interrupt.h>
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/spi/spi.h>
+#include <linux/spi/tsc2008.h>
+
+#define TS_POLL_DELAY			1 /* ms delay between samples */
+#define TS_POLL_PERIOD			1 /* ms delay between samples */
+
+#define TSC2008_START_CMD		(0x1 << 7)
+
+#define TSC2008_MEASURE_TEMP1		(0x0 << 4)
+#define TSC2008_MEASURE_Y		(0x1 << 4)
+#define TSC2008_SETUP			(0x2 << 4)
+#define TSC2008_MEASURE_Z1		(0x3 << 4)
+#define TSC2008_MEASURE_Z2		(0x4 << 4)
+#define TSC2008_MEASURE_X		(0x5 << 4)
+#define TSC2008_MEASURE_AUX		(0x6 << 4)
+#define TSC2008_MEASURE_TEMP2		(0x7 << 4)
+
+#define TSC2008_USE_50K			(0x0 << 3)
+#define TSC2008_USE_90K			(0x1 << 3)
+
+#define TSC2008_ENABLE_MAV		(0x0 << 2)
+#define TSC2008_DISABLE_MAV		(0x1 << 2)
+
+#define TSC2008_SOFTWARE_RESET		(0x1 << 0)
+
+#define TSC2008_POWER_OFF_IRQ_EN	(0x0 << 0)
+#define TSC2008_ADC_ON_IRQ_DIS0		(0x1 << 0)
+#define TSC2008_ADC_OFF_IRQ_EN		(0x2 << 0)
+#define TSC2008_ADC_ON_IRQ_DIS1		(0x3 << 0)
+
+#define TSC2008_12BIT			(0x0 << 1)
+#define TSC2008_8BIT			(0x1 << 1)
+
+#define	MAX_12BIT			(1 << 12)
+#define MAX_8BIT			(1 << 8)
+
+#define ADC_ON_12BIT	(TSC2008_START_CMD | TSC2008_12BIT | TSC2008_POWER_OFF_IRQ_EN)
+#define ADC_ON_8BIT	(TSC2008_START_CMD | TSC2008_8BIT | TSC2008_POWER_OFF_IRQ_EN)
+
+/* usec, SCLK=25MHz w/o MAV */
+#define TX_DELAY	(40)
+#define RX_DELAY	(40)
+
+struct ts_event {
+	uint16_t	x;
+	uint16_t	y;
+	uint16_t	z1, z2;
+};
+
+struct tsc2008 {
+	struct input_dev	*input;
+	char			phys[32];
+	struct delayed_work	work;
+
+	struct spi_device	*spi;
+	struct spi_message	msg;
+	struct spi_transfer	xfer[8];
+	uint8_t			tx_buf[4];
+
+	uint16_t		model;
+	uint16_t		x_plate_ohms;
+	uint16_t		max_bits;
+
+	bool			pendown;
+	int			irq;
+
+	int			(*get_pendown_state)(void);
+	void			(*clear_penirq)(void);
+};
+
+static void tsc2008_read_values(struct tsc2008 *tsc, struct ts_event *tc)
+{
+	/* Read the values from the TSC2008 */
+	tsc->xfer[1].rx_buf = &tc->x;
+	tsc->xfer[3].rx_buf = &tc->y;
+	tsc->xfer[5].rx_buf = &tc->z1;
+	tsc->xfer[7].rx_buf = &tc->z2;
+
+	spi_sync(tsc->spi, &tsc->msg);
+
+	dev_dbg(&tsc->spi->dev, "data: x  %05u 0x%08x\n", tc->x, tc->x);
+	dev_dbg(&tsc->spi->dev, "data: y  %05u 0x%08x\n", tc->y, tc->y);
+	dev_dbg(&tsc->spi->dev, "data: z1 %05u 0x%08x\n", tc->z1, tc->z1);
+	dev_dbg(&tsc->spi->dev, "data: z2 %05u 0x%08x\n", tc->z2, tc->z2);
+
+	if (tsc->max_bits == MAX_8BIT) {
+		tc->x  = (tc->x  << 1) & 0x00FF;
+		tc->y  = (tc->y  << 1) & 0x00FF;
+		tc->z1 = (tc->z1 << 1) & 0x00FF;
+		tc->z2 = (tc->z2 << 1) & 0x00FF;
+	} else if (tsc->max_bits == MAX_12BIT) {
+		tc->x  = (be16_to_cpu(tc->x)  << 1) >> 4 & 0x0FFF;
+		tc->y  = (be16_to_cpu(tc->y)  << 1) >> 4 & 0x0FFF;
+		tc->z1 = (be16_to_cpu(tc->z1) << 1) >> 4 & 0x0FFF;
+		tc->z2 = (be16_to_cpu(tc->z2) << 1) >> 4 & 0x0FFF;
+	} else {
+		dev_err(&tsc->spi->dev, "invalid number of bits expected\n");
+	}
+
+	dev_dbg(&tsc->spi->dev, "data: x  %05u 0x%08x\n", tc->x, tc->x);
+	dev_dbg(&tsc->spi->dev, "data: y  %05u 0x%08x\n", tc->y, tc->y);
+	dev_dbg(&tsc->spi->dev, "data: z1 %05u 0x%08x\n", tc->z1, tc->z1);
+	dev_dbg(&tsc->spi->dev, "data: z2 %05u 0x%08x\n", tc->z2, tc->z2);
+}
+
+static uint32_t tsc2008_calculate_pressure(struct tsc2008 *tsc, struct ts_event *tc)
+{
+	uint32_t rt = 0;
+
+	/* range filtering */
+	if (tc->x == (tsc->max_bits - 1))
+		tc->x = 0;
+
+	if (likely(tc->x && tc->z1)) {
+		rt = (tc->z2 / tc->z1) - 1;
+		rt *= tc->y * tsc->x_plate_ohms;
+		rt /= tsc->max_bits;
+
+		if (tsc->max_bits == MAX_8BIT)
+			rt &= 0x00FF;
+		else
+			rt &= 0x0FFF;
+	}
+
+	dev_dbg(&tsc->spi->dev, "pressure: %05u 0x%08x\n", rt, rt);
+
+	return rt;
+}
+
+static void tsc2008_send_up_event(struct tsc2008 *tsc)
+{
+	struct input_dev *input = tsc->input;
+
+	dev_dbg(&tsc->spi->dev, "UP\n");
+
+	input_report_key(input, BTN_TOUCH, 0);
+	input_report_abs(input, ABS_PRESSURE, 0);
+	input_sync(input);
+}
+
+static void tsc2008_work(struct work_struct *work)
+{
+	struct tsc2008 *ts =
+		container_of(to_delayed_work(work), struct tsc2008, work);
+	struct ts_event tc;
+	uint32_t rt;
+
+	/*
+	 * NOTE: We can't rely on the pressure to determine the pen down
+	 * state, even though this controller has a pressure sensor.
+	 * The pressure value can fluctuate for quite a while after
+	 * lifting the pen and in some cases may not even settle at the
+	 * expected value.
+	 *
+	 * The only safe way to check for the pen up condition is in the
+	 * work function by reading the pen signal state (it's a GPIO
+	 * and IRQ). Unfortunately such callback is not always available,
+	 * in that case we have rely on the pressure anyway.
+	 */
+	if (ts->get_pendown_state) {
+		if (unlikely(!ts->get_pendown_state())) {
+			dev_dbg(&ts->spi->dev, "detected pen UP via GPIO read\n");
+
+			tsc2008_send_up_event(ts);
+			ts->pendown = false;
+			goto out;
+		}
+
+		dev_dbg(&ts->spi->dev, "pen is still down\n");
+	} else {
+		dev_dbg(&ts->spi->dev, "get_pendown_state undefined, "
+				"using pressure instead\n");
+	}
+
+	tsc2008_read_values(ts, &tc);
+
+	rt = tsc2008_calculate_pressure(ts, &tc);
+	if (rt >= ts->max_bits) {
+		/*
+		 * Sample found inconsistent by debouncing or pressure is
+		 * beyond the maximum. Don't report it to user space,
+		 * repeat at least once more the measurement.
+		 */
+		dev_dbg(&ts->spi->dev, "ignored pressure %d\n", rt);
+		goto out;
+	}
+
+	if (rt) {
+		struct input_dev *input = ts->input;
+
+		if (!ts->pendown) {
+			dev_dbg(&ts->spi->dev, "DOWN\n");
+
+			input_report_key(input, BTN_TOUCH, 1);
+			ts->pendown = true;
+		}
+
+		input_report_abs(input, ABS_X, tc.x);
+		input_report_abs(input, ABS_Y, tc.y);
+		input_report_abs(input, ABS_PRESSURE, rt);
+
+		input_sync(input);
+
+		dev_dbg(&ts->spi->dev, "point(%4d,%4d), pressure (%4u)\n",
+			tc.x, tc.y, rt);
+	} else if (!ts->get_pendown_state && ts->pendown) {
+		/*
+		 * We don't have callback to check pendown state, so we
+		 * have to assume that since pressure reported is 0 the
+		 * pen was lifted up.
+		 */
+		tsc2008_send_up_event(ts);
+		ts->pendown = false;
+	} else {
+		dev_dbg(&ts->spi->dev, "no change in pen state detected\n");
+	}
+
+ out:
+	if (ts->pendown)
+		schedule_delayed_work(&ts->work,
+				      msecs_to_jiffies(TS_POLL_PERIOD));
+	else
+		enable_irq(ts->irq);
+}
+
+static irqreturn_t tsc2008_irq(int irq, void *handle)
+{
+	struct tsc2008 *ts = handle;
+
+	if (!ts->get_pendown_state || likely(ts->get_pendown_state())) {
+		disable_irq_nosync(ts->irq);
+		schedule_delayed_work(&ts->work,
+				      msecs_to_jiffies(TS_POLL_DELAY));
+	}
+
+	if (ts->clear_penirq)
+		ts->clear_penirq();
+
+	return IRQ_HANDLED;
+}
+
+static void tsc2008_free_irq(struct tsc2008 *ts)
+{
+	free_irq(ts->irq, ts);
+	if (cancel_delayed_work_sync(&ts->work)) {
+		/*
+		 * Work was pending, therefore we need to enable
+		 * IRQ here to balance the disable_irq() done in the
+		 * interrupt handler.
+		 */
+		enable_irq(ts->irq);
+	}
+}
+
+static int __devinit tsc2008_probe(struct spi_device *spi)
+{
+	struct tsc2008 *ts;
+	struct tsc2008_platform_data *pdata = spi->dev.platform_data;
+	struct input_dev *input_dev;
+	struct spi_transfer *x;
+	uint8_t tx_buf;
+	int num_bytes_rx;
+	int err;
+
+	if (!pdata) {
+		dev_err(&spi->dev, "platform data is required!\n");
+		return -EINVAL;
+	}
+
+	if (!pdata->get_pendown_state) {
+		dev_err(&spi->dev, "pendown function is required!\n");
+		return -EINVAL;
+	}
+
+	if (!pdata->bit_mode) {
+		dev_dbg(&spi->dev, "bit mode not specified, using 8-bit mode\n");
+		pdata->bit_mode = 8;
+	} else if (pdata->bit_mode != 8 && pdata->bit_mode != 12) {
+		dev_err(&spi->dev, "invalid bit mode specified, 8-bit or 12-bit expected\n");
+		return -EINVAL;
+	}
+
+	err = spi_setup(spi);
+	if (err) {
+		dev_err(&spi->dev, "unable to initialize spi\n");
+		return -ENODEV;
+	}
+
+	ts = kzalloc(sizeof(struct tsc2008), GFP_KERNEL);
+	input_dev = input_allocate_device();
+	if (!ts || !input_dev) {
+		err = -ENOMEM;
+		goto err_free_mem;
+	}
+
+	dev_set_drvdata(&spi->dev, ts);
+	ts->spi = spi;
+	ts->irq = spi->irq;
+	ts->input = input_dev;
+	INIT_DELAYED_WORK(&ts->work, tsc2008_work);
+
+	ts->model             = pdata->model;
+	ts->x_plate_ohms      = pdata->x_plate_ohms;
+	ts->max_bits          = 1 << pdata->bit_mode;	/* Match either MAX_8BIT or MAX_12BIT */
+	ts->get_pendown_state = pdata->get_pendown_state;
+	ts->clear_penirq      = pdata->clear_penirq;
+
+	snprintf(ts->phys, sizeof(ts->phys),
+		 "%s/input0", dev_name(&spi->dev));
+
+	input_dev->name = "TSC2008 Touchscreen";
+	input_dev->dev.parent = &spi->dev;
+	input_dev->phys = ts->phys;
+
+	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
+	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
+
+	input_set_abs_params(input_dev, ABS_X, 0, ts->max_bits, 0, 0);
+	input_set_abs_params(input_dev, ABS_Y, 0, ts->max_bits, 0, 0);
+	input_set_abs_params(input_dev, ABS_PRESSURE, 0, ts->max_bits, 0, 0);
+
+	if (pdata->init_platform_hw)
+		pdata->init_platform_hw();
+
+	err = request_irq(ts->irq, tsc2008_irq, 0,
+			spi->dev.driver->name, ts);
+	if (err < 0) {
+		dev_err(&spi->dev, "irq %d busy?\n", ts->irq);
+		goto err_free_mem;
+	}
+
+	/* Setup SPI variables */
+	spi_message_init(&ts->msg);
+
+	/*
+	 * TSC2008_MEASURE_X and TSC2008_MEASURE_Y are intentionally
+	 * swapped below.
+	 */
+	if (ts->max_bits == MAX_8BIT) {
+		dev_dbg(&spi->dev, "using 8-bit mode\n");
+		num_bytes_rx = 1;
+		ts->tx_buf[0] = ADC_ON_8BIT | TSC2008_MEASURE_Y;
+		ts->tx_buf[1] = ADC_ON_8BIT | TSC2008_MEASURE_X;
+		ts->tx_buf[2] = ADC_ON_8BIT | TSC2008_MEASURE_Z1;
+		ts->tx_buf[3] = ADC_ON_8BIT | TSC2008_MEASURE_Z2;
+	} else {
+		dev_dbg(&spi->dev, "using 12-bit mode\n");
+		num_bytes_rx = 2;
+		ts->tx_buf[0] = ADC_ON_12BIT | TSC2008_MEASURE_Y;
+		ts->tx_buf[1] = ADC_ON_12BIT | TSC2008_MEASURE_X;
+		ts->tx_buf[2] = ADC_ON_12BIT | TSC2008_MEASURE_Z1;
+		ts->tx_buf[3] = ADC_ON_12BIT | TSC2008_MEASURE_Z2;
+	}
+
+	x = &ts->xfer[0];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[0];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[1];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[2];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[1];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[3];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[4];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[2];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[5];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	x->delay_usecs = RX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[6];
+	memset(x, 0, sizeof(*x));
+	x->tx_buf = &ts->tx_buf[3];
+	x->len = 1;
+	x->delay_usecs = TX_DELAY;
+	spi_message_add_tail(x, &ts->msg);
+
+	x = &ts->xfer[7];
+	memset(x, 0, sizeof(*x));
+	x->len = num_bytes_rx;
+	spi_message_add_tail(x, &ts->msg);
+
+	/*
+	 * Reset the controller once using the sequence described
+	 * on page 29 of the TSC2008 manual (March 2009 revision)
+	 */
+	tx_buf = TSC2008_START_CMD
+			| TSC2008_SETUP
+			| TSC2008_SOFTWARE_RESET;
+	err = spi_write(spi, &tx_buf, 1);
+	if (err < 0)
+		goto err_free_irq;
+	udelay(1);
+
+	/* Configure the pull-up resistor and MAV settings */
+	tx_buf = TSC2008_START_CMD
+			| TSC2008_SETUP
+			| TSC2008_USE_90K
+			| TSC2008_DISABLE_MAV;
+	err = spi_write(spi, &tx_buf, 1);
+	if (err < 0)
+		goto err_free_irq;
+
+	/* Finish input device registration */
+	err = input_register_device(input_dev);
+	if (err)
+		goto err_free_irq;
+
+	return 0;
+
+ err_free_irq:
+	tsc2008_free_irq(ts);
+	if (pdata->exit_platform_hw)
+		pdata->exit_platform_hw();
+ err_free_mem:
+	input_free_device(input_dev);
+	kfree(ts);
+	return err;
+}
+
+static int __devexit tsc2008_remove(struct spi_device *spi)
+{
+	struct tsc2008 *ts = dev_get_drvdata(&spi->dev);
+	struct tsc2008_platform_data *pdata = spi->dev.platform_data;
+
+	tsc2008_free_irq(ts);
+
+	if (pdata->exit_platform_hw)
+		pdata->exit_platform_hw();
+
+	input_unregister_device(ts->input);
+	kfree(ts);
+
+	dev_dbg(&spi->dev, "unregistered touchscreen\n");
+
+	return 0;
+}
+
+static struct spi_driver tsc2008_driver = {
+	.driver = {
+		.owner	= THIS_MODULE,
+		.name	= "tsc2008",
+		.bus	= &spi_bus_type,
+	},
+	.probe		= tsc2008_probe,
+	.remove		= __devexit_p(tsc2008_remove),
+};
+
+static int __init tsc2008_init(void)
+{
+	return spi_register_driver(&tsc2008_driver);
+}
+
+static void __exit tsc2008_exit(void)
+{
+	spi_unregister_driver(&tsc2008_driver);
+}
+
+module_init(tsc2008_init);
+module_exit(tsc2008_exit);
+
+MODULE_AUTHOR("Chris Verges <chrisv@cyberswitching.com>, "
+		"Robert Mehranfar <robertme@earthlink.net>");
+MODULE_DESCRIPTION("TSC2008 Touchscreen Driver");
+MODULE_LICENSE("GPL");
Index: drivers/input/touchscreen/Makefile
===================================================================
--- a/drivers/input/touchscreen/Makefile	(.../tags/linux-2.6.32.1)	(revision 184)
+++ b/drivers/input/touchscreen/Makefile	(.../branches/at91sam9263cs-2.6.32.1)	(revision 184)
@@ -30,6 +30,7 @@
 obj-$(CONFIG_TOUCHSCREEN_TOUCHRIGHT)	+= touchright.o
 obj-$(CONFIG_TOUCHSCREEN_TOUCHWIN)	+= touchwin.o
 obj-$(CONFIG_TOUCHSCREEN_TSC2007)	+= tsc2007.o
+obj-$(CONFIG_TOUCHSCREEN_TSC2008)	+= tsc2008.o
 obj-$(CONFIG_TOUCHSCREEN_UCB1400)	+= ucb1400_ts.o
 obj-$(CONFIG_TOUCHSCREEN_WACOM_W8001)	+= wacom_w8001.o
 obj-$(CONFIG_TOUCHSCREEN_WM97XX)	+= wm97xx-ts.o

             reply	other threads:[~2010-01-20 19:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-20 19:39 Chris Verges [this message]
2010-01-26  9:38 ` [PATCH 1/1] linux-2.6.32-tsc2008.patch Dmitry Torokhov
2010-01-26 15:43   ` Chris Verges

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=68FBE0F3CE97264395875AC1C468F22C220789@mail03.cyberswitching.local \
    --to=chrisv@cyberswitching.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).