blob: f0ff89889ae83e542c47cea36dfe826876372e6b [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>
Michael Niewöhnered21df62020-09-19 00:08:45 +02004#include <arch/cpu.h>
Shaunak Sahabd427802017-07-18 00:19:33 -07005#include <arch/ioapic.h>
6#include <arch/smp/mpspec.h>
7#include <bootstate.h>
8#include <cbmem.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +02009#include <cf9_reset.h>
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +030010#include <acpi/acpi_gnvs.h>
Elyes HAOUAS20eaef02019-03-29 17:45:28 +010011#include <console/console.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070012#include <cpu/intel/turbo.h>
Michael Niewöhnered21df62020-09-19 00:08:45 +020013#include <cpu/intel/common/common.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070014#include <cpu/x86/smm.h>
15#include <intelblocks/acpi.h>
16#include <intelblocks/msr.h>
17#include <intelblocks/pmclib.h>
Duncan Laurie93bbd412017-11-11 20:03:29 -080018#include <intelblocks/uart.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070019#include <soc/gpio.h>
20#include <soc/iomap.h>
21#include <soc/nvs.h>
22#include <soc/pm.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +010023#include <string.h>
Shaunak Sahabd427802017-07-18 00:19:33 -070024
Michael Niewöhnered21df62020-09-19 00:08:45 +020025#define CPUID_6_EAX_ISST (1 << 7)
26
Julien Viard de Galbertcf2b72f2018-04-05 11:24:45 +020027__attribute__((weak)) unsigned long acpi_fill_mcfg(unsigned long current)
Shaunak Sahabd427802017-07-18 00:19:33 -070028{
29 /* PCI Segment Group 0, Start Bus Number 0, End Bus Number is 255 */
30 current += acpi_create_mcfg_mmconfig((void *)current,
31 CONFIG_MMCONF_BASE_ADDRESS, 0, 0,
Duncan Lauriefd50b7c2018-03-02 14:47:11 -080032 (CONFIG_SA_PCIEX_LENGTH >> 20) - 1);
Shaunak Sahabd427802017-07-18 00:19:33 -070033 return current;
34}
35
36static int acpi_sci_irq(void)
37{
38 int sci_irq = 9;
39 uint32_t scis;
40
41 scis = soc_read_sci_irq_select();
42 scis &= SCI_IRQ_SEL;
43 scis >>= SCI_IRQ_ADJUST;
44
45 /* Determine how SCI is routed. */
46 switch (scis) {
47 case SCIS_IRQ9:
48 case SCIS_IRQ10:
49 case SCIS_IRQ11:
50 sci_irq = scis - SCIS_IRQ9 + 9;
51 break;
52 case SCIS_IRQ20:
53 case SCIS_IRQ21:
54 case SCIS_IRQ22:
55 case SCIS_IRQ23:
56 sci_irq = scis - SCIS_IRQ20 + 20;
57 break;
58 default:
59 printk(BIOS_DEBUG, "Invalid SCI route! Defaulting to IRQ9.\n");
60 sci_irq = 9;
61 break;
62 }
63
64 printk(BIOS_DEBUG, "SCI is IRQ%d\n", sci_irq);
65 return sci_irq;
66}
67
68static unsigned long acpi_madt_irq_overrides(unsigned long current)
69{
70 int sci = acpi_sci_irq();
71 uint16_t flags = MP_IRQ_TRIGGER_LEVEL;
72
73 /* INT_SRC_OVR */
74 current += acpi_create_madt_irqoverride((void *)current, 0, 0, 2, 0);
75
76 flags |= soc_madt_sci_irq_polarity(sci);
77
78 /* SCI */
79 current +=
80 acpi_create_madt_irqoverride((void *)current, 0, sci, sci, flags);
81
82 return current;
83}
84
85unsigned long acpi_fill_madt(unsigned long current)
86{
87 /* Local APICs */
88 current = acpi_create_madt_lapics(current);
89
90 /* IOAPIC */
91 current += acpi_create_madt_ioapic((void *)current, 2, IO_APIC_ADDR, 0);
92
93 return acpi_madt_irq_overrides(current);
94}
95
Shaunak Sahabd427802017-07-18 00:19:33 -070096void acpi_fill_fadt(acpi_fadt_t *fadt)
97{
98 const uint16_t pmbase = ACPI_BASE_ADDRESS;
99
Marc Jonesf9ea7ed2018-08-22 18:59:26 -0600100 fadt->header.revision = get_acpi_table_revision(FADT);
Shaunak Sahabd427802017-07-18 00:19:33 -0700101
102 fadt->sci_int = acpi_sci_irq();
Kyösti Mälkkic328a682019-11-23 07:23:40 +0200103
Kyösti Mälkki0a9e72e2019-08-11 01:22:28 +0300104 if (permanent_smi_handler()) {
Kyösti Mälkkic328a682019-11-23 07:23:40 +0200105 fadt->smi_cmd = APM_CNT;
106 fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
107 fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
108 }
Shaunak Sahabd427802017-07-18 00:19:33 -0700109
110 fadt->pm1a_evt_blk = pmbase + PM1_STS;
Shaunak Sahabd427802017-07-18 00:19:33 -0700111 fadt->pm1a_cnt_blk = pmbase + PM1_CNT;
Shaunak Sahabd427802017-07-18 00:19:33 -0700112
113 fadt->gpe0_blk = pmbase + GPE0_STS(0);
114
115 fadt->pm1_evt_len = 4;
116 fadt->pm1_cnt_len = 2;
117
118 /* GPE0 STS/EN pairs each 32 bits wide. */
119 fadt->gpe0_blk_len = 2 * GPE0_REG_MAX * sizeof(uint32_t);
120
Shaunak Sahabd427802017-07-18 00:19:33 -0700121 fadt->duty_offset = 1;
122 fadt->day_alrm = 0xd;
123
Angel Ponsa208c6c2020-07-13 00:02:34 +0200124 fadt->flags |= ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED |
125 ACPI_FADT_C2_MP_SUPPORTED | ACPI_FADT_SLEEP_BUTTON |
Angel Pons79572e42020-07-13 00:17:43 +0200126 ACPI_FADT_SEALED_CASE | ACPI_FADT_S4_RTC_WAKE |
127 ACPI_FADT_PLATFORM_CLOCK;
Shaunak Sahabd427802017-07-18 00:19:33 -0700128
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200129 fadt->x_pm1a_evt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
Shaunak Sahabd427802017-07-18 00:19:33 -0700130 fadt->x_pm1a_evt_blk.bit_width = fadt->pm1_evt_len * 8;
131 fadt->x_pm1a_evt_blk.addrl = pmbase + PM1_STS;
Angel Pons12a4d052020-07-14 01:31:27 +0200132 fadt->x_pm1a_evt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100133
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200134 fadt->x_pm1a_cnt_blk.space_id = ACPI_ADDRESS_SPACE_IO;
Shaunak Sahabd427802017-07-18 00:19:33 -0700135 fadt->x_pm1a_cnt_blk.bit_width = fadt->pm1_cnt_len * 8;
136 fadt->x_pm1a_cnt_blk.addrl = pmbase + PM1_CNT;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100137 fadt->x_pm1a_cnt_blk.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
Shaunak Sahabd427802017-07-18 00:19:33 -0700138
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100139 /*
140 * Windows 10 requires x_gpe0_blk to be set starting with FADT revision 5.
141 * The bit_width field intentionally overflows here.
142 * The OSPM can instead use the values in `fadt->gpe0_blk{,_len}`, which
143 * seems to work fine on Linux 5.0 and Windows 10.
144 */
145 fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
146 fadt->x_gpe0_blk.bit_width = fadt->gpe0_blk_len * 8;
147 fadt->x_gpe0_blk.bit_offset = 0;
Angel Ponsa23aff32020-06-21 20:47:54 +0200148 fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
Patrick Rudolphc02bda02020-02-28 10:19:41 +0100149 fadt->x_gpe0_blk.addrl = fadt->gpe0_blk;
150 fadt->x_gpe0_blk.addrh = 0;
Shaunak Sahabd427802017-07-18 00:19:33 -0700151}
152
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700153unsigned long southbridge_write_acpi_tables(const struct device *device,
Shaunak Sahabd427802017-07-18 00:19:33 -0700154 unsigned long current,
155 struct acpi_rsdp *rsdp)
156{
Duncan Laurie93bbd412017-11-11 20:03:29 -0800157 current = acpi_write_dbg2_pci_uart(rsdp, current,
Subrata Banikafa07f72018-05-24 12:21:06 +0530158 uart_get_device(),
Duncan Laurie93bbd412017-11-11 20:03:29 -0800159 ACPI_ACCESS_SIZE_DWORD_ACCESS);
Shaunak Sahabd427802017-07-18 00:19:33 -0700160 return acpi_write_hpet(device, current, rsdp);
161}
162
Aaron Durbin64031672018-04-21 14:45:32 -0600163__weak
Shaunak Sahabd427802017-07-18 00:19:33 -0700164uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en,
165 const struct chipset_power_state *ps)
166{
167 return generic_pm1_en;
168}
169
Julius Wernercd49cce2019-03-05 16:53:33 -0800170#if CONFIG(SOC_INTEL_COMMON_ACPI_WAKE_SOURCE)
Shaunak Sahabd427802017-07-18 00:19:33 -0700171/*
172 * Save wake source information for calculating ACPI _SWS values
173 *
174 * @pm1: PM1_STS register with only enabled events set
175 * @gpe0: GPE0_STS registers with only enabled events set
176 *
177 * return the number of registers in the gpe0 array or -1 if nothing
178 * is provided by this function.
179 */
180
181static int acpi_fill_wake(uint32_t *pm1, uint32_t **gpe0)
182{
183 struct chipset_power_state *ps;
184 static uint32_t gpe0_sts[GPE0_REG_MAX];
185 uint32_t pm1_en;
186 int i;
187
188 ps = cbmem_find(CBMEM_ID_POWER_STATE);
189 if (ps == NULL)
190 return -1;
191
192 /*
193 * PM1_EN to check the basic wake events which can happen through
194 * powerbtn or any other wake source like lidopen, key board press etc.
195 */
196 pm1_en = ps->pm1_en;
197
198 pm1_en = acpi_fill_soc_wake(pm1_en, ps);
199
200 *pm1 = ps->pm1_sts & pm1_en;
201
202 /* Mask off GPE0 status bits that are not enabled */
203 *gpe0 = &gpe0_sts[0];
204 for (i = 0; i < GPE0_REG_MAX; i++)
205 gpe0_sts[i] = ps->gpe0_sts[i] & ps->gpe0_en[i];
206
207 return GPE0_REG_MAX;
208}
Julien Viard de Galbertcf2b72f2018-04-05 11:24:45 +0200209#endif
Shaunak Sahabd427802017-07-18 00:19:33 -0700210
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300211__weak void acpi_create_gnvs(struct global_nvs *gnvs)
Shaunak Sahabd427802017-07-18 00:19:33 -0700212{
213}
214
Furquan Shaikh338fd9a2020-04-24 22:57:05 -0700215void southbridge_inject_dsdt(const struct device *device)
Shaunak Sahabd427802017-07-18 00:19:33 -0700216{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300217 struct global_nvs *gnvs;
Shaunak Sahabd427802017-07-18 00:19:33 -0700218
219 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
220 if (!gnvs) {
221 gnvs = cbmem_add(CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
222 if (gnvs)
223 memset(gnvs, 0, sizeof(*gnvs));
224 }
225
226 if (gnvs) {
227 acpi_create_gnvs(gnvs);
Shaunak Sahabd427802017-07-18 00:19:33 -0700228 /* And tell SMI about it */
Kyösti Mälkkic3c55212020-06-17 10:34:26 +0300229 apm_control(APM_CNT_GNVS_UPDATE);
Shaunak Sahabd427802017-07-18 00:19:33 -0700230
231 /* Add it to DSDT. */
232 acpigen_write_scope("\\");
233 acpigen_write_name_dword("NVSA", (uintptr_t) gnvs);
234 acpigen_pop_len();
235 }
236}
237
238static int calculate_power(int tdp, int p1_ratio, int ratio)
239{
240 u32 m;
241 u32 power;
242
243 /*
244 * M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
245 *
246 * Power = (ratio / p1_ratio) * m * tdp
247 */
248
249 m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
250 m = (m * m) / 1000;
251
252 power = ((ratio * 100000 / p1_ratio) / 100);
253 power *= (m / 100) * (tdp / 1000);
254 power /= 1000;
255
256 return power;
257}
258
259static int get_cores_per_package(void)
260{
261 struct cpuinfo_x86 c;
262 struct cpuid_result result;
263 int cores = 1;
264
265 get_fms(&c, cpuid_eax(1));
266 if (c.x86 != 6)
267 return 1;
268
269 result = cpuid_ext(0xb, 1);
270 cores = result.ebx & 0xff;
271
272 return cores;
273}
274
275static void generate_c_state_entries(void)
276{
277 acpi_cstate_t *c_state_map;
278 size_t entries;
279
280 c_state_map = soc_get_cstate_map(&entries);
281
282 /* Generate C-state tables */
283 acpigen_write_CST_package(c_state_map, entries);
284}
285
286void generate_p_state_entries(int core, int cores_per_package)
287{
288 int ratio_min, ratio_max, ratio_turbo, ratio_step;
289 int coord_type, power_max, num_entries;
290 int ratio, power, clock, clock_max;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100291 bool turbo;
Shaunak Sahabd427802017-07-18 00:19:33 -0700292
293 coord_type = cpu_get_coord_type();
294 ratio_min = cpu_get_min_ratio();
295 ratio_max = cpu_get_max_ratio();
296 clock_max = (ratio_max * cpu_get_bus_clock()) / KHz;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100297 turbo = (get_turbo_state() == TURBO_ENABLED);
Shaunak Sahabd427802017-07-18 00:19:33 -0700298
299 /* Calculate CPU TDP in mW */
300 power_max = cpu_get_power_max();
301
302 /* Write _PCT indicating use of FFixedHW */
303 acpigen_write_empty_PCT();
304
305 /* Write _PPC with no limit on supported P-state */
306 acpigen_write_PPC_NVS();
307 /* Write PSD indicating configured coordination type */
308 acpigen_write_PSD_package(core, 1, coord_type);
309
310 /* Add P-state entries in _PSS table */
311 acpigen_write_name("_PSS");
312
313 /* Determine ratio points */
314 ratio_step = PSS_RATIO_STEP;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100315 do {
Shaunak Sahabd427802017-07-18 00:19:33 -0700316 num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100317 if (((ratio_max - ratio_min) % ratio_step) > 0)
318 num_entries += 1;
319 if (turbo)
320 num_entries += 1;
321 if (num_entries > PSS_MAX_ENTRIES)
322 ratio_step += 1;
323 } while (num_entries > PSS_MAX_ENTRIES);
324
325 /* _PSS package count depends on Turbo */
326 acpigen_write_package(num_entries);
Shaunak Sahabd427802017-07-18 00:19:33 -0700327
328 /* P[T] is Turbo state if enabled */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100329 if (turbo) {
Shaunak Sahabd427802017-07-18 00:19:33 -0700330 ratio_turbo = cpu_get_max_turbo_ratio();
331
332 /* Add entry for Turbo ratio */
333 acpigen_write_PSS_package(clock_max + 1, /* MHz */
334 power_max, /* mW */
335 PSS_LATENCY_TRANSITION,/* lat1 */
336 PSS_LATENCY_BUSMASTER,/* lat2 */
337 ratio_turbo << 8, /* control */
338 ratio_turbo << 8); /* status */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100339 num_entries -= 1;
Shaunak Sahabd427802017-07-18 00:19:33 -0700340 }
341
342 /* First regular entry is max non-turbo ratio */
343 acpigen_write_PSS_package(clock_max, /* MHz */
344 power_max, /* mW */
345 PSS_LATENCY_TRANSITION,/* lat1 */
346 PSS_LATENCY_BUSMASTER,/* lat2 */
347 ratio_max << 8, /* control */
348 ratio_max << 8); /* status */
Julien Viard de Galbertc2540a92018-11-06 09:28:03 +0100349 num_entries -= 1;
Shaunak Sahabd427802017-07-18 00:19:33 -0700350
351 /* Generate the remaining entries */
352 for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
353 ratio >= ratio_min; ratio -= ratio_step) {
354
355 /* Calculate power at this ratio */
356 power = calculate_power(power_max, ratio_max, ratio);
357 clock = (ratio * cpu_get_bus_clock()) / KHz;
358
359 acpigen_write_PSS_package(clock, /* MHz */
360 power, /* mW */
361 PSS_LATENCY_TRANSITION,/* lat1 */
362 PSS_LATENCY_BUSMASTER,/* lat2 */
363 ratio << 8, /* control */
364 ratio << 8); /* status */
365 }
366 /* Fix package length */
367 acpigen_pop_len();
368}
369
Julien Viard de Galbert595202c2018-03-29 14:01:01 +0200370__attribute__ ((weak)) acpi_tstate_t *soc_get_tss_table(int *entries)
Shaunak Sahabd427802017-07-18 00:19:33 -0700371{
372 *entries = 0;
373 return NULL;
374}
375
376void generate_t_state_entries(int core, int cores_per_package)
377{
378 acpi_tstate_t *soc_tss_table;
379 int entries;
380
381 soc_tss_table = soc_get_tss_table(&entries);
382 if (entries == 0)
383 return;
384
385 /* Indicate SW_ALL coordination for T-states */
386 acpigen_write_TSD_package(core, cores_per_package, SW_ALL);
387
388 /* Indicate FixedHW so OS will use MSR */
389 acpigen_write_empty_PTC();
390
391 /* Set NVS controlled T-state limit */
392 acpigen_write_TPC("\\TLVL");
393
394 /* Write TSS table for MSR access */
395 acpigen_write_TSS_package(entries, soc_tss_table);
396}
397
Michael Niewöhnered21df62020-09-19 00:08:45 +0200398static void generate_cppc_entries(int core_id)
399{
400 if (!(CONFIG(SOC_INTEL_COMMON_BLOCK_ACPI_CPPC) &&
401 cpuid_eax(6) & CPUID_6_EAX_ISST))
402 return;
403
404 /* Generate GCPC package in first logical core */
405 if (core_id == 0) {
406 struct cppc_config cppc_config;
407 cpu_init_cppc_config(&cppc_config, CPPC_VERSION_2);
408 acpigen_write_CPPC_package(&cppc_config);
409 }
410
411 /* Write _CPC entry for each logical core */
412 acpigen_write_CPPC_method();
413}
414
Aaron Durbin64031672018-04-21 14:45:32 -0600415__weak void soc_power_states_generation(int core_id,
Shaunak Sahabd427802017-07-18 00:19:33 -0700416 int cores_per_package)
417{
418}
419
Furquan Shaikh7536a392020-04-24 21:59:21 -0700420void generate_cpu_entries(const struct device *device)
Shaunak Sahabd427802017-07-18 00:19:33 -0700421{
422 int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS;
423 int plen = 6;
424 int totalcores = dev_count_cpu();
425 int cores_per_package = get_cores_per_package();
426 int numcpus = totalcores / cores_per_package;
427
428 printk(BIOS_DEBUG, "Found %d CPU(s) with %d core(s) each.\n",
429 numcpus, cores_per_package);
430
431 for (cpu_id = 0; cpu_id < numcpus; cpu_id++) {
432 for (core_id = 0; core_id < cores_per_package; core_id++) {
433 if (core_id > 0) {
434 pcontrol_blk = 0;
435 plen = 0;
436 }
437
Christian Walterbe3979c2019-12-18 15:07:59 +0100438 /* Generate processor \_SB.CPUx */
Shaunak Sahabd427802017-07-18 00:19:33 -0700439 acpigen_write_processor((cpu_id) * cores_per_package +
440 core_id, pcontrol_blk, plen);
441
442 /* Generate C-state tables */
443 generate_c_state_entries();
444
Michael Niewöhnered21df62020-09-19 00:08:45 +0200445 generate_cppc_entries(core_id);
446
Shaunak Sahabd427802017-07-18 00:19:33 -0700447 /* Soc specific power states generation */
448 soc_power_states_generation(core_id, cores_per_package);
449
450 acpigen_pop_len();
451 }
452 }
Arthur Heymans0ac555e2018-11-28 12:25:54 +0100453 /* PPKG is usually used for thermal management
454 of the first and only package. */
455 acpigen_write_processor_package("PPKG", 0, cores_per_package);
456
457 /* Add a method to notify processor nodes */
458 acpigen_write_processor_cnot(cores_per_package);
Shaunak Sahabd427802017-07-18 00:19:33 -0700459}
460
Julius Wernercd49cce2019-03-05 16:53:33 -0800461#if CONFIG(SOC_INTEL_COMMON_ACPI_WAKE_SOURCE)
Shaunak Sahabd427802017-07-18 00:19:33 -0700462/* Save wake source data for ACPI _SWS methods in NVS */
463static void acpi_save_wake_source(void *unused)
464{
Kyösti Mälkki0c1dd9c2020-06-17 23:37:49 +0300465 struct global_nvs *gnvs = acpi_get_gnvs();
Shaunak Sahabd427802017-07-18 00:19:33 -0700466 uint32_t pm1, *gpe0;
467 int gpe_reg, gpe_reg_count;
468 int reg_size = sizeof(uint32_t) * 8;
469
470 if (!gnvs)
471 return;
472
473 gnvs->pm1i = -1;
474 gnvs->gpei = -1;
475
476 gpe_reg_count = acpi_fill_wake(&pm1, &gpe0);
477 if (gpe_reg_count < 0)
478 return;
479
480 /* Scan for first set bit in PM1 */
481 for (gnvs->pm1i = 0; gnvs->pm1i < reg_size; gnvs->pm1i++) {
482 if (pm1 & 1)
483 break;
484 pm1 >>= 1;
485 }
486
487 /* If unable to determine then return -1 */
488 if (gnvs->pm1i >= 16)
489 gnvs->pm1i = -1;
490
491 /* Scan for first set bit in GPE registers */
492 for (gpe_reg = 0; gpe_reg < gpe_reg_count; gpe_reg++) {
493 uint32_t gpe = gpe0[gpe_reg];
494 int start = gpe_reg * reg_size;
495 int end = start + reg_size;
496
497 if (gpe == 0) {
498 if (!gnvs->gpei)
499 gnvs->gpei = end;
500 continue;
501 }
502
503 for (gnvs->gpei = start; gnvs->gpei < end; gnvs->gpei++) {
504 if (gpe & 1)
505 break;
506 gpe >>= 1;
507 }
508 }
509
510 /* If unable to determine then return -1 */
511 if (gnvs->gpei >= gpe_reg_count * reg_size)
512 gnvs->gpei = -1;
513
514 printk(BIOS_DEBUG, "ACPI _SWS is PM1 Index %lld GPE Index %lld\n",
515 (long long)gnvs->pm1i, (long long)gnvs->gpei);
516}
517
518BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, acpi_save_wake_source, NULL);
519
520#endif