Skip to content
  • Alexey Kardashevskiy's avatar
    target-ppc: Add POWER8's TM SPRs · cdcdda27
    Alexey Kardashevskiy authored
    
    
    This adds TM (Transactional Memory) SPRs.
    
    This adds generic spr_read_prev_upper32()/spr_write_prev_upper32() to
    handle upper half SPRs such as TEXASRU which is upper half of TEXASR.
    Since this is not the only register like that and their numbers go
    consequently, it makes sense to generalize the helpers.
    
    This adds a gen_msr_facility_check() helper which purpose is to generate
    the Facility Unavailable exception if the facility is disabled.
    It is a copy of gen_fscr_facility_check() but it checks for enabled
    facility in MSR rather than FSCR/HFSCR. It still sets the interrupt cause
    in FSCR/HFSCR (whichever is passed to the helper).
    
    This adds spr_read_tm/spr_write_tm/spr_read_tm_upper32/spr_write_tm_upper32
    which are used for TM SPRs.
    
    This adds TM-relates MSR bits definitions. This enables TM in POWER8 CPU class'
    msr_mask.
    
    Signed-off-by: default avatarAlexey Kardashevskiy <aik@ozlabs.ru>
    Reviewed-by: default avatarTom Musta <tommusta@gmail.com>
    Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
    cdcdda27