cpu_type: Add model 2 AMD FX CPU

This commit is contained in:
Alexander von Gluck IV 2013-03-20 13:15:28 -05:00
parent 5d8d472d1a
commit 190423a656
2 changed files with 4 additions and 2 deletions

View File

@ -592,7 +592,8 @@ typedef enum cpu_types {
B_CPU_AMD_E_SERIES = 0x5011f2,
// Family 15h
B_CPU_AMD_FX_SERIES = 0x6011f1, /* Bulldozer */
B_CPU_AMD_FX_SERIES_MODEL_1 = 0x6011f1, /* Bulldozer */
B_CPU_AMD_FX_SERIES_MODEL_2 = 0x6011f2,
/* VIA/Cyrix */
B_CPU_CYRIX_x86 = 0x1200,

View File

@ -350,7 +350,8 @@ get_cpu_model_string(system_info *info)
return "C-Series";
case B_CPU_AMD_E_SERIES:
return "E-Series";
case B_CPU_AMD_FX_SERIES:
case B_CPU_AMD_FX_SERIES_MODEL_1:
case B_CPU_AMD_FX_SERIES_MODEL_2:
return "FX-Series";
/* Transmeta */