From e56fab017da80f64c2ddddf58cba8b7ba10909a1 Mon Sep 17 00:00:00 2001 From: leoliu-oc Date: Sat, 11 Oct 2025 17:44:24 +0800 Subject: [PATCH] Add platform-specific quirks for ZX-200 device zhaoxin inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/ID2U7K CVE: NA -------------------- Adds platform-specific handling for Zhaoxin ZX-200 in both AHCI and xHCI drivers. For non-Zhaoxin CPU platforms, it applies the following quirks: 1. In AHCI driver (ahci.c): - Sets AHCI_HFLAG_32BIT_ONLY flag to restrict DMA operations to 32-bit addressing 2. In xHCI driver (xhci-pci.c): - Sets XHCI_RESET_ON_RESUME quirk to handle device resume issues - Sets XHCI_NO_64BIT_SUPPORT quirk to disable 64-bit DMA addressing These changes ensure proper functionality and compatibility of Zhaoxin ZX-200 on third-party platforms. Reviewed-by: Tony W. Wang Tested-by: Lyle Li Signed-off-by: leoliu-oc --- drivers/ata/ahci.c | 13 +++++++++++++ drivers/usb/host/xhci-pci.c | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index e377a065d491..8fbf7597b9e3 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -81,6 +81,16 @@ enum board_ids { board_ahci_mcp79 = board_ahci_mcp77, }; +static bool is_zhaoxin_cpu(void) +{ +#ifdef CONFIG_CPU_SUP_ZHAOXIN || CONFIG_CPU_SUP_CENTAUR + if (boot_cpu_data.x86_vendor == X86_VENDOR_ZHAOXIN || + boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR) + return true; +#endif /* CONFIG_CPU_SUP_ZHAOXIN || CONFIG_CPU_SUP_CENTAUR */ + return false; +} + static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent); static void ahci_remove_one(struct pci_dev *dev); static void ahci_shutdown_one(struct pci_dev *dev); @@ -1892,6 +1902,9 @@ static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) if (ahci_sb600_enable_64bit(pdev)) hpriv->flags &= ~AHCI_HFLAG_32BIT_ONLY; + if (pdev->vendor == PCI_VENDOR_ID_ZHAOXIN && !is_zhaoxin_cpu()) + hpriv->flags |= AHCI_HFLAG_32BIT_ONLY; + hpriv->mmio = pcim_iomap_table(pdev)[ahci_pci_bar]; /* detect remapped nvme devices */ diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index 2a83547302c6..754023fe64ed 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -297,6 +297,16 @@ static int xhci_pci_reinit(struct xhci_hcd *xhci, struct pci_dev *pdev) return 0; } +static bool is_zhaoxin_cpu(void) +{ +#ifdef CONFIG_CPU_SUP_ZHAOXIN || CONFIG_CPU_SUP_CENTAUR + if (boot_cpu_data.x86_vendor == X86_VENDOR_ZHAOXIN || + boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR) + return true; +#endif + return false; +} + static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci) { struct pci_dev *pdev = to_pci_dev(dev); @@ -540,6 +550,12 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci) xhci->quirks |= XHCI_TRB_OVERFETCH; } + if (pdev->vendor == PCI_VENDOR_ID_ZHAOXIN && !is_zhaoxin_cpu()) { + xhci->quirks |= XHCI_NO_64BIT_SUPPORT; + if (pdev->device == 0x9203) + xhci->quirks |= XHCI_RESET_ON_RESUME; + } + if (pdev->vendor == PCI_DEVICE_ID_CADENCE && pdev->device == PCI_DEVICE_ID_CADENCE_SSP) xhci->quirks |= XHCI_CDNS_SCTX_QUIRK; -- Gitee