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 2A2DEC6FA99 for ; Sun, 12 Mar 2023 17:08:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230128AbjCLRIt (ORCPT ); Sun, 12 Mar 2023 13:08:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59524 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229516AbjCLRIr (ORCPT ); Sun, 12 Mar 2023 13:08:47 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 73F891F4A8; Sun, 12 Mar 2023 10:08:45 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 2A301B80D31; Sun, 12 Mar 2023 17:08:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 31C65C433EF; Sun, 12 Mar 2023 17:08:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1678640922; bh=duwh/9zTtLqlNZdr0l7ww97QaqoO9L+R7VxWJcfjRzE=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=plCBK5SNmF67wY0cG+dQL7w79/hvUydWNlsNI95IgXNtTsGR3ydlC+3alS7h591cg 6YCnx3b4T/gn0v5Fkd4dai4SRMl8DoTxfy7Au06VVzzJAV9ozT2YSDJtdVpNDaPIf+ 9/ja2ioYEh5N4K+52RIb0Hj/iGgJ7KzywPr1Kp17k2W65YRU8Gg3wKjcZAFHGx8VY0 iJbOsIkWJCc1s59FyLCAFwqKcuFFS0OhZ7LMRuxS8Dm9ZYQ5KGHDtuo3NY0WCxF7TV zFnoAwMIohxgRy+xCQG8bdJJ0Sq//bsrVmo2iY9+jeqV3FVfhkblsYcb2d8bXdEbN3 ujZfRQ0QT84SA== Date: Sun, 12 Mar 2023 17:08:48 +0000 From: Jonathan Cameron To: Matti Vaittinen Cc: Matti Vaittinen , Lars-Peter Clausen , Andy Shevchenko , Shreeya Patel , Paul Gazzillo , Dmitry Osipenko , Zhigang Shi , linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org Subject: Re: [PATCH v3 2/6] iio: light: Add gain-time-scale helpers Message-ID: <20230312170848.651b5b2c@jic23-huawei> In-Reply-To: <20230312170638.3e6807b7@jic23-huawei> References: <20230312170638.3e6807b7@jic23-huawei> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.37; 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 Sun, 12 Mar 2023 17:06:38 +0000 Jonathan Cameron wrote: > On Mon, 6 Mar 2023 11:17:15 +0200 > Matti Vaittinen wrote: > > > Some light sensors can adjust both the HW-gain and integration time. > > There are cases where adjusting the integration time has similar impact > > to the scale of the reported values as gain setting has. > > > > IIO users do typically expect to handle scale by a single writable 'scale' > > entry. Driver should then adjust the gain/time accordingly. > > > > It however is difficult for a driver to know whether it should change > > gain or integration time to meet the requested scale. Usually it is > > preferred to have longer integration time which usually improves > > accuracy, but there may be use-cases where long measurement times can be > > an issue. Thus it can be preferable to allow also changing the > > integration time - but mitigate the scale impact by also changing the gain > > underneath. Eg, if integration time change doubles the measured values, > > the driver can reduce the HW-gain to half. > > > > The theory of the computations of gain-time-scale is simple. However, > > some people (undersigned) got that implemented wrong for more than once. > > > > Add some gain-time-scale helpers in order to not dublicate errors in all > > drivers needing these computations. > > > > Signed-off-by: Matti Vaittinen > > Trying not to duplicate what Andy has raised... > > > At some stage I want to go through the maths very carefully but it's > not happening today and I don't want to delay resolving other remaining comments > so that can wait for a later version. I'm sure it's fine but I like to be > paranoid :) > > > +int iio_gts_get_total_gain(struct iio_gts *gts, int gain, int time) > > +{ > > + const struct iio_itime_sel_mul *itime; > > + > > + if (!iio_gts_valid_gain(gts, gain)) > > + return -EINVAL; > > + > > + if (!gts->num_itime) > > + return gain; > > + > > + itime = iio_gts_find_itime_by_time(gts, time); > > + if (!itime) > > + return -EINVAL; > > + > > + return gain * itime->mul; > > +} > > +EXPORT_SYMBOL(iio_gts_get_total_gain); > > All of them want to be in the namespace. > > > > > diff --git a/drivers/iio/light/iio-gts-helper.h b/drivers/iio/light/iio-gts-helper.h > > new file mode 100644 > > index 000000000000..4b5a417946f4 > > --- /dev/null > > +++ b/drivers/iio/light/iio-gts-helper.h > > ... > > > +int iio_gts_find_new_gain_sel_by_old_gain_time(struct iio_gts *gts, > > + int old_gain, int old_time_sel, > > + int new_time_sel, int *new_gain); > > +int iio_gts_build_avail_tables(struct iio_gts *gts); > > +int devm_iio_gts_build_avail_tables(struct device *dev, struct iio_gts *gts); > > +int iio_gts_build_avail_scale_table(struct iio_gts *gts); > > +int devm_iio_gts_build_avail_scale_table(struct device *dev, struct iio_gts *gts); > > +int iio_gts_build_avail_time_table(struct iio_gts *gts); > > +int devm_iio_gts_build_avail_time_table(struct device *dev, struct iio_gts *gts); > > Given most modern IIO drivers use fully devm_ based probing, for now I would not > expose anything else. That will reduce the interface a lot which I think > is probably a good thing at this stage. > > Keep the non devm stuff internally though as it is a nice structure to have > an I can see we may want some of these in non devm form in the future. > > Similarly - for now don't expose the individual table building functions > as we may never need them in drivers. We (more or less) only support interfaces > that are used and so far they aren't. > > For other functions it's worth thinking about whether to not export them > initially. I haven't been through them all to figure out what is not currently used. > Ah. I forgot the tests that don't have a device so can't use devm. Ah well I guess we have to keep some of the other cases. > > +void iio_gts_purge_avail_scale_table(struct iio_gts *gts); > > +void iio_gts_purge_avail_time_table(struct iio_gts *gts); > > +void iio_gts_purge_avail_tables(struct iio_gts *gts); > > +int iio_gts_avail_times(struct iio_gts *gts, const int **vals, int *type, > > + int *length); > > +int iio_gts_all_avail_scales(struct iio_gts *gts, const int **vals, int *type, > > + int *length); > > +int iio_gts_avail_scales_for_time(struct iio_gts *gts, int time, > > + const int **vals, int *type, int *length); > > + > > +#endif >