1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
5 #include <cpu/x86/cache.h>
7 static void model_f4x_init(struct device
*cpu
)
9 /* Turn on caching if we haven't already */
13 static struct device_operations cpu_dev_ops
= {
14 .init
= model_f4x_init
,
17 static const struct cpu_device_id cpu_table
[] = {
18 { X86_VENDOR_INTEL
, 0x0f41, CPUID_EXACT_MATCH_MASK
}, /* Xeon */
19 { X86_VENDOR_INTEL
, 0x0f43, CPUID_EXACT_MATCH_MASK
}, /* Not tested */
20 { X86_VENDOR_INTEL
, 0x0f44, CPUID_EXACT_MATCH_MASK
}, /* Not tested */
21 { X86_VENDOR_INTEL
, 0x0f47, CPUID_EXACT_MATCH_MASK
},
22 { X86_VENDOR_INTEL
, 0x0f48, CPUID_EXACT_MATCH_MASK
}, /* Not tested */
23 { X86_VENDOR_INTEL
, 0x0f49, CPUID_EXACT_MATCH_MASK
}, /* Not tested */
24 { X86_VENDOR_INTEL
, 0x0f4a, CPUID_EXACT_MATCH_MASK
}, /* Not tested */
28 static const struct cpu_driver model_f4x __cpu_driver
= {
30 .id_table
= cpu_table
,