From patchwork Wed May 19 09:42:16 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oleksij Rempel X-Patchwork-Id: 12266775 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=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 52702C4360C for ; Wed, 19 May 2021 09:42:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 294CF60FE8 for ; Wed, 19 May 2021 09:42:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345890AbhESJnz (ORCPT ); Wed, 19 May 2021 05:43:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60392 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345087AbhESJnw (ORCPT ); Wed, 19 May 2021 05:43:52 -0400 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 71E4CC061761 for ; Wed, 19 May 2021 02:42:32 -0700 (PDT) Received: from dude.hi.pengutronix.de ([2001:67c:670:100:1d::7]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ljIie-0002Bg-GQ; Wed, 19 May 2021 11:42:24 +0200 Received: from ore by dude.hi.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1ljIic-0007Np-MK; Wed, 19 May 2021 11:42:22 +0200 From: Oleksij Rempel To: Dmitry Torokhov , Rob Herring , Jonathan Cameron Cc: Oleksij Rempel , kernel@pengutronix.de, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, David Jander , devicetree@vger.kernel.org Subject: [PATCH v4 0/5] add z1 and z2 channels support for resistive-adc-touch driver Date: Wed, 19 May 2021 11:42:16 +0200 Message-Id: <20210519094221.27792-1-o.rempel@pengutronix.de> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::7 X-SA-Exim-Mail-From: ore@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-input@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org changes v4: - resistive-adc-touch: remove unused variable changes v3: - yaml: fix validation for channel names - yaml: add nodename validation changes v2: - add yaml conversion patch to this series - reword commit message for the last patch - fix possible overflow on the buffer dispatcher Oleksij Rempel (5): dt-bindings: touchscreen: validate nodename dt-bindings: touchscreen: Convert resistive-adc-touch binding to json schema dt-bindings: touchscreen: add touchscreen-x/y-plate-ohms property dt-bindings: touchscreen: resistive-adc-touch: add support for z1 and z2 channels Input: resistive-adc-touch: add support for z1 and z2 channels .../input/touchscreen/resistive-adc-touch.txt | 33 ---- .../touchscreen/resistive-adc-touch.yaml | 86 +++++++++++ .../input/touchscreen/touchscreen.yaml | 9 ++ .../input/touchscreen/resistive-adc-touch.c | 142 ++++++++++++++++-- 4 files changed, 223 insertions(+), 47 deletions(-) delete mode 100644 Documentation/devicetree/bindings/input/touchscreen/resistive-adc-touch.txt create mode 100644 Documentation/devicetree/bindings/input/touchscreen/resistive-adc-touch.yaml