Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp695343pxj; Wed, 16 Jun 2021 11:23:23 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyjwLCllKQFYPo8GtnM27ADTCIdLH5O5eGqi7+WPmobUxvCZ5V3fN4DFWlOW/F6XHK2RiaN X-Received: by 2002:a92:d58f:: with SMTP id a15mr671159iln.154.1623867803429; Wed, 16 Jun 2021 11:23:23 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1623867803; cv=none; d=google.com; s=arc-20160816; b=yUYHu9m3Mwl39u7V4sevnjK+x34TOyZPBq+oXGrTdpV+oQIVWdSsC35eq2I/0wfffX jbJuiOSoU2UkJqAazGd/YtOvzpQijz8xCIle+s/JKy0QLSY+3zzFVQvaCedx0GDJukBl TRsfIj3JogFT2sLQ2cStLirvpZoQfNCu+HzP+fWGY1eHwTCjfFLSvun69EIdawUb3qbf YaZimWAaq9WGqQY8tzBIIEAh1qeDZYH7D1yxCRHYAmRjL+uVV3QzMtVYOxZVOfeZGmwf 1cJm2KhM1/GjhocIIATCUrLaLj4stFazYJIFYpPdE7vFrdvE7jXstjhrOxpDCAVw+xH9 giXA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=yDuREuJnTxW9+tyAC2hedDxDV9U7DYPQVoJo2Y0X4SE=; b=BvEvc1UXxNDF/cMo5Jv6wrWqZiiP31dKQGdxPmMepZ2orP6uGKbFjJ06QMhjmD/V4r x+yOyXJhVt6hBSCMobA30ca0WkXsMKYoqI9qj66D6+RE14M8g+YaAwwKiX80weVfnj0B xs78Y7bTlzn6khq0bIqSRTeOBIsshWsoJ2tDe06hPfaQKuj1vxJ+TmU6f/MCVMWGDB7g vlag6ebzIM61VfYbLroN8EcLBOMerB19ixB6sMft6Io02ubQ0d9It7ddkiL6CMVxwEtT skmNVvcSDmpZUnjKds4bmVQnrK8Nm1D0YN3DoNQyAWCtxKstZb5ZTd41mNkqWMNBLZX5 CNYA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r14si3345883ila.121.2021.06.16.11.23.08; Wed, 16 Jun 2021 11:23:23 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232507AbhFPMnm (ORCPT + 99 others); Wed, 16 Jun 2021 08:43:42 -0400 Received: from mail.kernel.org ([198.145.29.99]:52194 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230197AbhFPMnm (ORCPT ); Wed, 16 Jun 2021 08:43:42 -0400 Received: from jic23-huawei (cpc108967-cmbg20-2-0-cust86.5-4.cable.virginm.net [81.101.6.87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D582061078; Wed, 16 Jun 2021 12:41:33 +0000 (UTC) Date: Wed, 16 Jun 2021 13:43:35 +0100 From: Jonathan Cameron To: Chris Lesiak Cc: linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, Matt Ranostay Subject: Re: [PATCH v3] iio: humidity: hdc100x: Add margin to the conversion time Message-ID: <20210616134335.76715e55@jic23-huawei> In-Reply-To: <20210614141820.2034827-1-chris.lesiak@licor.com> References: <20210614141820.2034827-1-chris.lesiak@licor.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; 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 Mon, 14 Jun 2021 09:18:20 -0500 Chris Lesiak wrote: > The datasheets have the following note for the conversion time > specification: "This parameter is specified by design and/or > characterization and it is not tested in production." > > Parts have been seen that require more time to do 14-bit conversions for > the relative humidity channel. The result is ENXIO due to the address > phase of a transfer not getting an ACK. > > Delay an additional 1 ms per conversion to allow for additional margin. > > Fixes: 4839367d99e3 ("iio: humidity: add HDC100x support") > Signed-off-by: Chris Lesiak +CC Matt as this is one of his drivers. Looks good to me. > --- > drivers/iio/humidity/hdc100x.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/iio/humidity/hdc100x.c b/drivers/iio/humidity/hdc100x.c > index 2a957f19048e..9e0fce917ce4 100644 > --- a/drivers/iio/humidity/hdc100x.c > +++ b/drivers/iio/humidity/hdc100x.c > @@ -25,6 +25,8 @@ > #include > #include > > +#include > + > #define HDC100X_REG_TEMP 0x00 > #define HDC100X_REG_HUMIDITY 0x01 > > @@ -166,7 +168,7 @@ static int hdc100x_get_measurement(struct hdc100x_data *data, > struct iio_chan_spec const *chan) > { > struct i2c_client *client = data->client; > - int delay = data->adc_int_us[chan->address]; > + int delay = data->adc_int_us[chan->address] + 1*USEC_PER_MSEC; > int ret; > __be16 val; > > @@ -316,7 +318,7 @@ static irqreturn_t hdc100x_trigger_handler(int irq, void *p) > struct iio_dev *indio_dev = pf->indio_dev; > struct hdc100x_data *data = iio_priv(indio_dev); > struct i2c_client *client = data->client; > - int delay = data->adc_int_us[0] + data->adc_int_us[1]; > + int delay = data->adc_int_us[0] + data->adc_int_us[1] + 2*USEC_PER_MSEC; > int ret; > > /* dual read starts at temp register */