linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] adding spi alias for qspi
@ 2015-11-19  7:01 Mugunthan V N
  2015-11-19  7:01 ` [PATCH 1/2] dts: dra7: add " Mugunthan V N
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Mugunthan V N @ 2015-11-19  7:01 UTC (permalink / raw)
  To: linux-arm-kernel

Adding missed spi alias for qspi which helps probe the qspi
device in U-Boot.

Mugunthan V N (2):
  dts: dra7: add spi alias for qspi
  arm: dts: am4372: add spi alias for qspi

 arch/arm/boot/dts/am4372.dtsi | 1 +
 arch/arm/boot/dts/dra7.dtsi   | 1 +
 2 files changed, 2 insertions(+)

-- 
2.6.2.280.g74301d6

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

* [PATCH 1/2] dts: dra7: add spi alias for qspi
  2015-11-19  7:01 [PATCH 0/2] adding spi alias for qspi Mugunthan V N
@ 2015-11-19  7:01 ` Mugunthan V N
  2015-11-22 20:35   ` Tom Rini
  2015-11-19  7:01 ` [PATCH 2/2] arm: dts: am4372: " Mugunthan V N
  2015-11-30 21:44 ` [PATCH 0/2] adding " Tony Lindgren
  2 siblings, 1 reply; 6+ messages in thread
From: Mugunthan V N @ 2015-11-19  7:01 UTC (permalink / raw)
  To: linux-arm-kernel

Set the alias for qspi to spi0

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
---
 arch/arm/boot/dts/dra7.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index bc672fb..b2badf9 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -41,6 +41,7 @@
 		ethernet1 = &cpsw_emac1;
 		d_can0 = &dcan1;
 		d_can1 = &dcan2;
+		spi0 = &qspi;
 	};
 
 	timer {
-- 
2.6.2.280.g74301d6

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

* [PATCH 2/2] arm: dts: am4372: add spi alias for qspi
  2015-11-19  7:01 [PATCH 0/2] adding spi alias for qspi Mugunthan V N
  2015-11-19  7:01 ` [PATCH 1/2] dts: dra7: add " Mugunthan V N
@ 2015-11-19  7:01 ` Mugunthan V N
  2015-11-22 20:35   ` Tom Rini
  2015-11-30 21:44 ` [PATCH 0/2] adding " Tony Lindgren
  2 siblings, 1 reply; 6+ messages in thread
From: Mugunthan V N @ 2015-11-19  7:01 UTC (permalink / raw)
  To: linux-arm-kernel

Set the alias for qspi to spi0

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
---
 arch/arm/boot/dts/am4372.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index d83ff9c..bb03b80 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -30,6 +30,7 @@
 		serial5 = &uart5;
 		ethernet0 = &cpsw_emac0;
 		ethernet1 = &cpsw_emac1;
+		spi0 = &qspi;
 	};
 
 	cpus {
-- 
2.6.2.280.g74301d6

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

* [PATCH 1/2] dts: dra7: add spi alias for qspi
  2015-11-19  7:01 ` [PATCH 1/2] dts: dra7: add " Mugunthan V N
@ 2015-11-22 20:35   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2015-11-22 20:35 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Nov 19, 2015 at 12:31:01PM +0530, Mugunthan V N wrote:

> Set the alias for qspi to spi0
> 
> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20151122/42a0730f/attachment.sig>

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

* [PATCH 2/2] arm: dts: am4372: add spi alias for qspi
  2015-11-19  7:01 ` [PATCH 2/2] arm: dts: am4372: " Mugunthan V N
@ 2015-11-22 20:35   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2015-11-22 20:35 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Nov 19, 2015 at 12:31:02PM +0530, Mugunthan V N wrote:

> Set the alias for qspi to spi0
> 
> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom

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

* [PATCH 0/2] adding spi alias for qspi
  2015-11-19  7:01 [PATCH 0/2] adding spi alias for qspi Mugunthan V N
  2015-11-19  7:01 ` [PATCH 1/2] dts: dra7: add " Mugunthan V N
  2015-11-19  7:01 ` [PATCH 2/2] arm: dts: am4372: " Mugunthan V N
@ 2015-11-30 21:44 ` Tony Lindgren
  2 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2015-11-30 21:44 UTC (permalink / raw)
  To: linux-arm-kernel

* Mugunthan V N <mugunthanvnm@ti.com> [151118 23:02]:
> Adding missed spi alias for qspi which helps probe the qspi
> device in U-Boot.
> 
> Mugunthan V N (2):
>   dts: dra7: add spi alias for qspi
>   arm: dts: am4372: add spi alias for qspi
> 
>  arch/arm/boot/dts/am4372.dtsi | 1 +
>  arch/arm/boot/dts/dra7.dtsi   | 1 +
>  2 files changed, 2 insertions(+)

Applying both into omap-for-v4.5/dt thanks.

Tony

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

end of thread, other threads:[~2015-11-30 21:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-19  7:01 [PATCH 0/2] adding spi alias for qspi Mugunthan V N
2015-11-19  7:01 ` [PATCH 1/2] dts: dra7: add " Mugunthan V N
2015-11-22 20:35   ` Tom Rini
2015-11-19  7:01 ` [PATCH 2/2] arm: dts: am4372: " Mugunthan V N
2015-11-22 20:35   ` Tom Rini
2015-11-30 21:44 ` [PATCH 0/2] adding " Tony Lindgren

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