blob: 3545a9425ed50a76537eff5ee8f32c08ff6c1868 [file] [log] [blame]
Angel Pons3bd1e3d2020-04-05 15:47:17 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Lee Leahyb0005132015-05-12 18:19:47 -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>
Kyösti Mälkki27872372021-01-21 16:05:26 +02005#include <acpi/acpi_pm.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpigen.h>
robbie zhangb45dde02015-10-01 17:21:33 -07007#include <arch/cpu.h>
Duncan Lauriedb54a672015-09-04 14:19:35 -07008#include <arch/ioapic.h>
Lee Leahyb0005132015-05-12 18:19:47 -07009#include <arch/smp/mpspec.h>
Lee Leahyb0005132015-05-12 18:19:47 -070010#include <console/console.h>
11#include <cpu/x86/smm.h>
Lee Leahyb0005132015-05-12 18:19:47 -070012#include <cpu/x86/msr.h>
Matt Delco9084c3c2018-07-27 14:17:29 -070013#include <cpu/intel/common/common.h>
Lee Leahyb0005132015-05-12 18:19:47 -070014#include <cpu/intel/turbo.h>
Barnali Sarkar0a203d12017-05-04 18:02:17 +053015#include <intelblocks/cpulib.h>
Ravi Sarawadi1483d1f2017-09-28 17:06:01 -070016#include <intelblocks/lpc_lib.h>
Pratik Prajapati418535e2017-10-11 16:12:21 -070017#include <intelblocks/sgx.h>
Duncan Laurie93bbd412017-11-11 20:03:29 -080018#include <intelblocks/uart.h>
Nico Huberc37b0e32017-09-18 20:03:46 +020019#include <intelblocks/systemagent.h>
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -070020#include <soc/intel/common/acpi.h>
Lee Leahyb0005132015-05-12 18:19:47 -070021#include <soc/acpi.h>
22#include <soc/cpu.h>
23#include <soc/iomap.h>
Lee Leahyb0005132015-05-12 18:19:47 -070024#include <soc/msr.h>
Kyösti Mälkkid6c57142020-12-21 15:17:01 +020025#include <soc/nvs.h>
Lee Leahyb0005132015-05-12 18:19:47 -070026#include <soc/pci_devs.h>
27#include <soc/pm.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053028#include <soc/ramstage.h>
Nico Huberc37b0e32017-09-18 20:03:46 +020029#include <soc/systemagent.h>
robbie zhangb45dde02015-10-01 17:21:33 -070030#include <string.h>
31#include <types.h>
Duncan Laurie3d3b76b2016-02-25 08:45:43 -080032#include <wrdd.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020033#include <device/pci_ops.h>
Lee Leahyb0005132015-05-12 18:19:47 -070034
Elyes HAOUASc3385072019-03-21 15:38:06 +010035#include "chip.h"
36
Michael Niewöhnerd5a45472020-10-15 00:27:59 +020037#define CPUID_6_EAX_ISST (1 << 7)
38
Lee Leahyb0005132015-05-12 18:19:47 -070039/*
Lee Leahy1d14b3e2015-05-12 18:23:27 -070040 * List of suported C-states in this processor.
Lee Leahyb0005132015-05-12 18:19:47 -070041 */
42enum {
Lee Leahy1d14b3e2015-05-12 18:23:27 -070043 C_STATE_C0, /* 0 */
44 C_STATE_C1, /* 1 */
45 C_STATE_C1E, /* 2 */
46 C_STATE_C3, /* 3 */
47 C_STATE_C6_SHORT_LAT, /* 4 */
48 C_STATE_C6_LONG_LAT, /* 5 */
49 C_STATE_C7_SHORT_LAT, /* 6 */
50 C_STATE_C7_LONG_LAT, /* 7 */
51 C_STATE_C7S_SHORT_LAT, /* 8 */
52 C_STATE_C7S_LONG_LAT, /* 9 */
53 C_STATE_C8, /* 10 */
54 C_STATE_C9, /* 11 */
55 C_STATE_C10, /* 12 */
Lee Leahyb0005132015-05-12 18:19:47 -070056 NUM_C_STATES
57};
Lee Leahy1d14b3e2015-05-12 18:23:27 -070058#define MWAIT_RES(state, sub_state) \
59 { \
60 .addrl = (((state) << 4) | (sub_state)), \
61 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
62 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
63 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
64 .access_size = ACPI_FFIXEDHW_FLAG_HW_COORD, \
Lee Leahyb0005132015-05-12 18:19:47 -070065 }
66
67static acpi_cstate_t cstate_map[NUM_C_STATES] = {
68 [C_STATE_C0] = { },
69 [C_STATE_C1] = {
70 .latency = 0,
robbie zhangc16b1fd2015-09-11 14:25:15 -070071 .power = C1_POWER,
Lee Leahy1d14b3e2015-05-12 18:23:27 -070072 .resource = MWAIT_RES(0, 0),
Lee Leahyb0005132015-05-12 18:19:47 -070073 },
74 [C_STATE_C1E] = {
75 .latency = 0,
robbie zhangc16b1fd2015-09-11 14:25:15 -070076 .power = C1_POWER,
Lee Leahy1d14b3e2015-05-12 18:23:27 -070077 .resource = MWAIT_RES(0, 1),
Lee Leahyb0005132015-05-12 18:19:47 -070078 },
79 [C_STATE_C3] = {
80 .latency = C_STATE_LATENCY_FROM_LAT_REG(0),
robbie zhangc16b1fd2015-09-11 14:25:15 -070081 .power = C3_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070082 .resource = MWAIT_RES(1, 0),
83 },
84 [C_STATE_C6_SHORT_LAT] = {
85 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -070086 .power = C6_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070087 .resource = MWAIT_RES(2, 0),
88 },
89 [C_STATE_C6_LONG_LAT] = {
90 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -070091 .power = C6_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070092 .resource = MWAIT_RES(2, 1),
93 },
94 [C_STATE_C7_SHORT_LAT] = {
95 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -070096 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -070097 .resource = MWAIT_RES(3, 0),
98 },
99 [C_STATE_C7_LONG_LAT] = {
100 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700101 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700102 .resource = MWAIT_RES(3, 1),
103 },
104 [C_STATE_C7S_SHORT_LAT] = {
105 .latency = C_STATE_LATENCY_FROM_LAT_REG(1),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700106 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700107 .resource = MWAIT_RES(3, 2),
108 },
109 [C_STATE_C7S_LONG_LAT] = {
110 .latency = C_STATE_LATENCY_FROM_LAT_REG(2),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700111 .power = C7_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700112 .resource = MWAIT_RES(3, 3),
113 },
114 [C_STATE_C8] = {
115 .latency = C_STATE_LATENCY_FROM_LAT_REG(3),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700116 .power = C8_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700117 .resource = MWAIT_RES(4, 0),
118 },
119 [C_STATE_C9] = {
120 .latency = C_STATE_LATENCY_FROM_LAT_REG(4),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700121 .power = C9_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700122 .resource = MWAIT_RES(5, 0),
123 },
124 [C_STATE_C10] = {
125 .latency = C_STATE_LATENCY_FROM_LAT_REG(5),
robbie zhangc16b1fd2015-09-11 14:25:15 -0700126 .power = C10_POWER,
Lee Leahyb0005132015-05-12 18:19:47 -0700127 .resource = MWAIT_RES(6, 0),
128 },
129};
130
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700131static int cstate_set_s0ix[] = {
Lee Leahyb0005132015-05-12 18:19:47 -0700132 C_STATE_C1E,
133 C_STATE_C7S_LONG_LAT,
134 C_STATE_C10
135};
136
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700137static int cstate_set_non_s0ix[] = {
Lee Leahyb0005132015-05-12 18:19:47 -0700138 C_STATE_C1E,
139 C_STATE_C3,
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700140 C_STATE_C7S_LONG_LAT,
Lee Leahyb0005132015-05-12 18:19:47 -0700141};
142
143static int get_cores_per_package(void)
144{
145 struct cpuinfo_x86 c;
146 struct cpuid_result result;
147 int cores = 1;
148
149 get_fms(&c, cpuid_eax(1));
150 if (c.x86 != 6)
151 return 1;
152
153 result = cpuid_ext(0xb, 1);
154 cores = result.ebx & 0xff;
155
156 return cores;
157}
158
Kyösti Mälkkic2b0a4f2020-06-28 22:39:59 +0300159void soc_fill_gnvs(struct global_nvs *gnvs)
Lee Leahyb0005132015-05-12 18:19:47 -0700160{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300161 const struct soc_intel_skylake_config *config = config_of_soc();
Duncan Laurie7fce30c2015-09-04 13:53:14 -0700162
Lee Leahyb0005132015-05-12 18:19:47 -0700163 /* Set unknown wake source */
164 gnvs->pm1i = -1;
165
Duncan Laurie7fce30c2015-09-04 13:53:14 -0700166 /* Enable DPTF based on mainboard configuration */
167 gnvs->dpte = config->dptf_enable;
Duncan Laurie3d3b76b2016-02-25 08:45:43 -0800168
169 /* Fill in the Wifi Region id */
170 gnvs->cid1 = wifi_regulatory_domain();
Furquan Shaikh3bfe3402016-10-18 14:25:25 -0700171
172 /* Set USB2/USB3 wake enable bitmaps. */
173 gnvs->u2we = config->usb2_wake_enable_bitmap;
174 gnvs->u3we = config->usb3_wake_enable_bitmap;
Pratik Prajapati418535e2017-10-11 16:12:21 -0700175
Michael Niewöhner7736bfc2019-10-22 23:05:06 +0200176 if (CONFIG(SOC_INTEL_COMMON_BLOCK_SGX_ENABLE))
Pratik Prajapati418535e2017-10-11 16:12:21 -0700177 sgx_fill_gnvs(gnvs);
Subrata Banikb6df6b02020-01-03 15:29:02 +0530178
179 /* Fill in Above 4GB MMIO resource */
180 sa_fill_gnvs(gnvs);
Lee Leahyb0005132015-05-12 18:19:47 -0700181}
182
Lee Leahyb0005132015-05-12 18:19:47 -0700183unsigned long acpi_fill_mcfg(unsigned long current)
184{
185 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Duncan Laurie50f06a12018-03-02 14:56:38 -0800186 CONFIG_MMCONF_BASE_ADDRESS, 0, 0,
Duncan Lauriefd50b7c2018-03-02 14:47:11 -0800187 (CONFIG_SA_PCIEX_LENGTH >> 20) - 1);
Lee Leahyb0005132015-05-12 18:19:47 -0700188 return current;
189}
190
Duncan Lauriedb54a672015-09-04 14:19:35 -0700191unsigned long acpi_fill_madt(unsigned long current)
192{
193 /* Local APICs */
194 current = acpi_create_madt_lapics(current);
195
196 /* IOAPIC */
197 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
198 2, IO_APIC_ADDR, 0);
199
200 return acpi_madt_irq_overrides(current);
201}
202
Jacob Garber9172b692019-06-26 16:18:16 -0600203static void write_c_state_entries(acpi_cstate_t *map, const int *set, size_t max_c_state)
Lee Leahyb0005132015-05-12 18:19:47 -0700204{
Jacob Garber9172b692019-06-26 16:18:16 -0600205 for (size_t i = 0; i < max_c_state; i++) {
Lee Leahyb0005132015-05-12 18:19:47 -0700206 memcpy(&map[i], &cstate_map[set[i]], sizeof(acpi_cstate_t));
207 map[i].ctype = i + 1;
208 }
209
210 /* Generate C-state tables */
Jacob Garber9172b692019-06-26 16:18:16 -0600211 acpigen_write_CST_package(map, max_c_state);
212}
213
214static void generate_c_state_entries(int s0ix_enable)
215{
216 if (s0ix_enable) {
217 acpi_cstate_t map[ARRAY_SIZE(cstate_set_s0ix)];
218 write_c_state_entries(map, cstate_set_s0ix, ARRAY_SIZE(map));
219 } else {
220 acpi_cstate_t map[ARRAY_SIZE(cstate_set_non_s0ix)];
221 write_c_state_entries(map, cstate_set_non_s0ix, ARRAY_SIZE(map));
222 }
Lee Leahyb0005132015-05-12 18:19:47 -0700223}
224
225static int calculate_power(int tdp, int p1_ratio, int ratio)
226{
227 u32 m;
228 u32 power;
229
230 /*
231 * M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
232 *
233 * Power = (ratio / p1_ratio) * m * tdp
234 */
235
236 m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
237 m = (m * m) / 1000;
238
239 power = ((ratio * 100000 / p1_ratio) / 100);
240 power *= (m / 100) * (tdp / 1000);
241 power /= 1000;
242
243 return (int)power;
244}
245
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700246static void generate_p_state_entries(int core, int cores_per_package)
Lee Leahyb0005132015-05-12 18:19:47 -0700247{
248 int ratio_min, ratio_max, ratio_turbo, ratio_step;
249 int coord_type, power_max, power_unit, num_entries;
250 int ratio, power, clock, clock_max;
251 msr_t msr;
252
253 /* Determine P-state coordination type from MISC_PWR_MGMT[0] */
254 msr = rdmsr(MSR_MISC_PWR_MGMT);
255 if (msr.lo & MISC_PWR_MGMT_EIST_HW_DIS)
256 coord_type = SW_ANY;
257 else
258 coord_type = HW_ALL;
259
260 /* Get bus ratio limits and calculate clock speeds */
261 msr = rdmsr(MSR_PLATFORM_INFO);
262 ratio_min = (msr.hi >> (40-32)) & 0xff; /* Max Efficiency Ratio */
263
264 /* Determine if this CPU has configurable TDP */
265 if (cpu_config_tdp_levels()) {
266 /* Set max ratio to nominal TDP ratio */
267 msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
268 ratio_max = msr.lo & 0xff;
269 } else {
270 /* Max Non-Turbo Ratio */
271 ratio_max = (msr.lo >> 8) & 0xff;
272 }
Aamir Bohra1041d392017-06-02 11:56:14 +0530273 clock_max = ratio_max * CONFIG_CPU_BCLK_MHZ;
Lee Leahyb0005132015-05-12 18:19:47 -0700274
275 /* Calculate CPU TDP in mW */
276 msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
277 power_unit = 2 << ((msr.lo & 0xf) - 1);
278 msr = rdmsr(MSR_PKG_POWER_SKU);
279 power_max = ((msr.lo & 0x7fff) / power_unit) * 1000;
280
281 /* Write _PCT indicating use of FFixedHW */
282 acpigen_write_empty_PCT();
283
284 /* Write _PPC with no limit on supported P-state */
285 acpigen_write_PPC_NVS();
286
287 /* Write PSD indicating configured coordination type */
288 acpigen_write_PSD_package(core, 1, coord_type);
289
290 /* Add P-state entries in _PSS table */
291 acpigen_write_name("_PSS");
292
293 /* Determine ratio points */
294 ratio_step = PSS_RATIO_STEP;
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700295 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
296 if (num_entries > PSS_MAX_ENTRIES) {
297 ratio_step += 1;
298 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
Lee Leahyb0005132015-05-12 18:19:47 -0700299 }
300
301 /* P[T] is Turbo state if enabled */
302 if (get_turbo_state() == TURBO_ENABLED) {
303 /* _PSS package count including Turbo */
304 acpigen_write_package(num_entries + 2);
305
306 msr = rdmsr(MSR_TURBO_RATIO_LIMIT);
307 ratio_turbo = msr.lo & 0xff;
308
309 /* Add entry for Turbo ratio */
310 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700311 clock_max + 1, /* MHz */
312 power_max, /* mW */
313 PSS_LATENCY_TRANSITION, /* lat1 */
314 PSS_LATENCY_BUSMASTER, /* lat2 */
315 ratio_turbo << 8, /* control */
316 ratio_turbo << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700317 } else {
318 /* _PSS package count without Turbo */
319 acpigen_write_package(num_entries + 1);
320 }
321
322 /* First regular entry is max non-turbo ratio */
323 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700324 clock_max, /* MHz */
325 power_max, /* mW */
326 PSS_LATENCY_TRANSITION, /* lat1 */
327 PSS_LATENCY_BUSMASTER, /* lat2 */
328 ratio_max << 8, /* control */
329 ratio_max << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700330
331 /* Generate the remaining entries */
332 for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
333 ratio >= ratio_min; ratio -= ratio_step) {
334
335 /* Calculate power at this ratio */
336 power = calculate_power(power_max, ratio_max, ratio);
Aamir Bohra1041d392017-06-02 11:56:14 +0530337 clock = ratio * CONFIG_CPU_BCLK_MHZ;
Lee Leahyb0005132015-05-12 18:19:47 -0700338
339 acpigen_write_PSS_package(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700340 clock, /* MHz */
341 power, /* mW */
342 PSS_LATENCY_TRANSITION, /* lat1 */
343 PSS_LATENCY_BUSMASTER, /* lat2 */
344 ratio << 8, /* control */
345 ratio << 8); /* status */
Lee Leahyb0005132015-05-12 18:19:47 -0700346 }
347
348 /* Fix package length */
349 acpigen_pop_len();
350}
351
Michael Niewöhnerb20aac02020-10-14 19:30:46 +0200352static void generate_cppc_entries(int core_id)
353{
354 /* Generate GCPC table in first logical core */
355 if (core_id == 0) {
356 struct cppc_config cppc_config;
357 cpu_init_cppc_config(&cppc_config, CPPC_VERSION_2);
358 acpigen_write_CPPC_package(&cppc_config);
359 }
360
361 /* Write _CST entry for each logical core */
362 acpigen_write_CPPC_method();
363}
364
Furquan Shaikh7536a392020-04-24 21:59:21 -0700365void generate_cpu_entries(const struct device *device)
Lee Leahyb0005132015-05-12 18:19:47 -0700366{
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700367 int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS, plen = 6;
Lee Leahyb0005132015-05-12 18:19:47 -0700368 int totalcores = dev_count_cpu();
369 int cores_per_package = get_cores_per_package();
370 int numcpus = totalcores/cores_per_package;
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300371 config_t *config = config_of_soc();
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700372 int is_s0ix_enable = config->s0ix_enable;
Michael Niewöhnerb20aac02020-10-14 19:30:46 +0200373 const bool isst_supported = cpuid_eax(6) & CPUID_6_EAX_ISST;
Lee Leahyb0005132015-05-12 18:19:47 -0700374
375 printk(BIOS_DEBUG, "Found %d CPU(s) with %d core(s) each.\n",
376 numcpus, cores_per_package);
377
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700378 for (cpu_id = 0; cpu_id < numcpus; cpu_id++) {
379 for (core_id = 0; core_id < cores_per_package; core_id++) {
380 if (core_id > 0) {
Lee Leahyb0005132015-05-12 18:19:47 -0700381 pcontrol_blk = 0;
382 plen = 0;
383 }
384
Christian Walterbe3979c2019-12-18 15:07:59 +0100385 /* Generate processor \_SB.CPUx */
Lee Leahyb0005132015-05-12 18:19:47 -0700386 acpigen_write_processor(
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700387 cpu_id*cores_per_package+core_id,
Lee Leahyb0005132015-05-12 18:19:47 -0700388 pcontrol_blk, plen);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700389 /* Generate C-state tables */
Jacob Garber9172b692019-06-26 16:18:16 -0600390 generate_c_state_entries(is_s0ix_enable);
Lee Leahyb0005132015-05-12 18:19:47 -0700391
Matt Delco9084c3c2018-07-27 14:17:29 -0700392 if (config->eist_enable) {
Subrata Banik6b45ee42017-05-12 11:43:57 +0530393 /* Generate P-state tables */
394 generate_p_state_entries(core_id,
395 cores_per_package);
Matt Delco9084c3c2018-07-27 14:17:29 -0700396 }
Michael Niewöhner30c5d212020-08-03 15:01:18 +0200397
Michael Niewöhnerb20aac02020-10-14 19:30:46 +0200398 if (isst_supported)
399 generate_cppc_entries(core_id);
Michael Niewöhner30c5d212020-08-03 15:01:18 +0200400
Lee Leahyb0005132015-05-12 18:19:47 -0700401 acpigen_pop_len();
402 }
403 }
Arthur Heymans8afc1352018-11-28 12:07:19 +0100404
405 /* PPKG is usually used for thermal management
406 of the first and only package. */
407 acpigen_write_processor_package("PPKG", 0, cores_per_package);
408
409 /* Add a method to notify processor nodes */
410 acpigen_write_processor_cnot(cores_per_package);
Lee Leahyb0005132015-05-12 18:19:47 -0700411}
412
Nico Huberc37b0e32017-09-18 20:03:46 +0200413static unsigned long acpi_fill_dmar(unsigned long current)
414{
Kyösti Mälkki903b40a2019-07-03 07:25:59 +0300415 struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
Nico Huberc37b0e32017-09-18 20:03:46 +0200416 const u32 gfx_vtbar = MCHBAR32(GFXVTBAR) & ~0xfff;
417 const bool gfxvten = MCHBAR32(GFXVTBAR) & 1;
418
419 /* iGFX has to be enabled, GFXVTBAR set and in 32-bit space. */
Angel Pons96a80132020-08-03 12:29:41 +0200420 const bool emit_igd =
421 igfx_dev && igfx_dev->enabled &&
422 gfx_vtbar && gfxvten &&
423 !MCHBAR32(GFXVTBAR + 4);
424
425 /* First, add DRHD entries */
426 if (emit_igd) {
427 const unsigned long tmp = current;
Nico Huberc37b0e32017-09-18 20:03:46 +0200428
429 current += acpi_create_dmar_drhd(current, 0, 0, gfx_vtbar);
Matt DeVillier7866d492018-03-29 14:59:57 +0200430 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
Nico Huberc37b0e32017-09-18 20:03:46 +0200431
432 acpi_dmar_drhd_fixup(tmp, current);
433 }
434
Nico Huberc37b0e32017-09-18 20:03:46 +0200435 const u32 vtvc0bar = MCHBAR32(VTVC0BAR) & ~0xfff;
436 const bool vtvc0en = MCHBAR32(VTVC0BAR) & 1;
437
438 /* General VTBAR has to be set and in 32-bit space. */
Angel Ponsef879a82019-08-30 19:42:23 +0200439 if (vtvc0bar && vtvc0en && !MCHBAR32(VTVC0BAR + 4)) {
Nico Huberc37b0e32017-09-18 20:03:46 +0200440 const unsigned long tmp = current;
441
Angel Ponsef879a82019-08-30 19:42:23 +0200442 current += acpi_create_dmar_drhd(current, DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
Nico Huberc37b0e32017-09-18 20:03:46 +0200443
Angel Ponsef879a82019-08-30 19:42:23 +0200444 current += acpi_create_dmar_ds_ioapic(current, 2, V_P2SB_IBDF_BUS,
445 V_P2SB_IBDF_DEV, V_P2SB_IBDF_FUN);
Nico Huberc37b0e32017-09-18 20:03:46 +0200446
Angel Ponsef879a82019-08-30 19:42:23 +0200447 current += acpi_create_dmar_ds_msi_hpet(current, 0, V_P2SB_HBDF_BUS,
448 V_P2SB_HBDF_DEV, V_P2SB_HBDF_FUN);
Nico Huberc37b0e32017-09-18 20:03:46 +0200449
450 acpi_dmar_drhd_fixup(tmp, current);
451 }
452
Angel Pons96a80132020-08-03 12:29:41 +0200453 /* Then, add RMRR entries after all DRHD entries */
454 if (emit_igd) {
455 const unsigned long tmp = current;
456
457 current += acpi_create_dmar_rmrr(current, 0,
458 sa_get_gsm_base(), sa_get_tolud_base() - 1);
459 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
460 acpi_dmar_rmrr_fixup(tmp, current);
461 }
462
Nico Huberc37b0e32017-09-18 20:03:46 +0200463 return current;
464}
465
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700466unsigned long northbridge_write_acpi_tables(const struct device *const dev,
Nico Huberc37b0e32017-09-18 20:03:46 +0200467 unsigned long current,
468 struct acpi_rsdp *const rsdp)
469{
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300470 const struct soc_intel_skylake_config *const config = config_of(dev);
Nico Huberc37b0e32017-09-18 20:03:46 +0200471 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
472
473 /* Create DMAR table only if we have VT-d capability. */
Kyösti Mälkki28dc7dc2019-07-12 13:10:19 +0300474 if (config->ignore_vtd || !soc_is_vtd_capable())
Nico Huberc37b0e32017-09-18 20:03:46 +0200475 return current;
476
477 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
478 acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
479 current += dmar->header.length;
480 current = acpi_align_current(current);
481 acpi_add_table(rsdp, dmar);
482
483 return current;
484}
485
Lee Leahyb0005132015-05-12 18:19:47 -0700486unsigned long acpi_madt_irq_overrides(unsigned long current)
487{
488 int sci = acpi_sci_irq();
489 acpi_madt_irqoverride_t *irqovr;
490 uint16_t flags = MP_IRQ_TRIGGER_LEVEL;
491
492 /* INT_SRC_OVR */
493 irqovr = (void *)current;
494 current += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
495
496 if (sci >= 20)
497 flags |= MP_IRQ_POLARITY_LOW;
498 else
499 flags |= MP_IRQ_POLARITY_HIGH;
500
501 /* SCI */
502 irqovr = (void *)current;
503 current += acpi_create_madt_irqoverride(irqovr, 0, sci, sci, flags);
504
Michael Niewöhner14512f92020-11-23 15:53:28 +0100505 /* NMI */
506 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current, 0xff, 5, 1);
507
Lee Leahyb0005132015-05-12 18:19:47 -0700508 return current;
509}
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700510
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700511unsigned long southbridge_write_acpi_tables(const struct device *device,
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700512 unsigned long current,
513 struct acpi_rsdp *rsdp)
514{
Duncan Laurie93bbd412017-11-11 20:03:29 -0800515 current = acpi_write_dbg2_pci_uart(rsdp, current,
Subrata Banikafa07f72018-05-24 12:21:06 +0530516 uart_get_device(),
Duncan Laurie93bbd412017-11-11 20:03:29 -0800517 ACPI_ACCESS_SIZE_DWORD_ACCESS);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700518 current = acpi_write_hpet(device, current, rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -0600519 return acpi_align_current(current);
Lee Leahy1d14b3e2015-05-12 18:23:27 -0700520}
521
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700522/* Save wake source information for calculating ACPI _SWS values */
523int soc_fill_acpi_wake(uint32_t *pm1, uint32_t **gpe0)
524{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300525 const struct soc_intel_skylake_config *config = config_of_soc();
Naresh G Solankia1b35472015-12-11 18:13:02 +0530526 struct chipset_power_state *ps;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700527 static uint32_t gpe0_sts[GPE0_REG_MAX];
528 uint32_t pm1_en;
Duncan Laurie95f90202016-10-25 20:07:22 -0700529 uint32_t gpe0_std;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700530 int i;
Aaron Durbin64606ce2016-10-27 09:53:17 -0500531 const int last_index = GPE0_REG_MAX - 1;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700532
Kyösti Mälkki27872372021-01-21 16:05:26 +0200533 ps = acpi_get_pm_state();
Naresh G Solankia1b35472015-12-11 18:13:02 +0530534 if (ps == NULL)
535 return -1;
536
Duncan Laurie95f90202016-10-25 20:07:22 -0700537 pm1_en = ps->pm1_en;
538 gpe0_std = ps->gpe0_en[3];
539
540 /*
541 * Chipset state in the suspend well (but not RTC) is lost in Deep S3
542 * so enable Deep S3 wake events that are configured by the mainboard
543 */
Duncan Laurie1fe32d62017-04-10 21:02:13 -0700544 if (ps->prev_sleep_state == ACPI_S3 &&
545 (config->deep_s3_enable_ac || config->deep_s3_enable_dc)) {
Duncan Laurie95f90202016-10-25 20:07:22 -0700546 pm1_en |= PWRBTN_STS; /* Always enabled as wake source */
547 if (config->deep_sx_config & DSX_EN_LAN_WAKE_PIN)
548 gpe0_std |= LAN_WAK_EN;
549 if (config->deep_sx_config & DSX_EN_WAKE_PIN)
550 pm1_en |= PCIEXPWAK_STS;
551 }
552
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700553 *pm1 = ps->pm1_sts & pm1_en;
554
555 /* Mask off GPE0 status bits that are not enabled */
556 *gpe0 = &gpe0_sts[0];
Aaron Durbin64606ce2016-10-27 09:53:17 -0500557 for (i = 0; i < last_index; i++)
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700558 gpe0_sts[i] = ps->gpe0_sts[i] & ps->gpe0_en[i];
Aaron Durbin64606ce2016-10-27 09:53:17 -0500559 gpe0_sts[last_index] = ps->gpe0_sts[last_index] & gpe0_std;
Duncan Lauriea1c8b34d2015-09-08 16:12:44 -0700560
561 return GPE0_REG_MAX;
562}
563
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600564const char *soc_acpi_name(const struct device *dev)
Naresh G Solankia2d40622016-08-30 20:47:13 +0530565{
566 if (dev->path.type == DEVICE_PATH_DOMAIN)
567 return "PCI0";
568
Duncan Lauriebf713b02018-05-07 15:33:18 -0700569 if (dev->path.type == DEVICE_PATH_USB) {
570 switch (dev->path.usb.port_type) {
571 case 0:
572 /* Root Hub */
573 return "RHUB";
574 case 2:
575 /* USB2 ports */
576 switch (dev->path.usb.port_id) {
577 case 0: return "HS01";
578 case 1: return "HS02";
579 case 2: return "HS03";
580 case 3: return "HS04";
581 case 4: return "HS05";
582 case 5: return "HS06";
583 case 6: return "HS07";
584 case 7: return "HS08";
585 case 8: return "HS09";
586 case 9: return "HS10";
587 }
588 break;
589 case 3:
590 /* USB3 ports */
591 switch (dev->path.usb.port_id) {
592 case 0: return "SS01";
593 case 1: return "SS02";
594 case 2: return "SS03";
595 case 3: return "SS04";
596 case 4: return "SS05";
597 case 5: return "SS06";
598 }
599 break;
600 }
601 return NULL;
602 }
603
Naresh G Solankia2d40622016-08-30 20:47:13 +0530604 if (dev->path.type != DEVICE_PATH_PCI)
605 return NULL;
606
Benjamin Doron2875df12020-08-06 19:13:09 +0000607 /* Match functions 0 and 1 for possible GPUs on a secondary bus */
608 if (dev->bus && dev->bus->secondary > 0) {
609 switch (PCI_FUNC(dev->path.pci.devfn)) {
610 case 0: return "DEV0";
611 case 1: return "DEV1";
612 }
Patrick Rudolph45ffee82019-09-26 14:45:29 +0200613 return NULL;
Benjamin Doron2875df12020-08-06 19:13:09 +0000614 }
Patrick Rudolph45ffee82019-09-26 14:45:29 +0200615
Naresh G Solankia2d40622016-08-30 20:47:13 +0530616 switch (dev->path.pci.devfn) {
617 case SA_DEVFN_ROOT: return "MCHC";
Benjamin Doron2875df12020-08-06 19:13:09 +0000618 case SA_DEVFN_PEG0: return "PEGP";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530619 case SA_DEVFN_IGD: return "GFX0";
620 case PCH_DEVFN_ISH: return "ISHB";
621 case PCH_DEVFN_XHCI: return "XHCI";
622 case PCH_DEVFN_USBOTG: return "XDCI";
623 case PCH_DEVFN_THERMAL: return "THRM";
624 case PCH_DEVFN_CIO: return "ICIO";
625 case PCH_DEVFN_I2C0: return "I2C0";
626 case PCH_DEVFN_I2C1: return "I2C1";
627 case PCH_DEVFN_I2C2: return "I2C2";
628 case PCH_DEVFN_I2C3: return "I2C3";
Subrata Banik2ee54db2017-03-05 12:37:00 +0530629 case PCH_DEVFN_CSE: return "CSE1";
630 case PCH_DEVFN_CSE_2: return "CSE2";
631 case PCH_DEVFN_CSE_IDER: return "CSED";
632 case PCH_DEVFN_CSE_KT: return "CSKT";
633 case PCH_DEVFN_CSE_3: return "CSE3";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530634 case PCH_DEVFN_SATA: return "SATA";
635 case PCH_DEVFN_UART2: return "UAR2";
636 case PCH_DEVFN_I2C4: return "I2C4";
637 case PCH_DEVFN_I2C5: return "I2C5";
638 case PCH_DEVFN_PCIE1: return "RP01";
639 case PCH_DEVFN_PCIE2: return "RP02";
640 case PCH_DEVFN_PCIE3: return "RP03";
641 case PCH_DEVFN_PCIE4: return "RP04";
642 case PCH_DEVFN_PCIE5: return "RP05";
643 case PCH_DEVFN_PCIE6: return "RP06";
644 case PCH_DEVFN_PCIE7: return "RP07";
645 case PCH_DEVFN_PCIE8: return "RP08";
646 case PCH_DEVFN_PCIE9: return "RP09";
647 case PCH_DEVFN_PCIE10: return "RP10";
648 case PCH_DEVFN_PCIE11: return "RP11";
649 case PCH_DEVFN_PCIE12: return "RP12";
Maxim Polyakovc6f2b612019-08-23 15:22:21 +0300650 case PCH_DEVFN_PCIE13: return "RP13";
651 case PCH_DEVFN_PCIE14: return "RP14";
652 case PCH_DEVFN_PCIE15: return "RP15";
653 case PCH_DEVFN_PCIE16: return "RP16";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530654 case PCH_DEVFN_UART0: return "UAR0";
655 case PCH_DEVFN_UART1: return "UAR1";
656 case PCH_DEVFN_GSPI0: return "SPI0";
657 case PCH_DEVFN_GSPI1: return "SPI1";
658 case PCH_DEVFN_EMMC: return "EMMC";
659 case PCH_DEVFN_SDIO: return "SDIO";
660 case PCH_DEVFN_SDCARD: return "SDXC";
Naresh G Solankia2d40622016-08-30 20:47:13 +0530661 case PCH_DEVFN_P2SB: return "P2SB";
662 case PCH_DEVFN_PMC: return "PMC_";
663 case PCH_DEVFN_HDA: return "HDAS";
664 case PCH_DEVFN_SMBUS: return "SBUS";
665 case PCH_DEVFN_SPI: return "FSPI";
666 case PCH_DEVFN_GBE: return "IGBE";
667 case PCH_DEVFN_TRACEHUB:return "THUB";
668 }
669
670 return NULL;
671}
Furquan Shaikha6f0b272017-05-23 11:53:47 -0700672
673static int acpigen_soc_gpio_op(const char *op, unsigned int gpio_num)
674{
675 /* op (gpio_num) */
676 acpigen_emit_namestring(op);
677 acpigen_write_integer(gpio_num);
678 return 0;
679}
680
681static int acpigen_soc_get_gpio_state(const char *op, unsigned int gpio_num)
682{
683 /* Store (op (gpio_num), Local0) */
684 acpigen_write_store();
685 acpigen_soc_gpio_op(op, gpio_num);
686 acpigen_emit_byte(LOCAL0_OP);
687 return 0;
688}
689
690int acpigen_soc_read_rx_gpio(unsigned int gpio_num)
691{
692 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GRXS", gpio_num);
693}
694
695int acpigen_soc_get_tx_gpio(unsigned int gpio_num)
696{
697 return acpigen_soc_get_gpio_state("\\_SB.PCI0.GTXS", gpio_num);
698}
699
700int acpigen_soc_set_tx_gpio(unsigned int gpio_num)
701{
702 return acpigen_soc_gpio_op("\\_SB.PCI0.STXS", gpio_num);
703}
704
705int acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
706{
707 return acpigen_soc_gpio_op("\\_SB.PCI0.CTXS", gpio_num);
708}