diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2016-10-29 14:02:01 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-09 23:28:52 +0100 |
commit | 1ec0c001793365d8b43f640b2bbc0080b4619d19 (patch) | |
tree | ce42063b0da9681d508a18d5989fbed561b9ca3e /src/cpu/amd/agesa/family16kb | |
parent | bb09f285c3e4e57d845231539edc6e374333cdbd (diff) |
amd/cpu: Add details to chip names
Newer AMD families have multiple models within them, each often
requiring unique support. The chip_name files were starting to
have a lot of duplication. Specify the model in the name, as well
as the family.
Change-Id: I236b260e2a565e212c486347c4a633eadcdf0042
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/17187
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/amd/agesa/family16kb')
-rw-r--r-- | src/cpu/amd/agesa/family16kb/chip_name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/agesa/family16kb/chip_name.c b/src/cpu/amd/agesa/family16kb/chip_name.c index f6294d3199..0ed0e61e5e 100644 --- a/src/cpu/amd/agesa/family16kb/chip_name.c +++ b/src/cpu/amd/agesa/family16kb/chip_name.c @@ -16,5 +16,5 @@ #include <device/device.h> struct chip_operations cpu_amd_agesa_family16kb_ops = { - CHIP_NAME("AMD CPU Family 16h") + CHIP_NAME("AMD CPU Family 16h Model 00h-0Fh") }; |