From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35316) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fEM6z-0005Er-Se for qemu-devel@nongnu.org; Thu, 03 May 2018 17:50:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fEM6z-0001Jb-5Y for qemu-devel@nongnu.org; Thu, 03 May 2018 17:50:01 -0400 Received: from mail-lf0-x244.google.com ([2a00:1450:4010:c07::244]:39957) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fEM6y-0001HX-UT for qemu-devel@nongnu.org; Thu, 03 May 2018 17:50:01 -0400 Received: by mail-lf0-x244.google.com with SMTP id j16-v6so28142265lfb.7 for ; Thu, 03 May 2018 14:50:00 -0700 (PDT) MIME-Version: 1.0 References: <20180503091922.28733-1-edgar.iglesias@gmail.com> <20180503091922.28733-25-edgar.iglesias@gmail.com> In-Reply-To: <20180503091922.28733-25-edgar.iglesias@gmail.com> From: Alistair Francis Date: Thu, 03 May 2018 21:49:33 +0000 Message-ID: Content-Type: text/plain; charset="UTF-8" Subject: Re: [Qemu-devel] [PATCH v1 24/29] target-microblaze: mmu: Add R_TBLX_MISS macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Edgar Iglesias Cc: "qemu-devel@nongnu.org Developers" , Edgar Iglesias , Peter Maydell , Sai Pavan Boddu , Francisco Iglesias , Alistair Francis , Richard Henderson On Thu, May 3, 2018 at 2:41 AM Edgar E. Iglesias wrote: > From: "Edgar E. Iglesias" > Add a R_TBLX_MISS MASK and SHIFT macros. > Signed-off-by: Edgar E. Iglesias Reviewed-by: Alistair Francis Alistair > --- > target/microblaze/mmu.c | 5 +++-- > target/microblaze/mmu.h | 4 ++++ > 2 files changed, 7 insertions(+), 2 deletions(-) > diff --git a/target/microblaze/mmu.c b/target/microblaze/mmu.c > index 0019ebd18f..f4a4c339c9 100644 > --- a/target/microblaze/mmu.c > +++ b/target/microblaze/mmu.c > @@ -292,8 +292,9 @@ void mmu_write(CPUMBState *env, uint32_t rn, uint32_t v) > v & TLB_EPN_MASK, 0, cpu_mmu_index(env, false)); > if (hit) { > env->mmu.regs[MMU_R_TLBX] = lu.idx; > - } else > - env->mmu.regs[MMU_R_TLBX] |= 0x80000000; > + } else { > + env->mmu.regs[MMU_R_TLBX] |= R_TBLX_MISS_MASK; > + } > break; > } > default: > diff --git a/target/microblaze/mmu.h b/target/microblaze/mmu.h > index 3b7a9983d5..113539c6e9 100644 > --- a/target/microblaze/mmu.h > +++ b/target/microblaze/mmu.h > @@ -54,6 +54,10 @@ > #define TLB_M 0x00000002 /* Memory is coherent */ > #define TLB_G 0x00000001 /* Memory is guarded from prefetch */ > +/* TLBX */ > +#define R_TBLX_MISS_SHIFT 31 > +#define R_TBLX_MISS_MASK (1U << R_TBLX_MISS_SHIFT) > + > #define TLB_ENTRIES 64 > struct microblaze_mmu > -- > 2.14.1