linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node
@ 2016-06-10  6:23 Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 1/3] arm: dts: ls1021a: " Rajesh Bhagat
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Rajesh Bhagat @ 2016-06-10  6:23 UTC (permalink / raw)
  To: linux-kernel
  Cc: shawnguo, devicetree, linux-usb, linux-arm-kernel, sriram.dash,
	Rajesh Bhagat

Adds dis_rxdet_inp3_quirk property to USB3 nodes of ls1021a, ls2080a
and ls1043a platform.

Rajesh Bhagat (3):
  arm: dts: ls1021a: Add dis_rxdet_inp3_quirk property to USB3 node
  arm: dts: ls2080a: Add dis_rxdet_inp3_quirk property to USB3 node
  arm: dts: ls1043a: Add dis_rxdet_inp3_quirk property to USB3 node

 arch/arm/boot/dts/ls1021a.dtsi                 | 1 +
 arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi | 3 +++
 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi | 2 ++
 3 files changed, 6 insertions(+)

-- 
2.6.2.198.g614a2ac

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

* [PATCH 1/3] arm: dts: ls1021a: Add dis_rxdet_inp3_quirk property to USB3 node
  2016-06-10  6:23 [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node Rajesh Bhagat
@ 2016-06-10  6:23 ` Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 2/3] arm: dts: ls2080a: " Rajesh Bhagat
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Rajesh Bhagat @ 2016-06-10  6:23 UTC (permalink / raw)
  To: linux-kernel
  Cc: shawnguo, devicetree, linux-usb, linux-arm-kernel, sriram.dash,
	Rajesh Bhagat

Add "dis_rxdet_inp3_quirk" boolean property to USB3 node. This property
is used to disable rx detection in P3 PHY mode.

Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
---
 arch/arm/boot/dts/ls1021a.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/ls1021a.dtsi b/arch/arm/boot/dts/ls1021a.dtsi
index 5ae8e92..368e219 100644
--- a/arch/arm/boot/dts/ls1021a.dtsi
+++ b/arch/arm/boot/dts/ls1021a.dtsi
@@ -626,6 +626,7 @@
 			interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		pcie@3400000 {
-- 
2.6.2.198.g614a2ac

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

* [PATCH 2/3] arm: dts: ls2080a: Add dis_rxdet_inp3_quirk property to USB3 node
  2016-06-10  6:23 [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 1/3] arm: dts: ls1021a: " Rajesh Bhagat
@ 2016-06-10  6:23 ` Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 3/3] arm: dts: ls1043a: " Rajesh Bhagat
  2016-06-11 14:13 ` [PATCH 0/3] " Shawn Guo
  3 siblings, 0 replies; 5+ messages in thread
From: Rajesh Bhagat @ 2016-06-10  6:23 UTC (permalink / raw)
  To: linux-kernel
  Cc: shawnguo, devicetree, linux-usb, linux-arm-kernel, sriram.dash,
	Rajesh Bhagat

Add "dis_rxdet_inp3_quirk" boolean property to USB3 node. This property
is used to disable rx detection in P3 PHY mode.

Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
---
 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
index 3187c82..09a0450 100644
--- a/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
+++ b/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
@@ -672,6 +672,7 @@
 			interrupts = <0 80 0x4>; /* Level high type */
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		usb1: usb3@3110000 {
@@ -681,6 +682,7 @@
 			interrupts = <0 81 0x4>; /* Level high type */
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		ccn@4000000 {
-- 
2.6.2.198.g614a2ac

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

* [PATCH 3/3] arm: dts: ls1043a: Add dis_rxdet_inp3_quirk property to USB3 node
  2016-06-10  6:23 [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 1/3] arm: dts: ls1021a: " Rajesh Bhagat
  2016-06-10  6:23 ` [PATCH 2/3] arm: dts: ls2080a: " Rajesh Bhagat
@ 2016-06-10  6:23 ` Rajesh Bhagat
  2016-06-11 14:13 ` [PATCH 0/3] " Shawn Guo
  3 siblings, 0 replies; 5+ messages in thread
From: Rajesh Bhagat @ 2016-06-10  6:23 UTC (permalink / raw)
  To: linux-kernel
  Cc: shawnguo, devicetree, linux-usb, linux-arm-kernel, sriram.dash,
	Rajesh Bhagat

Add "dis_rxdet_inp3_quirk" boolean property to USB3 node. This property
is used to disable rx detection in P3 PHY mode.

Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
---
 arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi
index de0323b..ba30f02 100644
--- a/arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi
+++ b/arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi
@@ -422,6 +422,7 @@
 			interrupts = <0 60 0x4>;
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		usb1: usb3@3000000 {
@@ -430,6 +431,7 @@
 			interrupts = <0 61 0x4>;
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		usb2: usb3@3100000 {
@@ -438,6 +440,7 @@
 			interrupts = <0 63 0x4>;
 			dr_mode = "host";
 			snps,quirk-frame-length-adjustment = <0x20>;
+			snps,dis_rxdet_inp3_quirk;
 		};
 
 		sata: sata@3200000 {
-- 
2.6.2.198.g614a2ac

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

* Re: [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node
  2016-06-10  6:23 [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node Rajesh Bhagat
                   ` (2 preceding siblings ...)
  2016-06-10  6:23 ` [PATCH 3/3] arm: dts: ls1043a: " Rajesh Bhagat
@ 2016-06-11 14:13 ` Shawn Guo
  3 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2016-06-11 14:13 UTC (permalink / raw)
  To: Rajesh Bhagat
  Cc: linux-kernel, devicetree, linux-usb, linux-arm-kernel, sriram.dash

On Fri, Jun 10, 2016 at 11:53:43AM +0530, Rajesh Bhagat wrote:
> Adds dis_rxdet_inp3_quirk property to USB3 nodes of ls1021a, ls2080a
> and ls1043a platform.
> 
> Rajesh Bhagat (3):
>   arm: dts: ls1021a: Add dis_rxdet_inp3_quirk property to USB3 node
>   arm: dts: ls2080a: Add dis_rxdet_inp3_quirk property to USB3 node
>   arm: dts: ls1043a: Add dis_rxdet_inp3_quirk property to USB3 node

The last two should be prefixed 'arm64'.  I fixed them up and applied
all 3, thanks.

Shawn

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

end of thread, other threads:[~2016-06-11 14:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-10  6:23 [PATCH 0/3] Add dis_rxdet_inp3_quirk property to USB3 node Rajesh Bhagat
2016-06-10  6:23 ` [PATCH 1/3] arm: dts: ls1021a: " Rajesh Bhagat
2016-06-10  6:23 ` [PATCH 2/3] arm: dts: ls2080a: " Rajesh Bhagat
2016-06-10  6:23 ` [PATCH 3/3] arm: dts: ls1043a: " Rajesh Bhagat
2016-06-11 14:13 ` [PATCH 0/3] " Shawn Guo

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