WM97xx touchscreen drivers

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Andrew Morton <akpm@...>, Dmitry Torokhov <dtor@...>, Jiri Kosina <jkosina@...>
Cc: <linux-input@...>, <linux-kernel@...>, Hans-Christian Egtvedt <hcegtvedt@...>, Liam Girdwood <liam.girdwood@...>, Graeme Gregory <gg@...>, Dmitry Baryshkov <dbaryshkov@...>, Rodolfo Giometti <giometti@...>, Russell King <rmk@...>, Marc Kleine-Budde <mkl@...>, Pete MacKay <linux01@...>, Ian Molton <spyro@...>, Vince Sanders <vince@...>, Andrew Zabolotny <zap@...>
Date: Tuesday, April 1, 2008 - 6:28 am

This patch series adds support for the touchscreen controllers found in
WM97xx devices.  This revision of the series fixes some races when
closing an active device and fixes a shadowed variable.

This patch series is also available in the git repository at:

  git://opensource.wolfsonmicro.com/linux-2.6-touch upstream

Mark Brown (6):
      Core driver for WM97xx touchscreens
      Add chip driver for WM9705 touchscreen
      Add chip driver for WM9712 touchscreen
      Add chip driver for WM9713 touchscreen
      Driver for WM97xx touchscreens in streaming mode on Mainstone
      Build system and MAINTAINERS entry for WM97xx touchscreen drivers

 MAINTAINERS                                  |   10 +
 drivers/input/touchscreen/Kconfig            |   52 ++
 drivers/input/touchscreen/Makefile           |    7 +
 drivers/input/touchscreen/mainstone-wm97xx.c |  300 ++++++++++
 drivers/input/touchscreen/wm9705.c           |  352 ++++++++++++
 drivers/input/touchscreen/wm9712.c           |  461 +++++++++++++++
 drivers/input/touchscreen/wm9713.c           |  459 +++++++++++++++
 drivers/input/touchscreen/wm97xx-core.c      |  786 ++++++++++++++++++++++++++
 include/linux/wm97xx.h                       |  311 ++++++++++
 9 files changed, 2738 insertions(+), 0 deletions(-)
 create mode 100644 drivers/input/touchscreen/mainstone-wm97xx.c
 create mode 100644 drivers/input/touchscreen/wm9705.c
 create mode 100644 drivers/input/touchscreen/wm9712.c
 create mode 100644 drivers/input/touchscreen/wm9713.c
 create mode 100644 drivers/input/touchscreen/wm97xx-core.c
 create mode 100644 include/linux/wm97xx.h
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
WM97xx touchscreen drivers, Mark Brown, (Tue Apr 1, 6:28 am)
Re: WM97xx touchscreen drivers, Andrew Morton, (Tue Apr 1, 5:34 pm)
Re: WM97xx touchscreen drivers, Dmitry, (Tue Apr 1, 7:42 am)
Re: WM97xx touchscreen drivers, Mark Brown, (Tue Apr 1, 8:20 am)
[PATCH 1/6] Core driver for WM97xx touchscreens, Mark Brown, (Tue Apr 1, 6:36 am)
[PATCH 2/6] Add chip driver for WM9705 touchscreen, Mark Brown, (Tue Apr 1, 6:36 am)
[PATCH 3/6] Add chip driver for WM9712 touchscreen, Mark Brown, (Tue Apr 1, 6:36 am)
[PATCH 4/6] Add chip driver for WM9713 touchscreen, Mark Brown, (Tue Apr 1, 6:36 am)