aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cimx/sb800/ramtop.c
blob: 483716c2025edb57c000ebf56e64365fec5a5f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#include <stdint.h>
#include <arch/io.h>
#include <acpi/acpi.h>
#include "SBPLATFORM.h"

int acpi_get_sleep_type(void)
{
	u16 tmp = inw(PM1_CNT_BLK_ADDRESS);
	tmp = ((tmp & (7 << 10)) >> 10);
	return (int)tmp;
}