sb/intel/i82801dx: Drop smm_setup_structures()
The only board that builds this does not have ACPI S3 support. Also the code is wrong. Change-Id: Ifb8e0ae5b6d862fa6a52b8e08197a84e7da4be36 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42357 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
87e6796a90
commit
96cb2522fd
|
@ -330,14 +330,3 @@ void aseg_smm_lock(void)
|
|||
printk(BIOS_DEBUG, "Locking SMM.\n");
|
||||
northbridge_write_smram(D_LCK | G_SMRAME | C_BASE_SEG);
|
||||
}
|
||||
|
||||
void smm_setup_structures(void *gnvs, void *tcg, void *smi1)
|
||||
{
|
||||
/* The GDT or coreboot table is going to live here. But a long time
|
||||
* after we relocated the GNVS, so this is not troublesome.
|
||||
*/
|
||||
*(u32 *)0x500 = (u32)gnvs;
|
||||
*(u32 *)0x504 = (u32)tcg;
|
||||
*(u32 *)0x508 = (u32)smi1;
|
||||
outb(0xea, 0xb2);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue