aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/alderlake/smbios.c
blob: d0d9d790621020012ded0aaa4712068ae265d57e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#include <intelblocks/cpulib.h>
#include <intelblocks/msr.h>
#include <smbios.h>

/* AlderLake bus clock is fixed at 100MHz */
#define ADL_BCLK		100

/* Provide the max turbo frequency of the CPU */
unsigned int smbios_cpu_get_max_speed_mhz(void)
{
	return cpu_get_max_turbo_ratio() * ADL_BCLK;
}