Searched refs:hwp_req (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/kernel/arch/x86/
H A Dhwp.cpp29 uint64_t hwp_req = (0x80ull << 24) | ((hwp_caps & 0xff) << 8) | ((hwp_caps >> 24) & 0xff); local
30 write_msr(X86_MSR_IA32_HWP_REQUEST, hwp_req);
52 uint64_t hwp_req = read_msr(X86_MSR_IA32_HWP_REQUEST) & ~(0xff << 24); local
53 hwp_req |= (hint << 24);
54 hwp_req &= ~(0xffffffffull << 32);
55 write_msr(X86_MSR_IA32_HWP_REQUEST, hwp_req);

Completed in 84 milliseconds