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:
parent
c746dcbe91
commit
f0101a4f5a
|
@ -257,7 +257,7 @@ SetTopologyExtensions (
|
||||||
PkgType = LibAmdGetPackageType (StdHeader);
|
PkgType = LibAmdGetPackageType (StdHeader);
|
||||||
LibAmdMsrRead (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);
|
LibAmdMsrRead (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);
|
||||||
CpuMsrData &= ~(BIT54);
|
CpuMsrData &= ~(BIT54);
|
||||||
if (PkgType == PACKAGE_TYPE_FM2) {
|
if ((PkgType == PACKAGE_TYPE_FM2) || (PkgType == PACKAGE_TYPE_FS1r2)) {
|
||||||
CpuMsrData |= BIT54;
|
CpuMsrData |= BIT54;
|
||||||
}
|
}
|
||||||
LibAmdMsrWrite (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);
|
LibAmdMsrWrite (MSR_CPUID_EXT_FEATS, &CpuMsrData, StdHeader);
|
||||||
|
|
Loading…
Reference in New Issue