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>
This commit is contained in:
parent
bb09f285c3
commit
1ec0c00179
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_agesa_family14_ops = {
|
||||
CHIP_NAME("AMD CPU Family 14h")
|
||||
CHIP_NAME("AMD CPU Family 14h Model 00h-0Fh")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_agesa_family15_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 00h-0Fh")
|
||||
};
|
||||
|
|
|
@ -17,5 +17,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_agesa_family15rl_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 10h-1Fh")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_agesa_family15tn_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 10h-1Fh")
|
||||
};
|
||||
|
|
|
@ -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")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_pi_00630F01_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h Model 30")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 30h-3Fh")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_pi_00660F01_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 60h-6Fh")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_pi_00670F00_ops = {
|
||||
CHIP_NAME("AMD CPU Family 15h")
|
||||
CHIP_NAME("AMD CPU Family 15h Model 70h-7Fh")
|
||||
};
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
#include <device/device.h>
|
||||
|
||||
struct chip_operations cpu_amd_pi_00730F01_ops = {
|
||||
CHIP_NAME("AMD CPU Family 16h")
|
||||
CHIP_NAME("AMD CPU Family 16h Model 30h-3Fh")
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue