soc/amd/picasso: Add CPUID of newer device

Add a new device (Family 17h Models 20h-2Fh) to the cpu driver.

Change-Id: Id792533e60813b7509bacd6806f78cd8bba56e37
Signed-off-by: Marshall Dawson <marshall.dawson@amd.corp-partner.google.com>
Reviewed-on: https://chromium-review.googlesource.com/1950713
Reviewed-by: Martin Roth <martinroth@chromium.org>
Tested-by: Martin Roth <martinroth@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39617
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Marshall Dawson 2019-12-04 10:26:08 -07:00 committed by Felix Held
parent 7c49cb8f9c
commit 505fe3d73c
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@ static struct device_operations cpu_dev_ops = {
static struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_AMD, 0x810f80 },
{ X86_VENDOR_AMD, 0x810f81 },
{ X86_VENDOR_AMD, 0x820f01 },
{ 0, 0 },
};