forked from Minki/linux
iommu/amd: Specify PCI segment ID when getting pci device
Upcoming AMD systems can have multiple PCI segments. Hence pass PCI segment ID to pci_get_domain_bus_and_slot() instead of '0'. Co-developed-by: Vasant Hegde <vasant.hegde@amd.com> Signed-off-by: Vasant Hegde <vasant.hegde@amd.com> Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> Link: https://lore.kernel.org/r/20220706113825.25582-32-vasant.hegde@amd.com Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
a45627baa7
commit
e5670e1822
@ -1962,7 +1962,8 @@ static int __init iommu_init_pci(struct amd_iommu *iommu)
|
||||
int cap_ptr = iommu->cap_ptr;
|
||||
int ret;
|
||||
|
||||
iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
|
||||
iommu->dev = pci_get_domain_bus_and_slot(iommu->pci_seg->id,
|
||||
PCI_BUS_NUM(iommu->devid),
|
||||
iommu->devid & 0xff);
|
||||
if (!iommu->dev)
|
||||
return -ENODEV;
|
||||
@ -2025,7 +2026,8 @@ static int __init iommu_init_pci(struct amd_iommu *iommu)
|
||||
int i, j;
|
||||
|
||||
iommu->root_pdev =
|
||||
pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
|
||||
pci_get_domain_bus_and_slot(iommu->pci_seg->id,
|
||||
iommu->dev->bus->number,
|
||||
PCI_DEVFN(0, 0));
|
||||
|
||||
/*
|
||||
|
@ -473,7 +473,7 @@ static void dump_command(unsigned long phys_addr)
|
||||
pr_err("CMD[%d]: %08x\n", i, cmd->data[i]);
|
||||
}
|
||||
|
||||
static void amd_iommu_report_rmp_hw_error(volatile u32 *event)
|
||||
static void amd_iommu_report_rmp_hw_error(struct amd_iommu *iommu, volatile u32 *event)
|
||||
{
|
||||
struct iommu_dev_data *dev_data = NULL;
|
||||
int devid, vmg_tag, flags;
|
||||
@ -485,7 +485,7 @@ static void amd_iommu_report_rmp_hw_error(volatile u32 *event)
|
||||
flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
|
||||
spa = ((u64)event[3] << 32) | (event[2] & 0xFFFFFFF8);
|
||||
|
||||
pdev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(devid),
|
||||
pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
|
||||
devid & 0xff);
|
||||
if (pdev)
|
||||
dev_data = dev_iommu_priv_get(&pdev->dev);
|
||||
@ -505,7 +505,7 @@ static void amd_iommu_report_rmp_hw_error(volatile u32 *event)
|
||||
pci_dev_put(pdev);
|
||||
}
|
||||
|
||||
static void amd_iommu_report_rmp_fault(volatile u32 *event)
|
||||
static void amd_iommu_report_rmp_fault(struct amd_iommu *iommu, volatile u32 *event)
|
||||
{
|
||||
struct iommu_dev_data *dev_data = NULL;
|
||||
int devid, flags_rmp, vmg_tag, flags;
|
||||
@ -518,7 +518,7 @@ static void amd_iommu_report_rmp_fault(volatile u32 *event)
|
||||
flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
|
||||
gpa = ((u64)event[3] << 32) | event[2];
|
||||
|
||||
pdev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(devid),
|
||||
pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
|
||||
devid & 0xff);
|
||||
if (pdev)
|
||||
dev_data = dev_iommu_priv_get(&pdev->dev);
|
||||
@ -544,13 +544,14 @@ static void amd_iommu_report_rmp_fault(volatile u32 *event)
|
||||
#define IS_WRITE_REQUEST(flags) \
|
||||
((flags) & EVENT_FLAG_RW)
|
||||
|
||||
static void amd_iommu_report_page_fault(u16 devid, u16 domain_id,
|
||||
static void amd_iommu_report_page_fault(struct amd_iommu *iommu,
|
||||
u16 devid, u16 domain_id,
|
||||
u64 address, int flags)
|
||||
{
|
||||
struct iommu_dev_data *dev_data = NULL;
|
||||
struct pci_dev *pdev;
|
||||
|
||||
pdev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(devid),
|
||||
pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
|
||||
devid & 0xff);
|
||||
if (pdev)
|
||||
dev_data = dev_iommu_priv_get(&pdev->dev);
|
||||
@ -613,7 +614,7 @@ retry:
|
||||
}
|
||||
|
||||
if (type == EVENT_TYPE_IO_FAULT) {
|
||||
amd_iommu_report_page_fault(devid, pasid, address, flags);
|
||||
amd_iommu_report_page_fault(iommu, devid, pasid, address, flags);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -654,10 +655,10 @@ retry:
|
||||
pasid, address, flags);
|
||||
break;
|
||||
case EVENT_TYPE_RMP_FAULT:
|
||||
amd_iommu_report_rmp_fault(event);
|
||||
amd_iommu_report_rmp_fault(iommu, event);
|
||||
break;
|
||||
case EVENT_TYPE_RMP_HW_ERR:
|
||||
amd_iommu_report_rmp_hw_error(event);
|
||||
amd_iommu_report_rmp_hw_error(iommu, event);
|
||||
break;
|
||||
case EVENT_TYPE_INV_PPR_REQ:
|
||||
pasid = PPR_PASID(*((u64 *)__evt));
|
||||
|
Loading…
Reference in New Issue
Block a user