From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755231AbYCTJkP (ORCPT ); Thu, 20 Mar 2008 05:40:15 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753044AbYCTJkD (ORCPT ); Thu, 20 Mar 2008 05:40:03 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:37913 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752620AbYCTJkA (ORCPT ); Thu, 20 Mar 2008 05:40:00 -0400 Date: Thu, 20 Mar 2008 09:39:58 +0000 From: Mark Brown To: Andrew Morton , Dmitry Torokhov , Jiri Kosina Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Hans-Christian Egtvedt , Liam Girdwood , Graeme Gregory , Dmitry Baryshkov , Rodolfo Giometti , Russell King , Marc Kleine-Budde , Pete MacKay , Ian Molton , Vince Sanders , Andrew Zabolotny Subject: WM97xx touchscreen drivers Message-ID: <20080320093958.GA8101@rakim.wolfsonmicro.main> Mail-Followup-To: Andrew Morton , Dmitry Torokhov , Jiri Kosina , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Hans-Christian Egtvedt , Liam Girdwood , Graeme Gregory , Dmitry Baryshkov , Rodolfo Giometti , Russell King , Marc Kleine-Budde , Pete MacKay , Ian Molton , Vince Sanders , Andrew Zabolotny MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Cookie: You have no real enemies. User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch series adds support for the touchscreen controllers found in WM97xx devices. This revision of the patch series fixes a race when a pen up interrupt occurs while the touchscreen is being polled for input and adds support for use of pen down interrupts with non-accelerated reads. These changes are 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 | 772 ++++++++++++++++++++++++++ include/linux/wm97xx.h | 311 +++++++++++ 9 files changed, 2724 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