blob: 8eadc8db89f2ead4918bc0d349b334e6df7d0f33 [file] [log] [blame]
Lijian Zhaoac87a982017-08-28 17:46:55 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
Lijian Zhaoc3e75b42019-01-15 17:37:50 -08006 * Copyright (C) 2017-2019 Intel Corporation.
Lijian Zhaoac87a982017-08-28 17:46:55 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
Subrata Banik0baad612017-11-23 13:58:34 +053018#include <bootstate.h>
Lijian Zhaoac87a982017-08-28 17:46:55 -070019#include <console/console.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020020#include <device/mmio.h>
Lijian Zhaoac87a982017-08-28 17:46:55 -070021#include <device/device.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020022#include <device/pci_ops.h>
Subrata Banik0baad612017-11-23 13:58:34 +053023#include <intelblocks/pmc.h>
Lijian Zhaoac87a982017-08-28 17:46:55 -070024#include <intelblocks/pmclib.h>
25#include <intelblocks/rtc.h>
Lijian Zhaoac87a982017-08-28 17:46:55 -070026#include <soc/pci_devs.h>
27#include <soc/pm.h>
Lijian Zhaoac87a982017-08-28 17:46:55 -070028
Elyes HAOUASc3385072019-03-21 15:38:06 +010029#include "chip.h"
30
Subrata Banik33cd28e2017-12-19 12:33:59 +053031/*
32 * Set which power state system will be after reapplying
33 * the power (from G3 State)
34 */
Furquan Shaikh9eac4c92019-07-06 22:54:53 -070035void pmc_set_afterg3(int s5pwr)
Subrata Banik33cd28e2017-12-19 12:33:59 +053036{
37 uint8_t reg8;
Lijian Zhaoc3e75b42019-01-15 17:37:50 -080038 uint8_t *pmcbase = pmc_mmio_regs();
Subrata Banik33cd28e2017-12-19 12:33:59 +053039
Lijian Zhaoc3e75b42019-01-15 17:37:50 -080040 reg8 = read8(pmcbase + GEN_PMCON_A);
Subrata Banik33cd28e2017-12-19 12:33:59 +053041
42 switch (s5pwr) {
43 case MAINBOARD_POWER_STATE_OFF:
44 reg8 |= 1;
45 break;
46 case MAINBOARD_POWER_STATE_ON:
47 reg8 &= ~1;
48 break;
49 case MAINBOARD_POWER_STATE_PREVIOUS:
50 default:
51 break;
52 }
53
Lijian Zhaoc3e75b42019-01-15 17:37:50 -080054 write8(pmcbase + GEN_PMCON_A, reg8);
Subrata Banik33cd28e2017-12-19 12:33:59 +053055}
56
57/*
58 * Set PMC register to know which state system should be after
59 * power reapplied
60 */
61void pmc_soc_restore_power_failure(void)
62{
Furquan Shaikh9eac4c92019-07-06 22:54:53 -070063 pmc_set_afterg3(CONFIG_MAINBOARD_POWER_FAILURE_STATE);
Subrata Banik33cd28e2017-12-19 12:33:59 +053064}
65
Krzysztof Sywula42a66fb2019-03-13 16:48:56 -070066static void pm1_enable_pwrbtn_smi(void *unused)
67{
68 /*
69 * Enable power button SMI only before jumping to payload. This ensures
70 * that:
71 * 1. Power button SMI is enabled only after coreboot is done.
72 * 2. On resume path, power button SMI is not enabled and thus avoids
73 * any shutdowns because of power button presses due to power button
74 * press in resume path.
75 */
76 pmc_update_pm1_enable(PWRBTN_EN);
77}
78
79BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT, pm1_enable_pwrbtn_smi, NULL);
80
Lijian Zhaoac87a982017-08-28 17:46:55 -070081static void config_deep_sX(uint32_t offset, uint32_t mask, int sx, int enable)
82{
83 uint32_t reg;
84 uint8_t *pmcbase = pmc_mmio_regs();
85
86 printk(BIOS_DEBUG, "%sabling Deep S%c\n",
87 enable ? "En" : "Dis", sx + '0');
88 reg = read32(pmcbase + offset);
89 if (enable)
90 reg |= mask;
91 else
92 reg &= ~mask;
93 write32(pmcbase + offset, reg);
94}
95
96static void config_deep_s5(int on_ac, int on_dc)
97{
98 /* Treat S4 the same as S5. */
99 config_deep_sX(S4_PWRGATE_POL, S4AC_GATE_SUS, 4, on_ac);
100 config_deep_sX(S4_PWRGATE_POL, S4DC_GATE_SUS, 4, on_dc);
101 config_deep_sX(S5_PWRGATE_POL, S5AC_GATE_SUS, 5, on_ac);
102 config_deep_sX(S5_PWRGATE_POL, S5DC_GATE_SUS, 5, on_dc);
103}
104
105static void config_deep_s3(int on_ac, int on_dc)
106{
107 config_deep_sX(S3_PWRGATE_POL, S3AC_GATE_SUS, 3, on_ac);
108 config_deep_sX(S3_PWRGATE_POL, S3DC_GATE_SUS, 3, on_dc);
109}
110
111static void config_deep_sx(uint32_t deepsx_config)
112{
113 uint32_t reg;
114 uint8_t *pmcbase = pmc_mmio_regs();
115
116 reg = read32(pmcbase + DSX_CFG);
117 reg &= ~DSX_CFG_MASK;
118 reg |= deepsx_config;
119 write32(pmcbase + DSX_CFG, reg);
120}
121
Furquan Shaikh9eac4c92019-07-06 22:54:53 -0700122static void pch_power_options(void)
Subrata Banik33cd28e2017-12-19 12:33:59 +0530123{
124 const char *state;
125
Nico Hubera70ed002018-11-17 23:43:24 +0100126 const int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
Subrata Banik33cd28e2017-12-19 12:33:59 +0530127
128 /*
129 * Which state do we want to goto after g3 (power restored)?
130 * 0 == S5 Soft Off
131 * 1 == S0 Full On
132 * 2 == Keep Previous State
133 */
134 switch (pwr_on) {
135 case MAINBOARD_POWER_STATE_OFF:
136 state = "off";
137 break;
138 case MAINBOARD_POWER_STATE_ON:
139 state = "on";
140 break;
141 case MAINBOARD_POWER_STATE_PREVIOUS:
142 state = "state keep";
143 break;
144 default:
145 state = "undefined";
146 }
Furquan Shaikh9eac4c92019-07-06 22:54:53 -0700147 pmc_set_afterg3(pwr_on);
Subrata Banik33cd28e2017-12-19 12:33:59 +0530148 printk(BIOS_INFO, "Set power %s after power failure.\n", state);
149
150 /* Set up GPE configuration. */
151 pmc_gpe_init();
152}
153
Subrata Banik0baad612017-11-23 13:58:34 +0530154static void pmc_init(void *unused)
Lijian Zhaoac87a982017-08-28 17:46:55 -0700155{
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300156 config_t *config = config_of_path(SA_DEVFN_ROOT);
Lijian Zhaoac87a982017-08-28 17:46:55 -0700157
158 rtc_init();
159
160 /* Initialize power management */
Furquan Shaikh9eac4c92019-07-06 22:54:53 -0700161 pch_power_options();
Lijian Zhaoac87a982017-08-28 17:46:55 -0700162
Lijian Zhaoac87a982017-08-28 17:46:55 -0700163 config_deep_s3(config->deep_s3_enable_ac, config->deep_s3_enable_dc);
164 config_deep_s5(config->deep_s5_enable_ac, config->deep_s5_enable_dc);
165 config_deep_sx(config->deep_sx_config);
166}
167
Subrata Banik0baad612017-11-23 13:58:34 +0530168/*
169* Initialize PMC controller.
170*
171* PMC controller gets hidden from PCI bus during FSP-Silicon init call.
172* Hence PCI enumeration can't be used to initialize bus device and
173* allocate resources.
174*/
175BOOT_STATE_INIT_ENTRY(BS_DEV_INIT_CHIPS, BS_ON_EXIT, pmc_init, NULL);
Furquan Shaikhac8c60e2019-02-25 16:01:25 -0800176
Furquan Shaikh67a489f2019-02-27 00:59:06 -0800177static void soc_acpi_mode_init(void *unused)
Furquan Shaikhac8c60e2019-02-25 16:01:25 -0800178{
179 /*
180 * PMC initialization happens earlier for this SoC because FSP-Silicon
181 * init hides PMC from PCI bus. However, pmc_set_acpi_mode, which
182 * disables ACPI mode doesn't need to happen that early and can be
Furquan Shaikh67a489f2019-02-27 00:59:06 -0800183 * delayed till typical BS_DEV_INIT. This ensures that ACPI mode
184 * disabling happens the same way for all SoCs and hence the ordering of
185 * events is the same.
Furquan Shaikhac8c60e2019-02-25 16:01:25 -0800186 *
187 * This is important to ensure that the ordering does not break the
188 * assumptions of any other drivers (e.g. ChromeEC) which could be
189 * taking different actions based on disabling of ACPI (e.g. flushing of
190 * all EC hostevent bits).
Furquan Shaikh67a489f2019-02-27 00:59:06 -0800191 *
192 * P.S.: This cannot be done as part of pmc_soc_init as PMC device is
193 * hidden and hence the PMC driver never gets enumerated and so init is
194 * not called for it.
Furquan Shaikhac8c60e2019-02-25 16:01:25 -0800195 */
196 pmc_set_acpi_mode();
197}
Furquan Shaikh67a489f2019-02-27 00:59:06 -0800198
199BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_EXIT, soc_acpi_mode_init, NULL);