linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND 0/8] TI Touchscreen driver updates and Support for TSC/ADC MFD driver
@ 2012-10-16  7:25 Patil, Rachna
  2012-10-16  7:25 ` [PATCH RESEND 1/8] input: TSC: ti_tscadc: Correct register usage Patil, Rachna
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Patil, Rachna @ 2012-10-16  7:25 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-input-u79uwXL29TY76Z2rM5mHXA,
	linux-iio-u79uwXL29TY76Z2rM5mHXA
  Cc: Samuel Ortiz, Dmitry Torokhov, Dmitry Torokhov, Jonathan Cameron,
	Patil, Rachna

This patch set is a cumulative set of [1] and [2] sent earlier.
I have merged the patch set so that the MFD patches apply without
any issues.

Also Note that there are no code changes in either of the patch set,
only rebased on top of linux-next to make sure that all the patches
apply without any conflicts.

This patch set has been tested on AM335x EVM.

[1] "[PATCH 0/4] input: TSC: ti_tscadc: TI Touchscreen driver updates"
(http://www.spinics.net/lists/linux-input/msg22107.html)

[2] "[PATCH v5 0/4] Support for TSC/ADC MFD driver"
(http://www.spinics.net/lists/linux-input/msg22832.html)

Patil, Rachna (8):
  input: TSC: ti_tscadc: Correct register usage
  input: TSC: ti_tscadc: Add Step configuration as platform data
  input: TSC: ti_tscadc: set FIFO0 threshold Interrupt
  input: TSC: ti_tscadc: Remove definition of End Of Interrupt register
  input: TSC: ti_tscadc: Rename the existing touchscreen driver
  MFD: ti_tscadc: Add support for TI's TSC/ADC MFDevice
  input: TSC: ti_tsc: Convert TSC into a MFDevice
  IIO : ADC: tiadc: Add support of TI's ADC driver

 drivers/iio/adc/Kconfig                     |    7 +
 drivers/iio/adc/Makefile                    |    1 +
 drivers/iio/adc/ti_am335x_adc.c             |  260 ++++++++++++++
 drivers/input/touchscreen/Kconfig           |    6 +-
 drivers/input/touchscreen/Makefile          |    2 +-
 drivers/input/touchscreen/ti_am335x_tsc.c   |  398 ++++++++++++++++++++++
 drivers/input/touchscreen/ti_tscadc.c       |  486 ---------------------------
 drivers/mfd/Kconfig                         |   11 +
 drivers/mfd/Makefile                        |    1 +
 drivers/mfd/ti_am335x_tscadc.c              |  277 +++++++++++++++
 include/linux/input/ti_am335x_tsc.h         |   23 ++
 include/linux/input/ti_tscadc.h             |   17 -
 include/linux/mfd/ti_am335x_tscadc.h        |  152 +++++++++
 include/linux/platform_data/ti_am335x_adc.h |   14 +
 14 files changed, 1148 insertions(+), 507 deletions(-)
 create mode 100644 drivers/iio/adc/ti_am335x_adc.c
 create mode 100644 drivers/input/touchscreen/ti_am335x_tsc.c
 delete mode 100644 drivers/input/touchscreen/ti_tscadc.c
 create mode 100644 drivers/mfd/ti_am335x_tscadc.c
 create mode 100644 include/linux/input/ti_am335x_tsc.h
 delete mode 100644 include/linux/input/ti_tscadc.h
 create mode 100644 include/linux/mfd/ti_am335x_tscadc.h
 create mode 100644 include/linux/platform_data/ti_am335x_adc.h

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-11-06  4:47 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-16  7:25 [PATCH RESEND 0/8] TI Touchscreen driver updates and Support for TSC/ADC MFD driver Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 1/8] input: TSC: ti_tscadc: Correct register usage Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 4/8] input: TSC: ti_tscadc: Remove definition of End Of Interrupt register Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 5/8] input: TSC: ti_tscadc: Rename the existing touchscreen driver Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 6/8] MFD: ti_tscadc: Add support for TI's TSC/ADC MFDevice Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 7/8] input: TSC: ti_tsc: Convert TSC into a MFDevice Patil, Rachna
2012-10-16  7:25 ` [PATCH RESEND 8/8] IIO : ADC: tiadc: Add support of TI's ADC driver Patil, Rachna
2012-10-16 17:42 ` [PATCH RESEND 0/8] TI Touchscreen driver updates and Support for TSC/ADC MFD driver Dmitry Torokhov
2012-10-17  6:11   ` Patil, Rachna
     [not found]   ` <20121016174207.GA1833-WlK9ik9hQGAhIp7JRqBPierSzoNAToWh@public.gmane.org>
2012-10-29  7:13     ` Patil, Rachna
2012-10-22 10:46 ` Patil, Rachna
     [not found] ` <1350372345-27108-1-git-send-email-rachna-l0cyMroinI0@public.gmane.org>
2012-10-16  7:25   ` [PATCH RESEND 2/8] input: TSC: ti_tscadc: Add Step configuration as platform data Patil, Rachna
2012-10-16  7:25   ` [PATCH RESEND 3/8] input: TSC: ti_tscadc: set FIFO0 threshold Interrupt Patil, Rachna
2012-11-05 22:55   ` [PATCH RESEND 0/8] TI Touchscreen driver updates and Support for TSC/ADC MFD driver Samuel Ortiz
2012-11-06  4:47     ` Patil, Rachna

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).