devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
To: Mathew McBride <matt@traverse.com.au>
Cc: linux-rtc@vger.kernel.org,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Rob Herring <robh+dt@kernel.org>,
	devicetree@vger.kernel.org
Subject: Re: [PATCH v2 1/2] rtc: rx8025: implement RX-8035 support
Date: Mon, 19 Jul 2021 17:15:53 +0900	[thread overview]
Message-ID: <CABMQnVLgpLdb=HDwEKnoNzM50WS6yB65uQvGxB3m3VfHLNE6+A@mail.gmail.com> (raw)
In-Reply-To: <20210709044518.28769-2-matt@traverse.com.au>

Hi,

2021年7月9日(金) 13:45 Mathew McBride <matt@traverse.com.au>:
>
> The RX-8035 is a newer RTC from EPSON that is very
> similar to the RX-8025.
>
> The key difference is in the oscillation stop (XSTP)
> bit which is inverted on the RX-8035.
>
> Signed-off-by: Mathew McBride <matt@traverse.com.au>

Reviewed- by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

Best regards,
  Nobuhiro

> ---
>  drivers/rtc/rtc-rx8025.c | 58 ++++++++++++++++++++++++++++++++++++----
>  1 file changed, 53 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/rtc/rtc-rx8025.c b/drivers/rtc/rtc-rx8025.c
> index c914091819ba..7a0258fe4b8e 100644
> --- a/drivers/rtc/rtc-rx8025.c
> +++ b/drivers/rtc/rtc-rx8025.c
> @@ -60,14 +60,23 @@
>  #define RX8025_ADJ_DATA_MAX    62
>  #define RX8025_ADJ_DATA_MIN    -62
>
> +enum rx_model {
> +       model_rx_unknown,
> +       model_rx_8025,
> +       model_rx_8035,
> +       model_last
> +};
> +
>  static const struct i2c_device_id rx8025_id[] = {
> -       { "rx8025", 0 },
> +       { "rx8025", model_rx_8025 },
> +       { "rx8035", model_rx_8035 },
>         { }
>  };
>  MODULE_DEVICE_TABLE(i2c, rx8025_id);
>
>  struct rx8025_data {
>         struct rtc_device *rtc;
> +       enum rx_model model;
>         u8 ctrl1;
>  };
>
> @@ -100,10 +109,26 @@ static s32 rx8025_write_regs(const struct i2c_client *client,
>                                               length, values);
>  }
>
> +static int rx8025_is_osc_stopped(enum rx_model model, int ctrl2)
> +{
> +       int xstp = ctrl2 & RX8025_BIT_CTRL2_XST;
> +       /* XSTP bit has different polarity on RX-8025 vs RX-8035.
> +        * RX-8025: 0 == oscillator stopped
> +        * RX-8035: 1 == oscillator stopped
> +        */
> +
> +       if (model == model_rx_8025)
> +               xstp = !xstp;
> +
> +       return xstp;
> +}
> +
>  static int rx8025_check_validity(struct device *dev)
>  {
>         struct i2c_client *client = to_i2c_client(dev);
> +       struct rx8025_data *drvdata = dev_get_drvdata(dev);
>         int ctrl2;
> +       int xstp;
>
>         ctrl2 = rx8025_read_reg(client, RX8025_REG_CTRL2);
>         if (ctrl2 < 0)
> @@ -117,7 +142,8 @@ static int rx8025_check_validity(struct device *dev)
>                 return -EINVAL;
>         }
>
> -       if (!(ctrl2 & RX8025_BIT_CTRL2_XST)) {
> +       xstp = rx8025_is_osc_stopped(drvdata->model, ctrl2);
> +       if (xstp) {
>                 dev_warn(dev, "crystal stopped, date is invalid\n");
>                 return -EINVAL;
>         }
> @@ -127,6 +153,7 @@ static int rx8025_check_validity(struct device *dev)
>
>  static int rx8025_reset_validity(struct i2c_client *client)
>  {
> +       struct rx8025_data *drvdata = i2c_get_clientdata(client);
>         int ctrl2 = rx8025_read_reg(client, RX8025_REG_CTRL2);
>
>         if (ctrl2 < 0)
> @@ -134,22 +161,28 @@ static int rx8025_reset_validity(struct i2c_client *client)
>
>         ctrl2 &= ~(RX8025_BIT_CTRL2_PON | RX8025_BIT_CTRL2_VDET);
>
> +       if (drvdata->model == model_rx_8025)
> +               ctrl2 |= RX8025_BIT_CTRL2_XST;
> +       else
> +               ctrl2 &= ~(RX8025_BIT_CTRL2_XST);
> +
>         return rx8025_write_reg(client, RX8025_REG_CTRL2,
> -                               ctrl2 | RX8025_BIT_CTRL2_XST);
> +                               ctrl2);
>  }
>
>  static irqreturn_t rx8025_handle_irq(int irq, void *dev_id)
>  {
>         struct i2c_client *client = dev_id;
>         struct rx8025_data *rx8025 = i2c_get_clientdata(client);
> -       int status;
> +       int status, xstp;
>
>         rtc_lock(rx8025->rtc);
>         status = rx8025_read_reg(client, RX8025_REG_CTRL2);
>         if (status < 0)
>                 goto out;
>
> -       if (!(status & RX8025_BIT_CTRL2_XST))
> +       xstp = rx8025_is_osc_stopped(rx8025->model, status);
> +       if (xstp)
>                 dev_warn(&client->dev, "Oscillation stop was detected,"
>                          "you may have to readjust the clock\n");
>
> @@ -519,6 +552,21 @@ static int rx8025_probe(struct i2c_client *client,
>
>         i2c_set_clientdata(client, rx8025);
>
> +       if (id) {
> +               rx8025->model = id->driver_data;
> +               switch (rx8025->model) {
> +               case model_rx_8025:
> +                       dev_info(&client->dev, "Model RX-8025");
> +                       break;
> +               case model_rx_8035:
> +                       dev_info(&client->dev, "Model RX-8035");
> +                       break;
> +               default:
> +                       dev_warn(&client->dev, "Unknown model: %d\n", rx8025->model);
> +                       break;
> +               }
> +       }
> +
>         err = rx8025_init_client(client);
>         if (err)
>                 return err;
> --
> 2.30.1
>


-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

  reply	other threads:[~2021-07-19  9:16 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-09  4:45 [PATCH v2 0/2] rtc: Implement support for EPSON RX-8035 Mathew McBride
2021-07-09  4:45 ` [PATCH v2 1/2] rtc: rx8025: implement RX-8035 support Mathew McBride
2021-07-19  8:15   ` Nobuhiro Iwamatsu [this message]
2021-07-09  4:45 ` [PATCH v2 2/2] dt-bindings: rtc: add Epson RX-8025 and RX-8035 Mathew McBride
2021-07-14 23:15   ` Rob Herring
2021-07-19  8:18   ` Nobuhiro Iwamatsu
2021-08-17 22:08 ` [PATCH v2 0/2] rtc: Implement support for EPSON RX-8035 Alexandre Belloni

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='CABMQnVLgpLdb=HDwEKnoNzM50WS6yB65uQvGxB3m3VfHLNE6+A@mail.gmail.com' \
    --to=iwamatsu@nigauri.org \
    --cc=a.zummo@towertech.it \
    --cc=alexandre.belloni@bootlin.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-rtc@vger.kernel.org \
    --cc=matt@traverse.com.au \
    --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).