From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [RFC for-4.5 06/12] xen/passthrough: rework dom0_pvh_reqs to use it also on ARM Date: Mon, 10 Feb 2014 16:10:32 +0000 Message-ID: <52F8F9F8.9000702@linaro.org> References: <1391794991-5919-1-git-send-email-julien.grall@linaro.org> <1391794991-5919-7-git-send-email-julien.grall@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WCtRM-0004T3-M1 for xen-devel@lists.xenproject.org; Mon, 10 Feb 2014 16:10:36 +0000 Received: by mail-ee0-f46.google.com with SMTP id c13so3029347eek.19 for ; Mon, 10 Feb 2014 08:10:34 -0800 (PST) In-Reply-To: <1391794991-5919-7-git-send-email-julien.grall@linaro.org> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Julien Grall Cc: ian.campbell@citrix.com, patches@linaro.org, tim@xen.org, stefano.stabellini@citrix.com, Jan Beulich , xen-devel@lists.xenproject.org, Xiantao Zhang List-Id: xen-devel@lists.xenproject.org On 02/07/2014 05:43 PM, Julien Grall wrote: > DOM0 on ARM will have the same requirements as DOM0 PVH when iommu is enabled. > Both PVH and ARM guest has paging mode translate enabled, so Xen can use it > to know if it needs to check the requirements. > > Rename the function and remove "pvh" word in the commit message. > > Signed-off-by: Julien Grall > Cc: Xiantao Zhang > Cc: Jan Beulich > --- > xen/drivers/passthrough/iommu.c | 14 +++++++++----- > 1 file changed, 9 insertions(+), 5 deletions(-) > > diff --git a/xen/drivers/passthrough/iommu.c b/xen/drivers/passthrough/iommu.c > index 19b0e23..26a5d91 100644 > --- a/xen/drivers/passthrough/iommu.c > +++ b/xen/drivers/passthrough/iommu.c > @@ -130,13 +130,18 @@ int iommu_domain_init(struct domain *d) > return hd->platform_ops->init(d); > } > > -static __init void check_dom0_pvh_reqs(struct domain *d) > +static __init void check_dom0_reqs(struct domain *d) > { > + if ( !paging_mode_translate(d) ) > + return; > + > if ( !iommu_enabled ) > - panic("Presently, iommu must be enabled for pvh dom0\n"); > + panic("Presently, iommu must be enabled to use dom0 with translate " > + "paging mode\n"); Hmmm... this change is wrong. I forgot that iommu doesn't exist on some ARM platform (for instance Arndale). Do we really this check for PVH? If yes, I will add replace the check by: is_pvh_domain(d) && !iommu_enabled. -- Julien Grall