All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PING] [PATCH FOR v3.19 - v2] iommu/ipmmu-vmsa: change IOMMU_EXEC to IOMMU_NOEXEC
Date: Sat, 20 Dec 2014 19:07:33 +0000	[thread overview]
Message-ID: <7279717.KWmNDRjuSk@avalon> (raw)
In-Reply-To: <1418668873-5091-1-git-send-email-laurent.pinchart@ideasonboard.com>

Hi Joerg,

Ping ?

On Monday 15 December 2014 20:41:13 Laurent Pinchart wrote:
> From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> 
> Commit a720b41c41f5a7e4 ("iommu/arm-smmu: change IOMMU_EXEC to
> IOMMU_NOEXEC") has inverted and replaced the IOMMU_EXEC flag with
> IOMMU_NOEXEC. Update the driver accordingly.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
>  drivers/iommu/ipmmu-vmsa.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> Changes since v1:
> 
> - Rewrote the commit message
> 
> Joerg, this is a compilation breakage fix for v3.19. Could you please take
> it in your tree and submit it early during the -rc cycle ?
> 
> diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c
> index 68dfb0f..7486931 100644
> --- a/drivers/iommu/ipmmu-vmsa.c
> +++ b/drivers/iommu/ipmmu-vmsa.c
> @@ -558,7 +558,7 @@ static pmd_t *ipmmu_alloc_pmd(struct ipmmu_vmsa_device
> *mmu, pgd_t *pgd,
> 
>  static u64 ipmmu_page_prot(unsigned int prot, u64 type)
>  {
> -	u64 pgprot = ARM_VMSA_PTE_XN | ARM_VMSA_PTE_nG | ARM_VMSA_PTE_AF
> +	u64 pgprot = ARM_VMSA_PTE_nG | ARM_VMSA_PTE_AF
> 
>  		   | ARM_VMSA_PTE_SH_IS | ARM_VMSA_PTE_AP_UNPRIV
>  		   | ARM_VMSA_PTE_NS | type;
> 
> @@ -568,8 +568,8 @@ static u64 ipmmu_page_prot(unsigned int prot, u64 type)
>  	if (prot & IOMMU_CACHE)
>  		pgprot |= IMMAIR_ATTR_IDX_WBRWA << ARM_VMSA_PTE_ATTRINDX_SHIFT;
> 
> -	if (prot & IOMMU_EXEC)
> -		pgprot &= ~ARM_VMSA_PTE_XN;
> +	if (prot & IOMMU_NOEXEC)
> +		pgprot |= ARM_VMSA_PTE_XN;
>  	else if (!(prot & (IOMMU_READ | IOMMU_WRITE)))
>  		/* If no access create a faulting entry to avoid TLB fills. */
>  		pgprot &= ~ARM_VMSA_PTE_PAGE;

-- 
Regards,

Laurent Pinchart


WARNING: multiple messages have this Message-ID (diff)
From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PING] [PATCH FOR v3.19 - v2] iommu/ipmmu-vmsa: change IOMMU_EXEC to IOMMU_NOEXEC
Date: Sat, 20 Dec 2014 21:07:33 +0200	[thread overview]
Message-ID: <7279717.KWmNDRjuSk@avalon> (raw)
In-Reply-To: <1418668873-5091-1-git-send-email-laurent.pinchart@ideasonboard.com>

Hi Joerg,

Ping ?

On Monday 15 December 2014 20:41:13 Laurent Pinchart wrote:
> From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> 
> Commit a720b41c41f5a7e4 ("iommu/arm-smmu: change IOMMU_EXEC to
> IOMMU_NOEXEC") has inverted and replaced the IOMMU_EXEC flag with
> IOMMU_NOEXEC. Update the driver accordingly.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
>  drivers/iommu/ipmmu-vmsa.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> Changes since v1:
> 
> - Rewrote the commit message
> 
> Joerg, this is a compilation breakage fix for v3.19. Could you please take
> it in your tree and submit it early during the -rc cycle ?
> 
> diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c
> index 68dfb0f..7486931 100644
> --- a/drivers/iommu/ipmmu-vmsa.c
> +++ b/drivers/iommu/ipmmu-vmsa.c
> @@ -558,7 +558,7 @@ static pmd_t *ipmmu_alloc_pmd(struct ipmmu_vmsa_device
> *mmu, pgd_t *pgd,
> 
>  static u64 ipmmu_page_prot(unsigned int prot, u64 type)
>  {
> -	u64 pgprot = ARM_VMSA_PTE_XN | ARM_VMSA_PTE_nG | ARM_VMSA_PTE_AF
> +	u64 pgprot = ARM_VMSA_PTE_nG | ARM_VMSA_PTE_AF
> 
>  		   | ARM_VMSA_PTE_SH_IS | ARM_VMSA_PTE_AP_UNPRIV
>  		   | ARM_VMSA_PTE_NS | type;
> 
> @@ -568,8 +568,8 @@ static u64 ipmmu_page_prot(unsigned int prot, u64 type)
>  	if (prot & IOMMU_CACHE)
>  		pgprot |= IMMAIR_ATTR_IDX_WBRWA << ARM_VMSA_PTE_ATTRINDX_SHIFT;
> 
> -	if (prot & IOMMU_EXEC)
> -		pgprot &= ~ARM_VMSA_PTE_XN;
> +	if (prot & IOMMU_NOEXEC)
> +		pgprot |= ARM_VMSA_PTE_XN;
>  	else if (!(prot & (IOMMU_READ | IOMMU_WRITE)))
>  		/* If no access create a faulting entry to avoid TLB fills. */
>  		pgprot &= ~ARM_VMSA_PTE_PAGE;

-- 
Regards,

Laurent Pinchart

  parent reply	other threads:[~2014-12-20 19:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-15 18:41 [PATCH FOR v3.19 - v2] iommu/ipmmu-vmsa: change IOMMU_EXEC to IOMMU_NOEXEC Laurent Pinchart
2014-12-15 18:41 ` Laurent Pinchart
2014-12-15 18:41 ` Laurent Pinchart
     [not found] ` <1418668873-5091-1-git-send-email-laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>
2014-12-20 19:07   ` [PING] " Laurent Pinchart
2014-12-20 19:07 ` Laurent Pinchart [this message]
2014-12-20 19:07   ` Laurent Pinchart
2015-01-05 10:53 ` Joerg Roedel
2015-01-05 10:53   ` Joerg Roedel
2015-01-05 10:53   ` Joerg Roedel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7279717.KWmNDRjuSk@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.