soc/intel/baytrail: Add new CPUID 0x30679
This ID is reported by newer mfg date SOCs. Needed for newer GBYT4 boards. Change-Id: I6af746d66a15f67553de1dc1c925e5cb0b181898 Signed-off-by: Mate Kukri <kukri.mate@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43180 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
9c4f97ac28
commit
f2c13bd905
|
@ -61,7 +61,8 @@ ramstage-y += placeholders.c
|
||||||
|
|
||||||
postcar-y += ../../../cpu/intel/car/non-evict/exit_car.S
|
postcar-y += ../../../cpu/intel/car/non-evict/exit_car.S
|
||||||
|
|
||||||
cpu_microcode_bins += 3rdparty/blobs/soc/intel/baytrail/microcode.bin
|
cpu_microcode_bins += 3rdparty/blobs/soc/intel/baytrail/microcode.bin \
|
||||||
|
3rdparty/intel-microcode/intel-ucode/06-37-09
|
||||||
|
|
||||||
CPPFLAGS_common += -Isrc/soc/intel/baytrail/include
|
CPPFLAGS_common += -Isrc/soc/intel/baytrail/include
|
||||||
|
|
||||||
|
|
|
@ -60,6 +60,7 @@ static struct device_operations cpu_dev_ops = {
|
||||||
static const struct cpu_device_id cpu_table[] = {
|
static const struct cpu_device_id cpu_table[] = {
|
||||||
{ X86_VENDOR_INTEL, 0x30673 },
|
{ X86_VENDOR_INTEL, 0x30673 },
|
||||||
{ X86_VENDOR_INTEL, 0x30678 },
|
{ X86_VENDOR_INTEL, 0x30678 },
|
||||||
|
{ X86_VENDOR_INTEL, 0x30679 },
|
||||||
{ 0, 0 },
|
{ 0, 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue