Home
last modified time | relevance | path

Searched refs:msr_bits (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.10/arch/powerpc/include/asm/
Dprocessor.h336 static inline unsigned int __unpack_fe01(unsigned long msr_bits) in __unpack_fe01() argument
338 return ((msr_bits & MSR_FE0) >> 10) | ((msr_bits & MSR_FE1) >> 8); in __unpack_fe01()
/Linux-v5.10/drivers/idle/
Dintel_idle.c1543 unsigned long long msr_bits; in auto_demotion_disable() local
1545 rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1546 msr_bits &= ~auto_demotion_disable_flags; in auto_demotion_disable()
1547 wrmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); in auto_demotion_disable()
1552 unsigned long long msr_bits; in c1e_promotion_disable() local
1554 rdmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()
1555 msr_bits &= ~0x2; in c1e_promotion_disable()
1556 wrmsrl(MSR_IA32_POWER_CTL, msr_bits); in c1e_promotion_disable()
/Linux-v5.10/arch/powerpc/kernel/
Dprocess.c1383 static struct regbit msr_bits[] = { variable
1454 print_bits(val, msr_bits, ","); in print_msr_bits()