blob: 4bd00639d47d91f3d833703a174b962b23bd9b6a [file] [log] [blame]
Angel Ponsf5627e82020-04-05 15:46:52 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Lijian Zhao2b074d92017-08-17 14:25:24 -07002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +03004#include <acpi/acpi_gnvs.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpigen.h>
Arthur Heymansd90154c2022-12-02 13:27:35 +01006#include <arch/ioapic.h>
Lijian Zhao2b074d92017-08-17 14:25:24 -07007#include <arch/smp/mpspec.h>
Patrick Georgi39c3d392019-04-23 12:27:22 +02008#include <console/console.h>
John Zhaodb3f0e32019-03-15 16:54:27 -07009#include <device/mmio.h>
10#include <device/pci_ops.h>
Lijian Zhao2b074d92017-08-17 14:25:24 -070011#include <intelblocks/cpulib.h>
12#include <intelblocks/pmclib.h>
13#include <intelblocks/acpi.h>
John Zhaodb3f0e32019-03-15 16:54:27 -070014#include <intelblocks/p2sb.h>
Lijian Zhao2b074d92017-08-17 14:25:24 -070015#include <soc/cpu.h>
16#include <soc/iomap.h>
17#include <soc/nvs.h>
18#include <soc/pci_devs.h>
19#include <soc/pm.h>
John Zhaodb3f0e32019-03-15 16:54:27 -070020#include <soc/systemagent.h>
Lijian Zhao2b074d92017-08-17 14:25:24 -070021
Elyes HAOUASc3385072019-03-21 15:38:06 +010022#include "chip.h"
23
Shaunak Saha95b61752017-10-04 23:08:40 -070024/*
25 * List of supported C-states in this processor.
26 */
27enum {
28 C_STATE_C0, /* 0 */
29 C_STATE_C1, /* 1 */
30 C_STATE_C1E, /* 2 */
31 C_STATE_C6_SHORT_LAT, /* 3 */
32 C_STATE_C6_LONG_LAT, /* 4 */
33 C_STATE_C7_SHORT_LAT, /* 5 */
34 C_STATE_C7_LONG_LAT, /* 6 */
35 C_STATE_C7S_SHORT_LAT, /* 7 */
36 C_STATE_C7S_LONG_LAT, /* 8 */
37 C_STATE_C8, /* 9 */
38 C_STATE_C9, /* 10 */
39 C_STATE_C10, /* 11 */
40 NUM_C_STATES
41};
42
Shaunak Saha95b61752017-10-04 23:08:40 -070043static const acpi_cstate_t cstate_map[NUM_C_STATES] = {
44 [C_STATE_C0] = {},
45 [C_STATE_C1] = {
46 .latency = 0,
47 .power = C1_POWER,
48 .resource = MWAIT_RES(0, 0),
49 },
50 [C_STATE_C1E] = {
51 .latency = 0,
52 .power = C1_POWER,
53 .resource = MWAIT_RES(0, 1),
54 },
55 [C_STATE_C6_SHORT_LAT] = {
56 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
57 .power = C6_POWER,
58 .resource = MWAIT_RES(2, 0),
59 },
60 [C_STATE_C6_LONG_LAT] = {
61 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
62 .power = C6_POWER,
63 .resource = MWAIT_RES(2, 1),
64 },
65 [C_STATE_C7_SHORT_LAT] = {
66 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
67 .power = C7_POWER,
68 .resource = MWAIT_RES(3, 0),
69 },
70 [C_STATE_C7_LONG_LAT] = {
71 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
72 .power = C7_POWER,
73 .resource = MWAIT_RES(3, 1),
74 },
75 [C_STATE_C7S_SHORT_LAT] = {
76 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
77 .power = C7_POWER,
78 .resource = MWAIT_RES(3, 2),
79 },
80 [C_STATE_C7S_LONG_LAT] = {
81 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
82 .power = C7_POWER,
83 .resource = MWAIT_RES(3, 3),
84 },
85 [C_STATE_C8] = {
86 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
87 .power = C8_POWER,
88 .resource = MWAIT_RES(4, 0),
89 },
90 [C_STATE_C9] = {
91 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
92 .power = C9_POWER,
93 .resource = MWAIT_RES(5, 0),
94 },
95 [C_STATE_C10] = {
96 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
97 .power = C10_POWER,
98 .resource = MWAIT_RES(6, 0),
99 },
100};
101
Ronak Kanabarc6c4d002019-01-30 18:53:14 +0530102static int cstate_set_non_s0ix[] = {
Shaunak Saha95b61752017-10-04 23:08:40 -0700103 C_STATE_C1E,
104 C_STATE_C6_LONG_LAT,
105 C_STATE_C7S_LONG_LAT
106};
107
Ronak Kanabarc6c4d002019-01-30 18:53:14 +0530108static int cstate_set_s0ix[] = {
Shaunak Saha95b61752017-10-04 23:08:40 -0700109 C_STATE_C1E,
110 C_STATE_C7S_LONG_LAT,
111 C_STATE_C10
112};
113
Angel Ponse9f10ff2021-10-17 13:28:23 +0200114const acpi_cstate_t *soc_get_cstate_map(size_t *entries)
Shaunak Saha95b61752017-10-04 23:08:40 -0700115{
116 static acpi_cstate_t map[MAX(ARRAY_SIZE(cstate_set_s0ix),
117 ARRAY_SIZE(cstate_set_non_s0ix))];
118 int *set;
119 int i;
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300120
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300121 config_t *config = config_of_soc();
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300122
Shaunak Saha95b61752017-10-04 23:08:40 -0700123 int is_s0ix_enable = config->s0ix_enable;
124
125 if (is_s0ix_enable) {
126 *entries = ARRAY_SIZE(cstate_set_s0ix);
127 set = cstate_set_s0ix;
128 } else {
129 *entries = ARRAY_SIZE(cstate_set_non_s0ix);
130 set = cstate_set_non_s0ix;
131 }
132
133 for (i = 0; i < *entries; i++) {
Angel Pons14643b32021-10-17 13:21:05 +0200134 map[i] = cstate_map[set[i]];
Shaunak Saha95b61752017-10-04 23:08:40 -0700135 map[i].ctype = i + 1;
136 }
137 return map;
138}
139
140void soc_power_states_generation(int core_id, int cores_per_package)
141{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300142 config_t *config = config_of_soc();
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300143
144 /* Generate P-state tables */
Shaunak Saha95b61752017-10-04 23:08:40 -0700145 if (config->eist_enable)
Shaunak Saha95b61752017-10-04 23:08:40 -0700146 generate_p_state_entries(core_id, cores_per_package);
147}
148
Lijian Zhao2b074d92017-08-17 14:25:24 -0700149void soc_fill_fadt(acpi_fadt_t *fadt)
150{
151 const uint16_t pmbase = ACPI_BASE_ADDRESS;
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300152 const struct soc_intel_cannonlake_config *config;
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300153 config = config_of_soc();
Lijian Zhao2b074d92017-08-17 14:25:24 -0700154
Meera Ravindranath48c78702019-12-12 10:37:49 +0530155 fadt->pm_tmr_blk = pmbase + PM1_TMR;
156 fadt->pm_tmr_len = 4;
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200157 fadt->x_pm_tmr_blk.space_id = ACPI_ADDRESS_SPACE_IO;
Meera Ravindranath48c78702019-12-12 10:37:49 +0530158 fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
159 fadt->x_pm_tmr_blk.bit_offset = 0;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100160 fadt->x_pm_tmr_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
Elyes Haouas987f1f42022-10-11 13:56:30 +0200161 fadt->x_pm_tmr_blk.addrl = fadt->pm_tmr_blk;
Meera Ravindranath48c78702019-12-12 10:37:49 +0530162 fadt->x_pm_tmr_blk.addrh = 0x0;
Lijian Zhao2b074d92017-08-17 14:25:24 -0700163
Duncan Laurie174ca432018-09-13 16:28:13 +0000164 if (config->s0ix_enable)
Vaibhav Shankar2da6ec42018-03-19 18:56:38 -0700165 fadt->flags |= ACPI_FADT_LOW_PWR_IDLE_S0;
Lijian Zhao2b074d92017-08-17 14:25:24 -0700166}
167uint32_t soc_read_sci_irq_select(void)
168{
Angel Ponsf585c6e2021-06-25 10:09:35 +0200169 return read32p(soc_read_pmc_base() + IRQ_REG);
Lijian Zhao2b074d92017-08-17 14:25:24 -0700170}
171
Kyösti Mälkkic2b0a4f2020-06-28 22:39:59 +0300172void soc_fill_gnvs(struct global_nvs *gnvs)
Lijian Zhao2b074d92017-08-17 14:25:24 -0700173{
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300174 const struct soc_intel_cannonlake_config *config;
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300175 config = config_of_soc();
Lijian Zhao2b074d92017-08-17 14:25:24 -0700176
Lijian Zhao2b074d92017-08-17 14:25:24 -0700177 /* Enable DPTF based on mainboard configuration */
178 gnvs->dpte = config->dptf_enable;
179
Lijian Zhao2b074d92017-08-17 14:25:24 -0700180 /* Set USB2/USB3 wake enable bitmaps. */
181 gnvs->u2we = config->usb2_wake_enable_bitmap;
182 gnvs->u3we = config->usb3_wake_enable_bitmap;
183}
184
Lijian Zhao2b074d92017-08-17 14:25:24 -0700185int soc_madt_sci_irq_polarity(int sci)
186{
187 return MP_IRQ_POLARITY_HIGH;
188}
Lijian Zhao5ff742c2018-12-27 17:01:09 -0800189
John Zhaodb3f0e32019-03-15 16:54:27 -0700190static unsigned long soc_fill_dmar(unsigned long current)
191{
Kyösti Mälkki903b40a2019-07-03 07:25:59 +0300192 struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
John Zhaodb3f0e32019-03-15 16:54:27 -0700193 uint64_t gfxvtbar = MCHBAR64(GFXVTBAR) & VTBAR_MASK;
194 bool gfxvten = MCHBAR32(GFXVTBAR) & VTBAR_ENABLED;
Patrick Rudolpha9eec2c2020-07-28 12:05:17 +0200195 const bool emit_igd = igfx_dev && igfx_dev->enabled && gfxvtbar && gfxvten;
196 if (emit_igd) {
John Zhaodb3f0e32019-03-15 16:54:27 -0700197 unsigned long tmp = current;
198
199 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
200 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
201
202 acpi_dmar_drhd_fixup(tmp, current);
John Zhaodb3f0e32019-03-15 16:54:27 -0700203 }
204
Kyösti Mälkki903b40a2019-07-03 07:25:59 +0300205 struct device *const ipu_dev = pcidev_path_on_root(SA_DEVFN_IPU);
John Zhaodb3f0e32019-03-15 16:54:27 -0700206 uint64_t ipuvtbar = MCHBAR64(IPUVTBAR) & VTBAR_MASK;
207 bool ipuvten = MCHBAR32(IPUVTBAR) & VTBAR_ENABLED;
208
209 if (ipu_dev && ipu_dev->enabled && ipuvtbar && ipuvten) {
210 unsigned long tmp = current;
211
212 current += acpi_create_dmar_drhd(current, 0, 0, ipuvtbar);
213 current += acpi_create_dmar_ds_pci(current, 0, 5, 0);
214
215 acpi_dmar_drhd_fixup(tmp, current);
216 }
217
218 uint64_t vtvc0bar = MCHBAR64(VTVC0BAR) & VTBAR_MASK;
219 bool vtvc0en = MCHBAR32(VTVC0BAR) & VTBAR_ENABLED;
220
221 if (vtvc0bar && vtvc0en) {
222 const unsigned long tmp = current;
223
224 current += acpi_create_dmar_drhd(current,
225 DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
Arthur Heymansd90154c2022-12-02 13:27:35 +0100226 current += acpi_create_dmar_ds_ioapic_from_hw(current,
227 IO_APIC_ADDR, V_P2SB_CFG_IBDF_BUS, V_P2SB_CFG_IBDF_DEV,
John Zhaodb3f0e32019-03-15 16:54:27 -0700228 V_P2SB_CFG_IBDF_FUNC);
229 current += acpi_create_dmar_ds_msi_hpet(current,
230 0, V_P2SB_CFG_HBDF_BUS, V_P2SB_CFG_HBDF_DEV,
231 V_P2SB_CFG_HBDF_FUNC);
232
233 acpi_dmar_drhd_fixup(tmp, current);
234 }
235
Patrick Rudolpha9eec2c2020-07-28 12:05:17 +0200236 /* Add RMRR entry after all DRHD entries */
237 if (emit_igd) {
238 const unsigned long tmp = current;
239
240 current += acpi_create_dmar_rmrr(current, 0,
241 sa_get_gsm_base(), sa_get_tolud_base() - 1);
242 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
243 acpi_dmar_rmrr_fixup(tmp, current);
244 }
John Zhao1159a162019-04-22 10:45:51 -0700245
John Zhaodb3f0e32019-03-15 16:54:27 -0700246 return current;
247}
248
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700249unsigned long sa_write_acpi_tables(const struct device *dev, unsigned long current,
John Zhaodb3f0e32019-03-15 16:54:27 -0700250 struct acpi_rsdp *rsdp)
251{
252 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
253
254 /* Create DMAR table only if we have VT-d capability
255 * and FSP does not override its feature.
256 */
257 if ((pci_read_config32(dev, CAPID0_A) & VTD_DISABLE) ||
258 !(MCHBAR32(VTVC0BAR) & VTBAR_ENABLED))
259 return current;
260
261 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
262 acpi_create_dmar(dmar, DMAR_INTR_REMAP, soc_fill_dmar);
John Zhao1159a162019-04-22 10:45:51 -0700263
John Zhaodb3f0e32019-03-15 16:54:27 -0700264 current += dmar->header.length;
265 current = acpi_align_current(current);
266 acpi_add_table(rsdp, dmar);
267
268 return current;
269}