Thanks for the link which is a starting point.
According to
wikipedia the 210u does support quiet'n'cool. I would also conclude this from the fact the BIOS does offer to create the objects. From a DSDT disassembly I also get the SSDT section. I am a bit lost as to interpret the difference between DSDT and SSDT, however, in the SSDT section there are _PSS objects. Could I copy those over to the DSDT? Does it matter that no PSB objects are defined?
Thanks.
Code:
/*
* Intel ACPI Component Architecture
* AML Disassembler version 20100304
*
* Disassembly of ssdt.orig.dat, Sun Oct 17 19:07:34 2010
*
*
* Original Table Header:
* Signature "SSDT"
* Length 0x000000E7 (231)
* Revision 0x01
* Checksum 0xC7
* OEM ID "A M I "
* OEM Table ID "POWERNOW"
* OEM Revision 0x00000001 (1)
* Compiler ID "AMD "
* Compiler Version 0x00000001 (1)
*/
DefinitionBlock ("ssdt.orig.aml", "SSDT", 1, "A M I ", "POWERNOW", 0x00000001)
{
External (\_PR_.P001, DeviceObj)
External (\_SB_.PCI0.SBRG.EC__.MPPC, IntObj)
External (\_SB_.PCI0.SBRG.EC__.PCOU)
Scope (\_PR.P001)
{
Name (_PCT, Package (0x02)
{
ResourceTemplate ()
{
Register (FFixedHW,
0x00, // Bit Width
0x00, // Bit Offset
0x0000000000000000, // Address
,)
},
ResourceTemplate ()
{
Register (FFixedHW,
0x00, // Bit Width
0x00, // Bit Offset
0x0000000000000000, // Address
,)
}
})
Name (_PSS, Package (0x01)
{
Package (0x06)
{
0x000005DC,
0x00003A98,
0x00000064,
0x00000009,
0xE8202487,
0x00000487
}
})
Method (_PPC, 0, NotSerialized)
{
Store (SizeOf (_PSS), \_SB.PCI0.SBRG.EC.PCOU)
Return (\_SB.PCI0.SBRG.EC.MPPC)
}
Name (DSP, Package (0x01)
{
Package (0x05)
{
0x05,
0x00,
0x00000000,
0x00000000,
0x00000000
}
})
}
}