661ad4666c
Having some symmetry with <soc/nvs.h> now allows to reduce the amount of gluelogic to determine the size and cbmc field of struct global_nvs. Since GNVS creation is now controlled by ACPI_SOC_NVS, drivers/amd/agesa/nvs.c becomes obsolete and soc/amd/cezanne cannot have this selected until <soc/nvs.h> exists. Change-Id: Ia9ec853ff7f5e7908f7e8fc179ac27d0da08e19d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49344 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Lance Zhao
28 lines
562 B
C
28 lines
562 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
#include <cpu/intel/haswell/haswell.h>
|
|
#include <cpu/x86/smm.h>
|
|
#include <northbridge/intel/haswell/haswell.h>
|
|
#include <southbridge/intel/lynxpoint/me.h>
|
|
#include <soc/nvs.h>
|
|
#include <southbridge/intel/lynxpoint/pch.h>
|
|
#include <superio/ite/it8772f/it8772f.h>
|
|
|
|
#include "onboard.h"
|
|
|
|
void mainboard_smi_sleep(u8 slp_typ)
|
|
{
|
|
switch (slp_typ) {
|
|
case ACPI_S3:
|
|
set_power_led(LED_BLINK);
|
|
break;
|
|
case ACPI_S4:
|
|
case ACPI_S5:
|
|
set_power_led(LED_OFF);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return;
|
|
}
|