devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: davinci: da850: add RTC driver DT entries
@ 2013-01-25  6:13 Mrugesh Katepallewar
       [not found] ` <1359094430-14724-1-git-send-email-mrugesh.mk-l0cyMroinI0@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Mrugesh Katepallewar @ 2013-01-25  6:13 UTC (permalink / raw)
  To: devicetree-discuss, davinci-linux-open-source, linux-doc,
	linux-arm-kernel, linux-kernel
  Cc: grant.likely, rob.herring, rob, nsekhar, hs

Add RTC DT entries in da850 dts file.

Signed-off-by: Mrugesh Katepallewar <mrugesh.mk@ti.com>
---
Applies on top of v3.8-rc4 of linus tree.

Tested on da850-evm device.

Test Procedure:
date [YYYY.]MM.DD-hh:mm[:ss]
hwclock -w
reset board and check system time.

:100644 100644 37dc5a3... b16efd4... M	arch/arm/boot/dts/da850-evm.dts
:100644 100644 640ab75... a8eb1b1... M	arch/arm/boot/dts/da850.dtsi
 arch/arm/boot/dts/da850-evm.dts |    3 +++
 arch/arm/boot/dts/da850.dtsi    |    8 ++++++++
 2 files changed, 11 insertions(+)

diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
index 37dc5a3..b16efd4 100644
--- a/arch/arm/boot/dts/da850-evm.dts
+++ b/arch/arm/boot/dts/da850-evm.dts
@@ -24,5 +24,8 @@
 		serial2: serial@1d0d000 {
 			status = "okay";
 		};
+		rtc@1c23000 {
+			status = "okay";
+		};
 	};
 };
diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
index 640ab75..a8eb1b1 100644
--- a/arch/arm/boot/dts/da850.dtsi
+++ b/arch/arm/boot/dts/da850.dtsi
@@ -56,5 +56,13 @@
 			interrupt-parent = <&intc>;
 			status = "disabled";
 		};
+		rtc@1c23000 {
+			compatible = "ti,da830-rtc";
+			reg = <0x23000 0x1000>;
+			interrupts = <19
+				      19>;
+			interrupt-parent = <&intc>;
+			status = "disabled";
+		};
 	};
 };
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] ARM: davinci: da850: add RTC driver DT entries
       [not found] ` <1359094430-14724-1-git-send-email-mrugesh.mk-l0cyMroinI0@public.gmane.org>
@ 2013-01-25 10:34   ` Sekhar Nori
  2013-01-25 11:04     ` Katepallewar, Mrugesh
  0 siblings, 1 reply; 5+ messages in thread
From: Sekhar Nori @ 2013-01-25 10:34 UTC (permalink / raw)
  To: Mrugesh Katepallewar
  Cc: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
	linux-doc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, hs-ynQEQJNshbs,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On 1/25/2013 11:43 AM, Mrugesh Katepallewar wrote:
