Lines Matching refs:msr_bits
1974 unsigned long long msr_bits; in auto_demotion_disable() local
1976 rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1977 msr_bits &= ~auto_demotion_disable_flags; in auto_demotion_disable()
1978 wrmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1983 unsigned long long msr_bits; in c1e_promotion_enable() local
1985 rdmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_enable()
1986 msr_bits |= 0x2; in c1e_promotion_enable()
1987 wrmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_enable()
1992 unsigned long long msr_bits; in c1e_promotion_disable() local
1994 rdmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()
1995 msr_bits &= ~0x2; in c1e_promotion_disable()
1996 wrmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()