summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/genoa/cpu.c
blob: 8a7d8e9245fe51f478b9ba2edea85bb8b76e3cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: GPL-2.0-only */

#include <amdblocks/cpu.h>
#include <cpu/cpu.h>
#include <device/device.h>
#include <soc/cpu.h>

static void model_19_init(struct device *dev)
{
	set_cstate_io_addr();
}

static struct device_operations cpu_dev_ops = {
	.init = model_19_init,
};

static struct cpu_device_id cpu_table[] = {
	{ X86_VENDOR_AMD, GENOA_A0_CPUID, CPUID_ALL_STEPPINGS_MASK },
	{ X86_VENDOR_AMD, GENOA_B0_CPUID, CPUID_ALL_STEPPINGS_MASK },
	CPU_TABLE_END
};

static const struct cpu_driver model_19 __cpu_driver = {
	.ops      = &cpu_dev_ops,
	.id_table = cpu_table,
};