From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: [PATCH v4 0/5] add tnetv107x input drivers Date: Mon, 20 Sep 2010 12:35:10 -0700 Message-ID: <874odkw6mp.fsf@deeprootsystems.com> References: <1285000004-9464-1-git-send-email-cyril@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mail-pz0-f46.google.com ([209.85.210.46]:47113 "EHLO mail-pz0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932070Ab0ITTfO (ORCPT ); Mon, 20 Sep 2010 15:35:14 -0400 Received: by pzk34 with SMTP id 34so1249284pzk.19 for ; Mon, 20 Sep 2010 12:35:14 -0700 (PDT) In-Reply-To: <1285000004-9464-1-git-send-email-cyril@ti.com> (Cyril Chemparathy's message of "Mon, 20 Sep 2010 12:26:39 -0400") Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Cyril Chemparathy Cc: linux-input@vger.kernel.org, davinci-linux-open-source@linux.davincidsp.com, shubhrajyoti@ti.com, dmitry.torokhov@gmail.com Cyril Chemparathy writes: > Texas Instruments' TNETV107X is an ARM1176 based SoC, with on-chip > touchscreen and keypad controllers. This patch series adds drivers for these > controllers. > > Changes between v1 and v2: > 1. Cleaned up platform data needs by reusing matrix keypad pdata > 2. Eliminated calibration code from touch driver > 3. Relocated h/w init code to open and close > 4. Other minor cleanups > > Changes between v2 and v3: > 1. Merged keycodes alloc into keypad data > 2. Moved irq hookup to probe from open > 3. Other minor cleanups > > Changes between v3 and v4: > 1. Locking between hardirqs for keypad driver > > Cyril Chemparathy (5): > input: add driver for tnetv107x on-chip keypad controller > davinci: add tnetv107x keypad platform device > davinci: add keypad config for tnetv107x evm board > input: add driver for tnetv107x touchscreen controller > davinci: add tnetv107x touchscreen platform device Thanks, queuing this series for 2.6.37 in davinci-next. Kevin > arch/arm/mach-davinci/board-tnetv107x-evm.c | 56 ++++ > arch/arm/mach-davinci/devices-tnetv107x.c | 50 +++ > arch/arm/mach-davinci/include/mach/tnetv107x.h | 3 + > drivers/input/keyboard/Kconfig | 9 + > drivers/input/keyboard/Makefile | 1 + > drivers/input/keyboard/tnetv107x-keypad.c | 340 ++++++++++++++++++++ > drivers/input/touchscreen/Kconfig | 9 + > drivers/input/touchscreen/Makefile | 1 + > drivers/input/touchscreen/tnetv107x-ts.c | 396 ++++++++++++++++++++++++ > 9 files changed, 865 insertions(+), 0 deletions(-) > create mode 100644 drivers/input/keyboard/tnetv107x-keypad.c > create mode 100644 drivers/input/touchscreen/tnetv107x-ts.c