lkml.org 
[lkml]   [2021]   [Jul]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/4] iio: imu: add Bosch Sensortec BNO055 core driver
On Mon, 26 Jul 2021 16:36:49 +0200
Andrea Merello <andrea.merello@gmail.com> wrote:

> just a few of in-line comment below; OK for all the rest of your
> comment, thanks!
>
> > > > > +static int bno055_reg_write(struct bno055_priv *priv,
> > > > > + unsigned int reg, unsigned int val)
> > > > > +{
> > > > > + int res = regmap_write(priv->regmap, reg, val);
> > > > > +
> > > > > + if (res && res != -ERESTARTSYS) {
> > > >
> > > > I think Andy asked about these, so I won't repeat...
> > > > Nice to get rid of those and just be able to make the regmap calls inline though...
> > >
> > > Ok for inline. I've just answered in another mail to Andy's comments
> > > for the rest.
>
> Indeed, so far I couldn't understand what do you really mean. Should I
> move those check+dev_err() inside the regmap core layer ?

Better to move any necessary print to the caller of the reg_write() where any
error message can often give more information. Adding wrappers just to print
an error message normally mostly serves to make the code a little harder to
review.

>
> > > > > + /*
> > > > > + * Start in fusion mode (all data available), but with magnetometer auto
> > > > > + * calibration switched off, in order not to overwrite magnetometer
> > > > > + * calibration data in case one want to keep it untouched.
> > > >
> > > > Why might you? good to have a default that is what people most commonly want...
> > > > If there is a usecase for this then it may be better to have a 'disable autocalibration
> > > > and manually reload a fixed calibration' path.
> > >
> > > I'm not sure whether disabling autocalibration for magnetometer is
> > > just a matter of saving some power, or whether this has the purpose of
> > > carefully doing the calibration far from magnetic disturbances,
> > > avoiding screwing the calibration every time you briefly pass by a
> > > piece of iron. I think I found some clues for this second
> > > interpretation poking on the internet, but I don't know whether they
> > > were right.
> >
> > It's possible if the calibration routines have much faster response than
> > you'd normally expect.
>
> This HW function is called "Fast Magnetometer Calibration".. But I
> don't know how fast is it..

Nice - got to love informative datasheets :)

>
>
> > > > > + &iio_dev_attr_in_accel_filter_low_pass_3db_frequency_available.dev_attr.attr,
> > > > > + &iio_dev_attr_in_anglvel_range_available.dev_attr.attr,
> > > >
> > > > Hmm. Range typically maps to something else (normally scale, but these smart
> > > > sensors can do weird things)
> > >
> > > Here the scaling doesn't change, just the range. I *think* that by
> > > changing range you also get better or worse precision.
> >
> > oh goody. Make sure the default is maximum range + when you document this
> > we will have to be careful to make it clear we don't want this to be used in
> > drivers where scale is an option. Perhaps we just put it in a device
> > specific ABI file.
> >
>
> The default is to run the IMU with fusion mode enabled; in this mode
> those parameters are locked by the HW to a given value (which is not
> the maximum e.g. in case of accelerometer range).
>
> If the user disables the fusion mode, then those parameters become
> tweakable, but shouldn't they just remain at their previous values
> (the one set by fusion mode), unless the user change also them?

That makes sense to me.

>
> I.o.w the only chance we have for assigning them a "default" value is
> when the fusion is switched off, but this would mean that switching
> off fusion mode also has a side effect on those values (which I'm
> unsure if we really want to happen).

Thanks for the explanation. Ok. Fine to have the range here, but please
sanity check we have appropriate ABI documentation in the main ABI doc
Documentation/ABI/testing/sysfs-bus-iio.
One thing to think about is how range would generalize. These sensors are
symmetric, but not all are - a range that is higher in postive than negative
is definitely possible. Perhaps we need to name it to make it clear we are
talking magnitude here?

Ideally it should state something about range should be used only when it has no
affect on scaling. Hopefully we'll not get a device where it has an affect
but it's non linear as that doesn't make any sense. I'd imagine a range
control in hardware either is proportional to the scale, or has no affect on
it as here.

Thanks,

Jonathan

>
> Andrea

\
 
 \ /
  Last update: 2021-07-31 19:59    [W:2.142 / U:0.288 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site