diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2012-01-26 19:40:53 +0100 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2012-07-11 12:15:45 +0200 |
commit | 0ff64f80e075ae036a4c80c7d7752b1e07fed792 (patch) | |
tree | ac1bbe189cfe6908d0bdceaa3042ddd767b98187 /drivers/iommu | |
parent | 0cd76dd13bdd2f7f02a2dc931e808e92b191082f (diff) | |
download | linux-3.10-0ff64f80e075ae036a4c80c7d7752b1e07fed792.tar.gz linux-3.10-0ff64f80e075ae036a4c80c7d7752b1e07fed792.tar.bz2 linux-3.10-0ff64f80e075ae036a4c80c7d7752b1e07fed792.zip |
iommu/amd: Implement DOMAIN_ATTR_GEOMETRY attribute
Implement the attribute itself and add the code for the
AMD IOMMU driver.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'drivers/iommu')
-rw-r--r-- | drivers/iommu/amd_iommu.c | 4 | ||||
-rw-r--r-- | drivers/iommu/iommu.c | 19 |
2 files changed, 20 insertions, 3 deletions
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c index a2e418cba0f..259a6beddec 100644 --- a/drivers/iommu/amd_iommu.c +++ b/drivers/iommu/amd_iommu.c @@ -3069,6 +3069,10 @@ static int amd_iommu_domain_init(struct iommu_domain *dom) dom->priv = domain; + dom->geometry.aperture_start = 0; + dom->geometry.aperture_end = ~0ULL; + dom->geometry.force_aperture = true; + return 0; out_free: diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c index c39972d8ded..ed5e0a553ca 100644 --- a/drivers/iommu/iommu.c +++ b/drivers/iommu/iommu.c @@ -348,10 +348,23 @@ EXPORT_SYMBOL_GPL(iommu_device_group); int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr attr, void *data) { - if (!domain->ops->domain_get_attr) - return -EINVAL; + struct iommu_domain_geometry *geometry; + int ret = 0; + + switch (attr) { + case DOMAIN_ATTR_GEOMETRY: + geometry = data; + *geometry = domain->geometry; + + break; + default: + if (!domain->ops->domain_get_attr) + return -EINVAL; - return domain->ops->domain_get_attr(domain, attr, data); + ret = domain->ops->domain_get_attr(domain, attr, data); + } + + return ret; } EXPORT_SYMBOL_GPL(iommu_domain_get_attr); |