> Add RTC DT entries in da850 dts file.
> 
> Signed-off-by: Mrugesh Katepallewar <mrugesh.mk-l0cyMroinI0@public.gmane.org>
> ---
> Applies on top of v3.8-rc4 of linus tree.
> 
> Tested on da850-evm device.
> 
> Test Procedure:
> date [YYYY.]MM.DD-hh:mm[:ss]
> hwclock -w
> reset board and check system time.
> 
> :100644 100644 37dc5a3... b16efd4... M	arch/arm/boot/dts/da850-evm.dts
> :100644 100644 640ab75... a8eb1b1... M	arch/arm/boot/dts/da850.dtsi
>  arch/arm/boot/dts/da850-evm.dts |    3 +++
>  arch/arm/boot/dts/da850.dtsi    |    8 ++++++++
>  2 files changed, 11 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
> index 37dc5a3..b16efd4 100644
> --- a/arch/arm/boot/dts/da850-evm.dts
> +++ b/arch/arm/boot/dts/da850-evm.dts
> @@ -24,5 +24,8 @@
>  		serial2: serial@1d0d000 {
>  			status = "okay";
>  		};
> +		rtc@1c23000 {
> +			status = "okay";
> +		};
>  	};
>  };
> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
> index 640ab75..a8eb1b1 100644
> --- a/arch/arm/boot/dts/da850.dtsi
> +++ b/arch/arm/boot/dts/da850.dtsi
> @@ -56,5 +56,13 @@
>  			interrupt-parent = <&intc>;
>  			status = "disabled";
>  		};
> +		rtc@1c23000 {
> +			compatible = "ti,da830-rtc";
> +			reg = <0x23000 0x1000>;
> +			interrupts = <19
> +				      19>;

Why two interrupts of the same number? If there is only one interrupt
line then only one should be specified, no?

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] ARM: davinci: da850: add RTC driver DT entries
  2013-01-25 10:34   ` Sekhar Nori
@ 2013-01-25 11:04     ` Katepallewar, Mrugesh
  2013-01-25 11:22       ` Sekhar Nori
  0 siblings, 1 reply; 5+ messages in thread
From: Katepallewar, Mrugesh @ 2013-01-25 11:04 UTC (permalink / raw)
  To: Nori, Sekhar
  Cc: devicetree-discuss@lists.ozlabs.org,
	davinci-linux-open-source@linux.davincidsp.com,
	linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, grant.likely@secretlab.ca,
	rob.herring@calxeda.com, rob@landley.net, hs@denx.de

On Fri, Jan 25, 2013 at 16:04:22, Nori, Sekhar wrote:
> On 1/25/2013 11:43 AM, Mrugesh Katepallewar wrote:
> > Add RTC DT entries in da850 dts file.
> > 
> > Signed-off-by: Mrugesh Katepallewar <mrugesh.mk@ti.com>
> > ---
> > Applies on top of v3.8-rc4 of linus tree.
> > 
> > Tested on da850-evm device.
> > 
> > Test Procedure:
> > date [YYYY.]MM.DD-hh:mm[:ss]
> > hwclock -w
> > reset board and check system time.
> > 
> > :100644 100644 37dc5a3... b16efd4... M	arch/arm/boot/dts/da850-evm.dts
> > :100644 100644 640ab75... a8eb1b1... M	arch/arm/boot/dts/da850.dtsi
> >  arch/arm/boot/dts/da850-evm.dts |    3 +++
> >  arch/arm/boot/dts/da850.dtsi    |    8 ++++++++
> >  2 files changed, 11 insertions(+)
> > 
> > diff --git a/arch/arm/boot/dts/da850-evm.dts 
> > b/arch/arm/boot/dts/da850-evm.dts index 37dc5a3..b16efd4 100644
> > --- a/arch/arm/boot/dts/da850-evm.dts
> > +++ b/arch/arm/boot/dts/da850-evm.dts
> > @@ -24,5 +24,8 @@
> >  		serial2: serial@1d0d000 {
> >  			status = "okay";
> >  		};
> > +		rtc@1c23000 {
> > +			status = "okay";
> > +		};
> >  	};
> >  };
> > diff --git a/arch/arm/boot/dts/da850.dtsi 
> > b/arch/arm/boot/dts/da850.dtsi index 640ab75..a8eb1b1 100644
> > --- a/arch/arm/boot/dts/da850.dtsi
> > +++ b/arch/arm/boot/dts/da850.dtsi
> > @@ -56,5 +56,13 @@
> >  			interrupt-parent = <&intc>;
> >  			status = "disabled";
> >  		};
> > +		rtc@1c23000 {
> > +			compatible = "ti,da830-rtc";
> > +			reg = <0x23000 0x1000>;
> > +			interrupts = <19
> > +				      19>;
> 
> Why two interrupts of the same number? If there is only one interrupt line then only one should be specified, no?
We are using common OMAP RTC driver for da850 and other ti SoC's (e.g.am33xx). I have seen in am33xx.dtsi rtc timer
and alarm interrupts are different. So, two interrupt numbers are expected from RTC DT node.
> 
> Thanks,
> Sekhar
> 


Regards, 
Mrugesh

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ARM: davinci: da850: add RTC driver DT entries
  2013-01-25 11:04     ` Katepallewar, Mrugesh
@ 2013-01-25 11:22       ` Sekhar Nori
  2013-01-28  7:00         ` Katepallewar, Mrugesh
  0 siblings, 1 reply; 5+ messages in thread
