linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
From: Anshul Dalal <anshulusr@gmail.com>
To: Jonathan Cameron <jic23@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org,
	devicetree@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	linux-kernel-mentees@lists.linuxfoundation.org,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v2 2/2] iio: light: driver for Lite-On ltr390
Date: Mon, 27 Nov 2023 21:17:25 +0530	[thread overview]
Message-ID: <f6ced6e9-65d2-4bbc-9792-473465bad547@gmail.com> (raw)
In-Reply-To: <20231125140641.08284929@jic23-huawei>

On 11/25/23 19:36, Jonathan Cameron wrote:
> On Fri, 17 Nov 2023 13:15:53 +0530
> Anshul Dalal <anshulusr@gmail.com> wrote:
> 
>> Implements driver for the Ambient/UV Light sensor LTR390.
>> The driver exposes two ways of getting sensor readings:
>>   1. Raw UV Counts directly from the sensor
>>   2. The computed UV Index value with a percision of 2 decimal places
>>
>> NOTE: Ambient light sensing has not been implemented yet.
>>
>> Datasheet:
>>   https://optoelectronics.liteon.com/upload/download/DS86-2015-0004/LTR-390UV_Final_%20DS_V1%201.pdf
> Make this a formal Datasheet tag, just before the Signed-off-by below

Thanks for pointing it out, I was unaware of the standard formal tags.
Is there any resource that lists out the formal tags that I can refer to.

>>
>> Driver tested on RPi Zero 2W
>>
>> Signed-off-by: Anshul Dalal <anshulusr@gmail.com>
> 
> Hi Anshul,
> 
> Some comments on this one inline.  Some of these overlap with comments on the
> other drivers you've submitted. Normally I'd moan about sending too many drivers
> at a time, but fair enough given you sent them out over a couple of weeks and just
> happened to hit time when I was travelling.
> 
> My main question in here is why have the two channels - conversion looks linear
> so you should be fine exposing IIO_CHAN_INFO_RAW + IIO_CHAN_INFO_SCALE on a
> single channel and leaving userspace to do the maths.
> 
> Jonathan

This driver was my first time working with the IIO subsystem and wasn't
sure about the correct way to use the channels. This should be fixed in
the next revision with the UV index being reported in the following channel:

static const struct iio_chan_spec ltr390_channel = {
	.type = IIO_UVINDEX,
	.info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE)
};

With data being reported as:

case IIO_CHAN_INFO_RAW:
	ret = ltr390_register_read(data, LTR390_UVS_DATA);
	if (ret < 0)
		return ret;
	*val = ret;
	return IIO_VAL_INT;
case IIO_CHAN_INFO_SCALE:
	*val = LTR390_WINDOW_FACTOR;
	*val2 = LTR390_COUNTS_PER_UVI;
	return IIO_VAL_FRACTIONAL;

>> diff --git a/drivers/iio/light/ltr390.c b/drivers/iio/light/ltr390.c
>> new file mode 100644
>> index 000000000000..67ca028ce828
>> --- /dev/null
>> +++ b/drivers/iio/light/ltr390.c
>> @@ -0,0 +1,232 @@
>> +// SPDX-License-Identifier: GPL-2.0-or-later
>> +/*
>> + * IIO driver for Lite-On LTR390 ALS and UV sensor
>> + * (7-bit I2C slave address 0x53)
>> + *
>> + * Based on the work of:
>> + *   Shreeya Patel and Shi Zhigang (LTRF216 Driver)
>> + *
>> + * Copyright (C) 2023 Anshul Dalal <anshulusr@gmail.com>
>> + *
>> + * Datasheet:
>> + *   https://optoelectronics.liteon.com/upload/download/DS86-2015-0004/LTR-390UV_Final_%20DS_V1%201.pdf
>> + *
>> + * TODO:
>> + *   - Support for configurable gain and resolution
> 
> Not using PROCESSED will help with this, so I'd drop that even in this initial
> driver.
>>> + *   - Sensor suspend/resume support
>> + *   - Add support for reading the ALS
>> + *   - Interrupt support
> 
>> + */
>> +
>> +#include <asm/unaligned.h>
> 
> Put this in a block of includes after the linux ones.
> 
>> +#include <linux/delay.h>
>> +#include <linux/i2c.h>
>> +#include <linux/iio/iio.h>
>> +#include <linux/math.h>
>> +#include <linux/module.h>
>> +#include <linux/mutex.h>
>> +#include <linux/regmap.h>
>> +
>> +#define LTR390_DEVICE_NAME	    "ltr390"
>> +
>> +#define LTR390_MAIN_CTRL	    0x00
>> +#define LTR390_PART_ID		    0x06
>> +#define LTR390_UVS_DATA		    0x10
>> +
>> +#define LTR390_SW_RESET		    BIT(4)
>> +#define LTR390_UVS_MODE		    BIT(3)
>> +#define LTR390_SENSOR_ENABLE	    BIT(1)
>> +
>> +#define LTR390_PART_NUMBER_ID	    0xb
>> +#define LTR390_FRACTIONAL_PERCISION 100
>> +
>> +/*
>> + * At 20-bit resolution (integration time: 400ms) and 18x gain, 2300 counts of
>> + * the sensor are equal to 1 UV Index [Datasheet Page#8].
>> + *
>> + * For the default resolution of 18-bit (integration time: 100ms) and default
>> + * gain of 3x, the counts/uvi are calculated as follows:
>> + * 2300 / ((3/18) * (100/400)) = 95.83
>> + */
>> +#define LTR390_COUNTS_PER_UVI 96
>> +
>> +/*
>> + * Window Factor is needed when the device is under Window glass with coated
>> + * tinted ink. This is to compensate for the light loss due to the lower
>> + * transmission rate of the window glass and helps * in calculating lux.
>> + */
>> +#define LTR390_WINDOW_FACTOR 1
>> +
>> +struct ltr390_data {
>> +	struct regmap *regmap;
>> +	struct i2c_client *client;
>> +	struct mutex lock;
> 
> All locks need a comment explaining the scope of data they protect.
> Note that regmap and the i2c bus will have their own locks by default
> so I'm not sure you need one here at all as I'm not seeing read modify write
> cycles or anything like that (I might be missing one though!)

My goal with the mutex was to protect the sysfs though that might be
unnecessary.

>> +};
>> +
>> +static const struct regmap_config ltr390_regmap_config = {
>> +	.name = LTR390_DEVICE_NAME,
>> +	.reg_bits = 8,
>> +	.reg_stride = 1,
>> +	.val_bits = 8,
>> +};
>> +
>> +static int ltr390_register_read(struct ltr390_data *data, u8 register_address)
>> +{
>> +	struct device *dev = &data->client->dev;
>> +	int ret;
>> +	u8 recieve_buffer[3];
>> +
>> +	mutex_lock(&data->lock);
> 
> guard(mutex)(&data->lock); 
> here then you can just return directly without worrying about manual
> unlocking of the mutex.  This stuff is fairly new in the kernel but very
> useful for cases like this!  I have a set of driver cleanup that I'll send
> out that does this in a few IIO drivers, once I've caught up with reviews etc.
> 
> This isn't a critical path where we have to care that we will then unlock
> after the maths to extract value in the final line of the function.
> 
>> +
>> +	ret = regmap_bulk_read(data->regmap, register_address, recieve_buffer,
>> +			       sizeof(recieve_buffer));
>> +	if (ret) {
>> +		dev_err(dev, "failed to read measurement data: %d\n", ret);
>> +		mutex_unlock(&data->lock);
>> +		return ret;
>> +	}
>> +
>> +	mutex_unlock(&data->lock);
>> +	return get_unaligned_le24(recieve_buffer);
>> +}
>> +
>> +static int ltr390_get_uv_index(struct ltr390_data *data)
>> +{
>> +	int ret;
>> +	int uv_index;
>> +
>> +	ret = ltr390_register_read(data, LTR390_UVS_DATA);
>> +	if (ret < 0)
>> +		return ret;
>> +
>> +	uv_index = DIV_ROUND_CLOSEST(ret * LTR390_FRACTIONAL_PERCISION *
>> +					     LTR390_WINDOW_FACTOR,
>> +				     LTR390_COUNTS_PER_UVI);
> 
> This looks like a linear conversion.  Perhaps make it a userspace problem
> as division much easier in userspace where floating point is available.
> 
>> +
>> +	return uv_index;
>> +}
>> +
> 
>> +
>> +static const struct iio_chan_spec ltr390_channels[] = {
>> +	{
>> +		.type = IIO_UVINDEX,
>> +		.info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED)
>> +	},
>> +	{
>> +		.type = IIO_INTENSITY,
>> +		.channel2 = IIO_MOD_LIGHT_UV,
>> +		.info_mask_separate = BIT(IIO_CHAN_INFO_RAW)
>> +	},
>> +};
>> +
>> +static int ltr390_probe(struct i2c_client *client)
>> +{
>> +	struct ltr390_data *data;
>> +	struct iio_dev *indio_dev;
>> +	int ret, part_number;
>> +
>> +	indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
>> +	if (!indio_dev)
>> +		return -ENOMEM;
>> +
>> +	data = iio_priv(indio_dev);
>> +
>> +	data->regmap = devm_regmap_init_i2c(client, &ltr390_regmap_config);
>> +	if (IS_ERR(data->regmap))
>> +		return dev_err_probe(&client->dev, PTR_ERR(data->regmap),
> There are quite a few &client->dev in here. I'd introduce
> struct device *dev = &client->dev;
> as a local variable then use that to shorten all those lines a little.
> 
>> +				     "regmap initialization failed\n");
>> +
>> +	data->client = client;
>> +	i2c_set_clientdata(client, indio_dev);
> 
> Why set this? I don' think you are using it.
> 

It seems to be necessary for regmap to work properly, I tested without
it and I get an EREMOTEIO(121) when reading the part id.

>> [..]

Thanks for the review,
Best regards,
Anshul

  reply	other threads:[~2023-11-27 15:49 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-17  7:45 [PATCH v2 1/2] dt-bindings: iio: light: add ltr390 Anshul Dalal
2023-11-17  7:45 ` [PATCH v2 2/2] iio: light: driver for Lite-On ltr390 Anshul Dalal
2023-11-17 14:23   ` kernel test robot
2023-11-17 18:13   ` kernel test robot
2023-11-25 14:06   ` Jonathan Cameron
2023-11-27 15:47     ` Anshul Dalal [this message]
2023-12-04 10:05       ` Jonathan Cameron
2023-11-17 11:09 ` [PATCH v2 1/2] dt-bindings: iio: light: add ltr390 Krzysztof Kozlowski
2023-11-25 13:50 ` Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f6ced6e9-65d2-4bbc-9792-473465bad547@gmail.com \
    --to=anshulusr@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jic23@kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=skhan@linuxfoundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).