lkml.org 
[lkml]   [2023]   [Mar]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v2 1/3] rtc: tps6594: add driver for TPS6594 PMIC RTC
From
On Tue Mar 28, 2023 at 3:34 PM CEST, Alexandre Belloni wrote:
> On 28/03/2023 15:01:05+0200, Esteban Blanc wrote:
> > On Tue Mar 28, 2023 at 11:29 AM CEST, Alexandre Belloni wrote:
> > > Hello,
> > >
> > > On 28/03/2023 11:14:46+0200, Esteban Blanc wrote:
> > > > + /* Start rtc */
> > > > + ret = regmap_set_bits(tps->regmap, TPS6594_REG_RTC_CTRL_1,
> > > > + TPS6594_BIT_STOP_RTC);
> > > > + if (ret < 0)
> > > > + return ret;
> > > > +
> > > > + mdelay(100);
> > > > +
> > > > + /*
> > > > + * RTC should be running now. Check if this is the case.
> > > > + * If not it might be a missing oscillator.
> > > > + */
> > > > + ret = regmap_test_bits(tps->regmap, TPS6594_REG_RTC_STATUS,
> > > > + TPS6594_BIT_RUN);
> > > > + if (ret < 0)
> > > > + return ret;
> > > > + if (ret == 0)
> > > > + return -ENODEV;
> > > > +
> > > > + /* Stop RTC until first call to `tps6594_rtc_set_time */
> > > > + ret = regmap_clear_bits(tps->regmap, TPS6594_REG_RTC_CTRL_1,
> > > > + TPS6594_BIT_STOP_RTC);
> > > > + if (ret < 0)
> > > > + return ret;
> > > > +
> > >
> > > This whole block must not be executed when the RTC is already running,
> > > else, you are stopping a perfectly running RTC.
> >
> > I'm not sure to get your point. You mean that during probe, the driver
> > might encounter an RTC device that is already running with a correct
> > timestamp? How would this be possible? A previous bootstage or the
> > driver was removed then re-inserted again?
> >
>
> The whole point of having an RTC is that the time tracking survives a
> reboot so yes, I would expect the RTC to have a valid timestamp at probe
> time.

Oh. Oh I see. I did not think of that. I will add a check for that.

Thanks again,

--
Esteban Blanc
BayLibre

\
 
 \ /
  Last update: 2023-03-28 16:02    [W:0.327 / U:0.224 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site