blob: 1ce34fa7f4cfb1887dd50f833b956946d93e71c6 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Elyes HAOUASa1e22b82019-03-18 22:49:36 +01002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpigen.h>
Shaunak Sahabd427802017-07-18 00:19:33 -07004#include <arch/ioapic.h>
5#include <arch/smp/mpspec.h>
6#include <bootstate.h>
7#include <cbmem.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +02008#include <cf9_reset.h>
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +03009#include <acpi/acpi_gnvs.h>
Elyes HAOUAS20eaef02019-03-29 17:45:28 +010010#include <console/console.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070011#include <cpu/intel/turbo.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070012#include <cpu/x86/smm.h>
13#include <intelblocks/acpi.h>
14#include <intelblocks/msr.h>
15#include <intelblocks/pmclib.h>
Duncan Laurie93bbd412017-11-11 20:03:29 -080016#include <intelblocks/uart.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070017#include <soc/gpio.h>
18#include <soc/iomap.h>
19#include <soc/nvs.h>
20#include <soc/pm.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +010021#include <string.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070022
Julien Viard de Galbertcf2b72f2018-04-05 11:24:45 +020023__attribute__((weak)) unsigned long acpi_fill_mcfg(unsigned long current)
Shaunak Sahabd427802017-07-18 00:19:33 -070024{
25 /* PCI Segment Group 0, Start Bus Number 0, End Bus Number is 255 */
26 current += acpi_create_mcfg_mmconfig((void *)current,
27 CONFIG_MMCONF_BASE_ADDRESS, 0, 0,
Duncan Lauriefd50b7c2018-03-02 14:47:11 -080028 (CONFIG_SA_PCIEX_LENGTH >> 20) - 1);
Shaunak Sahabd427802017-07-18 00:19:33 -070029 return current;
30}
31
32static int acpi_sci_irq(void)
33{
34 int sci_irq = 9;
35 uint32_t scis;
36
37 scis = soc_read_sci_irq_select();
38 scis &= SCI_IRQ_SEL;
39 scis >>= SCI_IRQ_ADJUST;
40
41 /* Determine how SCI is routed. */
42 switch (scis) {
43 case SCIS_IRQ9:
44 case SCIS_IRQ10:
45 case SCIS_IRQ11:
46 sci_irq = scis - SCIS_IRQ9 + 9;
47 break;
48 case SCIS_IRQ20:
49 case SCIS_IRQ21:
50 case SCIS_IRQ22:
51 case SCIS_IRQ23:
52 sci_irq = scis - SCIS_IRQ20 + 20;
53 break;
54 default:
55 printk(BIOS_DEBUG, "Invalid SCI route! Defaulting to IRQ9.\n");
56 sci_irq = 9;
57 break;
58 }
59
60 printk(BIOS_DEBUG, "SCI is IRQ%d\n", sci_irq);
61 return sci_irq;
62}
63
64static unsigned long acpi_madt_irq_overrides(unsigned long current)
65{
66 int sci = acpi_sci_irq();
67 uint16_t flags = MP_IRQ_TRIGGER_LEVEL;
68
69 /* INT_SRC_OVR */
70 current += acpi_create_madt_irqoverride((void *)current, 0, 0, 2, 0);
71
72 flags |= soc_madt_sci_irq_polarity(sci);
73
74 /* SCI */
75 current +=
76 acpi_create_madt_irqoverride((void *)current, 0, sci, sci, flags);
77
78 return current;
79}
80
81unsigned long acpi_fill_madt(unsigned long current)
82{
83 /* Local APICs */
84 current = acpi_create_madt_lapics(current);
85
86 /* IOAPIC */
87 current += acpi_create_madt_ioapic((void *)current, 2, IO_APIC_ADDR, 0);
88
89 return acpi_madt_irq_overrides(current);
90}
91
Shaunak Sahabd427802017-07-18 00:19:33 -070092void acpi_fill_fadt(acpi_fadt_t *fadt)
93{
94 const uint16_t pmbase = ACPI_BASE_ADDRESS;
95
Marc Jonesf9ea7ed2018-08-22 18:59:26 -060096 fadt->header.revision = get_acpi_table_revision(FADT);
Shaunak Sahabd427802017-07-18 00:19:33 -070097
98 fadt->sci_int = acpi_sci_irq();
Kyösti Mälkkic328a682019-11-23 07:23:40 +020099
Kyösti Mälkki0a9e72e2019-08-11 01:22:28 +0300100 if (permanent_smi_handler()) {
Kyösti Mälkkic328a682019-11-23 07:23:40 +0200101 fadt->smi_cmd = APM_CNT;
102 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
103 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
104 }
Shaunak Sahabd427802017-07-18 00:19:33 -0700105
106 fadt->pm1a_evt_blk = pmbase + PM1_STS;
Shaunak Sahabd427802017-07-18 00:19:33 -0700107 fadt->pm1a_cnt_blk = pmbase + PM1_CNT;
Shaunak Sahabd427802017-07-18 00:19:33 -0700108
109 fadt->gpe0_blk = pmbase + GPE0_STS(0);
110
111 fadt->pm1_evt_len = 4;
112 fadt->pm1_cnt_len = 2;
113
114 /* GPE0 STS/EN pairs each 32 bits wide. */
115 fadt->gpe0_blk_len = 2 * GPE0_REG_MAX * sizeof(uint32_t);
116
117 fadt->flush_size = 0x400; /* twice of cache size */
118 fadt->flush_stride = 0x10; /* Cache line width */
119 fadt->duty_offset = 1;
120 fadt->day_alrm = 0xd;
121
Angel Ponsa208c6c2020-07-13 00:02:34 +0200122 fadt->flags |= ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED |
123 ACPI_FADT_C2_MP_SUPPORTED | ACPI_FADT_SLEEP_BUTTON |
124 ACPI_FADT_RESET_REGISTER | ACPI_FADT_SEALED_CASE |
125 ACPI_FADT_S4_RTC_WAKE | ACPI_FADT_PLATFORM_CLOCK;
Shaunak Sahabd427802017-07-18 00:19:33 -0700126
127 fadt->reset_reg.space_id = 1;
128 fadt->reset_reg.bit_width = 8;
129 fadt->reset_reg.addrl = RST_CNT;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100130 fadt->reset_reg.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Shaunak Sahabd427802017-07-18 00:19:33 -0700131 fadt->reset_value = RST_CPU | SYS_RST;
132
133 fadt->x_pm1a_evt_blk.space_id = 1;
134 fadt->x_pm1a_evt_blk.bit_width = fadt->pm1_evt_len * 8;
135 fadt->x_pm1a_evt_blk.addrl = pmbase + PM1_STS;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100136 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
137
Shaunak Sahabd427802017-07-18 00:19:33 -0700138 fadt->x_pm1a_cnt_blk.space_id = 1;
139 fadt->x_pm1a_cnt_blk.bit_width = fadt->pm1_cnt_len * 8;
140 fadt->x_pm1a_cnt_blk.addrl = pmbase + PM1_CNT;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100141 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Shaunak Sahabd427802017-07-18 00:19:33 -0700142
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100143 /*
144 * Windows 10 requires x_gpe0_blk to be set starting with FADT revision 5.
145 * The bit_width field intentionally overflows here.
146 * The OSPM can instead use the values in `fadt->gpe0_blk{,_len}`, which
147 * seems to work fine on Linux 5.0 and Windows 10.
148 */
149 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
150 fadt->x_gpe0_blk.bit_width = fadt->gpe0_blk_len * 8;
151 fadt->x_gpe0_blk.bit_offset = 0;
Angel Ponsa23aff32020-06-21 20:47:54 +0200152 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100153 fadt->x_gpe0_blk.addrl = fadt->gpe0_blk;
154 fadt->x_gpe0_blk.addrh = 0;
Shaunak Sahabd427802017-07-18 00:19:33 -0700155}
156
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700157unsigned long southbridge_write_acpi_tables(const struct device *device,
Shaunak Sahabd427802017-07-18 00:19:33 -0700158 unsigned long current,
159 struct acpi_rsdp *rsdp)
160{
Duncan Laurie93bbd412017-11-11 20:03:29 -0800161 current = acpi_write_dbg2_pci_uart(rsdp, current,
Subrata Banikafa07f72018-05-24 12:21:06 +0530162 uart_get_device(),
Duncan Laurie93bbd412017-11-11 20:03:29 -0800163 ACPI_ACCESS_SIZE_DWORD_ACCESS);
Shaunak Sahabd427802017-07-18 00:19:33 -0700164 return acpi_write_hpet(device, current, rsdp);
165}
166
Aaron Durbin64031672018-04-21 14:45:32 -0600167__weak
Shaunak Sahabd427802017-07-18 00:19:33 -0700168uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en,
169 const struct chipset_power_state *ps)
170{
171 return generic_pm1_en;
172}
173
Julius Wernercd49cce2019-03-05 16:53:33 -0800174#if CONFIG(SOC_INTEL_COMMON_ACPI_WAKE_SOURCE)
Shaunak Sahabd427802017-07-18 00:19:33 -0700175/*
176 * Save wake source information for calculating ACPI _SWS values
177 *
178 * @pm1: PM1_STS register with only enabled events set
179 * @gpe0: GPE0_STS registers with only enabled events set
180 *
181 * return the number of registers in the gpe0 array or -1 if nothing
182 * is provided by this function.
183 */
184
185static int acpi_fill_wake(uint32_t *pm1, uint32_t **gpe0)
186{
187 struct chipset_power_state *ps;
188 static uint32_t gpe0_sts[GPE0_REG_MAX];
189 uint32_t pm1_en;
190 int i;
191
192 ps = cbmem_find(CBMEM_ID_POWER_STATE);
193 if (ps == NULL)
194 return -1;
195
196 /*
197 * PM1_EN to check the basic wake events which can happen through
198 * powerbtn or any other wake source like lidopen, key board press etc.
199 */
200 pm1_en = ps->pm1_en;
201
202 pm1_en = acpi_fill_soc_wake(pm1_en, ps);
203
204 *pm1 = ps->pm1_sts & pm1_en;
205
206 /* Mask off GPE0 status bits that are not enabled */
207 *gpe0 = &gpe0_sts[0];
208 for (i = 0; i < GPE0_REG_MAX; i++)
209 gpe0_sts[i] = ps->gpe0_sts[i] & ps->gpe0_en[i];
210
211 return GPE0_REG_MAX;
212}
Julien Viard de Galbertcf2b72f2018-04-05 11:24:45 +0200213#endif
Shaunak Sahabd427802017-07-18 00:19:33 -0700214
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300215__weak void acpi_create_gnvs(struct global_nvs *gnvs)
Shaunak Sahabd427802017-07-18 00:19:33 -0700216{
217}
218
Furquan Shaikh338fd9a2020-04-24 22:57:05 -0700219void southbridge_inject_dsdt(const struct device *device)
Shaunak Sahabd427802017-07-18 00:19:33 -0700220{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300221 struct global_nvs *gnvs;
Shaunak Sahabd427802017-07-18 00:19:33 -0700222
223 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
224 if (!gnvs) {
225 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
226 if (gnvs)
227 memset(gnvs, 0, sizeof(*gnvs));
228 }
229
230 if (gnvs) {
231 acpi_create_gnvs(gnvs);
Shaunak Sahabd427802017-07-18 00:19:33 -0700232 /* And tell SMI about it */
Kyösti Mälkkic3c55212020-06-17 10:34:26 +0300233 apm_control(APM_CNT_GNVS_UPDATE);
Shaunak Sahabd427802017-07-18 00:19:33 -0700234
235 /* Add it to DSDT. */
236 acpigen_write_scope("\\");
237 acpigen_write_name_dword("NVSA", (uintptr_t) gnvs);
238 acpigen_pop_len();
239 }
240}
241
242static int calculate_power(int tdp, int p1_ratio, int ratio)
243{
244 u32 m;
245 u32 power;
246
247 /*
248 * M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
249 *
250 * Power = (ratio / p1_ratio) * m * tdp
251 */
252
253 m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
254 m = (m * m) / 1000;
255
256 power = ((ratio * 100000 / p1_ratio) / 100);
257 power *= (m / 100) * (tdp / 1000);
258 power /= 1000;
259
260 return power;
261}
262
263static int get_cores_per_package(void)
264{
265 struct cpuinfo_x86 c;
266 struct cpuid_result result;
267 int cores = 1;
268
269 get_fms(&c, cpuid_eax(1));
270 if (c.x86 != 6)
271 return 1;
272
273 result = cpuid_ext(0xb, 1);
274 cores = result.ebx & 0xff;
275
276 return cores;
277}
278
279static void generate_c_state_entries(void)
280{
281 acpi_cstate_t *c_state_map;
282 size_t entries;
283
284 c_state_map = soc_get_cstate_map(&entries);
285
286 /* Generate C-state tables */
287 acpigen_write_CST_package(c_state_map, entries);
288}
289
290void generate_p_state_entries(int core, int cores_per_package)
291{
292 int ratio_min, ratio_max, ratio_turbo, ratio_step;
293 int coord_type, power_max, num_entries;
294 int ratio, power, clock, clock_max;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100295 bool turbo;
Shaunak Sahabd427802017-07-18 00:19:33 -0700296
297 coord_type = cpu_get_coord_type();
298 ratio_min = cpu_get_min_ratio();
299 ratio_max = cpu_get_max_ratio();
300 clock_max = (ratio_max * cpu_get_bus_clock()) / KHz;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100301 turbo = (get_turbo_state() == TURBO_ENABLED);
Shaunak Sahabd427802017-07-18 00:19:33 -0700302
303 /* Calculate CPU TDP in mW */
304 power_max = cpu_get_power_max();
305
306 /* Write _PCT indicating use of FFixedHW */
307 acpigen_write_empty_PCT();
308
309 /* Write _PPC with no limit on supported P-state */
310 acpigen_write_PPC_NVS();
311 /* Write PSD indicating configured coordination type */
312 acpigen_write_PSD_package(core, 1, coord_type);
313
314 /* Add P-state entries in _PSS table */
315 acpigen_write_name("_PSS");
316
317 /* Determine ratio points */
318 ratio_step = PSS_RATIO_STEP;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100319 do {
Shaunak Sahabd427802017-07-18 00:19:33 -0700320 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100321 if (((ratio_max - ratio_min) % ratio_step) > 0)
322 num_entries += 1;
323 if (turbo)
324 num_entries += 1;
325 if (num_entries > PSS_MAX_ENTRIES)
326 ratio_step += 1;
327 } while (num_entries > PSS_MAX_ENTRIES);
328
329 /* _PSS package count depends on Turbo */
330 acpigen_write_package(num_entries);
Shaunak Sahabd427802017-07-18 00:19:33 -0700331
332 /* P[T] is Turbo state if enabled */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100333 if (turbo) {
Shaunak Sahabd427802017-07-18 00:19:33 -0700334 ratio_turbo = cpu_get_max_turbo_ratio();
335
336 /* Add entry for Turbo ratio */
337 acpigen_write_PSS_package(clock_max + 1, /* MHz */
338 power_max, /* mW */
339 PSS_LATENCY_TRANSITION,/* lat1 */
340 PSS_LATENCY_BUSMASTER,/* lat2 */
341 ratio_turbo << 8, /* control */
342 ratio_turbo << 8); /* status */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100343 num_entries -= 1;
Shaunak Sahabd427802017-07-18 00:19:33 -0700344 }
345
346 /* First regular entry is max non-turbo ratio */
347 acpigen_write_PSS_package(clock_max, /* MHz */
348 power_max, /* mW */
349 PSS_LATENCY_TRANSITION,/* lat1 */
350 PSS_LATENCY_BUSMASTER,/* lat2 */
351 ratio_max << 8, /* control */
352 ratio_max << 8); /* status */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100353 num_entries -= 1;
Shaunak Sahabd427802017-07-18 00:19:33 -0700354
355 /* Generate the remaining entries */
356 for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
357 ratio >= ratio_min; ratio -= ratio_step) {
358
359 /* Calculate power at this ratio */
360 power = calculate_power(power_max, ratio_max, ratio);
361 clock = (ratio * cpu_get_bus_clock()) / KHz;
362
363 acpigen_write_PSS_package(clock, /* MHz */
364 power, /* mW */
365 PSS_LATENCY_TRANSITION,/* lat1 */
366 PSS_LATENCY_BUSMASTER,/* lat2 */
367 ratio << 8, /* control */
368 ratio << 8); /* status */
369 }
370 /* Fix package length */
371 acpigen_pop_len();
372}
373
Julien Viard de Galbert595202c2018-03-29 14:01:01 +0200374__attribute__ ((weak)) acpi_tstate_t *soc_get_tss_table(int *entries)
Shaunak Sahabd427802017-07-18 00:19:33 -0700375{
376 *entries = 0;
377 return NULL;
378}
379
380void generate_t_state_entries(int core, int cores_per_package)
381{
382 acpi_tstate_t *soc_tss_table;
383 int entries;
384
385 soc_tss_table = soc_get_tss_table(&entries);
386 if (entries == 0)
387 return;
388
389 /* Indicate SW_ALL coordination for T-states */
390 acpigen_write_TSD_package(core, cores_per_package, SW_ALL);
391
392 /* Indicate FixedHW so OS will use MSR */
393 acpigen_write_empty_PTC();
394
395 /* Set NVS controlled T-state limit */
396 acpigen_write_TPC("\\TLVL");
397
398 /* Write TSS table for MSR access */
399 acpigen_write_TSS_package(entries, soc_tss_table);
400}
401
Aaron Durbin64031672018-04-21 14:45:32 -0600402__weak void soc_power_states_generation(int core_id,
Shaunak Sahabd427802017-07-18 00:19:33 -0700403 int cores_per_package)
404{
405}
406
Furquan Shaikh7536a392020-04-24 21:59:21 -0700407void generate_cpu_entries(const struct device *device)
Shaunak Sahabd427802017-07-18 00:19:33 -0700408{
409 int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS;
410 int plen = 6;
411 int totalcores = dev_count_cpu();
412 int cores_per_package = get_cores_per_package();
413 int numcpus = totalcores / cores_per_package;
414
415 printk(BIOS_DEBUG, "Found %d CPU(s) with %d core(s) each.\n",
416 numcpus, cores_per_package);
417
418 for (cpu_id = 0; cpu_id < numcpus; cpu_id++) {
419 for (core_id = 0; core_id < cores_per_package; core_id++) {
420 if (core_id > 0) {
421 pcontrol_blk = 0;
422 plen = 0;
423 }
424
Christian Walterbe3979c2019-12-18 15:07:59 +0100425 /* Generate processor \_SB.CPUx */
Shaunak Sahabd427802017-07-18 00:19:33 -0700426 acpigen_write_processor((cpu_id) * cores_per_package +
427 core_id, pcontrol_blk, plen);
428
429 /* Generate C-state tables */
430 generate_c_state_entries();
431
432 /* Soc specific power states generation */
433 soc_power_states_generation(core_id, cores_per_package);
434
435 acpigen_pop_len();
436 }
437 }
Arthur Heymans0ac555e2018-11-28 12:25:54 +0100438 /* PPKG is usually used for thermal management
439 of the first and only package. */
440 acpigen_write_processor_package("PPKG", 0, cores_per_package);
441
442 /* Add a method to notify processor nodes */
443 acpigen_write_processor_cnot(cores_per_package);
Shaunak Sahabd427802017-07-18 00:19:33 -0700444}
445
Julius Wernercd49cce2019-03-05 16:53:33 -0800446#if CONFIG(SOC_INTEL_COMMON_ACPI_WAKE_SOURCE)
Shaunak Sahabd427802017-07-18 00:19:33 -0700447/* Save wake source data for ACPI _SWS methods in NVS */
448static void acpi_save_wake_source(void *unused)
449{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300450 struct global_nvs *gnvs = acpi_get_gnvs();
Shaunak Sahabd427802017-07-18 00:19:33 -0700451 uint32_t pm1, *gpe0;
452 int gpe_reg, gpe_reg_count;
453 int reg_size = sizeof(uint32_t) * 8;
454
455 if (!gnvs)
456 return;
457
458 gnvs->pm1i = -1;
459 gnvs->gpei = -1;
460
461 gpe_reg_count = acpi_fill_wake(&pm1, &gpe0);
462 if (gpe_reg_count < 0)
463 return;
464
465 /* Scan for first set bit in PM1 */
466 for (gnvs->pm1i = 0; gnvs->pm1i < reg_size; gnvs->pm1i++) {
467 if (pm1 & 1)
468 break;
469 pm1 >>= 1;
470 }
471
472 /* If unable to determine then return -1 */
473 if (gnvs->pm1i >= 16)
474 gnvs->pm1i = -1;
475
476 /* Scan for first set bit in GPE registers */
477 for (gpe_reg = 0; gpe_reg < gpe_reg_count; gpe_reg++) {
478 uint32_t gpe = gpe0[gpe_reg];
479 int start = gpe_reg * reg_size;
480 int end = start + reg_size;
481
482 if (gpe == 0) {
483 if (!gnvs->gpei)
484 gnvs->gpei = end;
485 continue;
486 }
487
488 for (gnvs->gpei = start; gnvs->gpei < end; gnvs->gpei++) {
489 if (gpe & 1)
490 break;
491 gpe >>= 1;
492 }
493 }
494
495 /* If unable to determine then return -1 */
496 if (gnvs->gpei >= gpe_reg_count * reg_size)
497 gnvs->gpei = -1;
498
499 printk(BIOS_DEBUG, "ACPI _SWS is PM1 Index %lld GPE Index %lld\n",
500 (long long)gnvs->pm1i, (long long)gnvs->gpei);
501}
502
503BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, acpi_save_wake_source, NULL);
504
505#endif