aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/amd/dbm690t/acpi_tables.c7
-rw-r--r--src/mainboard/amd/pistachio/acpi_tables.c7
2 files changed, 6 insertions, 8 deletions
diff --git a/src/mainboard/amd/dbm690t/acpi_tables.c b/src/mainboard/amd/dbm690t/acpi_tables.c
index eb3433cc61..987eeae8b8 100644
--- a/src/mainboard/amd/dbm690t/acpi_tables.c
+++ b/src/mainboard/amd/dbm690t/acpi_tables.c
@@ -258,12 +258,11 @@ u32 pstates_algorithm(acpi_header_t * dsdt)
return 0;
}
- /*get the multipier of the fid frequency */
+ /* Get the multipier of the fid frequency */
/*
- * In RevG, 100MHz step is added
+ * Fid multiplier is always 100 revF and revG.
*/
- cpuid1 = cpuid(0x80000007);
- fid_multiplier = ((cpuid1.edx & 0x40) >> 6) * 100;
+ fid_multiplier = 100;
/*
* Formula1: CPUFreq = FID * fid_multiplier + 800
diff --git a/src/mainboard/amd/pistachio/acpi_tables.c b/src/mainboard/amd/pistachio/acpi_tables.c
index eb3433cc61..dfb9167481 100644
--- a/src/mainboard/amd/pistachio/acpi_tables.c
+++ b/src/mainboard/amd/pistachio/acpi_tables.c
@@ -258,12 +258,11 @@ u32 pstates_algorithm(acpi_header_t * dsdt)
return 0;
}
- /*get the multipier of the fid frequency */
+ /* Get the multipier of the fid frequency */
/*
- * In RevG, 100MHz step is added
+ * Fid multiplier is always 100 revF and revG.
*/
- cpuid1 = cpuid(0x80000007);
- fid_multiplier = ((cpuid1.edx & 0x40) >> 6) * 100;
+ fid_multiplier = 100;
/*
* Formula1: CPUFreq = FID * fid_multiplier + 800