Re: [Qemu-devel] [PATCH v2 7/9] target-mips: add TLBINV support

2014-10-16 Thread Yongbok Kim
Hi Leon, As the issues below are all corrected in the PRPL already, Reviewed-by: Yongbok Kim yongbok@imgtec.com Regards, Yongbok On 08/07/2014 08:57, Leon Alrae wrote: For Standard TLB configuration (Config.MT=1): TLBINV invalidates a set of TLB entries based on ASID. The virtual

Re: [Qemu-devel] [PATCH v2 7/9] target-mips: add TLBINV support

2014-10-16 Thread Leon Alrae
On 16/10/2014 11:52, Yongbok Kim wrote: +ctx.ie = (env-CP0_Config4 CP0C4_IE) 1; 3 Yeah, initially I tested TLBINV using mips64r6-generic cpu where Config4.IE is set to 3, thus it worked... Thanks, Leon

[Qemu-devel] [PATCH v2 7/9] target-mips: add TLBINV support

2014-07-08 Thread Leon Alrae
For Standard TLB configuration (Config.MT=1): TLBINV invalidates a set of TLB entries based on ASID. The virtual address is ignored in the entry match. TLB entries which have their G bit set to 1 are not modified. TLBINVF causes all entries to be invalidated. Note that this commit introduces