vendorcode/amd/agesa/f15tn/*/F15TnMsrTables.c: Topology Extensions Support

Topology Extensions Support (bit 54 of 0xC0011005) applies to
PACKAGE_TYPE_FS1r2 also. Rids us of:

 "Re-enabling disabled Topology Extensions Support"

showing up in dmesg.

Change-Id: Id123fa9632936c150cf1aebc4d34b404a4398ead
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7671
Tested-by: build bot (Jenkins)
Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com>
This commit is contained in:
Edward O'Callaghan 2014-12-06 22:20:31 +11:00
parent c746dcbe91
commit f0101a4f5a
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ SetTopologyExtensions (
PkgType = LibAmdGetPackageType (StdHeader);
LibAmdMsrRead (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);
CpuMsrData &= ~(BIT54);
if (PkgType == PACKAGE_TYPE_FM2) {
if ((PkgType == PACKAGE_TYPE_FM2) || (PkgType == PACKAGE_TYPE_FS1r2)) {
CpuMsrData |= BIT54;
}
LibAmdMsrWrite (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);