From patchwork Thu Dec 20 20:42:55 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Vasut X-Patchwork-Id: 10739575 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1ED9C924 for ; Thu, 20 Dec 2018 20:43:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0C56B28BE3 for ; Thu, 20 Dec 2018 20:43:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F1E7A28C04; Thu, 20 Dec 2018 20:43:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 662CE28B4A for ; Thu, 20 Dec 2018 20:43:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732832AbeLTUnT (ORCPT ); Thu, 20 Dec 2018 15:43:19 -0500 Received: from mail-out.m-online.net ([212.18.0.10]:51818 "EHLO mail-out.m-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730639AbeLTUnS (ORCPT ); Thu, 20 Dec 2018 15:43:18 -0500 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 43LNxw3Xhcz1qtPb; Thu, 20 Dec 2018 21:43:16 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 43LNxw1ztJz1qqkv; Thu, 20 Dec 2018 21:43:16 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id O_CRNiiVTJry; Thu, 20 Dec 2018 21:43:15 +0100 (CET) X-Auth-Info: DrIBc5M70v3iqRnb8FrcbBI4viVvLThaS25jP0Vmxjc= Received: from kurokawa.lan (ip-86-49-110-70.net.upcbroadband.cz [86.49.110.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Thu, 20 Dec 2018 21:43:15 +0100 (CET) From: Marek Vasut To: linux-input@vger.kernel.org Cc: Marek Vasut , Dmitry Torokhov , Henrik Rydberg , Olivier Sobrie , Philipp Puschmann Subject: [PATCH V2 00/10] input: touchscreen: ili210x: Add ILI2511 support Date: Thu, 20 Dec 2018 21:42:55 +0100 Message-Id: <20181220204305.28807-1-marex@denx.de> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patchset cleans up the ILI201x driver and adds support for ILI2511. Marek Vasut (10): input: touchscreen: ili210x: Add DT binding document input: touchscreen: ili210x: Drop platform data support input: touchscreen: ili210x: Drop get_pendown_state input: touchscreen: ili210x: Convert to devm_ functions input: touchscreen: ili210x: Convert to threaded IRQ input: touchscreen: ili210x: Add reset GPIO support input: touchscreen: ili210x: Rework the touchscreen sample processing input: touchscreen: ili210x: Reorder probe input: touchscreen: ili210x: Add OF match table input: touchscreen: ili210x: Add ILI251X support .../bindings/input/ilitek,ili2xxx.txt | 25 ++ drivers/input/touchscreen/ili210x.c | 254 ++++++++++++------ include/linux/input/ili210x.h | 11 - 3 files changed, 203 insertions(+), 87 deletions(-) create mode 100644 Documentation/devicetree/bindings/input/ilitek,ili2xxx.txt delete mode 100644 include/linux/input/ili210x.h Cc: Dmitry Torokhov Cc: Henrik Rydberg Cc: Olivier Sobrie Cc: Philipp Puschmann To: linux-input@vger.kernel.org