From: Sekhar Nori @ 2013-01-25 11:22 UTC (permalink / raw)
  To: Katepallewar, Mrugesh
  Cc: devicetree-discuss@lists.ozlabs.org,
	davinci-linux-open-source@linux.davincidsp.com,
	linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, grant.likely@secretlab.ca,
	rob.herring@calxeda.com, rob@landley.net, hs@denx.de

On 1/25/2013 4:34 PM, Katepallewar, Mrugesh wrote:
> On Fri, Jan 25, 2013 at 16:04:22, Nori, Sekhar wrote:
>> On 1/25/2013 11:43 AM, Mrugesh Katepallewar wrote:
>>> Add RTC DT entries in da850 dts file.
>>>
>>> Signed-off-by: Mrugesh Katepallewar <mrugesh.mk@ti.com>
>>> ---
>>> Applies on top of v3.8-rc4 of linus tree.
>>>
>>> Tested on da850-evm device.
>>>
>>> Test Procedure:
>>> date [YYYY.]MM.DD-hh:mm[:ss]
>>> hwclock -w
>>> reset board and check system time.
>>>
>>> :100644 100644 37dc5a3... b16efd4... M	arch/arm/boot/dts/da850-evm.dts
>>> :100644 100644 640ab75... a8eb1b1... M	arch/arm/boot/dts/da850.dtsi
>>>  arch/arm/boot/dts/da850-evm.dts |    3 +++
>>>  arch/arm/boot/dts/da850.dtsi    |    8 ++++++++
>>>  2 files changed, 11 insertions(+)
>>>
>>> diff --git a/arch/arm/boot/dts/da850-evm.dts 
>>> b/arch/arm/boot/dts/da850-evm.dts index 37dc5a3..b16efd4 100644
>>> --- a/arch/arm/boot/dts/da850-evm.dts
>>> +++ b/arch/arm/boot/dts/da850-evm.dts
>>> @@ -24,5 +24,8 @@
>>>  		serial2: serial@1d0d000 {
>>>  			status = "okay";
>>>  		};
>>> +		rtc@1c23000 {

I did not mention this last time, but this should be:

		rtc0: rtc@1c23000 {

to be consistent with rest of the file.

>>> +			status = "okay";
>>> +		};
>>>  	};
>>>  };
>>> diff --git a/arch/arm/boot/dts/da850.dtsi 
>>> b/arch/arm/boot/dts/da850.dtsi index 640ab75..a8eb1b1 100644
>>> --- a/arch/arm/boot/dts/da850.dtsi
>>> +++ b/arch/arm/boot/dts/da850.dtsi
>>> @@ -56,5 +56,13 @@
>>>  			interrupt-parent = <&intc>;
>>>  			status = "disabled";
>>>  		};
>>> +		rtc@1c23000 {

Here too.

>>> +			compatible = "ti,da830-rtc";
>>> +			reg = <0x23000 0x1000>;
>>> +			interrupts = <19
>>> +				      19>;
>>
>> Why two interrupts of the same number? If there is only one interrupt line then only one should be specified, no?
> We are using common OMAP RTC driver for da850 and other ti SoC's (e.g.am33xx). I have seen in am33xx.dtsi rtc timer
> and alarm interrupts are different. So, two interrupt numbers are expected from RTC DT node.

Okay. Looking at the OMAP-L138 TRM, I see that the IP on that SoC
supports both alarm and timer events and both arrive on the same
interrupt number (as opposed to am335x where they supposedly arrive on
different interrupt lines). What you have looks fine to me considering
this.

Also, the interrupt-parent setting needs to be removed. See the patch
Prabhakar just submitted.

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] ARM: davinci: da850: add RTC driver DT entries
  2013-01-25 11:22       ` Sekhar Nori
@ 2013-01-28  7:00         ` Katepallewar, Mrugesh
  0 siblings, 0 replies; 5+ messages in thread
From: Katepallewar, Mrugesh @ 2013-01-28  7:00 UTC (permalink / raw)
  To: Nori, Sekhar
  Cc: devicetree-discuss@lists.ozlabs.org,
	davinci-linux-open-source@linux.davincidsp.com,
	linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, grant.likely@secretlab.ca,
	rob.herring@calxeda.com, rob@landley.net, hs@denx.de

On Fri, Jan 25, 2013 at 16:52:18, Nori, Sekhar wrote:
> On 1/25/2013 4:34 PM, Katepallewar, Mrugesh wrote:
> > On Fri, Jan 25, 2013 at 16:04:22, Nori, Sekhar wrote:
> >> On 1/25/2013 11:43 AM, Mrugesh Katepallewar wrote:
> >>> Add RTC DT entries in da850 dts file.
> >>>
> >>> Signed-off-by: Mrugesh Katepallewar <mrugesh.mk@ti.com>
> >>> ---
> >>> Applies on top of v3.8-rc4 of linus tree.
> >>>
> >>> Tested on da850-evm device.
> >>>
> >>> Test Procedure:
> >>> date [YYYY.]MM.DD-hh:mm[:ss]
> >>> hwclock -w
> >>> reset board and check system time.
> >>>
> >>> :100644 100644 37dc5a3... b16efd4... M	arch/arm/boot/dts/da850-evm.dts
> >>> :100644 100644 640ab75... a8eb1b1... M	arch/arm/boot/dts/da850.dtsi
> >>>  arch/arm/boot/dts/da850-evm.dts |    3 +++
> >>>  arch/arm/boot/dts/da850.dtsi    |    8 ++++++++
> >>>  2 files changed, 11 insertions(+)
> >>>
> >>> diff --git a/arch/arm/boot/dts/da850-evm.dts 
> >>> b/arch/arm/boot/dts/da850-evm.dts index 37dc5a3..b16efd4 100644
> >>> --- a/arch/arm/boot/dts/da850-evm.dts
> >>> +++ b/arch/arm/boot/dts/da850-evm.dts
> >>> @@ -24,5 +24,8 @@
> >>>  		serial2: serial@1d0d000 {
> >>>  			status = "okay";
> >>>  		};
> >>> +		rtc@1c23000 {
> 
> I did not mention this last time, but this should be:
> 
> 		rtc0: rtc@1c23000 {
> 
> to be consistent with rest of the file.

Okay. I will send this in next version.
> 
> >>> +			status = "okay";
> >>> +		};
> >>>  	};
> >>>  };
> >>> diff --git a/arch/arm/boot/dts/da850.dtsi 
> >>> b/arch/arm/boot/dts/da850.dtsi index 640ab75..a8eb1b1 100644
> >>> --- a/arch/arm/boot/dts/da850.dtsi
> >>> +++ b/arch/arm/boot/dts/da850.dtsi
> >>> @@ -56,5 +56,13 @@
> >>>  			interrupt-parent = <&intc>;
> >>>  			status = "disabled";
> >>>  		};
> >>> +		rtc@1c23000 {
> 
> Here too.
> 
Okay. I will send this in next version.

> >>> +			compatible = "ti,da830-rtc";
> >>> +			reg = <0x23000 0x1000>;
> >>> +			interrupts = <19
> >>> +				      19>;
> >>
> >> Why two interrupts of the same number? If there is only one interrupt line then only one should be specified, no?
> > We are using common OMAP RTC driver for da850 and other ti SoC's 
> > (e.g.am33xx). I have seen in am33xx.dtsi rtc timer and alarm interrupts are different. So, two interrupt numbers are expected from RTC DT node.
> 
> Okay. Looking at the OMAP-L138 TRM, I see that the IP on that SoC supports both alarm and timer events and both arrive on the same interrupt number (as opposed to am335x where they supposedly arrive on different interrupt lines). What you have looks fine to me considering this.
> 
> Also, the interrupt-parent setting needs to be removed. See the patch Prabhakar just submitted.

Okay. I will send this in next version.

> 
> Thanks,
> Sekhar
> 

Regards, 
Mrugesh

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-28  7:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-25  6:13 [PATCH] ARM: davinci: da850: add RTC driver DT entries Mrugesh Katepallewar
     [not found] ` <1359094430-14724-1-git-send-email-mrugesh.mk-l0cyMroinI0@public.gmane.org>
2013-01-25 10:34   ` Sekhar Nori
2013-01-25 11:04     ` Katepallewar, Mrugesh
2013-01-25 11:22       ` Sekhar Nori
2013-01-28  7:00         ` Katepallewar, Mrugesh

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).