summaryrefslogtreecommitdiffstats
path: root/src/acpi/acpi_pm.c
blob: bee5616e57dbbd1760dda239b6243d1082910602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* SPDX-License-Identifier: GPL-2.0-only */

#include <acpi/acpi.h>
#include <acpi/acpi_pm.h>
#include <cbmem.h>
#include <console/console.h>
#include <smbios.h>

void __weak mainboard_suspend_resume(void)
{
}

/* Default mapping to ACPI FADT preferred_pm_profile field. */
uint8_t acpi_get_preferred_pm_profile(void)
{
	switch (smbios_mainboard_enclosure_type()) {
	case SMBIOS_ENCLOSURE_LAPTOP:
	case SMBIOS_ENCLOSURE_CONVERTIBLE:
		return PM_MOBILE;
	case SMBIOS_ENCLOSURE_DETACHABLE:
	case SMBIOS_ENCLOSURE_TABLET:
		return PM_TABLET;
	case SMBIOS_ENCLOSURE_DESKTOP:
		return PM_DESKTOP;
	case SMBIOS_ENCLOSURE_UNKNOWN:
	default:
		return PM_UNSPECIFIED;
	}
}

struct chipset_power_state *acpi_get_pm_state(void)
{
	static struct chipset_power_state *acpi_pm_state;
	if (acpi_pm_state)
		return acpi_pm_state;

	acpi_pm_state = cbmem_find(CBMEM_ID_POWER_STATE);
	return acpi_pm_state;
}

int acpi_pm_state_for_elog(const struct chipset_power_state **ps)
{
	*ps = acpi_get_pm_state();
	if (!*ps) {
		printk(BIOS_ERR, "No CBMEM_ID_POWER_STATE entry, no event recorded in ELOG.\n");
		return -1;
	}
	return 0;
}

int acpi_pm_state_for_rtc(const struct chipset_power_state **ps)
{
	*ps = acpi_get_pm_state();
	if (!*ps) {
		printk(BIOS_ERR, "No CBMEM_ID_POWER_STATE entry, RTC init aborted.\n");
		return -1;
	}
	return 0;
}

int acpi_pm_state_for_wake(const struct chipset_power_state **ps)
{
	*ps = acpi_get_pm_state();
	if (!*ps) {
		printk(BIOS_ERR, "No CBMEM_ID_POWER_STATE entry, wake source unknown.\n");
		return -1;
	}
	return 0;
}