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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EFDA4C10F09 for ; Sun, 10 Dec 2023 12:20:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232049AbjLJMN7 (ORCPT ); Sun, 10 Dec 2023 07:13:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40230 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229482AbjLJMN6 (ORCPT ); Sun, 10 Dec 2023 07:13:58 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F2ED5FF for ; Sun, 10 Dec 2023 04:14:04 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 27574C433C8; Sun, 10 Dec 2023 12:13:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702210444; bh=w+3+1upKrVtvIx2PiepHgbXPe0wVAPtc2OFDZJESmZE=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=EqsbGlh1t9W5pRLywQpDXzEQhqN2jiIizhpb/SN5yS99AQqoOC+kUqEs7WPVtMver X/0KIj9n7++DV8Rmh0jByMbluIO5MisALPoFI1N8ESLulVwteVUfdBizvAuw7n/IUe G01RC2bOOnA883H2Uua+cAIF6ObjxfLLUbs4HDCLtDZnb9nYdsrAn/sVc/GeYG8CoX kGY2JvB0q+oEmNOWOwRJzwhXY+KXR55vSKeuZEBJY5JHg+x+UUywHiIgyD7hJH0B8B xJU+y7EvR4J/QUBQCxO9Db54eUH/2wxKJWuCsQvHzBvVqKI4flhZwaGxw/ZfGhT62c NXMIRAUdzM1Dw== Date: Sun, 10 Dec 2023 12:13:56 +0000 From: Jonathan Cameron To: Marcelo Schmitt Cc: , , , , , , , , , , , , , , Subject: Re: [PATCH v3 03/13] iio: adc: ad7091r: Set alert bit in config register Message-ID: <20231210121356.16b8ef24@jic23-huawei> In-Reply-To: References: X-Mailer: Claws Mail 4.2.0 (GTK 3.24.38; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 7 Dec 2023 15:38:53 -0300 Marcelo Schmitt wrote: > The ad7091r-base driver sets up an interrupt handler for firing events > when inputs are either above or below a certain threshold. > However, for the interrupt signal to come from the device it must be > configured to enable the ALERT/BUSY/GPO pin to be used as ALERT, which > was not being done until now. > Enable interrupt signals on the ALERT/BUSY/GPO pin by setting the proper > bit in the configuration register. > > Signed-off-by: Marcelo Schmitt Also a fix? Feels like people expect this to work but I guess we could in theory call it a 'feature' given it never did :) Jonathan > --- > drivers/iio/adc/ad7091r-base.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/drivers/iio/adc/ad7091r-base.c b/drivers/iio/adc/ad7091r-base.c > index 0f192fbecbd4..6056a66d756c 100644 > --- a/drivers/iio/adc/ad7091r-base.c > +++ b/drivers/iio/adc/ad7091r-base.c > @@ -28,6 +28,7 @@ > #define AD7091R_REG_RESULT_CONV_RESULT(x) ((x) & 0xfff) > > /* AD7091R_REG_CONF */ > +#define AD7091R_REG_CONF_ALERT_EN BIT(4) > #define AD7091R_REG_CONF_AUTO BIT(8) > #define AD7091R_REG_CONF_CMD BIT(10) > > @@ -232,6 +233,11 @@ int ad7091r_probe(struct device *dev, const char *name, > iio_dev->channels = chip_info->channels; > > if (irq) { > + ret = regmap_update_bits(st->map, AD7091R_REG_CONF, > + AD7091R_REG_CONF_ALERT_EN, BIT(4)); > + if (ret) > + return ret; > + > dev_set_drvdata(st->dev, iio_dev); > ret = devm_request_threaded_irq(dev, irq, NULL, > ad7091r_event_handler,