blob: b63343acb4be213c11c92ad9778ce632f15c9dfd [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07003
Duncan Lauriec88c54c2014-04-30 16:36:13 -07004#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07006#include <cbmem.h>
7#include <console/console.h>
8#include <device/device.h>
9#include <device/pci.h>
10#include <device/pci_def.h>
11#include <reg_script.h>
12#include <stdint.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070013#include <string.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070014#include <soc/iomap.h>
15#include <soc/lpc.h>
16#include <soc/pci_devs.h>
17#include <soc/pm.h>
18#include <soc/romstage.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019
Arthur Heymans7ea4e022018-12-29 14:20:00 +010020static struct chipset_power_state power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070021
Aaron Durbin41607a42015-06-09 13:54:10 -050022static void migrate_power_state(int is_recovery)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023{
24 struct chipset_power_state *ps_cbmem;
25 struct chipset_power_state *ps_car;
26
Arthur Heymans7ea4e022018-12-29 14:20:00 +010027 ps_car = &power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070028 ps_cbmem = cbmem_add(CBMEM_ID_POWER_STATE, sizeof(*ps_cbmem));
29
30 if (ps_cbmem == NULL) {
31 printk(BIOS_DEBUG, "Not adding power state to cbmem!\n");
32 return;
33 }
34 memcpy(ps_cbmem, ps_car, sizeof(*ps_cbmem));
35}
Kyösti Mälkki4fbac462015-01-07 04:48:43 +020036ROMSTAGE_CBMEM_INIT_HOOK(migrate_power_state)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070037
38/* Return 0, 3, or 5 to indicate the previous sleep state. */
39static int prev_sleep_state(struct chipset_power_state *ps)
40{
41 /* Default to S0. */
Aaron Durbin9e6d1432016-07-13 23:21:41 -050042 int prev_sleep_state = ACPI_S0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070043
44 if (ps->pm1_sts & WAK_STS) {
Aaron Durbin9e6d1432016-07-13 23:21:41 -050045 switch (acpi_sleep_from_pm1(ps->pm1_cnt)) {
46 case ACPI_S3:
Julius Wernercd49cce2019-03-05 16:53:33 -080047 if (CONFIG(HAVE_ACPI_RESUME))
Aaron Durbin9e6d1432016-07-13 23:21:41 -050048 prev_sleep_state = ACPI_S3;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070049 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -050050 case ACPI_S5:
51 prev_sleep_state = ACPI_S5;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070052 break;
53 }
54 /* Clear SLP_TYP. */
55 outl(ps->pm1_cnt & ~(SLP_TYP), ACPI_BASE_ADDRESS + PM1_CNT);
56 }
57
58 if (ps->gen_pmcon3 & (PWR_FLR | SUS_PWR_FLR))
Aaron Durbin9e6d1432016-07-13 23:21:41 -050059 prev_sleep_state = ACPI_S5;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070060
61 return prev_sleep_state;
62}
63
64static void dump_power_state(struct chipset_power_state *ps)
65{
66 printk(BIOS_DEBUG, "PM1_STS: %04x\n", ps->pm1_sts);
67 printk(BIOS_DEBUG, "PM1_EN: %04x\n", ps->pm1_en);
68 printk(BIOS_DEBUG, "PM1_CNT: %08x\n", ps->pm1_cnt);
Duncan Laurie047f03a2014-08-11 09:54:19 -070069 printk(BIOS_DEBUG, "TCO_STS: %04x %04x\n",
70 ps->tco1_sts, ps->tco2_sts);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070071
72 printk(BIOS_DEBUG, "GPE0_STS: %08x %08x %08x %08x\n",
73 ps->gpe0_sts[0], ps->gpe0_sts[1],
74 ps->gpe0_sts[2], ps->gpe0_sts[3]);
75 printk(BIOS_DEBUG, "GPE0_EN: %08x %08x %08x %08x\n",
76 ps->gpe0_en[0], ps->gpe0_en[1],
77 ps->gpe0_en[2], ps->gpe0_en[3]);
78
79 printk(BIOS_DEBUG, "GEN_PMCON: %04x %04x %04x\n",
80 ps->gen_pmcon1, ps->gen_pmcon2, ps->gen_pmcon3);
81
82 printk(BIOS_DEBUG, "Previous Sleep State: S%d\n",
83 ps->prev_sleep_state);
84}
85
86/* Fill power state structure from ACPI PM registers */
87struct chipset_power_state *fill_power_state(void)
88{
Arthur Heymans7ea4e022018-12-29 14:20:00 +010089 struct chipset_power_state *ps = &power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070090
91 ps->pm1_sts = inw(ACPI_BASE_ADDRESS + PM1_STS);
92 ps->pm1_en = inw(ACPI_BASE_ADDRESS + PM1_EN);
93 ps->pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
Duncan Laurie047f03a2014-08-11 09:54:19 -070094 ps->tco1_sts = inw(ACPI_BASE_ADDRESS + TCO1_STS);
95 ps->tco2_sts = inw(ACPI_BASE_ADDRESS + TCO2_STS);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070096 ps->gpe0_sts[0] = inl(ACPI_BASE_ADDRESS + GPE0_STS(0));
97 ps->gpe0_sts[1] = inl(ACPI_BASE_ADDRESS + GPE0_STS(1));
98 ps->gpe0_sts[2] = inl(ACPI_BASE_ADDRESS + GPE0_STS(2));
99 ps->gpe0_sts[3] = inl(ACPI_BASE_ADDRESS + GPE0_STS(3));
100 ps->gpe0_en[0] = inl(ACPI_BASE_ADDRESS + GPE0_EN(0));
101 ps->gpe0_en[1] = inl(ACPI_BASE_ADDRESS + GPE0_EN(1));
102 ps->gpe0_en[2] = inl(ACPI_BASE_ADDRESS + GPE0_EN(2));
103 ps->gpe0_en[3] = inl(ACPI_BASE_ADDRESS + GPE0_EN(3));
104
105 ps->gen_pmcon1 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_1);
106 ps->gen_pmcon2 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_2);
107 ps->gen_pmcon3 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_3);
108
109 ps->prev_sleep_state = prev_sleep_state(ps);
110
111 dump_power_state(ps);
112
113 return ps;
114}