* [PATCH 00/18] Reserve high bandwidth for HS isoc eps
@ 2025-02-06 11:15 Akash Kumar
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
` (19 more replies)
0 siblings, 20 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices over usb, a glitch is
observed during testing. As per dwc datasheet,By default, HC reserves 80%
of the bandwidth for periodic EPs which can be increased if needed.
Add quirk to set GUCTL register BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to accommodate two high
speed, high bandwidth ISOC EPs. USB 2.0 required 80% bandwidth allocated
for ISOC traffic. If two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per Micro-Frame,
then the bandwidth required is around 82%. If this bit is set, then it is
possible to connect two Webcams of 1024bytes X 3 paylod per Micro-Frame
each. Alternatively, you might need to lower the resolution of the
webcams. This bit is valid in Host and DRD configuration and is used in
host mode operation only.
Set this bit for host mode uvc uac usecases where two isoc eps are used
and uvc flickers or audio glitch is observed.
Akash Kumar (18):
usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm8350: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm8450: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm8150: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm6125: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm8250: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sm6350: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sc7280: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sdm630: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sdm845: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sdx75: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: qcs404: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sc7180: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: x1e80100: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sc8280xp: Enable high bandwidth for hs isoc eps
arm64: dts: qcom: sc8180x: Enable high bandwidth for hs isoc eps
arch/arm64/boot/dts/qcom/qcs404.dtsi | 2 ++
arch/arm64/boot/dts/qcom/qdu1000.dtsi | 1 +
arch/arm64/boot/dts/qcom/sa8775p.dtsi | 3 +++
arch/arm64/boot/dts/qcom/sc7180.dtsi | 1 +
arch/arm64/boot/dts/qcom/sc7280.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sc8180x.dtsi | 3 +++
arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 3 +++
arch/arm64/boot/dts/qcom/sdm630.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sdm845.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sdx75.dtsi | 1 +
arch/arm64/boot/dts/qcom/sm6125.dtsi | 1 +
arch/arm64/boot/dts/qcom/sm6350.dtsi | 1 +
arch/arm64/boot/dts/qcom/sm8150.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sm8250.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sm8350.dtsi | 2 ++
arch/arm64/boot/dts/qcom/sm8450.dtsi | 1 +
arch/arm64/boot/dts/qcom/x1e80100.dtsi | 5 +++++
drivers/usb/dwc3/core.c | 11 +++++++++++
drivers/usb/dwc3/core.h | 4 ++++
19 files changed, 49 insertions(+)
--
2.17.1
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 17:49 ` Konrad Dybcio
2025-02-10 8:19 ` Krzysztof Kozlowski
2025-02-06 11:15 ` [PATCH 02/18] arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps Akash Kumar
` (18 subsequent siblings)
19 siblings, 2 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
On targets using synopsys usb dwc3 controller, it is observed while testing
multiple audio devices, a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth
for periodic EPs which can be increased with GUCTL Bit 16.
Add quirk to set GUCTL register BIT 16 to accommodate higher
bandwidth for 2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Alternatively, you
might need to lower the resolution of the webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
Set this bit for host mode uvc uac usecases where two isoc eps
are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
drivers/usb/dwc3/core.c | 11 +++++++++++
drivers/usb/dwc3/core.h | 4 ++++
2 files changed, 15 insertions(+)
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
index dfa1b5fe48dc..7e55c234e4e5 100644
--- a/drivers/usb/dwc3/core.c
+++ b/drivers/usb/dwc3/core.c
@@ -1461,6 +1461,14 @@ static int dwc3_core_init(struct dwc3 *dwc)
dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
}
+ if (dwc->revision >= DWC3_REVISION_250A) {
+ if (dwc->dwc3_guctl_resbwhseps_quirk) {
+ reg = dwc3_readl(dwc->regs, DWC3_GUCTL);
+ reg |= DWC3_GUCTL_RESBWHSEPS;
+ dwc3_writel(dwc->regs, DWC3_GUCTL, reg);
+ }
+ }
+
dwc3_config_threshold(dwc);
/*
@@ -1818,6 +1826,9 @@ static void dwc3_get_properties(struct dwc3 *dwc)
dwc->dis_split_quirk = device_property_read_bool(dev,
"snps,dis-split-quirk");
+ dwc->dwc3_guctl_resbwhseps_quirk = device_property_read_bool(dev,
+ "snps,dwc3_guctl_resbwhseps_quirk");
+
dwc->lpm_nyet_threshold = lpm_nyet_threshold;
dwc->tx_de_emphasis = tx_de_emphasis;
diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
index ac7c730f81ac..00f4582edfca 100644
--- a/drivers/usb/dwc3/core.h
+++ b/drivers/usb/dwc3/core.h
@@ -283,6 +283,9 @@
#define DWC3_GUCTL1_PARKMODE_DISABLE_HS BIT(16)
#define DWC3_GUCTL1_RESUME_OPMODE_HS_HOST BIT(10)
+/* Global User Control Register */
+#define DWC3_GUCTL_RESBWHSEPS BIT(16)
+
/* Global Status Register */
#define DWC3_GSTS_OTG_IP BIT(10)
#define DWC3_GSTS_BC_IP BIT(9)
@@ -1393,6 +1396,7 @@ struct dwc3 {
int num_ep_resized;
struct dentry *debug_root;
u32 gsbuscfg0_reqinfo;
+ bool dwc3_guctl_resbwhseps_quirk;
};
#define INCRX_BURST_MODE 0
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 02/18] arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 03/18] arm64: dts: qcom: sm8350: " Akash Kumar
` (17 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sa8775p.dtsi | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sa8775p.dtsi b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
index 3394ae2d1300..230b432cc3ac 100644
--- a/arch/arm64/boot/dts/qcom/sa8775p.dtsi
+++ b/arch/arm64/boot/dts/qcom/sa8775p.dtsi
@@ -3431,6 +3431,7 @@
phy-names = "usb2-phy", "usb3-phy";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
};
};
@@ -3522,6 +3523,7 @@
phy-names = "usb2-phy", "usb3-phy";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
};
};
@@ -3587,6 +3589,7 @@
phy-names = "usb2-phy";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
};
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 03/18] arm64: dts: qcom: sm8350: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
2025-02-06 11:15 ` [PATCH 02/18] arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 04/18] arm64: dts: qcom: sm8450: " Akash Kumar
` (16 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm8350.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8350.dtsi b/arch/arm64/boot/dts/qcom/sm8350.dtsi
index 69da30f35baa..430ecca13798 100644
--- a/arch/arm64/boot/dts/qcom/sm8350.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8350.dtsi
@@ -2656,6 +2656,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
@@ -2734,6 +2735,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_2_hsphy>, <&usb_2_qmpphy>;
phy-names = "usb2-phy", "usb3-phy";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 04/18] arm64: dts: qcom: sm8450: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (2 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 03/18] arm64: dts: qcom: sm8350: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 05/18] arm64: dts: qcom: sm8150: " Akash Kumar
` (15 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm8450.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index 9c809fc5fa45..95d5a67b7b9a 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -5400,6 +5400,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 05/18] arm64: dts: qcom: sm8150: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (3 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 04/18] arm64: dts: qcom: sm8450: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 06/18] arm64: dts: qcom: sm6125: " Akash Kumar
` (14 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm8150.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8150.dtsi b/arch/arm64/boot/dts/qcom/sm8150.dtsi
index 4dbda54b47a5..56d0d72aa499 100644
--- a/arch/arm64/boot/dts/qcom/sm8150.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8150.dtsi
@@ -3660,6 +3660,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
@@ -3739,6 +3740,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_2_hsphy>, <&usb_2_qmpphy>;
phy-names = "usb2-phy", "usb3-phy";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 06/18] arm64: dts: qcom: sm6125: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (4 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 05/18] arm64: dts: qcom: sm8150: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 07/18] arm64: dts: qcom: sm8250: " Akash Kumar
` (13 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm6125.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/sm6125.dtsi b/arch/arm64/boot/dts/qcom/sm6125.dtsi
index 350d807a622f..d84c85342851 100644
--- a/arch/arm64/boot/dts/qcom/sm6125.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm6125.dtsi
@@ -1211,6 +1211,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
maximum-speed = "high-speed";
dr_mode = "peripheral";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 07/18] arm64: dts: qcom: sm8250: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (5 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 06/18] arm64: dts: qcom: sm6125: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 08/18] arm64: dts: qcom: sm6350: " Akash Kumar
` (12 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm8250.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8250.dtsi b/arch/arm64/boot/dts/qcom/sm8250.dtsi
index c2937b4d9f18..13a2d198b548 100644
--- a/arch/arm64/boot/dts/qcom/sm8250.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8250.dtsi
@@ -4209,6 +4209,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
@@ -4298,6 +4299,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_2_hsphy>, <&usb_2_qmpphy>;
phy-names = "usb2-phy", "usb3-phy";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 08/18] arm64: dts: qcom: sm6350: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (6 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 07/18] arm64: dts: qcom: sm8250: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 09/18] arm64: dts: qcom: sc7280: " Akash Kumar
` (11 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sm6350.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/sm6350.dtsi b/arch/arm64/boot/dts/qcom/sm6350.dtsi
index 00ad1d09a195..5bfef5800548 100644
--- a/arch/arm64/boot/dts/qcom/sm6350.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm6350.dtsi
@@ -1926,6 +1926,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
usb-role-switch;
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 09/18] arm64: dts: qcom: sc7280: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (7 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 08/18] arm64: dts: qcom: sm6350: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 10/18] arm64: dts: qcom: sdm630: " Akash Kumar
` (10 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sc7280.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi b/arch/arm64/boot/dts/qcom/sc7280.dtsi
index 0f2caf36910b..f4ea0eb0bb58 100644
--- a/arch/arm64/boot/dts/qcom/sc7280.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi
@@ -3717,6 +3717,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_2_hsphy>;
phy-names = "usb2-phy";
maximum-speed = "high-speed";
@@ -4248,6 +4249,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
maximum-speed = "super-speed";
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 10/18] arm64: dts: qcom: sdm630: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (8 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 09/18] arm64: dts: qcom: sc7280: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 11/18] arm64: dts: qcom: sdm845: " Akash Kumar
` (9 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdm630.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdm630.dtsi b/arch/arm64/boot/dts/qcom/sdm630.dtsi
index a2c079bac1a7..985f1252d7fd 100644
--- a/arch/arm64/boot/dts/qcom/sdm630.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm630.dtsi
@@ -1302,6 +1302,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&qusb2phy0>, <&usb3_qmpphy>;
phy-names = "usb2-phy", "usb3-phy";
@@ -1509,6 +1510,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
/* This is the HS-only host */
maximum-speed = "high-speed";
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 11/18] arm64: dts: qcom: sdm845: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (9 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 10/18] arm64: dts: qcom: sdm630: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 12/18] arm64: dts: qcom: sdx75: " Akash Kumar
` (8 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdm845.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdm845.dtsi b/arch/arm64/boot/dts/qcom/sdm845.dtsi
index e0ce804bb1a3..90810b94a7de 100644
--- a/arch/arm64/boot/dts/qcom/sdm845.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm845.dtsi
@@ -4141,6 +4141,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
@@ -4219,6 +4220,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_2_hsphy>, <&usb_2_qmpphy>;
phy-names = "usb2-phy", "usb3-phy";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 12/18] arm64: dts: qcom: sdx75: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (10 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 11/18] arm64: dts: qcom: sdm845: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 13/18] arm64: dts: qcom: qcs404: " Akash Kumar
` (7 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdx75.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/sdx75.dtsi b/arch/arm64/boot/dts/qcom/sdx75.dtsi
index b0a8a0fe5f39..f46374fd785c 100644
--- a/arch/arm64/boot/dts/qcom/sdx75.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdx75.dtsi
@@ -1039,6 +1039,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_hsphy>,
<&usb_qmpphy>;
phy-names = "usb2-phy",
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 13/18] arm64: dts: qcom: qcs404: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (11 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 12/18] arm64: dts: qcom: sdx75: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 14/18] arm64: dts: qcom: sc7180: " Akash Kumar
` (6 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/qcs404.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/qcs404.dtsi b/arch/arm64/boot/dts/qcom/qcs404.dtsi
index 5a9df6b12305..4a4126b9b45d 100644
--- a/arch/arm64/boot/dts/qcom/qcs404.dtsi
+++ b/arch/arm64/boot/dts/qcom/qcs404.dtsi
@@ -696,6 +696,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dr_mode = "otg";
};
};
@@ -735,6 +736,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dr_mode = "peripheral";
};
};
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 14/18] arm64: dts: qcom: sc7180: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (12 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 13/18] arm64: dts: qcom: qcs404: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 15/18] arm64: dts: qcom: x1e80100: " Akash Kumar
` (5 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sc7180.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/sc7180.dtsi b/arch/arm64/boot/dts/qcom/sc7180.dtsi
index 87c432c12a24..e22aa8a757f9 100644
--- a/arch/arm64/boot/dts/qcom/sc7180.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7180.dtsi
@@ -3066,6 +3066,7 @@
snps,parkmode-disable-ss-quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
maximum-speed = "super-speed";
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 15/18] arm64: dts: qcom: x1e80100: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (13 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 14/18] arm64: dts: qcom: sc7180: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 16/18] arm64: dts: qcom: " Akash Kumar
` (4 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/x1e80100.dtsi | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/x1e80100.dtsi b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
index 4936fa5b98ff..69b767d0fb18 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
@@ -4725,6 +4725,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dma-coherent;
@@ -4813,6 +4814,7 @@
maximum-speed = "high-speed";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
ports {
#address-cells = <1>;
@@ -4911,6 +4913,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dma-coherent;
};
@@ -4984,6 +4987,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dma-coherent;
@@ -5084,6 +5088,7 @@
snps,usb3_lpm_capable;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
dma-coherent;
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 16/18] arm64: dts: qcom: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (14 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 15/18] arm64: dts: qcom: x1e80100: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 17/18] arm64: dts: qcom: sc8280xp: " Akash Kumar
` (3 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/qdu1000.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/qdu1000.dtsi b/arch/arm64/boot/dts/qcom/qdu1000.dtsi
index f973aa8f7477..bc1a0b7e0d3a 100644
--- a/arch/arm64/boot/dts/qcom/qdu1000.dtsi
+++ b/arch/arm64/boot/dts/qcom/qdu1000.dtsi
@@ -1025,6 +1025,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_1_hsphy>,
<&usb_1_qmpphy>;
phy-names = "usb2-phy",
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 17/18] arm64: dts: qcom: sc8280xp: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (15 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 16/18] arm64: dts: qcom: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-06 11:15 ` [PATCH 18/18] arm64: dts: qcom: sc8180x: " Akash Kumar
` (2 subsequent siblings)
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp.dtsi b/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
index 01501acb1790..8535244e4105 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
@@ -3538,6 +3538,7 @@
dr_mode = "host";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
};
};
@@ -3597,6 +3598,7 @@
phy-names = "usb2-phy", "usb3-phy";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
ports {
#address-cells = <1>;
@@ -3676,6 +3678,7 @@
phy-names = "usb2-phy", "usb3-phy";
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
ports {
#address-cells = <1>;
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 18/18] arm64: dts: qcom: sc8180x: Enable high bandwidth for hs isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (16 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 17/18] arm64: dts: qcom: sc8280xp: " Akash Kumar
@ 2025-02-06 11:15 ` Akash Kumar
2025-02-07 15:21 ` [PATCH 00/18] Reserve high bandwidth for HS " Rob Herring (Arm)
2025-02-10 8:22 ` Krzysztof Kozlowski
19 siblings, 0 replies; 24+ messages in thread
From: Akash Kumar @ 2025-02-06 11:15 UTC (permalink / raw)
To: Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel,
Akash Kumar
It is observed while testing multiple audio devices,
a glitch is observed during testing.
As per dwc datasheet,By default, HC reserves 80% of the bandwidth for
periodic EPs.
Add quirk to set GUCTL BIT 16 to accommodate higher bandwidth for
2 isoc eps.
If this bit is set, the bandwidth is relaxed to 85% to
accommodate two high speed, high bandwidth ISOC EPs.
USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
two High-bandwidth ISOC devices (HD Webcams) are
connected, and if each requires 1024-bytes X 3 packets per
Micro-Frame, then the bandwidth required is around 82%. If
this bit is set, then it is possible to connect two Webcams of
1024bytes X 3 paylod per Micro-Frame each. Otherwise, you
may have to reduce the resolution of the Webcams.
This bit is valid in Host and DRD configuration and is used in
host mode operation only.
USe this quirk to set bit for host mode uvc uac usecases where two
isoc eps are used and flicker is seen.
Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
arch/arm64/boot/dts/qcom/sc8180x.dtsi | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sc8180x.dtsi b/arch/arm64/boot/dts/qcom/sc8180x.dtsi
index 28693a3bfc7f..fafc907efa84 100644
--- a/arch/arm64/boot/dts/qcom/sc8180x.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8180x.dtsi
@@ -2764,6 +2764,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_mp_hsphy0>,
<&usb_mp_qmpphy0>,
<&usb_mp_hsphy1>,
@@ -2829,6 +2830,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_prim_hsphy>, <&usb_prim_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
@@ -2908,6 +2910,7 @@
snps,dis_enblslpm_quirk;
snps,dis-u1-entry-quirk;
snps,dis-u2-entry-quirk;
+ snps,dwc3_guctl_resbwhseps_quirk;
phys = <&usb_sec_hsphy>, <&usb_sec_qmpphy QMP_USB43DP_USB3_PHY>;
phy-names = "usb2-phy", "usb3-phy";
--
2.17.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* Re: [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
@ 2025-02-06 17:49 ` Konrad Dybcio
2025-02-10 8:16 ` AKASH KUMAR
2025-02-10 8:19 ` Krzysztof Kozlowski
1 sibling, 1 reply; 24+ messages in thread
From: Konrad Dybcio @ 2025-02-06 17:49 UTC (permalink / raw)
To: Akash Kumar, Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel,
Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel
On 6.02.2025 12:15 PM, Akash Kumar wrote:
> On targets using synopsys usb dwc3 controller, it is observed while testing
> multiple audio devices, a glitch is observed during testing.
> As per dwc datasheet,By default, HC reserves 80% of the bandwidth
> for periodic EPs which can be increased with GUCTL Bit 16.
It is observed a glitch is observed.. please massage this paragraph
a bit.
>
> Add quirk to set GUCTL register BIT 16 to accommodate higher
> bandwidth for 2 isoc eps.
>
> If this bit is set, the bandwidth is relaxed to 85% to
> accommodate two high speed, high bandwidth ISOC EPs.
> USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
> two High-bandwidth ISOC devices (HD Webcams) are
> connected, and if each requires 1024-bytes X 3 packets per
> Micro-Frame, then the bandwidth required is around 82%. If
> this bit is set, then it is possible to connect two Webcams of
> 1024bytes X 3 paylod per Micro-Frame each. Alternatively, you
> might need to lower the resolution of the webcams.
> This bit is valid in Host and DRD configuration and is used in
> host mode operation only.
> Set this bit for host mode uvc uac usecases where two isoc eps
> are used and flicker is seen.
Re-format your commit text to wrap at ~72 characters
>
> Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
> ---
> drivers/usb/dwc3/core.c | 11 +++++++++++
> drivers/usb/dwc3/core.h | 4 ++++
> 2 files changed, 15 insertions(+)
>
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index dfa1b5fe48dc..7e55c234e4e5 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -1461,6 +1461,14 @@ static int dwc3_core_init(struct dwc3 *dwc)
> dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
> }
>
> + if (dwc->revision >= DWC3_REVISION_250A) {
> + if (dwc->dwc3_guctl_resbwhseps_quirk) {
> + reg = dwc3_readl(dwc->regs, DWC3_GUCTL);
> + reg |= DWC3_GUCTL_RESBWHSEPS;
> + dwc3_writel(dwc->regs, DWC3_GUCTL, reg);
> + }
> + }
> +
> dwc3_config_threshold(dwc);
>
> /*
> @@ -1818,6 +1826,9 @@ static void dwc3_get_properties(struct dwc3 *dwc)
> dwc->dis_split_quirk = device_property_read_bool(dev,
> "snps,dis-split-quirk");
>
> + dwc->dwc3_guctl_resbwhseps_quirk = device_property_read_bool(dev,
> + "snps,dwc3_guctl_resbwhseps_quirk");
This needs a dt-bindings entry. Also, underscores are forbidden in property
names, use hyphens instead.
Konrad
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 00/18] Reserve high bandwidth for HS isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (17 preceding siblings ...)
2025-02-06 11:15 ` [PATCH 18/18] arm64: dts: qcom: sc8180x: " Akash Kumar
@ 2025-02-07 15:21 ` Rob Herring (Arm)
2025-02-10 8:22 ` Krzysztof Kozlowski
19 siblings, 0 replies; 24+ messages in thread
From: Rob Herring (Arm) @ 2025-02-07 15:21 UTC (permalink / raw)
To: Akash Kumar
Cc: linux-usb, Konrad Dybcio, linux-kernel, Wesley Cheng,
Bjorn Andersson, Vijayavardhan Vennapusa, Krzysztof Kozlowski,
Jack Pham, Conor Dooley, Thinh Nguyen, Greg Kroah-Hartman, kernel
On Thu, 06 Feb 2025 16:45:25 +0530, Akash Kumar wrote:
> It is observed while testing multiple audio devices over usb, a glitch is
> observed during testing. As per dwc datasheet,By default, HC reserves 80%
> of the bandwidth for periodic EPs which can be increased if needed.
>
> Add quirk to set GUCTL register BIT 16 to accommodate higher bandwidth for
> 2 isoc eps.
>
> If this bit is set, the bandwidth is relaxed to 85% to accommodate two high
> speed, high bandwidth ISOC EPs. USB 2.0 required 80% bandwidth allocated
> for ISOC traffic. If two High-bandwidth ISOC devices (HD Webcams) are
> connected, and if each requires 1024-bytes X 3 packets per Micro-Frame,
> then the bandwidth required is around 82%. If this bit is set, then it is
> possible to connect two Webcams of 1024bytes X 3 paylod per Micro-Frame
> each. Alternatively, you might need to lower the resolution of the
> webcams. This bit is valid in Host and DRD configuration and is used in
> host mode operation only.
>
> Set this bit for host mode uvc uac usecases where two isoc eps are used
> and uvc flickers or audio glitch is observed.
>
> Akash Kumar (18):
> usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
> arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8350: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8450: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8150: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm6125: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8250: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm6350: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc7280: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdm630: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdm845: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdx75: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: qcs404: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc7180: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: x1e80100: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc8280xp: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc8180x: Enable high bandwidth for hs isoc eps
>
> arch/arm64/boot/dts/qcom/qcs404.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/qdu1000.dtsi | 1 +
> arch/arm64/boot/dts/qcom/sa8775p.dtsi | 3 +++
> arch/arm64/boot/dts/qcom/sc7180.dtsi | 1 +
> arch/arm64/boot/dts/qcom/sc7280.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sc8180x.dtsi | 3 +++
> arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 3 +++
> arch/arm64/boot/dts/qcom/sdm630.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sdm845.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sdx75.dtsi | 1 +
> arch/arm64/boot/dts/qcom/sm6125.dtsi | 1 +
> arch/arm64/boot/dts/qcom/sm6350.dtsi | 1 +
> arch/arm64/boot/dts/qcom/sm8150.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sm8250.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sm8350.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/sm8450.dtsi | 1 +
> arch/arm64/boot/dts/qcom/x1e80100.dtsi | 5 +++++
> drivers/usb/dwc3/core.c | 11 +++++++++++
> drivers/usb/dwc3/core.h | 4 ++++
> 19 files changed, 49 insertions(+)
>
> --
> 2.17.1
>
>
>
My bot found new DTB warnings on the .dts files added or changed in this
series.
Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.
If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:
pip3 install dtschema --upgrade
New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/qcom/' for 20250206111543.17392-1-quic_akakum@quicinc.com:
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7325-nothing-spacewar.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd-pro.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-wifi.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-arcata.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-microsoft-surface-duo2.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@7678800: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@7678800: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@79b8800: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@79b8800: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-csot.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-csot.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-csot.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akari.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akari.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akari.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-mtp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-boe.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-boe.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-elish-boe.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-crd.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e001de-devkit.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyln.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyln.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-lg-judyln.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@8cf8800: usb@8c00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@8cf8800: usb@8c00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@8c00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-pipa.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-pipa.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-xiaomi-pipa.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-mtp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-idp2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r4.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-apollo.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-apollo.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-apollo.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-acer-aspire1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdx75-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdx75-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdx75-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-evoker.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx215.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs9100-ride-r3.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-mtp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel360-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-shift-axolotl.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-herobrine-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-hdk.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7225-fairphone-fp4.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-qrd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-qrd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-qrd.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8155p-adp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-qcp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-hdk.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a2f8800: usb@a200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a2f8800: usb@a200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-hdk.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qru1000-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qru1000-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qru1000-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-r10.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-zombie-nvme.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus15.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-kb.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-parade.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8775p-ride-r3.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-ti.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-shift-otter.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: usb@4ef8800: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: usb@4ef8800: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dtb: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-samsung-starqltechn.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-samsung-starqltechn.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-samsung-starqltechn.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-crd-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akatsuki.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akatsuki.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-sony-xperia-tama-akatsuki.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a0f8800: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a000000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-crd.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r9-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8295p-adp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-ti.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-ebbg.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-ebbg.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-ebbg.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus13.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcm6490-fairphone-fp5.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@c2f8800: usb@c200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@c2f8800: usb@c200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sda660-inforce-ifc6560.dtb: usb@c200000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6350-sony-xperia-lena-pdx213.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pazquel-lte-parade.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-homestar-r2.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8250-hdk.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a4f8800: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a400000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc8280xp-crd.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-samsung-w737.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r10-kb.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-sony-xperia-sagami-pdx214.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qdu1000-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qdu1000-idp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qdu1000-idp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r1-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8540p-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8540p-ride.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sa8540p-ride.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8350-mtp.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@7678800: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@7678800: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@7580000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@79b8800: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@79b8800: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb: usb@78c0000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: usb@4ef8800: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: usb@4ef8800: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb: usb@4e00000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a8f8800: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb: usb@a800000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7280-herobrine-villager-r0.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm7125-xiaomi-joyeuse.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium-tianma.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r10.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx224.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx224.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx224.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx223.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx223.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sm8450-sony-xperia-nagara-pdx223.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: usb@a6f8800: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/qcom,dwc3.yaml#
arch/arm64/boot/dts/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb: usb@a600000: Unevaluated properties are not allowed ('snps,dwc3_guctl_resbwhseps_quirk' was unexpected)
from schema $id: http://devicetree.org/schemas/usb/snps,dwc3.yaml#
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
2025-02-06 17:49 ` Konrad Dybcio
@ 2025-02-10 8:16 ` AKASH KUMAR
0 siblings, 0 replies; 24+ messages in thread
From: AKASH KUMAR @ 2025-02-10 8:16 UTC (permalink / raw)
To: Konrad Dybcio, Thinh Nguyen, Greg Kroah-Hartman, Jack Pham,
kernel, Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel
Hi,
On 2/6/2025 11:19 PM, Konrad Dybcio wrote:
> On 6.02.2025 12:15 PM, Akash Kumar wrote:
>> On targets using synopsys usb dwc3 controller, it is observed while testing
>> multiple audio devices, a glitch is observed during testing.
>> As per dwc datasheet,By default, HC reserves 80% of the bandwidth
>> for periodic EPs which can be increased with GUCTL Bit 16.
> It is observed a glitch is observed.. please massage this paragraph
> a bit.
Sure.
>
>> Add quirk to set GUCTL register BIT 16 to accommodate higher
>> bandwidth for 2 isoc eps.
>>
>> If this bit is set, the bandwidth is relaxed to 85% to
>> accommodate two high speed, high bandwidth ISOC EPs.
>> USB 2.0 required 80% bandwidth allocated for ISOC traffic. If
>> two High-bandwidth ISOC devices (HD Webcams) are
>> connected, and if each requires 1024-bytes X 3 packets per
>> Micro-Frame, then the bandwidth required is around 82%. If
>> this bit is set, then it is possible to connect two Webcams of
>> 1024bytes X 3 paylod per Micro-Frame each. Alternatively, you
>> might need to lower the resolution of the webcams.
>> This bit is valid in Host and DRD configuration and is used in
>> host mode operation only.
>> Set this bit for host mode uvc uac usecases where two isoc eps
>> are used and flicker is seen.
> Re-format your commit text to wrap at ~72 characters
Ok.
>> Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
>> ---
>> drivers/usb/dwc3/core.c | 11 +++++++++++
>> drivers/usb/dwc3/core.h | 4 ++++
>> 2 files changed, 15 insertions(+)
>>
>> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
>> index dfa1b5fe48dc..7e55c234e4e5 100644
>> --- a/drivers/usb/dwc3/core.c
>> +++ b/drivers/usb/dwc3/core.c
>> @@ -1461,6 +1461,14 @@ static int dwc3_core_init(struct dwc3 *dwc)
>> dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
>> }
>>
>> + if (dwc->revision >= DWC3_REVISION_250A) {
>> + if (dwc->dwc3_guctl_resbwhseps_quirk) {
>> + reg = dwc3_readl(dwc->regs, DWC3_GUCTL);
>> + reg |= DWC3_GUCTL_RESBWHSEPS;
>> + dwc3_writel(dwc->regs, DWC3_GUCTL, reg);
>> + }
>> + }
>> +
>> dwc3_config_threshold(dwc);
>>
>> /*
>> @@ -1818,6 +1826,9 @@ static void dwc3_get_properties(struct dwc3 *dwc)
>> dwc->dis_split_quirk = device_property_read_bool(dev,
>> "snps,dis-split-quirk");
>>
>> + dwc->dwc3_guctl_resbwhseps_quirk = device_property_read_bool(dev,
>> + "snps,dwc3_guctl_resbwhseps_quirk");
> This needs a dt-bindings entry. Also, underscores are forbidden in property
> names, use hyphens instead.
Will update in V2.
Thanks
Akash
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
2025-02-06 17:49 ` Konrad Dybcio
@ 2025-02-10 8:19 ` Krzysztof Kozlowski
1 sibling, 0 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2025-02-10 8:19 UTC (permalink / raw)
To: Akash Kumar, Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel,
Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel
On 06/02/2025 12:15, Akash Kumar wrote:
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index dfa1b5fe48dc..7e55c234e4e5 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -1461,6 +1461,14 @@ static int dwc3_core_init(struct dwc3 *dwc)
> dwc3_writel(dwc->regs, DWC3_GUCTL1, reg);
> }
>
> + if (dwc->revision >= DWC3_REVISION_250A) {
> + if (dwc->dwc3_guctl_resbwhseps_quirk) {
> + reg = dwc3_readl(dwc->regs, DWC3_GUCTL);
> + reg |= DWC3_GUCTL_RESBWHSEPS;
> + dwc3_writel(dwc->regs, DWC3_GUCTL, reg);
> + }
> + }
> +
> dwc3_config_threshold(dwc);
>
> /*
> @@ -1818,6 +1826,9 @@ static void dwc3_get_properties(struct dwc3 *dwc)
> dwc->dis_split_quirk = device_property_read_bool(dev,
> "snps,dis-split-quirk");
>
> + dwc->dwc3_guctl_resbwhseps_quirk = device_property_read_bool(dev,
> + "snps,dwc3_guctl_resbwhseps_quirk");
NAK, undocumented ABI, not even bothering to follow standard DTS coding
style.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 00/18] Reserve high bandwidth for HS isoc eps
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
` (18 preceding siblings ...)
2025-02-07 15:21 ` [PATCH 00/18] Reserve high bandwidth for HS " Rob Herring (Arm)
@ 2025-02-10 8:22 ` Krzysztof Kozlowski
19 siblings, 0 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2025-02-10 8:22 UTC (permalink / raw)
To: Akash Kumar, Thinh Nguyen, Greg Kroah-Hartman, Jack Pham, kernel,
Wesley Cheng
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Vijayavardhan Vennapusa, linux-usb, linux-kernel
On 06/02/2025 12:15, Akash Kumar wrote:
> It is observed while testing multiple audio devices over usb, a glitch is
> observed during testing. As per dwc datasheet,By default, HC reserves 80%
> of the bandwidth for periodic EPs which can be increased if needed.
>
> Add quirk to set GUCTL register BIT 16 to accommodate higher bandwidth for
> 2 isoc eps.
>
> If this bit is set, the bandwidth is relaxed to 85% to accommodate two high
> speed, high bandwidth ISOC EPs. USB 2.0 required 80% bandwidth allocated
> for ISOC traffic. If two High-bandwidth ISOC devices (HD Webcams) are
> connected, and if each requires 1024-bytes X 3 packets per Micro-Frame,
> then the bandwidth required is around 82%. If this bit is set, then it is
> possible to connect two Webcams of 1024bytes X 3 paylod per Micro-Frame
> each. Alternatively, you might need to lower the resolution of the
> webcams. This bit is valid in Host and DRD configuration and is used in
> host mode operation only.
>
> Set this bit for host mode uvc uac usecases where two isoc eps are used
> and uvc flickers or audio glitch is observed.
>
> Akash Kumar (18):
> usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs
> arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8350: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8450: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8150: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm6125: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm8250: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sm6350: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc7280: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdm630: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdm845: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sdx75: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: qcs404: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc7180: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: x1e80100: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc8280xp: Enable high bandwidth for hs isoc eps
> arm64: dts: qcom: sc8180x: Enable high bandwidth for hs isoc eps
1. Do not combine USB and DTS in one patchset.
2. This was not ever tested (see bug reports already published by bot),
so obviously disappointing no-go.
3. This looks like SoC specific, so deduce the setting from the compatible.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2025-02-10 8:22 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-06 11:15 [PATCH 00/18] Reserve high bandwidth for HS isoc eps Akash Kumar
2025-02-06 11:15 ` [PATCH 01/18] usb: dwc3: Reserve Higher Bandwidth for HS Periodic EPs Akash Kumar
2025-02-06 17:49 ` Konrad Dybcio
2025-02-10 8:16 ` AKASH KUMAR
2025-02-10 8:19 ` Krzysztof Kozlowski
2025-02-06 11:15 ` [PATCH 02/18] arm64: dts: qcom: sa8775p: Enable high bandwidth for hs isoc eps Akash Kumar
2025-02-06 11:15 ` [PATCH 03/18] arm64: dts: qcom: sm8350: " Akash Kumar
2025-02-06 11:15 ` [PATCH 04/18] arm64: dts: qcom: sm8450: " Akash Kumar
2025-02-06 11:15 ` [PATCH 05/18] arm64: dts: qcom: sm8150: " Akash Kumar
2025-02-06 11:15 ` [PATCH 06/18] arm64: dts: qcom: sm6125: " Akash Kumar
2025-02-06 11:15 ` [PATCH 07/18] arm64: dts: qcom: sm8250: " Akash Kumar
2025-02-06 11:15 ` [PATCH 08/18] arm64: dts: qcom: sm6350: " Akash Kumar
2025-02-06 11:15 ` [PATCH 09/18] arm64: dts: qcom: sc7280: " Akash Kumar
2025-02-06 11:15 ` [PATCH 10/18] arm64: dts: qcom: sdm630: " Akash Kumar
2025-02-06 11:15 ` [PATCH 11/18] arm64: dts: qcom: sdm845: " Akash Kumar
2025-02-06 11:15 ` [PATCH 12/18] arm64: dts: qcom: sdx75: " Akash Kumar
2025-02-06 11:15 ` [PATCH 13/18] arm64: dts: qcom: qcs404: " Akash Kumar
2025-02-06 11:15 ` [PATCH 14/18] arm64: dts: qcom: sc7180: " Akash Kumar
2025-02-06 11:15 ` [PATCH 15/18] arm64: dts: qcom: x1e80100: " Akash Kumar
2025-02-06 11:15 ` [PATCH 16/18] arm64: dts: qcom: " Akash Kumar
2025-02-06 11:15 ` [PATCH 17/18] arm64: dts: qcom: sc8280xp: " Akash Kumar
2025-02-06 11:15 ` [PATCH 18/18] arm64: dts: qcom: sc8180x: " Akash Kumar
2025-02-07 15:21 ` [PATCH 00/18] Reserve high bandwidth for HS " Rob Herring (Arm)
2025-02-10 8:22 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox