From: Tom Musta Date: Thu, 18 Dec 2014 16:34:30 +0000 (-0600) Subject: target-ppc: Introduce Feature Flag for Transactional Memory X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e43668a7d20e5d2dfe92b2f3426280b2a351333c;p=qemu.git target-ppc: Introduce Feature Flag for Transactional Memory Add a flag (POWERPC_FLAG_TM) for the Transactional Memory Facility introduced in Power ISA 2.07. Signed-off-by: Tom Musta Signed-off-by: Alexander Graf --- diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 351008384e..38176c05aa 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -584,6 +584,8 @@ enum { POWERPC_FLAG_CFAR = 0x00040000, /* Has VSX */ POWERPC_FLAG_VSX = 0x00080000, + /* Has Transaction Memory (ISA 2.07) */ + POWERPC_FLAG_TM = 0x00100000, }; /*****************************************************************************/