From: Balbir Singh <bsingharora@gmail.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
paulus@samba.org, mpe@ellerman.id.au,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH V2 2/5] powerpc/mm: Add radix flush all with IS=3
Date: Tue, 23 Aug 2016 04:22:25 +1000 [thread overview]
Message-ID: <20160822182225.GA21403@350D> (raw)
In-Reply-To: <87shtxib9a.fsf@linux.vnet.ibm.com>
On Mon, Aug 22, 2016 at 11:41:13AM +0530, Aneesh Kumar K.V wrote:
> Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:
>
> > On Fri, 2016-08-19 at 14:22 +0530, Aneesh Kumar K.V wrote:
> >> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> >> ---
> >> arch/powerpc/include/asm/book3s/64/tlbflush-radix.h | 1 +
> >> arch/powerpc/mm/tlb-radix.c | 15
> >> +++++++++++++++
> >> 2 files changed, 16 insertions(+)
> >
> > Don't we need two ? One for partition scoped and one for process scoped
> > ?
>
>
> With invalid selector value 3 (IS = 3), we will invalidate all entries
> when executed with MSR[HV] = 1. I guess that should take out all the
> translation cache, including implementation dependent one ?
>
I think Ben might be right, we probably need two. We probably want
to invlidate the process scoped ones first followed by partition
scope. I could not find anything in the documentation that said
partition scope flush implied process scope flush.
> Also note thar PRS = 0. ie, we are partition scoped. ie, we are doing
> invalidate with
>
> PRS =0, IS = 3 HV = 1 RIC = 2
>
> >
> >> diff --git a/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h
> >> b/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h
> >> index 65037762b120..a9e19cb2f7c5 100644
> >> --- a/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h
> >> +++ b/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h
> >> @@ -41,4 +41,5 @@ extern void radix__flush_tlb_page_psize(struct
> >> mm_struct *mm, unsigned long vmad
> >> extern void radix__flush_tlb_lpid_va(unsigned long lpid, unsigned
> >> long gpa,
> >> unsigned long page_size);
> >> extern void radix__flush_tlb_lpid(unsigned long lpid);
> >> +extern void radix__flush_tlb_all(void);
> >> #endif
> >> diff --git a/arch/powerpc/mm/tlb-radix.c b/arch/powerpc/mm/tlb-
> >> radix.c
> >> index 48df05ef5231..517feb47ebe4 100644
> >> --- a/arch/powerpc/mm/tlb-radix.c
> >> +++ b/arch/powerpc/mm/tlb-radix.c
> >> @@ -400,3 +400,18 @@ void radix__flush_pmd_tlb_range(struct
> >> vm_area_struct *vma,
> >> radix__flush_tlb_range_psize(vma->vm_mm, start, end,
> >> MMU_PAGE_2M);
> >> }
> >> EXPORT_SYMBOL(radix__flush_pmd_tlb_range);
> >> +
> >> +void radix__flush_tlb_all(void)
> >> +{
> >> + unsigned long rb,prs,r;
> >> + unsigned long ric = RIC_FLUSH_ALL;
> >> +
> >> + rb = 0x3 << PPC_BITLSHIFT(53); /* IS = 3 */
> >> + prs = 0; /* partition scoped */
> >> + r = 1; /* raidx format */
^^ radix
> >> +
> >> + asm volatile("ptesync": : :"memory");
> >> + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
> >> + : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(0)
> >> : "memory");
> >> + asm volatile("eieio; tlbsync; ptesync": : :"memory");
> >> +}
>
Balbir Singh.
next prev parent reply other threads:[~2016-08-22 18:22 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-19 8:52 [PATCH V2 0/5] kexec changes for Power ISA 3.0 Aneesh Kumar K.V
2016-08-19 8:52 ` [PATCH V2 1/5] powerpc/64/kexec: NULL check "clear_all" in kexec_sequence Aneesh Kumar K.V
2016-08-22 8:56 ` Balbir Singh
2016-09-25 3:00 ` [V2, " Michael Ellerman
2016-08-19 8:52 ` [PATCH V2 2/5] powerpc/mm: Add radix flush all with IS=3 Aneesh Kumar K.V
2016-08-21 23:55 ` Benjamin Herrenschmidt
2016-08-22 6:11 ` Aneesh Kumar K.V
2016-08-22 18:22 ` Balbir Singh [this message]
2016-08-23 10:57 ` [PATCH V3] " Aneesh Kumar K.V
2016-08-24 5:19 ` Balbir Singh
2016-09-25 3:00 ` [V3] " Michael Ellerman
2016-08-19 8:52 ` [PATCH V2 3/5] powerpc/64/kexec: Fix MMU cleanup on radix Aneesh Kumar K.V
2016-08-23 0:02 ` Balbir Singh
2016-08-19 8:52 ` [PATCH V2 4/5] powerpc/64/kexec: Copy image with MMU off when possible Aneesh Kumar K.V
2016-08-23 0:21 ` Balbir Singh
2016-08-19 8:52 ` [PATCH V2 5/5] powerpc/64/kexec: Remove BookE special default_machine_kexec_prepare() Aneesh Kumar K.V
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=20160822182225.GA21403@350D \
--to=bsingharora@gmail.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=benh@kernel.crashing.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=paulus@samba.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).