mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Russell King - ARM Linux <linux@armlinux.org.uk>
To: David Laight <David.Laight@ACULAB.COM>
Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	Baruch Siach <baruch@tkos.co.il>,
	"patches@opensource.wolfsonmicro.com" 
	<patches@opensource.wolfsonmicro.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	"linux-tegra@vger.kernel.org" <linux-tegra@vger.kernel.org>,
	Thierry Reding <thierry.reding@gmail.com>,
	Pavel Machek <pavel@ucw.cz>, Thomas Gleixner <tglx@linutronix.de>,
	"x86@kernel.org" <x86@kernel.org>,
	Jonathan Hunter <jonathanh@nvidia.com>,
	Chen-Yu Tsai <wens@csie.org>, Ingo Molnar <mingo@redhat.com>,
	Sylvain Lemieux <slemieux.tyco@gmail.com>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
	Len Brown <len.brown@intel.com>,
	"linaro-kernel@lists.linaro.org" <linaro-kernel@lists.linaro.org>,
	Jason Cooper <jason@lakedaemon.net>,
	"rtc-linux@googlegroups.com" <rtc-linux@googlegroups.com>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	Hans Ulli Kroll <ulli.kroll@googlemail.com>,
	"adi-buildroot-devel@lists.sourceforge.net" 
	<adi-buildroot-devel@lists.sourceforge.net>,
	Vladimir Zapolskiy <vz@mleia.com>,
	John Stultz <john.stultz@linaro.org>,
	Gregory Clement <gregory.clement@free-electrons.com>,
	Michael Chan <michael.chan@broadcom.com>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Barry Song <baohua@kernel.org>,
	Support Opensource <Support.Opensource@diasemi.com>,
	"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Steve Twiss <stwiss.opensource@diasemi.com>,
	Maxime Ripard <maxime.ripard@free-electrons.com>
Subject: Re: [PATCH 00/51] rtc: stop using rtc deprecated functions
Date: Wed, 21 Jun 2017 10:35:49 +0100	[thread overview]
Message-ID: <20170621093549.GQ4902@n2100.armlinux.org.uk> (raw)
In-Reply-To: <063D6719AE5E284EB5DD2968C1650D6DD00278C0@AcuExch.aculab.com>

On Wed, Jun 21, 2017 at 09:26:51AM +0000, David Laight wrote:
> From: Russell King - ARM Linux
> > Sent: 20 June 2017 22:16
> ..
> > Consider that at the moment, we define the 32-bit RTC representation to
> > start at a well known epoch.  We _could_ decide that when it wraps to
> > 0x80000000 seconds, we'll define the lower 0x40000000 seconds to mean
> > dates in the future - and keep rolling that forward each time we cross
> > another 0x40000000 seconds.  Unless someone invents a real time machine,
> > we shouldn't need to set a modern RTC back to 1970.
> 
> True, just treating the value as unsigned gives another 67 years.

We _already_ do treat it as an unsigned number, so already the panicing
about 2038 is complete and utter nonsense - that's why I've been
consistently stating the 2106 date.

> If a 32bit RTC is programmed with the low 32bits of the 64bit 'seconds
> since 1970' the kernel should have no real difficulty sorting out the
> high bits from other available information.

Right, but converting all the 32-bit conversion functions to 64-bit
means that rather than "sorting out" that from the core RTC driver,
we have to implement solutions in each and every driver.

While that may appear to be a good idea, many RTCs that are 32-bit
counters do not themselves have additional non-volatile storage, so
it means that we're ending up with a lot of RTC specific hacks to
go and get the additional information from some other driver elsewhere
in the system.

> Problems with things like the x86 bios setting the rtc to stupid values
> are another matter.

Forget x86, the RTC there does not store time as a 32-bit integer, it's
stored as its component values, and there's non-volatile memory attached
to the RTC.  Hence, it's out of scope of "what to do about RTCs that
store time in 32-bit format" and also out of scope of "what to do about
RTC drivers that use the 32-bit time conversion function."

-- 
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up
according to speedtest.net.

  reply	other threads:[~2017-06-21  9:36 UTC|newest]

