aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/common/voltage.c
blob: 38951a06dbb6b19d922c8336a2bc2b54062325fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#include <cpu/x86/msr.h>
#include <smbios.h>

/* This is not an architectural MSR. */
#define MSR_PERF_STATUS 0x198

unsigned int smbios_cpu_get_voltage(void)
{
	return (rdmsr(MSR_PERF_STATUS).hi & 0xffff) * 10 / 8192;
}