diff --git a/packages/linux/patches/raspberrypi/linux-001-TEMP-dwc_otg-change-FIQ-default-to-off.patch b/packages/linux/patches/raspberrypi/linux-001-TEMP-dwc_otg-change-FIQ-default-to-off.patch new file mode 100644 index 0000000000..3e462e91e7 --- /dev/null +++ b/packages/linux/patches/raspberrypi/linux-001-TEMP-dwc_otg-change-FIQ-default-to-off.patch @@ -0,0 +1,29 @@ +From 9f83642b0e91379d8e1891b2c567a9b0a9a1da07 Mon Sep 17 00:00:00 2001 +From: Matthias Reichl +Date: Sun, 2 Oct 2022 13:45:46 +0200 +Subject: [PATCH] TEMP dwc_otg: change FIQ default to off + +Signed-off-by: Matthias Reichl +--- + drivers/usb/host/dwc_otg/dwc_otg_driver.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/drivers/usb/host/dwc_otg/dwc_otg_driver.c b/drivers/usb/host/dwc_otg/dwc_otg_driver.c +index cb576e553d76a..43b05238c50e2 100644 +--- a/drivers/usb/host/dwc_otg/dwc_otg_driver.c ++++ b/drivers/usb/host/dwc_otg/dwc_otg_driver.c +@@ -241,9 +241,9 @@ static struct dwc_otg_driver_module_params dwc_otg_module_params = { + }; + + //Global variable to switch the fiq fix on or off +-bool fiq_enable = 1; ++bool fiq_enable = 0; + // Global variable to enable the split transaction fix +-bool fiq_fsm_enable = true; ++bool fiq_fsm_enable = false; + //Bulk split-transaction NAK holdoff in microframes + uint16_t nak_holdoff = 8; + +-- +2.34.1 +