|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [RFC 10/19] xen/passthrough: Introduce iommu_buildup
On Mon, 2014-06-16 at 17:17 +0100, Julien Grall wrote:
> This new function will correctly initialize the IOMMU page table for the
> current domain.
_setup, _configure, _initialise, _construct etc would be more normal
names I think.
"buildup" is the half hour of mindless blather from pundits that you
have to watch before a televised sporting event begins ;-)
> Also use it in iommu_assign_dt_device even though the current IOMMU
> implementation on ARM shares P2M with the processor.
> ---
> xen/drivers/passthrough/arm/iommu.c | 6 ++++++
> xen/drivers/passthrough/device_tree.c | 7 +++++++
> xen/drivers/passthrough/iommu.c | 25 +++++++++++++++++++++++++
> xen/drivers/passthrough/pci.c | 12 ++++--------
> xen/include/xen/iommu.h | 2 ++
> 5 files changed, 44 insertions(+), 8 deletions(-)
>
> diff --git a/xen/drivers/passthrough/arm/iommu.c
> b/xen/drivers/passthrough/arm/iommu.c
> index 3007b99..de4ed64 100644
> --- a/xen/drivers/passthrough/arm/iommu.c
> +++ b/xen/drivers/passthrough/arm/iommu.c
> @@ -68,3 +68,9 @@ void arch_iommu_domain_destroy(struct domain *d)
> {
> iommu_dt_domain_destroy(d);
> }
> +
> +int arch_iommu_populate_page_table(struct domain *d)
> +{
> + /* The IOMMU share the p2m with the CPU */
"shares"
> + return -ENOSYS;
> +}
> diff --git a/xen/drivers/passthrough/device_tree.c
> b/xen/drivers/passthrough/device_tree.c
> index 3e47df5..afb4dfc 100644
> --- a/xen/drivers/passthrough/device_tree.c
> +++ b/xen/drivers/passthrough/device_tree.c
> @@ -41,6 +41,13 @@ int iommu_assign_dt_device(struct domain *d, struct
> dt_device_node *dev)
> if ( !list_empty(&dev->domain_list) )
> goto fail;
>
> + if ( need_iommu(d) <= 0 )
> + {
> + rc = iommu_buildup(d);
> + if ( rc )
> + goto fail;
> + }
> +
> rc = hd->platform_ops->assign_dt_device(d, dev);
>
> if ( rc )
> diff --git a/xen/drivers/passthrough/iommu.c b/xen/drivers/passthrough/iommu.c
> index cc12735..2e9b48d 100644
> --- a/xen/drivers/passthrough/iommu.c
> +++ b/xen/drivers/passthrough/iommu.c
> @@ -187,6 +187,31 @@ void iommu_teardown(struct domain *d)
> tasklet_schedule(&iommu_pt_cleanup_tasklet);
> }
>
> +int iommu_buildup(struct domain *d)
Is there really not such a function already? How does x86 setup the
iommu then?
Ian.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |