On 5/12/20 4:36 PM, Edgar E. Iglesias wrote: > From: Tong Ho <tong...@xilinx.com> > > This is to fix cpu-abort with 'qemu: fatal: unknown mfs reg d' > (in the default case) when microblaze guest issues 'MFS Rd,EDR' > instruction. > > Since embeddedsw release 2019.2, XPlm_ExceptionHandler() issues > the instruction on exception, and microblaze model aborts when > PLM firmware guest encounters an exception. > > Signed-off-by: Tong Ho <tong...@xilinx.com> > Reviewed-by: Edgar E. Iglesias <edgar.igles...@xilinx.com> > Signed-off-by: Edgar E. Iglesias <edgar.igles...@xilinx.com>
Reviewed-by: Luc Michel <luc.mic...@greensocs.com> > --- > target/microblaze/translate.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/target/microblaze/translate.c b/target/microblaze/translate.c > index 20b7427811..92b3630804 100644 > --- a/target/microblaze/translate.c > +++ b/target/microblaze/translate.c > @@ -581,6 +581,7 @@ static void dec_msr(DisasContext *dc) > case SR_ESR: > case SR_FSR: > case SR_BTR: > + case SR_EDR: > tcg_gen_extrl_i64_i32(cpu_R[dc->rd], cpu_SR[sr]); > break; > case 0x800: >