From: Greg Kroah-Hartman Date: Thu, 16 Mar 2023 07:31:56 +0000 (+0100) Subject: drop pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch from everywhere X-Git-Tag: v4.14.310~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=899e4261ec492477de1a4613ecf4d5621d6e700d;p=thirdparty%2Fkernel%2Fstable-queue.git drop pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch from everywhere --- diff --git a/queue-4.14/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-4.14/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index f6f86b8aabb..00000000000 --- a/queue-4.14/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From d352002f6b67a6d88586d896cd13d5e8b5c7956a Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index b9fedf9c77cb9..d0bff9a9f9a9c 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5068,6 +5068,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-4.14/series b/queue-4.14/series index 44ff4d17356..df1ddf9c965 100644 --- a/queue-4.14/series +++ b/queue-4.14/series @@ -14,7 +14,6 @@ mips-fix-a-compilation-issue.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch media-ov5640-fix-analogue-gain-control.patch tipc-improve-function-tipc_wait_for_cond.patch drm-i915-don-t-use-bar-mappings-for-ring-buffers-with-llc.patch diff --git a/queue-4.19/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-4.19/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index c74208d4daf..00000000000 --- a/queue-4.19/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From e2452a2a778f1d93481d3db6d0840ef1b3425090 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index afa6acb58eec8..db2faa483d253 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5157,6 +5157,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-4.19/series b/queue-4.19/series index c156c78143a..4bd6cd4cd9f 100644 --- a/queue-4.19/series +++ b/queue-4.19/series @@ -27,7 +27,6 @@ mips-fix-a-compilation-issue.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch media-ov5640-fix-analogue-gain-control.patch tipc-improve-function-tipc_wait_for_cond.patch drm-i915-don-t-use-bar-mappings-for-ring-buffers-with-llc.patch diff --git a/queue-5.10/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-5.10/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index 66ce826689d..00000000000 --- a/queue-5.10/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From c010f0ad86a53a87e6ef959d807ac2924fa28491 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index c1ebd5e12b06e..3c7d7f094718f 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5328,6 +5328,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-5.10/series b/queue-5.10/series index b2253ba3540..968e03bba4e 100644 --- a/queue-5.10/series +++ b/queue-5.10/series @@ -69,7 +69,6 @@ powerpc-kcsan-exclude-udelay-to-prevent-recursive-in.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch scripts-handle-brokenpipeerror-for-python-scripts.patch media-ov5640-fix-analogue-gain-control.patch media-rc-gpio-ir-recv-add-remove-function.patch diff --git a/queue-5.15/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-5.15/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index cadab35b699..00000000000 --- a/queue-5.15/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From aa613736613cac3b94c9001e08919a274ab5ad03 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index 643a3b292f0b6..7213d910685c7 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5354,6 +5354,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-5.15/series b/queue-5.15/series index 0a03fccf935..a9fe0cce015 100644 --- a/queue-5.15/series +++ b/queue-5.15/series @@ -109,7 +109,6 @@ powerpc-kcsan-exclude-udelay-to-prevent-recursive-in.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch scripts-handle-brokenpipeerror-for-python-scripts.patch media-ov5640-fix-analogue-gain-control.patch media-rc-gpio-ir-recv-add-remove-function.patch diff --git a/queue-5.4/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-5.4/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index a6c193f5ea9..00000000000 --- a/queue-5.4/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 2af77a93c309da7c99f0db1d6975e4909985dd09 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index 449d4ed611a68..12bf7348abc6c 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5364,6 +5364,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-5.4/series b/queue-5.4/series index 9b9c1e3942b..37151a6982d 100644 --- a/queue-5.4/series +++ b/queue-5.4/series @@ -49,7 +49,6 @@ mips-fix-a-compilation-issue.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch media-ov5640-fix-analogue-gain-control.patch ipmi-watchdog-replace-atomic_add-and-atomic_sub.patch ipmi-watchdog-set-panic-count-to-proper-value-on-a-panic.patch diff --git a/queue-6.1/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-6.1/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index 131f2770b5e..00000000000 --- a/queue-6.1/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 552c77701cabcd36e6927832fe6f82b495f572f1 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index 494fa46f57671..44cab813bf951 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5366,6 +5366,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-6.1/series b/queue-6.1/series index 6916b23c93b..bfb4076d8c7 100644 --- a/queue-6.1/series +++ b/queue-6.1/series @@ -131,7 +131,6 @@ powerpc-kcsan-exclude-udelay-to-prevent-recursive-in.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch scripts-handle-brokenpipeerror-for-python-scripts.patch media-ov5640-fix-analogue-gain-control.patch media-rc-gpio-ir-recv-add-remove-function.patch diff --git a/queue-6.2/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch b/queue-6.2/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch deleted file mode 100644 index 3f5a88de645..00000000000 --- a/queue-6.2/pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 59e80d6821ebd96d9030564229bed13df497f2cc Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 10 Jan 2023 18:56:37 +0200 -Subject: PCI: Avoid FLR for SolidRun SNET DPU rev 1 - -From: Alvaro Karsz - -[ Upstream commit d089d69cc1f824936eeaa4fa172f8fa1a0949eaa ] - -This patch fixes a FLR bug on the SNET DPU rev 1 by setting the -PCI_DEV_FLAGS_NO_FLR_RESET flag. - -As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk -to check the rev ID before calling to quirk_no_flr. - -Without this patch, a SNET DPU rev 1 may hang when FLR is applied. - -Signed-off-by: Alvaro Karsz -Acked-by: Bjorn Helgaas -Message-Id: <20230110165638.123745-3-alvaro.karsz@solid-run.com> -Signed-off-by: Michael S. Tsirkin -Signed-off-by: Sasha Levin ---- - drivers/pci/quirks.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c -index 494fa46f57671..44cab813bf951 100644 ---- a/drivers/pci/quirks.c -+++ b/drivers/pci/quirks.c -@@ -5366,6 +5366,14 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_AMD, 0x7901, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr); - DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_no_flr); - -+/* FLR may cause the SolidRun SNET DPU (rev 0x1) to hang */ -+static void quirk_no_flr_snet(struct pci_dev *dev) -+{ -+ if (dev->revision == 0x1) -+ quirk_no_flr(dev); -+} -+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLIDRUN, 0x1000, quirk_no_flr_snet); -+ - static void quirk_no_ext_tags(struct pci_dev *pdev) - { - struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); --- -2.39.2 - diff --git a/queue-6.2/series b/queue-6.2/series index 8573f9f7162..4d733c9d71d 100644 --- a/queue-6.2/series +++ b/queue-6.2/series @@ -127,7 +127,6 @@ powerpc-kcsan-exclude-udelay-to-prevent-recursive-in.patch alpha-fix-r_alpha_literal-reloc-for-large-modules.patch macintosh-windfarm-use-unsigned-type-for-1-bit-bitfi.patch pci-add-solidrun-vendor-id.patch -pci-avoid-flr-for-solidrun-snet-dpu-rev-1.patch scripts-handle-brokenpipeerror-for-python-scripts.patch media-ov5640-fix-analogue-gain-control.patch media-rc-gpio-ir-recv-add-remove-function.patch