diff options
author | Martin Roth <martin@se-eng.com> | 2012-05-25 12:23:32 -0600 |
---|---|---|
committer | Marc Jones <marcj303@gmail.com> | 2012-06-12 23:35:16 +0200 |
commit | 9aa43892e6899b719fe7f4754901a0eae379a934 (patch) | |
tree | cd57553ea504dd0d480a6405a361ff3d60b5b469 /src/mainboard/amd/persimmon | |
parent | 0860e723cb40b82a9f7cc2652891499e0161d89e (diff) |
Update SB800 CIMX FADT
- Add #define to allow the FADT PM Profile to be overridden.
- Change the location of the PMA_CNT_BLOCK_ADDRESS to match
current documentation.
- cst_cnt should be 0 if smi_cmd == 0
- add a couple of default access sizes.
- Add a couple of #define values for unsupported C2 & C3 entries.
- Add PM Profile override value into amd/persimmon platform.
This does not use the #defines in acpi.h so that the files that
include this don't all need to start including acpi.h.
Change-Id: Ib11ef8f9346d42fcf653fae6e2752d62a40a3094
Signed-off-by: Martin L Roth <martin@se-eng.com>
Reviewed-on: http://review.coreboot.org/1055
Tested-by: build bot (Jenkins)
Reviewed-by: Dave Frodin <dave.frodin@se-eng.com>
Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src/mainboard/amd/persimmon')
-rw-r--r-- | src/mainboard/amd/persimmon/platform_cfg.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mainboard/amd/persimmon/platform_cfg.h b/src/mainboard/amd/persimmon/platform_cfg.h index db3fc158a1..1065cda74b 100644 --- a/src/mainboard/amd/persimmon/platform_cfg.h +++ b/src/mainboard/amd/persimmon/platform_cfg.h @@ -256,4 +256,18 @@ const static CODECTBLLIST persimmon_codec_tablelist[] = */ #define AZALIA_OEM_VERB_TABLE (&persimmon_codec_tablelist[0]) +/* set up an ACPI prefered power management profile */ +/* from acpi.h + * PM_UNSPECIFIED = 0, + * PM_DESKTOP = 1, + * PM_MOBILE = 2, + * PM_WORKSTATION = 3, + * PM_ENTERPRISE_SERVER = 4, + * PM_SOHO_SERVER = 5, + * PM_APPLIANCE_PC = 6, + * PM_PERFORMANCE_SERVER = 7, + * PM_TABLET = 8 + */ +#define FADT_PM_PROFILE 1 + #endif |