All of lore.kernel.org
 help / color / mirror / Atom feed
* [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support
@ 2018-03-12  7:10 Tero Kristo
  2018-03-12  7:10 ` [REPOST PATCH 1/2] ARM: dts: keystone-k2g: add watchdog support Tero Kristo
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Tero Kristo @ 2018-03-12  7:10 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Santosh,

Reposted the ECC handler support as per your request, and applied
your ack on that. Reposted also patch #1 as that was pending a minor
cosmetic fix.

-Tero

--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

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

* [REPOST PATCH 1/2] ARM: dts: keystone-k2g: add watchdog support
  2018-03-12  7:10 [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support Tero Kristo
@ 2018-03-12  7:10 ` Tero Kristo
  2018-03-12  7:10 ` [REPOST PATCH 2/2] ARM: dts: Keystone: add ECC error handler support Tero Kristo
  2018-03-12  7:22 ` [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support santosh.shilimkar at oracle.com
  2 siblings, 0 replies; 6+ messages in thread
From: Tero Kristo @ 2018-03-12  7:10 UTC (permalink / raw)
  To: linux-arm-kernel

Add a watchdog node for keystone-k2g, with the corresponding clock and
power domain handles.

Signed-off-by: Tero Kristo <t-kristo@ti.com>
---
 arch/arm/boot/dts/keystone-k2g.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi
index fd06171..2656701 100644
--- a/arch/arm/boot/dts/keystone-k2g.dtsi
+++ b/arch/arm/boot/dts/keystone-k2g.dtsi
@@ -583,5 +583,12 @@
 			power-domains = <&k2g_pds 0x0013>;
 			clocks = <&k2g_clks 0x0013 0>;
 		};
+
+		wdt: wdt at 02250000 {
+			compatible = "ti,keystone-wdt", "ti,davinci-wdt";
+			reg = <0x02250000 0x80>;
+			power-domains = <&k2g_pds 0x22>;
+			clocks = <&k2g_clks 0x22 0>;
+		};
 	};
 };
-- 
1.9.1

--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

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

