drm/amdkfd: Topology: Fix location_id
authorHarish Kasiviswanathan <Harish.Kasiviswanathan@amd.com>
Sat, 9 Dec 2017 04:08:47 +0000 (23:08 -0500)
committerOded Gabbay <oded.gabbay@gmail.com>
Sat, 9 Dec 2017 04:08:47 +0000 (23:08 -0500)
Fix location_id format to match Thunk specification.

Signed-off-by: Harish Kasiviswanathan <Harish.Kasiviswanathan@amd.com>
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
drivers/gpu/drm/amd/amdkfd/kfd_topology.c

index ca2e51a..b614746 100644 (file)
@@ -1166,8 +1166,8 @@ int kfd_topology_add_device(struct kfd_dev *gpu)
                        cu_info.cu_active_number;
        dev->node_props.vendor_id = gpu->pdev->vendor;
        dev->node_props.device_id = gpu->pdev->device;
-       dev->node_props.location_id = (gpu->pdev->bus->number << 24) +
-                       (gpu->pdev->devfn & 0xffffff);
+       dev->node_props.location_id = PCI_DEVID(gpu->pdev->bus->number,
+               gpu->pdev->devfn);
        /*
         * TODO: Retrieve max engine clock values from KGD
         */