From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Vitor Soares <Vitor.Soares@synopsys.com>
Cc: "jic23@kernel.org" <jic23@kernel.org>,
"linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"lorenzo.bianconi@redhat.com" <lorenzo.bianconi@redhat.com>,
"mario.tesi@st.com" <mario.tesi@st.com>
Subject: Re: [PATCH v2] iio: imu: st_lsm6dsx: disable I3C support during device reset
Date: Mon, 9 Mar 2020 17:07:14 +0100 [thread overview]
Message-ID: <20200309160714.GD490054@lore-desk-wlan> (raw)
In-Reply-To: <CH2PR12MB42164216A155A4EB5F2EC8A8AEFE0@CH2PR12MB4216.namprd12.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 3124 bytes --]
> From: Lorenzo Bianconi <lorenzo@kernel.org>
> Date: Mon, Mar 09, 2020 at 15:10:35
>
> > > From: Lorenzo Bianconi <lorenzo@kernel.org>
> > > Date: Mon, Mar 09, 2020 at 15:01:01
> > >
> > > > > Hi Lorenzo,
> > > > >
> > > > > From: Lorenzo Bianconi <lorenzo@kernel.org>
> > > > > Date: Sun, Mar 08, 2020 at 00:06:03
> > > > >
> > > > > > Disable MIPI I3C during device reset in order to avoid
> > > > > > possible races on interrupt line 1. If the first interrupt
> > > > > > line is asserted during hw reset the device will work in
> > > > > > I3C-only mode
> > > > > >
> > > >
> > > > [...]
> > > >
> > > > > > +
> > > > >
> > > > > After disable the i3c interface the dynamic address is no more accessible
> > > > > and fails the initialization.
> > > > >
> > > >
> > > > Hi Vitor,
> > > >
> > > > thx for testing it. What do you mean here?
> > > > Is int1 set to vdd in your test?
> > > >
> > > > Regards,
> > > > Lorenzo
> > >
> > > Yes, according with figure 14 of lsm6dso datasheet.
> >
> > uhm..probably we should do this configuration if the device is not in I3C-only
> > mode. Are you able to test it without setting the int1 to vdd?
> > Unfortunately I have no devices with an I3C controller yet.
> >
> > Regards,
> > Lorenzo
> >
>
> Yes, I can test but I suspect we will have the same issue because it lost
> the dynamic address. I would say to add a flag during the probe to
> indicate the interface and bypass this if in I3C mode.
I am not an i3c expert but I think the dynamic address is reset during the boot
procedure of the sensor (this is done even if you do not disable i3c).
Re-thinking about it, we should avoid it if the device if working in i3c-only
(int1 set to vdd) but I think it would be necessary in i3c-mixed (int1 set 0
gnd). Could you please test it in the latter case? Thanks.
Regards,
Lorenzo
>
> This may be useful when address the In-band interrupts.
>
> Best regards,
> Vitor Soares
>
> > >
> > > Is there any way to clear the INT1 before the hw reset?
> > >
> > > Best regards,
> > > Vitor Soares
> > >
> > > >
> > > > > Best regards,
> > > > > Vitor Soares
> > > > >
> > > > > > /* device sw reset */
> > > > > > reg = &hw->settings->reset;
> > > > > > err = regmap_update_bits(hw->regmap, reg->addr, reg->mask,
> > > > > > @@ -2059,6 +2081,15 @@ static int st_lsm6dsx_init_device(struct st_lsm6dsx_hw *hw)
> > > > > >
> > > > > > msleep(50);
> > > > > >
> > > > > > + /* enable MIPI I3C */
> > > > > > + if (hw->settings->i3c_disable.addr) {
> > > > > > + reg = &hw->settings->i3c_disable;
> > > > > > + err = regmap_update_bits(hw->regmap, reg->addr, reg->mask,
> > > > > > + ST_LSM6DSX_SHIFT_VAL(0, reg->mask));
> > > > > > + if (err < 0)
> > > > > > + return err;
> > > > > > + }
> > > > > > +
> > > > > > /* enable Block Data Update */
> > > > > > reg = &hw->settings->bdu;
> > > > > > err = regmap_update_bits(hw->regmap, reg->addr, reg->mask,
> > > > > > --
> > > > > > 2.24.1
> > > > >
> > > > >
> > >
> > >
>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2020-03-09 16:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-08 0:06 [PATCH v2] iio: imu: st_lsm6dsx: disable I3C support during device reset Lorenzo Bianconi
2020-03-09 14:55 ` Vitor Soares
2020-03-09 15:01 ` Lorenzo Bianconi
2020-03-09 15:07 ` Vitor Soares
2020-03-09 15:10 ` Lorenzo Bianconi
2020-03-09 15:17 ` Vitor Soares
2020-03-09 16:07 ` Lorenzo Bianconi [this message]
2020-03-09 17:43 ` Vitor Soares
2020-03-10 13:48 ` Vitor Soares
2020-03-10 13:56 ` lorenzo.bianconi
2020-03-12 22:02 ` Lorenzo Bianconi
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=20200309160714.GD490054@lore-desk-wlan \
--to=lorenzo@kernel.org \
--cc=Vitor.Soares@synopsys.com \
--cc=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=lorenzo.bianconi@redhat.com \
--cc=mario.tesi@st.com \
/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