diff options
Diffstat (limited to 'src/southbridge/intel/i82801dx/smi.c')
-rw-r--r-- | src/southbridge/intel/i82801dx/smi.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801dx/smi.c b/src/southbridge/intel/i82801dx/smi.c index 93e28452e0..945fcf2db8 100644 --- a/src/southbridge/intel/i82801dx/smi.c +++ b/src/southbridge/intel/i82801dx/smi.c @@ -18,6 +18,7 @@ #include <device/device.h> #include <device/pci.h> #include <console/console.h> +#include <arch/acpi.h> #include <arch/io.h> #include <cpu/cpu.h> #include <cpu/x86/cache.h> @@ -229,6 +230,7 @@ static void smi_set_eos(void) } extern uint8_t smm_relocation_start, smm_relocation_end; +static void *default_smm_area = NULL; static void smm_relocate(void) { @@ -246,6 +248,8 @@ static void smm_relocate(void) return; } + default_smm_area = backup_default_smm_area(); + /* copy the SMM relocation code */ memcpy((void *)0x38000, &smm_relocation_start, &smm_relocation_end - &smm_relocation_start); @@ -339,6 +343,11 @@ void smm_init(void) smi_set_eos(); } +void smm_init_completion(void) +{ + restore_default_smm_area(default_smm_area); +} + void smm_lock(void) { /* LOCK the SMM memory window and enable normal SMM. |