linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: light: vcnl4000: Fix scale for vcnl4040
@ 2019-12-23 15:30 Guido Günther
  2019-12-27  8:47 ` Marco Felsch
  0 siblings, 1 reply; 3+ messages in thread
From: Guido Günther @ 2019-12-23 15:30 UTC (permalink / raw)
  To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, Angus Ainslie (Purism),
	Marco Felsch, Allison Randal, Thomas Gleixner,
	Guido Günther, linux-iio, linux-kernel

According to the data sheet the ambient sensors's scale is 0.12
lux/step, not 0.024 lux/step as used by vcnl4200.

See p. 8 in https://www.vishay.com/docs/84307/designingvcnl4040.pdf

Fixes: 5a441aade5b3 ("light: vcnl4000 add support for the VCNL4040 proximity and light sensor")
Signed-off-by: Guido Günther <agx@sigxcpu.org>
---
 drivers/iio/light/vcnl4000.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/iio/light/vcnl4000.c b/drivers/iio/light/vcnl4000.c
index 16dacea9eadf..b0e241aaefb4 100644
--- a/drivers/iio/light/vcnl4000.c
+++ b/drivers/iio/light/vcnl4000.c
@@ -163,7 +163,6 @@ static int vcnl4200_init(struct vcnl4000_data *data)
 	if (ret < 0)
 		return ret;
 
-	data->al_scale = 24000;
 	data->vcnl4200_al.reg = VCNL4200_AL_DATA;
 	data->vcnl4200_ps.reg = VCNL4200_PS_DATA;
 	switch (id) {
@@ -172,11 +171,13 @@ static int vcnl4200_init(struct vcnl4000_data *data)
 		/* show 54ms in total. */
 		data->vcnl4200_al.sampling_rate = ktime_set(0, 54000 * 1000);
 		data->vcnl4200_ps.sampling_rate = ktime_set(0, 4200 * 1000);
+		data->al_scale = 24000;
 		break;
 	case VCNL4040_PROD_ID:
 		/* Integration time is 80ms, add 10ms. */
 		data->vcnl4200_al.sampling_rate = ktime_set(0, 100000 * 1000);
 		data->vcnl4200_ps.sampling_rate = ktime_set(0, 100000 * 1000);
+		data->al_scale = 120000;
 		break;
 	}
 	data->vcnl4200_al.last_measurement = ktime_set(0, 0);
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: light: vcnl4000: Fix scale for vcnl4040
  2019-12-23 15:30 [PATCH] iio: light: vcnl4000: Fix scale for vcnl4040 Guido Günther
@ 2019-12-27  8:47 ` Marco Felsch
  2019-12-27 10:24   ` Guido Günther
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Felsch @ 2019-12-27  8:47 UTC (permalink / raw)
  To: Guido Günther
  Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, Angus Ainslie (Purism),
	Allison Randal, Thomas Gleixner, linux-iio, linux-kernel

Hi Guido,

On 19-12-23 16:30, Guido Günther wrote:
> According to the data sheet the ambient sensors's scale is 0.12
> lux/step, not 0.024 lux/step as used by vcnl4200.

This is only true if the als_it bits are set to '0'. Is it worth to add
a comment here?

> See p. 8 in https://www.vishay.com/docs/84307/designingvcnl4040.pdf
> 
> Fixes: 5a441aade5b3 ("light: vcnl4000 add support for the VCNL4040 proximity and light sensor")
> Signed-off-by: Guido Günther <agx@sigxcpu.org>

Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>

> ---
>  drivers/iio/light/vcnl4000.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/light/vcnl4000.c b/drivers/iio/light/vcnl4000.c
> index 16dacea9eadf..b0e241aaefb4 100644
> --- a/drivers/iio/light/vcnl4000.c
> +++ b/drivers/iio/light/vcnl4000.c
> @@ -163,7 +163,6 @@ static int vcnl4200_init(struct vcnl4000_data *data)
>  	if (ret < 0)
>  		return ret;
>  
> -	data->al_scale = 24000;
>  	data->vcnl4200_al.reg = VCNL4200_AL_DATA;
>  	data->vcnl4200_ps.reg = VCNL4200_PS_DATA;
>  	switch (id) {
> @@ -172,11 +171,13 @@ static int vcnl4200_init(struct vcnl4000_data *data)
>  		/* show 54ms in total. */
>  		data->vcnl4200_al.sampling_rate = ktime_set(0, 54000 * 1000);
>  		data->vcnl4200_ps.sampling_rate = ktime_set(0, 4200 * 1000);
> +		data->al_scale = 24000;
>  		break;
>  	case VCNL4040_PROD_ID:
>  		/* Integration time is 80ms, add 10ms. */
>  		data->vcnl4200_al.sampling_rate = ktime_set(0, 100000 * 1000);
>  		data->vcnl4200_ps.sampling_rate = ktime_set(0, 100000 * 1000);
> +		data->al_scale = 120000;
>  		break;
>  	}
>  	data->vcnl4200_al.last_measurement = ktime_set(0, 0);
> -- 
> 2.23.0

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: light: vcnl4000: Fix scale for vcnl4040
  2019-12-27  8:47 ` Marco Felsch
@ 2019-12-27 10:24   ` Guido Günther
  0 siblings, 0 replies; 3+ messages in thread
From: Guido Günther @ 2019-12-27 10:24 UTC (permalink / raw)
  To: Marco Felsch
  Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, Angus Ainslie (Purism),
	Allison Randal, Thomas Gleixner, linux-iio, linux-kernel

Hi,
On Fri, Dec 27, 2019 at 09:47:20AM +0100, Marco Felsch wrote:
> Hi Guido,
> 
> On 19-12-23 16:30, Guido Günther wrote:
> > According to the data sheet the ambient sensors's scale is 0.12
> > lux/step, not 0.024 lux/step as used by vcnl4200.
> 
> This is only true if the als_it bits are set to '0'. Is it worth to add
> a comment here?

Good point. I've added that to the commit message.
Cheers,
 -- Guido

> 
> > See p. 8 in https://www.vishay.com/docs/84307/designingvcnl4040.pdf
> > 
> > Fixes: 5a441aade5b3 ("light: vcnl4000 add support for the VCNL4040 proximity and light sensor")
> > Signed-off-by: Guido Günther <agx@sigxcpu.org>
> 
> Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>
> 
> > ---
> >  drivers/iio/light/vcnl4000.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/iio/light/vcnl4000.c b/drivers/iio/light/vcnl4000.c
> > index 16dacea9eadf..b0e241aaefb4 100644
> > --- a/drivers/iio/light/vcnl4000.c
> > +++ b/drivers/iio/light/vcnl4000.c
> > @@ -163,7 +163,6 @@ static int vcnl4200_init(struct vcnl4000_data *data)
> >  	if (ret < 0)
> >  		return ret;
> >  
> > -	data->al_scale = 24000;
> >  	data->vcnl4200_al.reg = VCNL4200_AL_DATA;
> >  	data->vcnl4200_ps.reg = VCNL4200_PS_DATA;
> >  	switch (id) {
> > @@ -172,11 +171,13 @@ static int vcnl4200_init(struct vcnl4000_data *data)
> >  		/* show 54ms in total. */
> >  		data->vcnl4200_al.sampling_rate = ktime_set(0, 54000 * 1000);
> >  		data->vcnl4200_ps.sampling_rate = ktime_set(0, 4200 * 1000);
> > +		data->al_scale = 24000;
> >  		break;
> >  	case VCNL4040_PROD_ID:
> >  		/* Integration time is 80ms, add 10ms. */
> >  		data->vcnl4200_al.sampling_rate = ktime_set(0, 100000 * 1000);
> >  		data->vcnl4200_ps.sampling_rate = ktime_set(0, 100000 * 1000);
> > +		data->al_scale = 120000;
> >  		break;
> >  	}
> >  	data->vcnl4200_al.last_measurement = ktime_set(0, 0);
> > -- 
> > 2.23.0
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-27 10:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-23 15:30 [PATCH] iio: light: vcnl4000: Fix scale for vcnl4040 Guido Günther
2019-12-27  8:47 ` Marco Felsch
2019-12-27 10:24   ` Guido Günther

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).