From patchwork Mon Apr 9 09:10:42 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Tissoires X-Patchwork-Id: 896192 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 40KPfw22tmz9s25 for ; Mon, 9 Apr 2018 19:11:04 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751441AbeDIJLD (ORCPT ); Mon, 9 Apr 2018 05:11:03 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:58964 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751348AbeDIJLC (ORCPT ); Mon, 9 Apr 2018 05:11:02 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DD7B94067EF0; Mon, 9 Apr 2018 09:11:01 +0000 (UTC) Received: from plouf.banquise.eu.com (ovpn-117-29.ams2.redhat.com [10.36.117.29]) by smtp.corp.redhat.com (Postfix) with ESMTP id AAE04D7E07; Mon, 9 Apr 2018 09:10:55 +0000 (UTC) From: Benjamin Tissoires To: Dmitry Torokhov Cc: kt.liao@emc.com.tw, Oliver Haessler , Benjamin Berg , Rob Herring , devicetree@vger.kernel.org, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Benjamin Tissoires Subject: [PATCH v2 0/9] Input: support for latest Lenovo thinkpads (series 80) Date: Mon, 9 Apr 2018 11:10:42 +0200 Message-Id: <20180409091051.2944-1-benjamin.tissoires@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.7]); Mon, 09 Apr 2018 09:11:01 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.7]); Mon, 09 Apr 2018 09:11:01 +0000 (UTC) for IP:'10.11.54.5' DOMAIN:'int-mx05.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'benjamin.tissoires@redhat.com' RCPT:'' Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi Dmitry, Here is the v2 of the Lenovo 80 series. Changes from v1: - included patch to convert a function to static from build bot - use of device property instead of platform data (thus the new device tree binding) BTW, KT, if you want to add your Signed-off-by on the patches, feel free to do so. You were of tremendous help :) Cheers, Benjamin Benjamin Tissoires (9): Input: synaptics - add Lenovo 80 series ids to SMBus input: elan_i2c_smbus - fix corrupted stack Input: elan_i2c - add trackstick report Input: elantech - split device info into a separate structure Input: elantech_query_info() can be static Input: elantech - query the resolution in query_info Input: elantech - add support for SMBus devices Input: elantech - detect new ICs and setup Host Notify for them input: psmouse-smbus: allow to control psmouse_deactivate .../devicetree/bindings/input/elan_i2c.txt | 1 + drivers/input/mouse/Kconfig | 12 + drivers/input/mouse/elan_i2c_core.c | 90 +++- drivers/input/mouse/elan_i2c_smbus.c | 22 +- drivers/input/mouse/elantech.c | 479 +++++++++++++++------ drivers/input/mouse/elantech.h | 69 ++- drivers/input/mouse/psmouse-base.c | 21 +- drivers/input/mouse/psmouse-smbus.c | 24 +- drivers/input/mouse/psmouse.h | 2 + drivers/input/mouse/synaptics.c | 5 +- 10 files changed, 565 insertions(+), 160 deletions(-)