mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-23 05:18:55 +00:00
* rockchip64: Added XHCI HCD USB TRB ENT quirk On some xHCI controllers (e.g. Rockchip RK3399/RK3328/RK1808), they need to enable the ENT flag in the TRB data structure to force xHC to prefetch the next TRB of a TD. Enable the quirk on RK3399 through device tree node properties. Ported from Rockchip Linux 4.19 * add to dev branch
20 lines
749 B
Diff
20 lines
749 B
Diff
diff --git a/arch/arm64/boot/dts/rockchip/rk3399.dtsi b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
|
index bcd31e9d6..91f1aa809 100644
|
|
--- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
|
@@ -425,6 +425,7 @@ usbdrd_dwc3_0: usb@fe800000 {
|
|
snps,dis_u2_susphy_quirk;
|
|
snps,dis-del-phy-power-chg-quirk;
|
|
snps,dis-tx-ipgap-linecheck-quirk;
|
|
+ snps,xhci-trb-ent-quirk;
|
|
power-domains = <&power RK3399_PD_USB3>;
|
|
status = "disabled";
|
|
};
|
|
@@ -461,6 +462,7 @@ usbdrd_dwc3_1: usb@fe900000 {
|
|
snps,dis_u2_susphy_quirk;
|
|
snps,dis-del-phy-power-chg-quirk;
|
|
snps,dis-tx-ipgap-linecheck-quirk;
|
|
+ snps,xhci-trb-ent-quirk;
|
|
power-domains = <&power RK3399_PD_USB3>;
|
|
status = "disabled";
|
|
};
|