msm8916-openwrt/target/linux/bcm27xx/patches-6.6/950-1027-DTS-rp1-fix-setting-xHCI-TX-burst-fifo-thresholds.patch
Álvaro Fernández Rojas 8c405cdccc bcm27xx: add 6.6 kernel patches
The patches were generated from the RPi repo with the following command:
git format-patch v6.6.34..rpi-6.1.y

Some patches needed rebasing and, as usual, the applied and reverted, wireless
drivers, Github workflows, READMEs and defconfigs patches were removed.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2024-06-18 18:52:49 +02:00

38 lines
1.3 KiB
Diff

From b5c40f346c73871628983afc4a2d27a120196e7c Mon Sep 17 00:00:00 2001
From: Jonathan Bell <jonathan@raspberrypi.com>
Date: Wed, 17 Apr 2024 11:18:21 +0100
Subject: [PATCH 1027/1085] DTS: rp1: fix setting xHCI TX burst fifo thresholds
The property should be a u8, and should target the non-periodic
SuperSpeed transmit FIFO not the periodic one.
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
---
arch/arm/boot/dts/broadcom/rp1.dtsi | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- a/arch/arm/boot/dts/broadcom/rp1.dtsi
+++ b/arch/arm/boot/dts/broadcom/rp1.dtsi
@@ -1077,8 +1077,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";
};
@@ -1093,8 +1093,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";
};