* [REPOST PATCH 2/2] ARM: dts: Keystone: add ECC error handler support
  2018-03-12  7:10 [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support Tero Kristo
  2018-03-12  7:10 ` [REPOST PATCH 1/2] ARM: dts: keystone-k2g: add watchdog support Tero Kristo
@ 2018-03-12  7:10 ` Tero Kristo
  2018-03-12  7:22 ` [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support santosh.shilimkar at oracle.com
  2 siblings, 0 replies; 6+ messages in thread
From: Tero Kristo @ 2018-03-12  7:10 UTC (permalink / raw)
  To: linux-arm-kernel

From: Murali Karicheri <m-karicheri2@ti.com>

Add emif node for keystone2 devices, which is used for ECC support.

Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
[t-kristo at ti.com: made emif enabled by default for all keystone2 devices]
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Acked-by: Santosh Shilimkar <ssantosh@kernel.org>
---
 arch/arm/boot/dts/keystone-k2g.dtsi | 6 ++++++
 arch/arm/boot/dts/keystone.dtsi     | 7 +++++++
 2 files changed, 13 insertions(+)

diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi
index 2656701..95bff0a 100644
--- a/arch/arm/boot/dts/keystone-k2g.dtsi
+++ b/arch/arm/boot/dts/keystone-k2g.dtsi
@@ -590,5 +590,11 @@
 			power-domains = <&k2g_pds 0x22>;
 			clocks = <&k2g_clks 0x22 0>;
 		};
+
+		emif: emif at 21010000 {
+			compatible = "ti,emif-keystone";
+			reg = <0x21010000 0x200>;
+			interrupts = <GIC_SPI 123 IRQ_TYPE_EDGE_RISING>;
+		};
 	};
 };
diff --git a/arch/arm/boot/dts/keystone.dtsi b/arch/arm/boot/dts/keystone.dtsi
index 93ea5c6..41339bd 100644
--- a/arch/arm/boot/dts/keystone.dtsi
+++ b/arch/arm/boot/dts/keystone.dtsi
@@ -338,5 +338,12 @@
 					<GIC_SPI 29 IRQ_TYPE_EDGE_RISING>;
 			};
 		};
+
+		emif: emif at 21010000 {
+			compatible = "ti,emif-keystone";
+			reg = <0x21010000 0x200>;
+			interrupts = <GIC_SPI 448 IRQ_TYPE_EDGE_RISING>;
+			interrupt-parent = <&gic>;
+		};
 	};
 };
-- 
1.9.1

--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

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

* [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support
  2018-03-12  7:10 [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support Tero Kristo
  2018-03-12  7:10 ` [REPOST PATCH 1/2] ARM: dts: keystone-k2g: add watchdog support Tero Kristo
  2018-03-12  7:10 ` [REPOST PATCH 2/2] ARM: dts: Keystone: add ECC error handler support Tero Kristo
@ 2018-03-12  7:22 ` santosh.shilimkar at oracle.com
  2018-03-12 14:16   ` Arnd Bergmann
  2 siblings, 1 reply; 6+ messages in thread
From: santosh.shilimkar at oracle.com @ 2018-03-12  7:22 UTC (permalink / raw)
  To: linux-arm-kernel


On 3/12/18 12:10 AM, Tero Kristo wrote:
> Hi Santosh,
> 
> Reposted the ECC handler support as per your request, and applied
> your ack on that. Reposted also patch #1 as that was pending a minor
> cosmetic fix.
> 
Thanks.

Hi Arnd,
Will you be able to apply these two patches to arm-soc dts branch ?
Do let me know if you want me to send pull request for two patches
on top of earlier pull request [1]

Regards,
Santosh
[1] 
https://www.mail-archive.com/linux-kernel at vger.kernel.org/msg1627765.html

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

* [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support
  2018-03-12  7:22 ` [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support santosh.shilimkar at oracle.com
@ 2018-03-12 14:16   ` Arnd Bergmann
  2018-03-12 16:46     ` Santosh Shilimkar
  0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2018-03-12 14:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Mar 12, 2018 at 8:22 AM, santosh.shilimkar at oracle.com
<santosh.shilimkar@oracle.com> wrote:
>
> On 3/12/18 12:10 AM, Tero Kristo wrote:
>>
>> Hi Santosh,
>>
>> Reposted the ECC handler support as per your request, and applied
>> your ack on that. Reposted also patch #1 as that was pending a minor
>> cosmetic fix.
>>
> Thanks.
>
> Hi Arnd,
> Will you be able to apply these two patches to arm-soc dts branch ?
> Do let me know if you want me to send pull request for two patches
> on top of earlier pull request [1]

I applied both now, but a pull request would have been easier since
I had to go hunting for the patches in the linux-arm-kernel mailing list.

My workflow makes it easier to pick up patches sent 'to:arm at kernel.org',
so if you want to avoid having to prepare a branch, you can always just
bounce individual patches there with your added 'Signed-off-by'.

        Arnd

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

* [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support
  2018-03-12 14:16   ` Arnd Bergmann
@ 2018-03-12 16:46     ` Santosh Shilimkar
  0 siblings, 0 replies; 6+ messages in thread
From: Santosh Shilimkar @ 2018-03-12 16:46 UTC (permalink / raw)
  To: linux-arm-kernel

On 3/12/2018 7:16 AM, Arnd Bergmann wrote:
> On Mon, Mar 12, 2018 at 8:22 AM, santosh.shilimkar at oracle.com
> <santosh.shilimkar@oracle.com> wrote:
>>
>> On 3/12/18 12:10 AM, Tero Kristo wrote:
>>>
>>> Hi Santosh,
>>>
>>> Reposted the ECC handler support as per your request, and applied
>>> your ack on that. Reposted also patch #1 as that was pending a minor
>>> cosmetic fix.
>>>
>> Thanks.
>>
>> Hi Arnd,
>> Will you be able to apply these two patches to arm-soc dts branch ?
>> Do let me know if you want me to send pull request for two patches
>> on top of earlier pull request [1]
> 
> I applied both now, but a pull request would have been easier since
> I had to go hunting for the patches in the linux-arm-kernel mailing list.
> 
> My workflow makes it easier to pick up patches sent 'to:arm at kernel.org',
> so if you want to avoid having to prepare a branch, you can always just
> bounce individual patches there with your added 'Signed-off-by'.
> 
This patch just missed from my earlier pull request. Will send pull
request in future and for individual patches if needed just bounce
it with SOB. Thanks for taking care of it this time.

Regards,
Santosh

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

end of thread, other threads:[~2018-03-12 16:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-12  7:10 [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support Tero Kristo
2018-03-12  7:10 ` [REPOST PATCH 1/2] ARM: dts: keystone-k2g: add watchdog support Tero Kristo
2018-03-12  7:10 ` [REPOST PATCH 2/2] ARM: dts: Keystone: add ECC error handler support Tero Kristo
2018-03-12  7:22 ` [REPOST PATCH 0/2] ARM: dts: keystone WDT & ECC support santosh.shilimkar at oracle.com
2018-03-12 14:16   ` Arnd Bergmann
2018-03-12 16:46     ` Santosh Shilimkar

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.