From: christoffer.dall@linaro.org (Christoffer Dall)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] arm64: Add HYP interface to flush VM Stage 1/2 TLB entires
Date: Fri, 7 Nov 2014 21:20:32 +0100 [thread overview]
Message-ID: <20141107202032.GG22848@cbox> (raw)
In-Reply-To: <1412908447-28247-3-git-send-email-m.smarduch@samsung.com>
On Thu, Oct 09, 2014 at 07:34:06PM -0700, Mario Smarduch wrote:
> This patch adds HYP VM TLB FLush function.
>
> Signed-off-by: Mario Smarduch <m.smarduch@samsung.com>
> ---
> arch/arm64/kvm/hyp.S | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/arch/arm64/kvm/hyp.S b/arch/arm64/kvm/hyp.S
> index b0d1512..117a91c 100644
> --- a/arch/arm64/kvm/hyp.S
> +++ b/arch/arm64/kvm/hyp.S
> @@ -645,6 +645,28 @@ ENTRY(__kvm_tlb_flush_vmid_ipa)
> ret
> ENDPROC(__kvm_tlb_flush_vmid_ipa)
>
> +/**
> + * void __kvm_tlb_flush_vmid(struct kvm *kvm) - Flush per-VMID TLBs
> + * @struc kvm *kvm - pointer to kvm structure
struct
> + *
> + * Invalidates all Stage 1 and 2 TLB entries for current VMID.
> + */
> +ENTRY(__kvm_tlb_flush_vmid)
> + dsb ishst
> +
> + kern_hyp_va x0
> + ldr x2, [x0, #KVM_VTTBR]
> + msr vttbr_el2, x2
> + isb
> +
> + tlbi vmalls12e1is
> + dsb ish
> + isb
> +
> + msr vttbr_el2, xzr
> + ret
> +ENDPROC(__kvm_tlb_flush_vmid)
> +
> ENTRY(__kvm_flush_vm_context)
> dsb ishst
> tlbi alle1is
> --
> 1.9.1
>
Looks good to me:
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
WARNING: multiple messages have this Message-ID (diff)
From: Christoffer Dall <christoffer.dall@linaro.org>
To: Mario Smarduch <m.smarduch@samsung.com>
Cc: kvm@vger.kernel.org, marc.zyngier@arm.com,
catalin.marinas@arm.com, gleb@kernel.org, pbonzini@redhat.com,
kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/3] arm64: Add HYP interface to flush VM Stage 1/2 TLB entires
Date: Fri, 7 Nov 2014 21:20:32 +0100 [thread overview]
Message-ID: <20141107202032.GG22848@cbox> (raw)
In-Reply-To: <1412908447-28247-3-git-send-email-m.smarduch@samsung.com>
On Thu, Oct 09, 2014 at 07:34:06PM -0700, Mario Smarduch wrote:
> This patch adds HYP VM TLB FLush function.
>
> Signed-off-by: Mario Smarduch <m.smarduch@samsung.com>
> ---
> arch/arm64/kvm/hyp.S | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/arch/arm64/kvm/hyp.S b/arch/arm64/kvm/hyp.S
> index b0d1512..117a91c 100644
> --- a/arch/arm64/kvm/hyp.S
> +++ b/arch/arm64/kvm/hyp.S
> @@ -645,6 +645,28 @@ ENTRY(__kvm_tlb_flush_vmid_ipa)
> ret
> ENDPROC(__kvm_tlb_flush_vmid_ipa)
>
> +/**
> + * void __kvm_tlb_flush_vmid(struct kvm *kvm) - Flush per-VMID TLBs
> + * @struc kvm *kvm - pointer to kvm structure
struct
> + *
> + * Invalidates all Stage 1 and 2 TLB entries for current VMID.
> + */
> +ENTRY(__kvm_tlb_flush_vmid)
> + dsb ishst
> +
> + kern_hyp_va x0
> + ldr x2, [x0, #KVM_VTTBR]
> + msr vttbr_el2, x2
> + isb
> +
> + tlbi vmalls12e1is
> + dsb ish
> + isb
> +
> + msr vttbr_el2, xzr
> + ret
> +ENDPROC(__kvm_tlb_flush_vmid)
> +
> ENTRY(__kvm_flush_vm_context)
> dsb ishst
> tlbi alle1is
> --
> 1.9.1
>
Looks good to me:
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
next prev parent reply other threads:[~2014-11-07 20:20 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-10 2:34 [PATCH 0/3] arm/arm64: Add dirty page logging for ARMv8 Mario Smarduch
2014-10-10 2:34 ` Mario Smarduch
2014-10-10 2:34 ` [PATCH 1/3] arm64: ARMv8 headers changes for dirty page logging Mario Smarduch
2014-10-10 2:34 ` Mario Smarduch
2014-11-07 20:20 ` Christoffer Dall
2014-11-07 20:20 ` Christoffer Dall
2014-11-07 20:49 ` Mario Smarduch
2014-11-07 20:49 ` Mario Smarduch
2014-10-10 2:34 ` [PATCH 2/3] arm64: Add HYP interface to flush VM Stage 1/2 TLB entires Mario Smarduch
2014-10-10 2:34 ` Mario Smarduch
2014-11-07 20:20 ` Christoffer Dall [this message]
2014-11-07 20:20 ` Christoffer Dall
2014-11-07 20:50 ` Mario Smarduch
2014-11-07 20:50 ` Mario Smarduch
2014-10-10 2:34 ` [PATCH 3/3] arm/arm64: Enable Dirty Page logging for ARMv8 move log read, tlb flush to generic code Mario Smarduch
2014-10-10 2:34 ` Mario Smarduch
2014-11-07 20:20 ` Christoffer Dall
2014-11-07 20:20 ` Christoffer Dall
2014-11-07 20:51 ` Mario Smarduch
2014-11-07 20:51 ` Mario Smarduch
2014-11-19 14:39 ` Christoffer Dall
2014-11-19 14:39 ` Christoffer Dall
2014-11-19 20:15 ` Mario Smarduch
2014-11-19 20:15 ` Mario Smarduch
2014-11-21 10:09 ` Christoffer Dall
2014-11-21 10:09 ` Christoffer Dall
2014-11-22 0:42 ` Mario Smarduch
2014-11-22 0:42 ` Mario Smarduch
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=20141107202032.GG22848@cbox \
--to=christoffer.dall@linaro.org \
--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.