All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Kevin Townsend <kevin.townsend@linaro.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [PATCH v3] hw/sensor: Add lsm303dlhc magnetometer device
Date: Tue, 28 Sep 2021 13:03:22 +0100	[thread overview]
Message-ID: <CAFEAcA89ZA2Q6rpLLKOYbJd3itZTqJ0gZGswP4gVi0ERu8U8NQ@mail.gmail.com> (raw)
In-Reply-To: <CAFPHj6OFoYkcoQYM-LAW9gfgYpp8HY-87HXREbJ_M9B7gk=czQ@mail.gmail.com>

On Tue, 28 Sept 2021 at 11:36, Kevin Townsend <kevin.townsend@linaro.org> wrote:
>
> Hi Peter,
>
> On Mon, 27 Sept 2021 at 18:39, Peter Maydell <peter.maydell@linaro.org> wrote:
>>
>> I thought we'd agreed to implement the whole of the auto-increment
>> logic, not just for specific registers ?
>
>
> Thanks again for the feedback. Dealing with one register value at a time
> (versus a buffer of response values) does simplify the code flow.
>
> The following code appears to handle multi-byte reads correctly. I just
> wanted to confirm this is what you were looking for before moving on to
> the test code?
>
> /*
>  * Callback handler whenever a 'I2C_START_RECV' (read) event is received.
>  */
> static void lsm303dlhc_mag_read(LSM303DLHCMagState *s)
> {
>     /*
>      * Set the LOCK bit whenever a new read attempt is made. This will be
>      * cleared in I2C_FINISH. Note that DRDY is always set to 1 in this driver.
>      */
>     s->sr = 0x3;
> }
>
> /*
>  * Callback handler whenever a 'I2C_FINISH' event is received.
>  */
> static void lsm303dlhc_mag_finish(LSM303DLHCMagState *s)
> {
>     /*
>      * Clear the LOCK bit when the read attempt terminates.
>      * This bit is initially set in the I2C_START_RECV handler.
>      */
>     s->sr = 0x1;
> }

I would just inline these in the event lsm303dlhc_mag_event()
function. You might also #define some constants for the
register bits.

>
> /*
>  * Low-level slave-to-master transaction handler (read attempts).
>  */
> static uint8_t lsm303dlhc_mag_recv(I2CSlave *i2c)
> {
>     LSM303DLHCMagState *s = LSM303DLHC_MAG(i2c);
>
>     switch (s->pointer) {
>     case LSM303DLHC_MAG_REG_CRA:
>         s->buf = s->cra;
>         break;
>     case LSM303DLHC_MAG_REG_CRB:
>         s->buf = s->crb;
>         break;
>     case LSM303DLHC_MAG_REG_MR:
>         s->buf = s->mr;
>         break;
>     case LSM303DLHC_MAG_REG_OUT_X_H:
>         s->buf = (uint8_t)(s->x >> 8);
>         break;
>     case LSM303DLHC_MAG_REG_OUT_X_L:
>         s->buf = (uint8_t)(s->x);
>         break;
>     case LSM303DLHC_MAG_REG_OUT_Z_H:
>         s->buf = (uint8_t)(s->z >> 8);
>         break;
>     case LSM303DLHC_MAG_REG_OUT_Z_L:
>         s->buf = (uint8_t)(s->z);
>         break;
>     case LSM303DLHC_MAG_REG_OUT_Y_H:
>         s->buf = (uint8_t)(s->y >> 8);
>         break;
>     case LSM303DLHC_MAG_REG_OUT_Y_L:
>         s->buf = (uint8_t)(s->y);
>         break;
>     case LSM303DLHC_MAG_REG_SR:
>         s->buf = s->sr;
>         break;
>     case LSM303DLHC_MAG_REG_IRA:
>         s->buf = s->ira;
>         break;
>     case LSM303DLHC_MAG_REG_IRB:
>         s->buf = s->irb;
>         break;
>     case LSM303DLHC_MAG_REG_IRC:
>         s->buf = s->irc;
>         break;
>     case LSM303DLHC_MAG_REG_TEMP_OUT_H:
>         /* Check if the temperature sensor is enabled or not (CRA & 0x80). */
>         if (s->cra & 0x80) {
>             s->buf = (uint8_t)(s->temperature >> 8);
>         } else {
>             s->buf = 0;
>         }
>         break;
>     case LSM303DLHC_MAG_REG_TEMP_OUT_L:
>         if (s->cra & 0x80) {
>             s->buf = (uint8_t)(s->temperature & 0xf0);
>         } else {
>             s->buf = 0;
>         }
>         break;
>     default:
>         s->buf = 0;
>         break;
>     }
>
>     /*
>      * The address pointer on the LSM303DLHC auto-increments whenever a byte
>      * is read, without the master device having to request the next address.
>      *
>      * The auto-increment process has the following logic:
>      *
>      *   - if (s->pointer == 8) then s->pointer = 3
>      *   - else: if (s->pointer >= 12) then s->pointer = 0
>      *   - else: s->pointer += 1
>      *
>      * Reading an invalid address return 0.
>      */
>     if (s->pointer == LSM303DLHC_MAG_REG_OUT_Y_L) {
>         s->pointer = LSM303DLHC_MAG_REG_OUT_X_H;
>     } else if (s->pointer >= LSM303DLHC_MAG_REG_IRC) {
>         s->pointer = LSM303DLHC_MAG_REG_CRA;
>     } else {
>         s->pointer++;
>     }
>
>     return s->buf;

I think you don't need to write the value to s->buf, you can just
use a local variable and return that. Nothing should be able to read
the value back out of s->buf later. I think you should also implement
the actual lock part, to avoid wrong values in the case of
 * read starts, reads X_H
 * s->x updated via the QOM property setter
 * read continues, reads X_L
Basically just capture x,y,z,temp at the point of lock, and then
return those values in the recv function.

> }

thanks
-- PMM


      reply	other threads:[~2021-09-28 12:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-21  9:32 [PATCH v3] hw/sensor: Add lsm303dlhc magnetometer device Kevin Townsend
2021-09-27 16:38 ` Peter Maydell
2021-09-27 17:47   ` Kevin Townsend
2021-09-27 18:50     ` Peter Maydell
2021-09-28 10:35   ` Kevin Townsend
2021-09-28 12:03     ` Peter Maydell [this message]

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=CAFEAcA89ZA2Q6rpLLKOYbJd3itZTqJ0gZGswP4gVi0ERu8U8NQ@mail.gmail.com \
    --to=peter.maydell@linaro.org \
    --cc=kevin.townsend@linaro.org \
    --cc=qemu-devel@nongnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.