Skip to content

Commit

Permalink
DTS: rp1: fix setting xHCI TX burst fifo thresholds
Browse files Browse the repository at this point in the history
The property should be a u8, and should target the non-periodic
SuperSpeed transmit FIFO not the periodic one.

Signed-off-by: Jonathan Bell <[email protected]>
  • Loading branch information
P33M authored and popcornmix committed Jun 3, 2024
1 parent c77e00b commit cea1c0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/boot/dts/broadcom/rp1.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -1084,8 +1084,8 @@
snps,parkmode-disable-ss-quirk;
snps,parkmode-disable-hs-quirk;
snps,parkmode-disable-fsls-quirk;
snps,tx-max-burst-prd = <8>;
snps,tx-thr-num-pkt-prd = <2>;
snps,tx-max-burst = /bits/ 8 <8>;
snps,tx-thr-num-pkt = /bits/ 8 <2>;
interrupts = <RP1_INT_USBHOST0_0 IRQ_TYPE_EDGE_RISING>;
status = "disabled";
};
Expand All @@ -1100,8 +1100,8 @@
snps,parkmode-disable-ss-quirk;
snps,parkmode-disable-hs-quirk;
snps,parkmode-disable-fsls-quirk;
snps,tx-max-burst-prd = <8>;
snps,tx-thr-num-pkt-prd = <2>;
snps,tx-max-burst = /bits/ 8 <8>;
snps,tx-thr-num-pkt = /bits/ 8 <2>;
interrupts = <RP1_INT_USBHOST1_0 IRQ_TYPE_EDGE_RISING>;
status = "disabled";
};
Expand Down

0 comments on commit cea1c0e

Please sign in to comment.