blob: 42692586fe8adc4f085ce5b5fd2b48911076b687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <intelblocks/cpulib.h>
#include <intelblocks/msr.h>
#include <smbios.h>
/* Provide the max turbo frequency of the CPU */
unsigned int smbios_cpu_get_max_speed_mhz(void)
{
return cpu_get_max_turbo_ratio() * CONFIG_CPU_BCLK_MHZ;
}
|