Changes for V4 ============== 1) Move delete of QuarkSocPkg\QuarkNorthCluster\Binary\QuarkMicrocode from QuarkPlatformPkg commit to QuarkSocPkg commit 2) Fix incorrect license header in PlatformSecLibModStrs.uni Changes for V3 ============== 1) Set PcdResetOnMemoryTypeInformationChange FALSE in QuarkMin.dsc This is required because QuarkMin.dsc uses the emulated variable driver that does not preserve any non-volatile UEFI variables across reset. If the condition is met where the memory type information variable needs to be updated, then the system will reset every time the UEFI Shell is run. By setting this PCD to FALSE, then reset action is disabled. 2) Move one binary file to QuarkSocBinPkg 3) Change RMU.bin FILE statements to INF statement in DSC FD region to be compatible with PACKAGES_PATH search for QuarkSocBinPkg Changes for V2 ============== 1) Use new generic PCI serial driver PciSioSerialDxe in MdeModulePkg 2) Configure PcdPciSerialParameters for PCI serial driver for Quark 3) Use new MtrrLib API to reduce time to set MTRRs for all DRAM 4) Convert all UNI files to utf-8 5) Replace tabs with spaces and remove trailing spaces 6) Add License.txt Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Acked-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19287 6f19259b-4bc3-4df7-8a09-765794883524
406 lines
13 KiB
Plaintext
406 lines
13 KiB
Plaintext
/** @file
|
|
CPU C State control methods
|
|
|
|
Copyright (c) 2013-2015 Intel Corporation.
|
|
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
DefinitionBlock (
|
|
"Cpu0Cst.aml",
|
|
"SSDT",
|
|
0x01,
|
|
"SsgPmm",
|
|
"Cpu0Cst",
|
|
0x0011
|
|
)
|
|
{
|
|
External(\_PR.CPU0, DeviceObj)
|
|
External (PDC0, IntObj)
|
|
External (CFGD, FieldUnitObj)
|
|
|
|
Scope(\_PR.CPU0)
|
|
{
|
|
Method (_CST, 0)
|
|
{
|
|
// If CMP is supported, and OSPM is not capable of independent C1, P, T state
|
|
// support for each processor for multi-processor configuration, we will just report
|
|
// C1 halt
|
|
//
|
|
// PDCx[4] = Indicates whether OSPM is not capable of independent C1, P, T state
|
|
// support for each processor for multi-processor configuration.
|
|
//
|
|
If(LAnd(And(CFGD,0x01000000), LNot(And(PDC0,0x10))))
|
|
{
|
|
Return(Package() {
|
|
1,
|
|
Package()
|
|
{ // C1 halt
|
|
ResourceTemplate(){Register(FFixedHW, 0, 0, 0)},
|
|
1,
|
|
157,
|
|
1000
|
|
}
|
|
})
|
|
}
|
|
|
|
//
|
|
// If MWAIT extensions is supported and OSPM is capable of performing
|
|
// native C state instructions for the C2/C3 in multi-processor configuration,
|
|
// we report every c state with MWAIT extensions.
|
|
//
|
|
// PDCx[9] = Indicates whether OSPM is capable of performing native C state instructions
|
|
// for the C2/C3 in multi-processor configuration
|
|
//
|
|
If(LAnd(And(CFGD, 0x200000), And(PDC0,0x200)))
|
|
{
|
|
//
|
|
// If C6 is supported, we report MWAIT C1,C2,C4,C6
|
|
//
|
|
If(And(CFGD,0x200))
|
|
{
|
|
Return( Package()
|
|
{
|
|
4,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // MWAIT C2, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x10, 1)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // MWAIT C4, hardware coordinated with bus master avoidance enabled
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x30, 3)},
|
|
3,
|
|
100,
|
|
100
|
|
},
|
|
Package()
|
|
{ // MWAIT C6, hardware coordinated with bus master avoidance enabled
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x50, 3)},
|
|
3,
|
|
140,
|
|
10
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// If C4 is supported, we report MWAIT C1,C2,C4
|
|
//
|
|
If(And(CFGD,0x080))
|
|
{
|
|
Return( Package()
|
|
{
|
|
3,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // MWAIT C2, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x10, 1)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // MWAIT C4, hardware coordinated with bus master avoidance enabled
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x30, 3)},
|
|
3,
|
|
100,
|
|
100
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// If C2 is supported, we report MWAIT C1,C2
|
|
//
|
|
If(And(CFGD,0x020))
|
|
{
|
|
Return( Package()
|
|
{
|
|
2,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // MWAIT C2, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate(){Register(FFixedHW, 1, 2, 0x10, 1)},
|
|
2,
|
|
20,
|
|
500
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// Else we only report MWAIT C1.
|
|
//
|
|
Return(Package()
|
|
{
|
|
1,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate () {Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
}
|
|
})
|
|
}
|
|
|
|
// If OSPM is only capable of performing native C state instructions for
|
|
// the C1 in multi-processor configuration, we report C1 with MWAIT, other
|
|
// C states with IO method.
|
|
//
|
|
// PDCx[8] = Indicates whether OSPM is capable of performing native C state instructions
|
|
// for the C1 in multi-processor configuration
|
|
//
|
|
If(LAnd(And(CFGD, 0x200000), And(PDC0,0x100)))
|
|
{
|
|
//
|
|
// If C6 is supported, we report MWAIT C1, IO C2,C4,C6
|
|
//
|
|
If(And(CFGD,0x200))
|
|
{
|
|
Return( Package()
|
|
{
|
|
4,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate () {Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // IO C4 ("PMBALVL4" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x344C564C41424D50)},
|
|
3,
|
|
100,
|
|
100
|
|
},
|
|
Package()
|
|
{ // IO C6 ("PMBALVL6" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x364C564C41424D50)},
|
|
3,
|
|
140,
|
|
10
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// If C4 is supported, we report MWAIT C1, IO C2,C4
|
|
//
|
|
If(And(CFGD,0x080))
|
|
{
|
|
Return( Package()
|
|
{
|
|
3,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate () {Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // IO C4 ("PMBALVL4" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x344C564C41424D50)},
|
|
3,
|
|
100,
|
|
100
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// If C2 is supported, we report MWAIT C1, IO C2
|
|
//
|
|
If(And(CFGD,0x020))
|
|
{
|
|
Return( Package()
|
|
{
|
|
2,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate () {Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// Else we only report MWAIT C1.
|
|
//
|
|
Return(Package()
|
|
{
|
|
1,
|
|
Package()
|
|
{ // MWAIT C1, hardware coordinated with no bus master avoidance
|
|
ResourceTemplate () {Register(FFixedHW, 1, 2, 0x00, 1)},
|
|
1,
|
|
1,
|
|
1000
|
|
}
|
|
})
|
|
}
|
|
|
|
//
|
|
// If MWAIT is not supported, we report all the c states with IO method
|
|
//
|
|
|
|
//
|
|
// If C6 is supported, we report C1 halt, IO C2,C4,C6
|
|
//
|
|
If(And(CFGD,0x200))
|
|
{
|
|
Return(Package()
|
|
{
|
|
4,
|
|
Package()
|
|
{ // C1 Halt
|
|
ResourceTemplate () {Register(FFixedHW, 0, 0, 0)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // IO C4 ("PMBALVL4" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x344C564C41424D50)},
|
|
3,
|
|
100,
|
|
100
|
|
},
|
|
Package()
|
|
{ // IO C6 ("PMBALVL6" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x364C564C41424D50)},
|
|
3,
|
|
140,
|
|
10
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// If C4 is supported, we report C1 halt, IO C2,C4
|
|
//
|
|
If(And(CFGD,0x080))
|
|
{
|
|
Return(Package()
|
|
{
|
|
3,
|
|
Package()
|
|
{ // C1 halt
|
|
ResourceTemplate () {Register(FFixedHW, 0, 0, 0)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
},
|
|
Package()
|
|
{ // IO C4 ("PMBALVL4" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x344C564C41424D50)},
|
|
3,
|
|
100,
|
|
100
|
|
}
|
|
})
|
|
}
|
|
|
|
//
|
|
// If C2 is supported, we report C1 halt, IO C2
|
|
//
|
|
If(And(CFGD,0x020))
|
|
{
|
|
Return(Package()
|
|
{
|
|
2,
|
|
Package()
|
|
{ // C1 halt
|
|
ResourceTemplate () {Register(FFixedHW, 0, 0, 0)},
|
|
1,
|
|
1,
|
|
1000
|
|
},
|
|
Package()
|
|
{ // IO C2 ("PMBALVL2" will be updated at runtime)
|
|
ResourceTemplate () {Register(SystemIO, 8, 0, 0x324C564C41424D50)},
|
|
2,
|
|
20,
|
|
500
|
|
}
|
|
})
|
|
}
|
|
//
|
|
// Else we only report C1 halt.
|
|
//
|
|
Return(Package()
|
|
{
|
|
1,
|
|
Package()
|
|
{ // C1 halt
|
|
ResourceTemplate () {Register(FFixedHW, 0, 0, 0)},
|
|
1,
|
|
1,
|
|
1000
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|