From patchwork Sun Jul 19 22:11:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artur Rojek X-Patchwork-Id: 11672675 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 09A84913 for ; Sun, 19 Jul 2020 22:12:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E52D6207FC for ; Sun, 19 Jul 2020 22:12:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726284AbgGSWMX (ORCPT ); Sun, 19 Jul 2020 18:12:23 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:57701 "EHLO relay9-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726156AbgGSWMX (ORCPT ); Sun, 19 Jul 2020 18:12:23 -0400 X-Originating-IP: 195.189.32.242 Received: from pc.localdomain (unknown [195.189.32.242]) (Authenticated sender: contact@artur-rojek.eu) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id C6362FF805; Sun, 19 Jul 2020 22:12:18 +0000 (UTC) From: Artur Rojek To: Dmitry Torokhov , Rob Herring , Mark Rutland , Jonathan Cameron , Paul Cercueil , Andy Shevchenko Cc: Heiko Stuebner , Ezequiel Garcia , linux-input@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Artur Rojek Subject: [PATCH v8 0/2] input: ADC joystick driver & DT bindings Date: Mon, 20 Jul 2020 00:11:01 +0200 Message-Id: <20200719221103.91644-1-contact@artur-rojek.eu> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Hi all, this series is a continuation of adc-joystick changes split from: https://lore.kernel.org/linux-iio/20200709152200.10039-1-contact@artur-rojek.eu/ Rob, the bindings example in patch 1/2 depends on changes introduced in another patchset, still to be merged: https://lore.kernel.org/linux-iio/20200719205307.87385-4-contact@artur-rojek.eu/ Your scripts will most likely fail to validate this. You have already reviewed this patch when it was still part of the aforementioned series. Cheers, Artur Artur Rojek (2): dt-bindings: input: Add docs for ADC driven joystick. input: joystick: Add ADC attached joystick driver. .../bindings/input/adc-joystick.yaml | 121 +++++++++ drivers/input/joystick/Kconfig | 10 + drivers/input/joystick/Makefile | 1 + drivers/input/joystick/adc-joystick.c | 253 ++++++++++++++++++ 4 files changed, 385 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/adc-joystick.yaml create mode 100644 drivers/input/joystick/adc-joystick.c