src/cpu/intel/model_f4x: Update cpu_table

CPUID 0xf47 tested on on 945G-M4 board.
Needs more MSR's consistency tests.

To do: test if speedstep.c and speedstep/acpi.c
are ok for model_f4x.

Change-Id: I285ad33804592e3df510d61dd24f14f944e05142
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/17409
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Elyes HAOUAS 2016-11-13 17:48:13 +01:00 committed by Patrick Georgi
parent 680ed1f632
commit 2cc351da5f
1 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,12 @@ static struct device_operations cpu_dev_ops = {
static const struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, 0x0f41 }, /* Xeon */
{ X86_VENDOR_INTEL, 0x0f43 }, /* Not tested */
{ X86_VENDOR_INTEL, 0x0f44 }, /* Not tested */
{ X86_VENDOR_INTEL, 0x0f47 },
{ X86_VENDOR_INTEL, 0x0f48 }, /* Not tested */
{ X86_VENDOR_INTEL, 0x0f49 }, /* Not tested */
{ X86_VENDOR_INTEL, 0x0f4a }, /* Not tested */
{ 0, 0 },
};