From: Johan Hovold <johan@kernel.org>
To: Boris BREZILLON <boris.brezillon@free-electrons.com>
Cc: Johan Hovold <johan@kernel.org>,
Nicolas Ferre <nicolas.ferre@atmel.com>,
Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>,
Andrew Victor <linux@maxim.org.za>,
Alessandro Zummo <a.zummo@towertech.it>,
rtc-linux@googlegroups.com, Rob Herring <robh+dt@kernel.org>,
Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 5/5] rtc: at91sam9: add DT bindings documentation
Date: Wed, 10 Sep 2014 15:16:25 +0200 [thread overview]
Message-ID: <20140910131625.GJ2974@localhost> (raw)
In-Reply-To: <20140910144315.240621e6@bbrezillon>
On Wed, Sep 10, 2014 at 02:43:15PM +0200, Boris BREZILLON wrote:
> Hi Johan,
>
> On Wed, 10 Sep 2014 14:14:24 +0200
> Johan Hovold <johan@kernel.org> wrote:
>
> > On Wed, Sep 03, 2014 at 10:45:34AM +0200, Boris BREZILLON wrote:
> > > Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > > ---
> > > .../devicetree/bindings/rtc/atmel,at91sam9-rtc.txt | 20 ++++++++++++++++++++
> > > 1 file changed, 20 insertions(+)
> > > create mode 100644 Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > >
> > > diff --git a/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > new file mode 100644
> > > index 0000000..9ca455f
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > @@ -0,0 +1,20 @@
> > > +Atmel AT91SAM9260 Real Time Timer
> > > +
> > > +Required properties:
> > > +- compatible: should be: "atmel,at91sam9260-rtt"
> > > +- reg: should contain 2 memory regions
> > > + * the first one encodes the memory region of the RTT controller
> > > + * the second one encodes the GPBR (General Purpose Backup Resgisters)
> > > + memory region used to store the current time
> > > +- interrupts: rtc alarm/event interrupt
> > > +- clocks: should contain one clock pointing the the slow clk
> > > +
> > > +Example:
> > > +
> > > +rtc@fffffe00 {
> > > + compatible = "atmel,at91sam9260-rtt";
> > > + reg = <0xfffffd20 0x10
> > > + 0xfffffd50 0x4>;
> > > + interrupts = <1 4 7>;
> > > + clocks = <&clk32k>;
> > > +};
> >
> > This does not describe the hardware, but rather a specific software
> > configuration.
> >
> > The RTT is first of all not an RTC (although it can be used as one in a
> > specific software configuration). And the second register resource above
> > is not an RTT register, but a general-purpose backup register could be
> > used for other purposes (which register to use is currently configurable
> > for legacy booting using CONFIG_RTC_DRV_AT91SAM9_GPBR).
> >
> > This was discussed in the thread where I posted an RFC for this last
> > year (which you linked to in your original submission thread), but no
> > conclusion was reached:
> >
> > http://www.spinics.net/lists/arm-kernel/msg236292.html
>
> Yes, I read this thread.
I'm sure you did. I just tried to summarise the main points of it above.
> Please, lets just find a solution, even if it's not a perfect one,
> because the situation is unacceptable.
> We're missing this features since the move to DT because we were not
> able to agree on a DT binding...
Agreed. My suggestion in the thread above was along the lines of generic
use-neutral rtt and gmbr nodes, and then an additional attribute to the
rtt node (which can be set in a specific board dts, when enabling the
rtt) providing a gmbr handle (and register number) for the rtc-at91sam9
driver to use.
This in itself does not resolve which rtt-driver would get bound if
there is ever another one (and the gmbr attribute is present), though.
> I know DT bindings are supposed to represent HW parts and not what
> they're used for or how they're configured, but do you see any other
> real usage of the RTT block ?
It's at least not hard to imagine other uses for the battery-backed up
gmbr registers.
I'll look into how that could be implemented.
> BTW, I don't care which binding/implementation is chosen but we need to
> sort this out!
Ok, let's do that. :)
Johan
WARNING: multiple messages have this Message-ID (diff)
From: johan@kernel.org (Johan Hovold)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 5/5] rtc: at91sam9: add DT bindings documentation
Date: Wed, 10 Sep 2014 15:16:25 +0200 [thread overview]
Message-ID: <20140910131625.GJ2974@localhost> (raw)
In-Reply-To: <20140910144315.240621e6@bbrezillon>
On Wed, Sep 10, 2014 at 02:43:15PM +0200, Boris BREZILLON wrote:
> Hi Johan,
>
> On Wed, 10 Sep 2014 14:14:24 +0200
> Johan Hovold <johan@kernel.org> wrote:
>
> > On Wed, Sep 03, 2014 at 10:45:34AM +0200, Boris BREZILLON wrote:
> > > Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > > ---
> > > .../devicetree/bindings/rtc/atmel,at91sam9-rtc.txt | 20 ++++++++++++++++++++
> > > 1 file changed, 20 insertions(+)
> > > create mode 100644 Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > >
> > > diff --git a/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > new file mode 100644
> > > index 0000000..9ca455f
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > @@ -0,0 +1,20 @@
> > > +Atmel AT91SAM9260 Real Time Timer
> > > +
> > > +Required properties:
> > > +- compatible: should be: "atmel,at91sam9260-rtt"
> > > +- reg: should contain 2 memory regions
> > > + * the first one encodes the memory region of the RTT controller
> > > + * the second one encodes the GPBR (General Purpose Backup Resgisters)
> > > + memory region used to store the current time
> > > +- interrupts: rtc alarm/event interrupt
> > > +- clocks: should contain one clock pointing the the slow clk
> > > +
> > > +Example:
> > > +
> > > +rtc at fffffe00 {
> > > + compatible = "atmel,at91sam9260-rtt";
> > > + reg = <0xfffffd20 0x10
> > > + 0xfffffd50 0x4>;
> > > + interrupts = <1 4 7>;
> > > + clocks = <&clk32k>;
> > > +};
> >
> > This does not describe the hardware, but rather a specific software
> > configuration.
> >
> > The RTT is first of all not an RTC (although it can be used as one in a
> > specific software configuration). And the second register resource above
> > is not an RTT register, but a general-purpose backup register could be
> > used for other purposes (which register to use is currently configurable
> > for legacy booting using CONFIG_RTC_DRV_AT91SAM9_GPBR).
> >
> > This was discussed in the thread where I posted an RFC for this last
> > year (which you linked to in your original submission thread), but no
> > conclusion was reached:
> >
> > http://www.spinics.net/lists/arm-kernel/msg236292.html
>
> Yes, I read this thread.
I'm sure you did. I just tried to summarise the main points of it above.
> Please, lets just find a solution, even if it's not a perfect one,
> because the situation is unacceptable.
> We're missing this features since the move to DT because we were not
> able to agree on a DT binding...
Agreed. My suggestion in the thread above was along the lines of generic
use-neutral rtt and gmbr nodes, and then an additional attribute to the
rtt node (which can be set in a specific board dts, when enabling the
rtt) providing a gmbr handle (and register number) for the rtc-at91sam9
driver to use.
This in itself does not resolve which rtt-driver would get bound if
there is ever another one (and the gmbr attribute is present), though.
> I know DT bindings are supposed to represent HW parts and not what
> they're used for or how they're configured, but do you see any other
> real usage of the RTT block ?
It's at least not hard to imagine other uses for the battery-backed up
gmbr registers.
I'll look into how that could be implemented.
> BTW, I don't care which binding/implementation is chosen but we need to
> sort this out!
Ok, let's do that. :)
Johan
WARNING: multiple messages have this Message-ID (diff)
From: Johan Hovold <johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Boris BREZILLON
<boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
Cc: Johan Hovold <johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Nicolas Ferre
<nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>,
Jean-Christophe Plagniol-Villard
<plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>,
Alexandre Belloni
<alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
Andrew Victor <linux-PelNFVqkFnVyf+4FbqDuWQ@public.gmane.org>,
Alessandro Zummo
<a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org>,
rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Ian Campbell
<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 5/5] rtc: at91sam9: add DT bindings documentation
Date: Wed, 10 Sep 2014 15:16:25 +0200 [thread overview]
Message-ID: <20140910131625.GJ2974@localhost> (raw)
In-Reply-To: <20140910144315.240621e6@bbrezillon>
On Wed, Sep 10, 2014 at 02:43:15PM +0200, Boris BREZILLON wrote:
> Hi Johan,
>
> On Wed, 10 Sep 2014 14:14:24 +0200
> Johan Hovold <johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
>
> > On Wed, Sep 03, 2014 at 10:45:34AM +0200, Boris BREZILLON wrote:
> > > Signed-off-by: Boris BREZILLON <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
> > > ---
> > > .../devicetree/bindings/rtc/atmel,at91sam9-rtc.txt | 20 ++++++++++++++++++++
> > > 1 file changed, 20 insertions(+)
> > > create mode 100644 Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > >
> > > diff --git a/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > new file mode 100644
> > > index 0000000..9ca455f
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
> > > @@ -0,0 +1,20 @@
> > > +Atmel AT91SAM9260 Real Time Timer
> > > +
> > > +Required properties:
> > > +- compatible: should be: "atmel,at91sam9260-rtt"
> > > +- reg: should contain 2 memory regions
> > > + * the first one encodes the memory region of the RTT controller
> > > + * the second one encodes the GPBR (General Purpose Backup Resgisters)
> > > + memory region used to store the current time
> > > +- interrupts: rtc alarm/event interrupt
> > > +- clocks: should contain one clock pointing the the slow clk
> > > +
> > > +Example:
> > > +
> > > +rtc@fffffe00 {
> > > + compatible = "atmel,at91sam9260-rtt";
> > > + reg = <0xfffffd20 0x10
> > > + 0xfffffd50 0x4>;
> > > + interrupts = <1 4 7>;
> > > + clocks = <&clk32k>;
> > > +};
> >
> > This does not describe the hardware, but rather a specific software
> > configuration.
> >
> > The RTT is first of all not an RTC (although it can be used as one in a
> > specific software configuration). And the second register resource above
> > is not an RTT register, but a general-purpose backup register could be
> > used for other purposes (which register to use is currently configurable
> > for legacy booting using CONFIG_RTC_DRV_AT91SAM9_GPBR).
> >
> > This was discussed in the thread where I posted an RFC for this last
> > year (which you linked to in your original submission thread), but no
> > conclusion was reached:
> >
> > http://www.spinics.net/lists/arm-kernel/msg236292.html
>
> Yes, I read this thread.
I'm sure you did. I just tried to summarise the main points of it above.
> Please, lets just find a solution, even if it's not a perfect one,
> because the situation is unacceptable.
> We're missing this features since the move to DT because we were not
> able to agree on a DT binding...
Agreed. My suggestion in the thread above was along the lines of generic
use-neutral rtt and gmbr nodes, and then an additional attribute to the
rtt node (which can be set in a specific board dts, when enabling the
rtt) providing a gmbr handle (and register number) for the rtc-at91sam9
driver to use.
This in itself does not resolve which rtt-driver would get bound if
there is ever another one (and the gmbr attribute is present), though.
> I know DT bindings are supposed to represent HW parts and not what
> they're used for or how they're configured, but do you see any other
> real usage of the RTT block ?
It's at least not hard to imagine other uses for the battery-backed up
gmbr registers.
I'll look into how that could be implemented.
> BTW, I don't care which binding/implementation is chosen but we need to
> sort this out!
Ok, let's do that. :)
Johan
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2014-09-10 13:16 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-03 8:45 [PATCH 0/5] rtc: at91sam9: add DT support Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` [PATCH 1/5] rtc: at91sam9: remove references to mach specific headers Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-08 17:32 ` Alexandre Belloni
2014-09-08 17:32 ` Alexandre Belloni
2014-09-08 17:32 ` Alexandre Belloni
2014-09-03 8:45 ` [PATCH 2/5] rtc: at91sam9: use standard readl/writel functions instead of raw versions Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` [PATCH 3/5] rtc: at91sam9: add DT support Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` [PATCH 4/5] rtc: at91sam9: retain slow clock and check its rate Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-08 17:33 ` Alexandre Belloni
2014-09-08 17:33 ` Alexandre Belloni
2014-09-08 17:33 ` Alexandre Belloni
2014-09-08 19:22 ` Boris BREZILLON
2014-09-08 19:22 ` Boris BREZILLON
2014-09-08 19:37 ` Boris BREZILLON
2014-09-08 19:37 ` Boris BREZILLON
2014-09-08 19:37 ` Boris BREZILLON
2014-09-09 8:36 ` Nicolas Ferre
2014-09-09 8:36 ` Nicolas Ferre
2014-09-09 8:36 ` Nicolas Ferre
2014-09-03 8:45 ` [PATCH 5/5] rtc: at91sam9: add DT bindings documentation Boris BREZILLON
2014-09-03 8:45 ` Boris BREZILLON
2014-09-10 12:14 ` Johan Hovold
2014-09-10 12:14 ` Johan Hovold
2014-09-10 12:14 ` Johan Hovold
2014-09-10 12:43 ` Boris BREZILLON
2014-09-10 12:43 ` Boris BREZILLON
2014-09-10 12:43 ` Boris BREZILLON
2014-09-10 13:16 ` Johan Hovold [this message]
2014-09-10 13:16 ` Johan Hovold
2014-09-10 13:16 ` Johan Hovold
2014-09-10 13:20 ` Boris BREZILLON
2014-09-10 13:20 ` Boris BREZILLON
2014-09-10 13:20 ` Boris BREZILLON
2014-09-10 15:07 ` Johan Hovold
2014-09-10 15:07 ` Johan Hovold
2014-09-10 15:07 ` Johan Hovold
2014-09-10 15:31 ` Boris BREZILLON
2014-09-10 15:31 ` Boris BREZILLON
2014-09-10 15:52 ` Johan Hovold
2014-09-10 15:52 ` Johan Hovold
2014-09-10 15:52 ` Johan Hovold
2014-09-10 16:55 ` Nicolas Ferre
2014-09-10 16:55 ` Nicolas Ferre
2014-09-10 16:55 ` Nicolas Ferre
2014-09-10 15:35 ` Boris BREZILLON
2014-09-10 15:35 ` Boris BREZILLON
2014-09-10 15:35 ` Boris BREZILLON
2014-09-10 15:57 ` Johan Hovold
2014-09-10 15:57 ` Johan Hovold
2014-09-03 9:31 ` [PATCH 0/5] rtc: at91sam9: add DT support Boris BREZILLON
2014-09-03 9:31 ` Boris BREZILLON
2014-09-03 9:31 ` Boris BREZILLON
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=20140910131625.GJ2974@localhost \
--to=johan@kernel.org \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@free-electrons.com \
--cc=boris.brezillon@free-electrons.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@maxim.org.za \
--cc=mark.rutland@arm.com \
--cc=nicolas.ferre@atmel.com \
--cc=pawel.moll@arm.com \
--cc=plagnioj@jcrosoft.com \
--cc=robh+dt@kernel.org \
--cc=rtc-linux@googlegroups.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.