Lines Matching refs:msr_bits
1949 unsigned long long msr_bits; in auto_demotion_disable() local
1951 rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1952 msr_bits &= ~auto_demotion_disable_flags; in auto_demotion_disable()
1953 wrmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1958 unsigned long long msr_bits; in c1e_promotion_enable() local
1960 rdmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_enable()
1961 msr_bits |= 0x2; in c1e_promotion_enable()
1962 wrmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_enable()
1967 unsigned long long msr_bits; in c1e_promotion_disable() local
1969 rdmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()
1970 msr_bits &= ~0x2; in c1e_promotion_disable()
1971 wrmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()