From: Ralf Baechle <ralf@linux-mips.org>
To: "Steven J. Hill" <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org, Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
Subject: Re: [PATCH] MIPS: Add missing hazard barrier in TLB load handler.
Date: Thu, 20 Jun 2013 13:07:38 +0200 [thread overview]
Message-ID: <20130620110738.GB17009@linux-mips.org> (raw)
In-Reply-To: <1371707874-6632-1-git-send-email-Steven.Hill@imgtec.com>
On Thu, Jun 20, 2013 at 12:57:54AM -0500, Steven J. Hill wrote:
> MIPS R2 documents state that an execution hazard barrier is needed
> after a TLBR before reading EntryLo.
>
> Change-Id: Idef3b6abbb63a1bbd5e153c6110a979fa7bd5896
> Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
> Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
> ---
> arch/mips/mm/tlbex.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c
> index d9969d2..5ef426c 100644
> --- a/arch/mips/mm/tlbex.c
> +++ b/arch/mips/mm/tlbex.c
> @@ -1922,6 +1922,11 @@ static void build_r4000_tlb_load_handler(void)
> uasm_i_nop(&p);
>
> uasm_i_tlbr(&p);
> +#if !defined(CONFIG_CPU_CAVIUM_OCTEON)
> + /* hazard barrier after TLBR but before read EntryLo */
> + if (cpu_has_mips_r2)
> + uasm_i_ehb(&p);
> +#endif
> /* Examine entrylo 0 or 1 based on ptr. */
> if (use_bbit_insns()) {
> uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
> @@ -1976,6 +1981,11 @@ static void build_r4000_tlb_load_handler(void)
> uasm_i_nop(&p);
>
> uasm_i_tlbr(&p);
> +#if !defined(CONFIG_CPU_CAVIUM_OCTEON)
> + /* hazard barrier after TLBR but before read EntryLo */
> + if (cpu_has_mips_r2)
> + uasm_i_ehb(&p);
> +#endif
> /* Examine entrylo 0 or 1 based on ptr. */
> if (use_bbit_insns()) {
> uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
And guess which lines the sulphur smell in this patch is coming from.
Ralf
next prev parent reply other threads:[~2013-06-20 11:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-20 5:57 [PATCH] MIPS: Add missing hazard barrier in TLB load handler Steven J. Hill
2013-06-20 11:07 ` Ralf Baechle [this message]
2013-06-20 11:13 ` Sergei Shtylyov
2013-06-20 13:32 ` Ralf Baechle
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=20130620110738.GB17009@linux-mips.org \
--to=ralf@linux-mips.org \
--cc=Leonid.Yegoshin@imgtec.com \
--cc=Steven.Hill@imgtec.com \
--cc=linux-mips@linux-mips.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.