Thread overview: 90+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-20  9:35 Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 01/51] x86: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 02/51] x86: intel-mid: vrtc: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 03/51] net: broadcom: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 04/51] rtc: 88pm80x: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 05/51] rtc: 88pm860x: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 06/51] rtc: ab-b5ze-s3: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 07/51] rtc: ab8500: " Benjamin Gaignard
2017-06-20 16:06   ` Linus Walleij
2017-06-21  6:57   ` kbuild test robot
2017-06-20  9:35 ` [PATCH 08/51] rtc: armada38x: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 09/51] rtc: at32ap700x: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 10/51] rtc: at91sam9: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 11/51] rtc: bfin: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 12/51] rtc: coh901331: " Benjamin Gaignard
2017-06-20 16:07   ` [rtc-linux] " Linus Walleij
2017-06-20 21:21   ` Russell King - ARM Linux
2017-06-20  9:35 ` [PATCH 13/51] rtc: cpcap: " Benjamin Gaignard
2017-06-21  4:37   ` kbuild test robot
2017-06-20  9:35 ` [PATCH 14/51] rtc: da9063: " Benjamin Gaignard
2017-06-20 13:41   ` Steve Twiss
2017-06-20 14:18     ` Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 15/51] " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 16/51] rtc: davinci: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 17/51] rtc: digicolor: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 18/51] rtc: dm355evm: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 19/51] rtc: ds1305: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 20/51] rtc: ds1374: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 21/51] rtc: ds1511: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 22/51] rtc: ds1553: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 23/51] rtc: ds1672: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 24/51] rtc: ds2404: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 25/51] rtc: ep93xx: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 26/51] rtc: gemini: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 27/51] rtc: imxdi: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 28/51] rtc: jz4740: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 29/51] rtc: lpc32xx: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 30/51] rtc: mv: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 31/51] rtc: omap: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 32/51] rtc: pcap: " Benjamin Gaignard
2017-06-21  4:45   ` kbuild test robot
2017-06-21  5:07   ` kbuild test robot
2017-06-20  9:35 ` [PATCH 33/51] rtc: pl030: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 34/51] rtc: pl031: " Benjamin Gaignard
2017-06-20 16:08   ` Linus Walleij
2017-06-20 21:05     ` Russell King - ARM Linux
2017-06-20  9:35 ` [PATCH 35/51] rtc: pm8xxx: " Benjamin Gaignard
2017-06-21 16:54   ` kbuild test robot
2017-07-03 10:12   ` Arnd Bergmann
2017-06-20  9:35 ` [PATCH 36/51] rtc: rs5c348: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 37/51] rtc: sa1100: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 38/51] rtc: sh: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 39/51] rtc: sirfsoc: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 40/51] rtc: snvs: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 41/51] rtc: stk17ta8: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 42/51] rtc: stmp3xxx: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 43/51] rtc: sun6i: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 44/51] rtc: sysfs: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 45/51] rtc: tegra " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 46/51] rtc: test: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 47/51] rtc: tps6586: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 48/51] rtc: vr41xx: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 49/51] rtc: wm831x: " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 50/51] rtc: xgene " Benjamin Gaignard
2017-06-20  9:35 ` [PATCH 51/51] power: suspend test: " Benjamin Gaignard
2017-06-20 12:10   ` Pavel Machek
2017-06-20 10:03 ` [PATCH 00/51] rtc: " Alexandre Belloni
2017-06-20 10:07   ` Alexandre Belloni
2017-06-20 12:10   ` Pavel Machek
2017-06-20 12:24     ` Alexandre Belloni
2017-06-20 13:26       ` Pavel Machek
2017-06-20 13:37         ` Steve Twiss
2017-06-20 13:44           ` Pavel Machek
2017-06-20 13:48             ` Alexandre Belloni
2017-06-20 15:07               ` Benjamin Gaignard
2017-06-20 21:15                 ` Russell King - ARM Linux
2017-06-21  9:26                   ` David Laight
2017-06-21  9:35                     ` Russell King - ARM Linux [this message]
2017-06-20 22:08                 ` Pavel Machek
2017-06-21  9:14                   ` Benjamin Gaignard
2017-06-20 21:35 Alexandre Belloni
2017-06-20 22:00 ` Thomas Gleixner
2017-06-20 22:38   ` Russell King - ARM Linux
2017-06-21  7:51   ` Pavel Machek
2017-06-21  8:39     ` Alexandre Belloni
2017-06-21  6:34       ` Pavel Machek
2017-06-21 12:35         ` Alexandre Belloni
2017-06-21 18:08           ` Pavel Machek
2017-06-21  9:19       ` Russell King - ARM Linux
2017-06-21  9:41         ` 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=20170621093549.GQ4902@n2100.armlinux.org.uk \
    --to=linux@armlinux.org.uk \
    --cc=David.Laight@ACULAB.COM \
    --cc=Support.Opensource@diasemi.com \
    --cc=a.zummo@towertech.it \
    --cc=adi-buildroot-devel@lists.sourceforge.net \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=baohua@kernel.org \
    --cc=baruch@tkos.co.il \
    --cc=benjamin.gaignard@linaro.org \
    --cc=gregory.clement@free-electrons.com \
    --cc=jason@lakedaemon.net \
    --cc=john.stultz@linaro.org \
    --cc=jonathanh@nvidia.com \
    --cc=len.brown@intel.com \
    --cc=linaro-kernel@lists.linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=maxime.ripard@free-electrons.com \
    --cc=michael.chan@broadcom.com \
    --cc=mingo@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=patches@opensource.wolfsonmicro.com \
    --cc=pavel@ucw.cz \
    --cc=rjw@rjwysocki.net \
    --cc=rtc-linux@googlegroups.com \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=slemieux.tyco@gmail.com \
    --cc=stwiss.opensource@diasemi.com \
    --cc=tglx@linutronix.de \
    --cc=thierry.reding@gmail.com \
    --cc=ulli.kroll@googlemail.com \
    --cc=vz@mleia.com \
    --cc=wens@csie.org \
    --cc=x86@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

Powered by JetHome