From mboxrd@z Thu Jan 1 00:00:00 1970 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 BB298C4332F for ; Thu, 2 Sep 2021 21:14:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9FFAF60FDA for ; Thu, 2 Sep 2021 21:14:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346577AbhIBVPk (ORCPT ); Thu, 2 Sep 2021 17:15:40 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:48245 "EHLO relay10.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232087AbhIBVPj (ORCPT ); Thu, 2 Sep 2021 17:15:39 -0400 Received: (Authenticated sender: miquel.raynal@bootlin.com) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 82BE5240002; Thu, 2 Sep 2021 21:14:38 +0000 (UTC) From: Miquel Raynal To: Jonathan Cameron , Lars-Peter Clausen , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Thomas Petazzoni , Nuno Sa , Miquel Raynal Subject: [PATCH v2 00/16] Bring external triggers support to MAX1027-like ADCs Date: Thu, 2 Sep 2021 23:14:21 +0200 Message-Id: <20210902211437.503623-1-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Until now the max1027.c driver, which handles 10-bit devices (max10xx) and 12-bit devices (max12xx), only supported hardware triggers. When a hardware trigger is not wired it is very convenient to trigger periodic conversions with timers or on userspace demand with a sysfs trigger. Overall, when several values are needed at the same time, using triggers and buffers improves quite a lot the performances. This series does a bit of cleaning/code reorganization before actually bringing more flexibility to the driver, up to the point where it is possible to use an external trigger (hardware or software) even without the IRQ line wired. This series is currently based on a v4.14-rc1 kernel and the external triggering mechanism has been tested on a custom board where the IRQ and the EOC lines have not been populated. How to test sysfs triggers: echo 0 > /sys/bus/iio/devices/iio_sysfs_trigger/add_trigger cat /sys/bus/iio/devices/iio_sysfs_trigger/trigger0/name > \ /sys/bus/iio/devices/iio:device0/trigger/current_trigger echo 1 > /sys/bus/iio/devices/iio:device0/scan_elements/in_voltageX_en echo 1 > /sys/bus/iio/devices/iio:device0/scan_elements/in_voltageY_en echo 1 > /sys/bus/iio/devices/iio:device0/buffer/enable cat /dev/iio\:device0 > /tmp/data & echo 1 > /sys/bus/iio/devices/trigger0/trigger_now od -t x1 /tmp/data Cheers, Miquèl Changes in v2: [All] * Overall quite a few changes, I'll try to list them here but I made significant changes on the last few commits so it's hard to have an exhaustive and detailed list. * Simplified the return statements as advised by Nuno. * Dropped useless debug messages. * Used iio_trigger_validate_own_device() instead of an internal variable when possible. * Added Nuno's Reviewed-by's when relevant. [Created a new patch to fix the style] [Created a new patch to ensure st->buffer is DMA-safe] [Push only the requested samples] * Dropped a useless check over active_scan_mask mask in ->set_trigger_state(). * Dropped the st->buffer indirection with a missing __be16 type. * Do not push only the requested samples in the IIO buffers, rely on the core to handle this by providing additional 'available_scan_masks' instead of dropping this entry from the initial setup. [Create a helper to configure the trigger] * Avoided messing with new lines. * Dropped cnvst_trigger, used a function parameter instead. [Prevent single channel accesses during buffer reads] * Used iio_device_claim_direct_mode() when relevant. * Dropped the extra iio_buffer_enabled() call. * Prevented returning with a mutex held. [Introduce an end of conversion helper] * Moved the check against active scan mask to the very end of the series where we actually make use of it. * Moved the Queue declaration to another patch. [Dropped the patch: Prepare re-using the EOC interrupt] [Consolidate the end of conversion helper] * Used a dynamic completion object instead of a static queue. * Reworded the commit message to actually describe what this commit does. [Support software triggers] * Dropped the patch and replaced it with something hopefully close to what Jonathan and Nuno described in their reviews. [Enable software triggers to be used without IRQ] * Wrote a more generic commit message, not focusing on software triggers. Miquel Raynal (16): iio: adc: max1027: Fix style iio: adc: max1027: Drop extra warning message iio: adc: max1027: Drop useless debug messages iio: adc: max1027: Avoid device managed allocators for DMA purposes iio: adc: max1027: Minimize the number of converted channels iio: adc: max1027: Rename a helper iio: adc: max1027: Create a helper to enable/disable the cnvst trigger iio: adc: max1027: Simplify the _set_trigger_state() helper iio: adc: max1027: Ensure a default cnvst trigger configuration iio: adc: max1027: Create a helper to configure the channels to scan iio: adc: max1027: Prevent single channel accesses during buffer reads iio: adc: max1027: Separate the IRQ handler from the read logic iio: adc: max1027: Introduce an end of conversion helper iio: adc: max1027: Don't just sleep when the EOC interrupt is available iio: adc: max1027: Add support for external triggers iio: adc: max1027: Don't reject external triggers when there is no IRQ drivers/iio/adc/max1027.c | 300 ++++++++++++++++++++++++++++---------- 1 file changed, 219 insertions(+), 81 deletions(-) -- 2.27.0