Matheus Ferst <[email protected]> writes: > This instruction was added by Power ISA 3.0, using PPC2_PRCNTL makes it > available for older processors, like de e5500 and e6500. > > Fixes: 7af1e7b02264 ("target/ppc: add support for hypervisor doorbells on > book3s CPUs") > Signed-off-by: Matheus Ferst <[email protected]>
Reviewed-by: Fabiano Rosas <[email protected]> > --- > target/ppc/translate.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/ppc/translate.c b/target/ppc/translate.c > index 37d7018d18..eaac8670b1 100644 > --- a/target/ppc/translate.c > +++ b/target/ppc/translate.c > @@ -6906,7 +6906,7 @@ GEN_HANDLER2_E(msgsnd, "msgsnd", 0x1F, 0x0E, 0x06, > 0x03ff0001, > GEN_HANDLER2_E(msgclr, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001, > PPC_NONE, (PPC2_PRCNTL | PPC2_ISA207S)), > GEN_HANDLER2_E(msgsync, "msgsync", 0x1F, 0x16, 0x1B, 0x00000000, > - PPC_NONE, PPC2_PRCNTL), > + PPC_NONE, PPC2_ISA300), > GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE), > GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE), > GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC),
