blob: 842878b48345735393d2286997b2e8868453bcea [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
Duncan Lauriec88c54c2014-04-30 16:36:13 -07003#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07005#include <cbmem.h>
6#include <console/console.h>
7#include <device/device.h>
8#include <device/pci.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07009#include <string.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070010#include <soc/iomap.h>
11#include <soc/lpc.h>
12#include <soc/pci_devs.h>
13#include <soc/pm.h>
14#include <soc/romstage.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015
Arthur Heymans7ea4e022018-12-29 14:20:00 +010016static struct chipset_power_state power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070017
Aaron Durbin41607a42015-06-09 13:54:10 -050018static void migrate_power_state(int is_recovery)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019{
20 struct chipset_power_state *ps_cbmem;
21 struct chipset_power_state *ps_car;
22
Arthur Heymans7ea4e022018-12-29 14:20:00 +010023 ps_car = &power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070024 ps_cbmem = cbmem_add(CBMEM_ID_POWER_STATE, sizeof(*ps_cbmem));
25
26 if (ps_cbmem == NULL) {
27 printk(BIOS_DEBUG, "Not adding power state to cbmem!\n");
28 return;
29 }
30 memcpy(ps_cbmem, ps_car, sizeof(*ps_cbmem));
31}
Kyösti Mälkkifa3bc042022-03-31 07:40:10 +030032CBMEM_CREATION_HOOK(migrate_power_state);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070033
34/* Return 0, 3, or 5 to indicate the previous sleep state. */
Kyösti Mälkki540902c2021-01-22 08:02:50 +020035static int prev_sleep_state(const struct chipset_power_state *ps)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070036{
37 /* Default to S0. */
Aaron Durbin9e6d1432016-07-13 23:21:41 -050038 int prev_sleep_state = ACPI_S0;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070039
40 if (ps->pm1_sts & WAK_STS) {
Aaron Durbin9e6d1432016-07-13 23:21:41 -050041 switch (acpi_sleep_from_pm1(ps->pm1_cnt)) {
42 case ACPI_S3:
Julius Wernercd49cce2019-03-05 16:53:33 -080043 if (CONFIG(HAVE_ACPI_RESUME))
Aaron Durbin9e6d1432016-07-13 23:21:41 -050044 prev_sleep_state = ACPI_S3;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070045 break;
Aaron Durbin9e6d1432016-07-13 23:21:41 -050046 case ACPI_S5:
47 prev_sleep_state = ACPI_S5;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070048 break;
49 }
50 /* Clear SLP_TYP. */
51 outl(ps->pm1_cnt & ~(SLP_TYP), ACPI_BASE_ADDRESS + PM1_CNT);
52 }
53
54 if (ps->gen_pmcon3 & (PWR_FLR | SUS_PWR_FLR))
Aaron Durbin9e6d1432016-07-13 23:21:41 -050055 prev_sleep_state = ACPI_S5;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070056
57 return prev_sleep_state;
58}
59
60static void dump_power_state(struct chipset_power_state *ps)
61{
62 printk(BIOS_DEBUG, "PM1_STS: %04x\n", ps->pm1_sts);
63 printk(BIOS_DEBUG, "PM1_EN: %04x\n", ps->pm1_en);
64 printk(BIOS_DEBUG, "PM1_CNT: %08x\n", ps->pm1_cnt);
Duncan Laurie047f03a2014-08-11 09:54:19 -070065 printk(BIOS_DEBUG, "TCO_STS: %04x %04x\n",
66 ps->tco1_sts, ps->tco2_sts);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070067
68 printk(BIOS_DEBUG, "GPE0_STS: %08x %08x %08x %08x\n",
69 ps->gpe0_sts[0], ps->gpe0_sts[1],
70 ps->gpe0_sts[2], ps->gpe0_sts[3]);
71 printk(BIOS_DEBUG, "GPE0_EN: %08x %08x %08x %08x\n",
72 ps->gpe0_en[0], ps->gpe0_en[1],
73 ps->gpe0_en[2], ps->gpe0_en[3]);
74
75 printk(BIOS_DEBUG, "GEN_PMCON: %04x %04x %04x\n",
76 ps->gen_pmcon1, ps->gen_pmcon2, ps->gen_pmcon3);
77
78 printk(BIOS_DEBUG, "Previous Sleep State: S%d\n",
79 ps->prev_sleep_state);
80}
81
82/* Fill power state structure from ACPI PM registers */
83struct chipset_power_state *fill_power_state(void)
84{
Arthur Heymans7ea4e022018-12-29 14:20:00 +010085 struct chipset_power_state *ps = &power_state;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070086
87 ps->pm1_sts = inw(ACPI_BASE_ADDRESS + PM1_STS);
88 ps->pm1_en = inw(ACPI_BASE_ADDRESS + PM1_EN);
89 ps->pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
Duncan Laurie047f03a2014-08-11 09:54:19 -070090 ps->tco1_sts = inw(ACPI_BASE_ADDRESS + TCO1_STS);
91 ps->tco2_sts = inw(ACPI_BASE_ADDRESS + TCO2_STS);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070092 ps->gpe0_sts[0] = inl(ACPI_BASE_ADDRESS + GPE0_STS(0));
93 ps->gpe0_sts[1] = inl(ACPI_BASE_ADDRESS + GPE0_STS(1));
94 ps->gpe0_sts[2] = inl(ACPI_BASE_ADDRESS + GPE0_STS(2));
95 ps->gpe0_sts[3] = inl(ACPI_BASE_ADDRESS + GPE0_STS(3));
96 ps->gpe0_en[0] = inl(ACPI_BASE_ADDRESS + GPE0_EN(0));
97 ps->gpe0_en[1] = inl(ACPI_BASE_ADDRESS + GPE0_EN(1));
98 ps->gpe0_en[2] = inl(ACPI_BASE_ADDRESS + GPE0_EN(2));
99 ps->gpe0_en[3] = inl(ACPI_BASE_ADDRESS + GPE0_EN(3));
100
101 ps->gen_pmcon1 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_1);
102 ps->gen_pmcon2 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_2);
103 ps->gen_pmcon3 = pci_read_config16(PCH_DEV_LPC, GEN_PMCON_3);
104
105 ps->prev_sleep_state = prev_sleep_state(ps);
106
107 dump_power_state(ps);
108
109 return ps;
110}