mainboard/amd/gardenia: Remove PMxEE write on S4 resume
Delete the write to PM register 0xee. This register is not listed in the current BKDG and S4 is not currently supported on this APU. NDA document #47517 "A55/.../A85X fusion Controller Hub Register Reference Guide" provides some clues on the intent of this write. This register has always been observed to power on with a value of 0x08 so the write has no effect. This should be revisited again when SMI and PSP fully implement the support required for S3. Change-Id: I35e6c5f7ad1de7f51b018543d2f7ce82182f11e4 Signed-off-by: Marc Jones <marcj303@gmail.com> Reviewed-on: https://review.coreboot.org/18494 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
efd077ac52
commit
7e438af995
|
@ -66,11 +66,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
||||||
/* TODO: Disable cache is not ok. */
|
/* TODO: Disable cache is not ok. */
|
||||||
disable_cache_as_ram();
|
disable_cache_as_ram();
|
||||||
|
|
||||||
if (acpi_is_wakeup_s4()) {
|
|
||||||
outb(0xEE, PM_INDEX);
|
|
||||||
outb(0x8, PM_DATA);
|
|
||||||
}
|
|
||||||
|
|
||||||
post_code(0x50);
|
post_code(0x50);
|
||||||
copy_and_run();
|
copy_and_run();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue