From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Finn Thain <fthain@linux-m68k.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>,
Daniel Palmer <daniel@0x0f.com>,
Michael Pavone <pavone@retrodev.com>,
linux-m68k@lists.linux-m68k.org, linux-rtc@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] rtc: m48t59: Accommodate chips that lack a century bit
Date: Sun, 20 Oct 2024 22:18:24 +0200 [thread overview]
Message-ID: <202410202018247178e729@mail.local> (raw)
In-Reply-To: <10bb949d-07f5-5cea-b658-8969b5bda6ae@linux-m68k.org>
On 05/10/2024 14:23:28+1000, Finn Thain wrote:
>
> On Thu, 3 Oct 2024, Alexandre Belloni wrote:
>
> >
> > ... while you are it, can you use m48t59->rtc->start_secs and
> > m48t59->rtc->set_start_time in probe instead of offsetting tm_year in
> > read_time/set_time so we can later use device tree or any other
> > mechanism to extend the range?
> >
>
> That didn't work out as I'd hoped. I booted a patched kernel (diff below)
> under qemu-system-sparc64:
>
> ~ # for yyyy in 1970 1971 1999 2000 2024 2025 2068 2069 ; do
> date 01010101$yyyy ; hwclock --systohc --utc && hwclock --utc ; echo ; done
> Thu Jan 1 01:01:00 UTC 1970
> Thu Jan 1 01:01:00 1970 0.000000 seconds
>
> Fri Jan 1 01:01:00 UTC 1971
> Tue Nov 24 18:32:44 1998 0.000000 seconds
>
> Fri Jan 1 01:01:00 UTC 1999
> Tue Nov 24 18:32:44 2026 0.000000 seconds
>
> Sat Jan 1 01:01:00 UTC 2000
> Sun Jan 2 23:29:16 2000 0.000000 seconds
>
> Mon Jan 1 01:01:00 UTC 2024
> Tue Jan 2 23:29:16 2024 0.000000 seconds
>
> Wed Jan 1 01:01:00 UTC 2025
> Thu Jan 2 23:29:16 2025 0.000000 seconds
>
> Sun Jan 1 01:01:00 UTC 2068
> hwclock: RTC_SET_TIME: Numerical result out of range
>
> Tue Jan 1 01:01:00 UTC 2069
> hwclock: RTC_SET_TIME: Numerical result out of range
>
> ~ #
>
> Here's the result from an unpatched kernel (v6.11):
>
> ~ # for yyyy in 1970 1971 1999 2000 2024 2025 2068 2069 ; do
> date 01010101$yyyy ; hwclock --systohc --utc && hwclock --utc ; echo ; done
> Thu Jan 1 01:01:00 UTC 1970
> Thu Jan 1 01:01:00 1970 0.000000 seconds
>
> Fri Jan 1 01:01:00 UTC 1971
> Fri Jan 1 01:01:00 1971 0.000000 seconds
>
> Fri Jan 1 01:01:00 UTC 1999
> Fri Jan 1 01:01:01 1999 0.000000 seconds
>
> Sat Jan 1 01:01:00 UTC 2000
> Sat Jan 1 01:01:00 2000 0.000000 seconds
>
> Mon Jan 1 01:01:00 UTC 2024
> Mon Jan 1 01:01:00 2024 0.000000 seconds
>
> Wed Jan 1 01:01:00 UTC 2025
> Wed Jan 1 01:01:00 2025 0.000000 seconds
>
> Sun Jan 1 01:01:00 UTC 2068
> hwclock: RTC_RD_TIME: Invalid argument
>
> Tue Jan 1 01:01:00 UTC 2069
> hwclock: RTC_RD_TIME: Invalid argument
>
> ~ #
>
>
> I'm afraid I don't see how we might avoid adding/subtracting in
> read_time/set_time given that we must avoid messing up the present date
> when users boot into an upgraded kernel.
I'm pretty sure this is avoidable as this is exactly what the offset
mechanism is trying to achieve. I guess the issue is in the RTC core
because both range_min and start_secs are negative which has never been
tested. My plan was to have unit tests for this but this never
happened...
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2024-10-20 20:18 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-03 3:23 [PATCH 0/2] Finn Thain
2024-10-03 3:23 ` [PATCH 1/2] rtc: m48t59: Accommodate chips that lack a century bit Finn Thain
2024-10-03 7:46 ` Geert Uytterhoeven
2024-10-03 22:20 ` Finn Thain
2024-10-03 8:10 ` Alexandre Belloni
2024-10-03 22:31 ` Finn Thain
2024-10-05 4:23 ` Finn Thain
2024-10-20 20:18 ` Alexandre Belloni [this message]
2024-10-03 3:23 ` [PATCH 2/2] m68k: mvme147, mvme16x: Adopt rtc-m48t59 platform driver Finn Thain
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=202410202018247178e729@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=daniel@0x0f.com \
--cc=fthain@linux-m68k.org \
--cc=geert@linux-m68k.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
--cc=linux-rtc@vger.kernel.org \
--cc=pavone@retrodev.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 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.