Current code uses global "amd_iommu_last_bdf" to track the last bdf
supported by the system. This value is used for various memory
allocation, device data flushing, etc.

Introduce per PCI segment last_bdf which will be used to track last bdf
supported by the given PCI segment and use this value for all per
segment memory allocations. Eventually it will replace global
"amd_iommu_last_bdf".

Co-developed-by: Suravee Suthikulpanit <suravee.suthikulpa...@amd.com>
Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpa...@amd.com>
Signed-off-by: Vasant Hegde <vasant.he...@amd.com>
---
 drivers/iommu/amd/amd_iommu_types.h |  3 ++
 drivers/iommu/amd/init.c            | 68 ++++++++++++++++++-----------
 2 files changed, 45 insertions(+), 26 deletions(-)

diff --git a/drivers/iommu/amd/amd_iommu_types.h 
b/drivers/iommu/amd/amd_iommu_types.h
index c4c9c35e2bf7..e39e7db54e69 100644
--- a/drivers/iommu/amd/amd_iommu_types.h
+++ b/drivers/iommu/amd/amd_iommu_types.h
@@ -544,6 +544,9 @@ struct amd_iommu_pci_seg {
        /* PCI segment number */
        u16 id;
 
+       /* Largest PCI device id we expect translation requests for */
+       u16 last_bdf;
+
        /*
         * device table virtual address
         *
diff --git a/drivers/iommu/amd/init.c b/drivers/iommu/amd/init.c
index d613e20ea013..71f39551a83a 100644
--- a/drivers/iommu/amd/init.c
+++ b/drivers/iommu/amd/init.c
@@ -550,6 +550,7 @@ static int __init find_last_devid_from_ivhd(struct 
ivhd_header *h)
 {
        u8 *p = (void *)h, *end = (void *)h;
        struct ivhd_entry *dev;
+       int last_devid = -EINVAL;
 
        u32 ivhd_size = get_ivhd_header_size(h);
 
@@ -567,6 +568,7 @@ static int __init find_last_devid_from_ivhd(struct 
ivhd_header *h)
                case IVHD_DEV_ALL:
                        /* Use maximum BDF value for DEV_ALL */
                        update_last_devid(0xffff);
+                       return 0xffff;
                        break;
                case IVHD_DEV_SELECT:
                case IVHD_DEV_RANGE_END:
@@ -574,6 +576,8 @@ static int __init find_last_devid_from_ivhd(struct 
ivhd_header *h)
                case IVHD_DEV_EXT_SELECT:
                        /* all the above subfield types refer to device ids */
                        update_last_devid(dev->devid);
+                       if (dev->devid > last_devid)
+                               last_devid = dev->devid;
                        break;
                default:
                        break;
@@ -583,7 +587,7 @@ static int __init find_last_devid_from_ivhd(struct 
ivhd_header *h)
 
        WARN_ON(p != end);
 
-       return 0;
+       return last_devid;
 }
 
 static int __init check_ivrs_checksum(struct acpi_table_header *table)
@@ -607,27 +611,31 @@ static int __init check_ivrs_checksum(struct 
acpi_table_header *table)
  * id which we need to handle. This is the first of three functions which parse
  * the ACPI table. So we check the checksum here.
  */
