Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pci-v5.14-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci

Pull PCI fixes from Bjorn Helgaas:

- Add Rahul Tanwar as Intel LGM Gateway PCIe maintainer (Rahul Tanwar)

- Add Jim Quinlan et al as Broadcom STB PCIe maintainers (Jim Quinlan)

- Increase D3hot-to-D0 delay for AMD Renoir/Cezanne XHCI (Marcin
Bachry)

- Correct iomem_get_mapping() usage for legacy_mem sysfs (Krzysztof
Wilczyński)

* tag 'pci-v5.14-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci:
PCI/sysfs: Use correct variable for the legacy_mem sysfs object
PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI
MAINTAINERS: Add Jim Quinlan et al as Broadcom STB PCIe maintainers
MAINTAINERS: Add Rahul Tanwar as Intel LGM Gateway PCIe maintainer

+19 -1
+17
MAINTAINERS
··· 3866 3866 S: Maintained 3867 3867 F: drivers/mtd/nand/raw/brcmnand/ 3868 3868 3869 + BROADCOM STB PCIE DRIVER 3870 + M: Jim Quinlan <jim2101024@gmail.com> 3871 + M: Nicolas Saenz Julienne <nsaenz@kernel.org> 3872 + M: Florian Fainelli <f.fainelli@gmail.com> 3873 + M: bcm-kernel-feedback-list@broadcom.com 3874 + L: linux-pci@vger.kernel.org 3875 + S: Maintained 3876 + F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml 3877 + F: drivers/pci/controller/pcie-brcmstb.c 3878 + 3869 3879 BROADCOM SYSTEMPORT ETHERNET DRIVER 3870 3880 M: Florian Fainelli <f.fainelli@gmail.com> 3871 3881 L: bcm-kernel-feedback-list@broadcom.com ··· 14439 14429 S: Maintained 14440 14430 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt 14441 14431 F: drivers/pci/controller/dwc/pcie-histb.c 14432 + 14433 + PCIE DRIVER FOR INTEL LGM GW SOC 14434 + M: Rahul Tanwar <rtanwar@maxlinear.com> 14435 + L: linux-pci@vger.kernel.org 14436 + S: Maintained 14437 + F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml 14438 + F: drivers/pci/controller/dwc/pcie-intel-gw.c 14442 14439 14443 14440 PCIE DRIVER FOR MEDIATEK 14444 14441 M: Ryder Lee <ryder.lee@mediatek.com>
+1 -1
drivers/pci/pci-sysfs.c
··· 978 978 b->legacy_mem->size = 1024*1024; 979 979 b->legacy_mem->attr.mode = 0600; 980 980 b->legacy_mem->mmap = pci_mmap_legacy_mem; 981 - b->legacy_io->mapping = iomem_get_mapping(); 981 + b->legacy_mem->mapping = iomem_get_mapping(); 982 982 pci_adjust_legacy_attr(b, pci_mmap_mem); 983 983 error = device_create_bin_file(&b->dev, b->legacy_mem); 984 984 if (error)
+1
drivers/pci/quirks.c
··· 1900 1900 } 1901 1901 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e0, quirk_ryzen_xhci_d3hot); 1902 1902 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e1, quirk_ryzen_xhci_d3hot); 1903 + DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1639, quirk_ryzen_xhci_d3hot); 1903 1904 1904 1905 #ifdef CONFIG_X86_IO_APIC 1905 1906 static int dmi_disable_ioapicreroute(const struct dmi_system_id *d)