From patchwork Sun Apr 26 17:47:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TWljaGHFgiBNaXJvc8WCYXc=?= X-Patchwork-Id: 207913 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 78A29C54FCB for ; Sun, 26 Apr 2020 17:47:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5B3A02080C for ; Sun, 26 Apr 2020 17:47:52 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=rere.qmqm.pl header.i=@rere.qmqm.pl header.b="Rax2tpAD" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726165AbgDZRrv (ORCPT ); Sun, 26 Apr 2020 13:47:51 -0400 Received: from rere.qmqm.pl ([91.227.64.183]:18140 "EHLO rere.qmqm.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726151AbgDZRrv (ORCPT ); Sun, 26 Apr 2020 13:47:51 -0400 Received: from remote.user (localhost [127.0.0.1]) by rere.qmqm.pl (Postfix) with ESMTPSA id 499Fjx1ksvzDY; Sun, 26 Apr 2020 19:47:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=rere.qmqm.pl; s=1; t=1587923269; bh=WFWyeuvyS0XSiMmrWNj2rAQCrrQ9fWUPrDCDK8UQR9Y=; h=Date:From:Subject:To:Cc:From; b=Rax2tpADitwD/ZVwYfEIq+4N4t5R89p1/rPHiS2ZCGo+LqvK4gvVB5ydKRtsmNw/5 SZ+YI54TYri6UsMNwruO7LWoPZOgIMCam8ZS9B4KAGifeR/FgYPO/Xg8lcTSO7ZKtj HQSXUCSBPdBYlm0a6G2PJMCvd3LC4kG3aI9D3A/fdlC1MkLPoKRwUu/iaxEeLNFk9D FVeftcneKLug2KyoJXqCpJNlGcjWOZ+p5MYTAd9eDuyKU/F6X3duNfwww8rzR2O8ed ZpnsaqWswin4AJ/uMWXyZmBFrT6gUVDMBOjgbzgeXbf6MaxSh4caPbUR3SGElIQ6iU HYtjUgAfal+WA== X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.102.2 at mail Date: Sun, 26 Apr 2020 19:47:48 +0200 Message-Id: From: =?utf-8?b?TWljaGHFgiBNaXJvc8WCYXc=?= Subject: [PATCH v5 00/10] input: elants: Support Asus TF300T touchscreen MIME-Version: 1.0 To: David Heidelberg , Dmitry Osipenko , Dmitry Torokhov , Henrik Rydberg , James Chen , Johnny Chuang , Rob Herring , Scott Liu Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org This series cleans up the driver a bit and implements changes needed to support EKTF3624-based touchscreen used in Asus TF300T and similar Tegra3-based tablets. --- v2: extended with Dmitry's patches (replaced v1 patches 3 and 4) v3: rebased for v5.7-rc1 v4: rebased onto v5.7-rc2+ (current Linus' master) update "remove unused axes" and "refactor elants_i2c_execute_command()" patches after review add David's patch converting DT binding to YAML v5: rebased onto dtor/input/for-linus --- David Heidelberg (1): dt-bindings: input: touchscreen: elants_i2c: convert to YAML Dmitry Osipenko (3): input: elants: support 0x66 reply opcode for reporting touches dt-bindings: input: elants-i2c: Document common touchscreen properties dt-bindings: input: elants-i2c: Document eKTF3624 Michał Mirosław (6): input: elants: document some registers and values input: elants: support old touch report format input: elants: remove unused axes input: elants: override touchscreen info with DT properties input: elants: refactor elants_i2c_execute_command() input: elants: read touchscreen size for EKTF3624 .../devicetree/bindings/input/elants_i2c.txt | 34 -- .../input/touchscreen/elan,elants_i2c.yaml | 69 ++++ drivers/input/touchscreen/elants_i2c.c | 380 +++++++++++------- 3 files changed, 314 insertions(+), 169 deletions(-) delete mode 100644 Documentation/devicetree/bindings/input/elants_i2c.txt create mode 100644 Documentation/devicetree/bindings/input/touchscreen/elan,elants_i2c.yaml