-static int __init find_last_devid_acpi(struct acpi_table_header *table)
+static int __init find_last_devid_acpi(struct acpi_table_header *table, u16 
pci_seg)
 {
        u8 *p = (u8 *)table, *end = (u8 *)table;
        struct ivhd_header *h;
+       int last_devid, last_bdf = 0;
 
        p += IVRS_HEADER_LENGTH;
 
        end += table->length;
        while (p < end) {
                h = (struct ivhd_header *)p;
-               if (h->type == amd_iommu_target_ivhd_type) {
-                       int ret = find_last_devid_from_ivhd(h);
-
-                       if (ret)
-                               return ret;
+               if (h->pci_seg == pci_seg &&
+                   h->type == amd_iommu_target_ivhd_type) {
+                       last_devid = find_last_devid_from_ivhd(h);
+
+                       if (last_devid < 0)
+                               return -EINVAL;
+                       if (last_devid > last_bdf)
+                               last_bdf = last_devid;
                }
                p += h->length;
        }
        WARN_ON(p != end);
 
-       return 0;
+       return last_bdf;
 }
 
 /****************************************************************************
@@ -1551,14 +1559,28 @@ static int __init init_iommu_from_acpi(struct amd_iommu 
*iommu,
 }
 
 /* Allocate PCI segment data structure */
-static struct amd_iommu_pci_seg *__init alloc_pci_segment(u16 id)
+static struct amd_iommu_pci_seg *__init alloc_pci_segment(u16 id,
+                                         struct acpi_table_header *ivrs_base)
 {
        struct amd_iommu_pci_seg *pci_seg;
+       int last_bdf;
+
+       /*
+        * First parse ACPI tables to find the largest Bus/Dev/Func we need to
+        * handle in this PCI segment. Upon this information the shared data
+        * structures for the PCI segments in the system will be allocated.
+        */
+       last_bdf = find_last_devid_acpi(ivrs_base, id);
+       if (last_bdf < 0)
+               return NULL;
 
        pci_seg = kzalloc(sizeof(struct amd_iommu_pci_seg), GFP_KERNEL);
        if (pci_seg == NULL)
                return NULL;
 
+       pci_seg->last_bdf = last_bdf;
+       DUMP_printk("PCI segment : 0x%0x, last bdf : 0x%04x\n", id, last_bdf);
+
        pci_seg->id = id;
        init_llist_head(&pci_seg->dev_data_list);
        INIT_LIST_HEAD(&pci_seg->unity_map);
@@ -1574,7 +1596,8 @@ static struct amd_iommu_pci_seg *__init 
alloc_pci_segment(u16 id)
        return pci_seg;
 }
 
-static struct amd_iommu_pci_seg *__init get_pci_segment(u16 id)
+static struct amd_iommu_pci_seg *__init get_pci_segment(u16 id,
+                                       struct acpi_table_header *ivrs_base)
 {
        struct amd_iommu_pci_seg *pci_seg;
 
@@ -1583,7 +1606,7 @@ static struct amd_iommu_pci_seg *__init 
get_pci_segment(u16 id)
                        return pci_seg;
        }
 
-       return alloc_pci_segment(id);
+       return alloc_pci_segment(id, ivrs_base);
 }
 
 static void __init free_pci_segment(void)
@@ -1684,12 +1707,13 @@ static void amd_iommu_ats_write_check_workaround(struct 
amd_iommu *iommu)
  * together and also allocates the command buffer and programs the
  * hardware. It does NOT enable the IOMMU. This is done afterwards.
  */
-static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header 
*h)
+static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header 
*h,
+                                struct acpi_table_header *ivrs_base)
 {
        struct amd_iommu_pci_seg *pci_seg;
        int ret;
 
-       pci_seg = get_pci_segment(h->pci_seg);
+       pci_seg = get_pci_segment(h->pci_seg, ivrs_base);
        if (pci_seg == NULL)
                return -ENOMEM;
        iommu->pci_seg = pci_seg;
@@ -1864,7 +1888,7 @@ static int __init init_iommu_all(struct acpi_table_header 
*table)
                        if (iommu == NULL)
                                return -ENOMEM;
 
-                       ret = init_iommu_one(iommu, h);
+                       ret = init_iommu_one(iommu, h, table);
                        if (ret)
                                return ret;
                }
@@ -2408,13 +2432,14 @@ static void __init free_unity_maps(void)
 }
 
 /* called for unity map ACPI definition */
-static int __init init_unity_map_range(struct ivmd_header *m)
+static int __init init_unity_map_range(struct ivmd_header *m,
+                                      struct acpi_table_header *ivrs_base)
 {
        struct unity_map_entry *e = NULL;
        struct amd_iommu_pci_seg *pci_seg;
        char *s;
 
-       pci_seg = get_pci_segment(m->pci_seg);
+       pci_seg = get_pci_segment(m->pci_seg, ivrs_base);
        if (pci_seg == NULL)
                return -ENOMEM;
 
@@ -2481,7 +2506,7 @@ static int __init init_memory_definitions(struct 
acpi_table_header *table)
        while (p < end) {
                m = (struct ivmd_header *)p;
                if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
-                       init_unity_map_range(m);
+                       init_unity_map_range(m, table);
 
                p += m->length;
        }
@@ -2905,15 +2930,6 @@ static int __init early_amd_iommu_init(void)
        amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
        DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
 
-       /*
-        * First parse ACPI tables to find the largest Bus/Dev/Func
-        * we need to handle. Upon this information the shared data
-        * structures for the IOMMUs in the system will be allocated
-        */
-       ret = find_last_devid_acpi(ivrs_base);
-       if (ret)
-               goto out;
-
        dev_table_size     = tbl_size(DEV_TABLE_ENTRY_SIZE);
        alias_table_size   = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
        rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
-- 
2.27.0

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

Reply via email to