mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-02 18:17:50 -04:00
gpu: host1x: Use tegra_dev_iommu_get_stream_id()
Use the newly implemented tegra_dev_iommu_get_stream_id() helper to encapsulate and centralize the IOMMU stream ID access. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
@@ -35,8 +35,6 @@ int host1x_memory_context_list_init(struct host1x *host1x)
|
||||
cdl->len = err / 4;
|
||||
|
||||
for (i = 0; i < cdl->len; i++) {
|
||||
struct iommu_fwspec *fwspec;
|
||||
|
||||
ctx = &cdl->devs[i];
|
||||
|
||||
ctx->host = host1x;
|
||||
@@ -70,14 +68,12 @@ int host1x_memory_context_list_init(struct host1x *host1x)
|
||||
goto del_devices;
|
||||
}
|
||||
|
||||
fwspec = dev_iommu_fwspec_get(&ctx->dev);
|
||||
if (!fwspec || !device_iommu_mapped(&ctx->dev)) {
|
||||
if (!tegra_dev_iommu_get_stream_id(&ctx->dev, &ctx->stream_id) ||
|
||||
!device_iommu_mapped(&ctx->dev)) {
|
||||
dev_err(host1x->dev, "Context device %d has no IOMMU!\n", i);
|
||||
device_del(&ctx->dev);
|
||||
goto del_devices;
|
||||
}
|
||||
|
||||
ctx->stream_id = fwspec->ids[0] & 0xffff;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user