From: Jonathan Cameron <jic23@kernel.org>
To: Lorenzo Bianconi <lorenzo@kernel.org>
Cc: Martin Kepplinger <martin.kepplinger@puri.sm>,
lorenzo.bianconi83@gmail.com, knaack.h@gmx.de, lars@metafoo.de,
pmeerw@pmeerw.net, robh+dt@kernel.org, mark.rutland@arm.com,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH v4 2/3] iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9sd1
Date: Sun, 25 Aug 2019 18:34:22 +0100 [thread overview]
Message-ID: <20190825183422.2ae51895@archlinux> (raw)
In-Reply-To: <20190821090858.GC13516@localhost.localdomain>
On Wed, 21 Aug 2019 11:08:58 +0200
Lorenzo Bianconi <lorenzo@kernel.org> wrote:
> > >> The LSM9DS1's accelerometer / gyroscope unit and it's magnetometer (separately
> > >> supported in iio/magnetometer/st_magn*) are located on a separate i2c addresses
> > >> on the bus.
> > >>
> > >> For the datasheet, see https://www.st.com/resource/en/datasheet/lsm9ds1.pdf
> > >>
> > >> Treat it just like the LSM6* devices and, despite it's name, hook it up
> > >> to the st_lsm6dsx driver, using it's basic functionality.
> > >>
> > >> accelerometer and gyroscope are not independently clocked. It runs at the gyro
> > >> frequencies if both are enabled, see chapter 7.12 of the datasheet.
> > >> We could have handled this as a single IIO device but we have split
> > >> it up to be more consistent with the other more flexible devices.
> > >>
> > >> Signed-off-by: Martin Kepplinger <martin.kepplinger@puri.sm>
> > >
> > > Hi Martin,
> > >
> > > most of comments are nitpicks (inline), the only issue I can see here is we can enable
> > > hw fifo for lsm6ds0/lsm9ds1 and read_fifo routine pointer is not currently
> > > initialized so we will end up with a NULL pointer dereference. Since we will
> > > need a different update FIFO routine for lsm6ds0/lsm9ds1 I am adding an
> > > update_fifo function pointer in fifo_ops in order to fix this issue.
> > >
> > > Regards,
> > > Lorenzo
> > >
> > >> ---
>
> [...]
>
> > >
> > > should be called 'lsm9ds1_imu' since lsm9ds1 is a 9-axis device? what do you
> > > think?
> > >
> > >>
> > >> enum st_lsm6dsx_hw_id {
> > >> ST_LSM6DS3_ID,
> > >> @@ -37,6 +38,7 @@ enum st_lsm6dsx_hw_id {
> > >> ST_LSM6DSR_ID,
> > >> ST_LSM6DS3TRC_ID,
> > >> ST_ISM330DHCX_ID,
> > >> + ST_LSM9DS1_ID,
> > >
> > > same here..ST_LSM9DS1_IMU_ID
> >
> > I wouldn't add "imu" to the actual part name, see below...
> >
> > >
> > >> ST_LSM6DSX_MAX_ID,
> > >> };
> > >>
>
> [...]
>
> > >> +};
> > >> +
> > >
> > > why not st_lsm6ds0_gyro_channels?
> >
> > Would be ok with me. I'll remember this if I do a new iteration.
> >
> > >
>
> [...]
>
> > >> index 15c6aa5b6caa..2f1b30ff083b 100644
> > >> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> > >> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> > >> @@ -83,6 +83,10 @@ static const struct of_device_id st_lsm6dsx_i2c_of_match[] = {
> > >> .compatible = "st,ism330dhcx",
> > >> .data = (void *)ST_ISM330DHCX_ID,
> > >> },
> > >> + {
> > >> + .compatible = "st,lsm9ds1",
> > >
> > > same here, what is the right compatible string? "st,lsm9ds1 or
> > > "st,lsm9ds1_imu"?
> >
> > well, I'm open for this change, but "imu" doesn't really mean much
> > technically, so I would stick with the device name. "imu" is not part of
> > the "part" name...
> >
>
> I have not a strong opinion on it but IMU means 'Inertial Measurement Unit' and
> it used to indicate a device that runs a combination of accelerometer and
> gyroscope. I think using LSM9DS1 as device name it is weird since I would
> expect even the magn in this case (all supported devices by st_lsm6dsx are just
> IMU). I am not sure if "st,lsm9ds1_imu" is the right compatible string but I
> would indicate this node does not run a magn device.
>
> @Jonathan: what do you think?
Hmm. Not totally obvious what to do here. We need a name that makes it
clear this only supports part of the device. IMU gets used for cases
including the magnetometer by some manufacturers, so not ideal, but
perhaps it's the best we can do.
Jonathan
>
> Regards,
> Lorenzo
>
> > >
> > >> + .data = (void *)ST_LSM9DS1_ID,
> > >> + },
> > >> {},
> > >> };
> > >> MODULE_DEVICE_TABLE(of, st_lsm6dsx_i2c_of_match);
> > >> @@ -99,6 +103,7 @@ static const struct i2c_device_id st_lsm6dsx_i2c_id_table[] = {
> > >> { ST_LSM6DSR_DEV_NAME, ST_LSM6DSR_ID },
> > >> { ST_LSM6DS3TRC_DEV_NAME, ST_LSM6DS3TRC_ID },
> > >> { ST_ISM330DHCX_DEV_NAME, ST_ISM330DHCX_ID },
> > >> + { ST_LSM9DS1_DEV_NAME, ST_LSM9DS1_ID },
> > >> {},
> > >> };
> > >> MODULE_DEVICE_TABLE(i2c, st_lsm6dsx_i2c_id_table);
> > >> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > >> index a8430ee11310..421ce704f346 100644
> > >> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > >> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > >> @@ -83,6 +83,10 @@ static const struct of_device_id st_lsm6dsx_spi_of_match[] = {
> > >> .compatible = "st,ism330dhcx",
> > >> .data = (void *)ST_ISM330DHCX_ID,
> > >> },
> > >> + {
> > >> + .compatible = "st,lsm9ds1",
> > >> + .data = (void *)ST_LSM9DS1_ID,
> > >> + },
> > >> {},
> > >> };
> > >> MODULE_DEVICE_TABLE(of, st_lsm6dsx_spi_of_match);
> > >> @@ -99,6 +103,7 @@ static const struct spi_device_id st_lsm6dsx_spi_id_table[] = {
> > >> { ST_LSM6DSR_DEV_NAME, ST_LSM6DSR_ID },
> > >> { ST_LSM6DS3TRC_DEV_NAME, ST_LSM6DS3TRC_ID },
> > >> { ST_ISM330DHCX_DEV_NAME, ST_ISM330DHCX_ID },
> > >> + { ST_LSM9DS1_DEV_NAME, ST_LSM9DS1_ID },
> > >> {},
> > >> };
> > >> MODULE_DEVICE_TABLE(spi, st_lsm6dsx_spi_id_table);
> > >> --
> > >> 2.20.1
> > >>
> >
next prev parent reply other threads:[~2019-08-25 17:34 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-13 7:35 [PATCH v4 0/3] iio: imu: st_lsm6dsx: Add support for LSM9DS1 Martin Kepplinger
2019-08-13 7:35 ` [PATCH v4 1/3] iio: imu: st_lsm6sdx: move register definitions to sensor_settings struct Martin Kepplinger
2019-08-19 8:47 ` Lorenzo Bianconi
2019-08-13 7:35 ` [PATCH v4 2/3] iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9sd1 Martin Kepplinger
2019-08-19 9:48 ` Lorenzo Bianconi
2019-08-20 15:06 ` Martin Kepplinger
2019-08-21 9:08 ` Lorenzo Bianconi
2019-08-25 17:34 ` Jonathan Cameron [this message]
2019-08-13 7:35 ` [PATCH v4 3/3] dt-bindings: iio: imu: st_lsm6dsx: add lsm9ds1 device bindings Martin Kepplinger
2019-08-18 19:10 ` [PATCH v4 0/3] iio: imu: st_lsm6dsx: Add support for LSM9DS1 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=20190825183422.2ae51895@archlinux \
--to=jic23@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=lorenzo.bianconi83@gmail.com \
--cc=lorenzo@kernel.org \
--cc=mark.rutland@arm.com \
--cc=martin.kepplinger@puri.sm \
--cc=pmeerw@pmeerw.net \
--cc=robh+dt@kernel.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).