xref: /openbmc/qemu/hw/acpi/core.c (revision 992861fb)
1 /*
2  * ACPI implementation
3  *
4  * Copyright (c) 2006 Fabrice Bellard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License version 2 as published by the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, see <http://www.gnu.org/licenses/>
17  *
18  * Contributions after 2012-01-13 are licensed under the terms of the
19  * GNU GPL, version 2 or (at your option) any later version.
20  */
21 
22 #include "qemu/osdep.h"
23 #include "hw/irq.h"
24 #include "hw/acpi/acpi.h"
25 #include "hw/nvram/fw_cfg.h"
26 #include "qemu/config-file.h"
27 #include "qapi/error.h"
28 #include "qapi/opts-visitor.h"
29 #include "qapi/qapi-events-run-state.h"
30 #include "qapi/qapi-visit-misc.h"
31 #include "qemu/error-report.h"
32 #include "qemu/module.h"
33 #include "qemu/option.h"
34 #include "sysemu/runstate.h"
35 
36 struct acpi_table_header {
37     uint16_t _length;         /* our length, not actual part of the hdr */
38                               /* allows easier parsing for fw_cfg clients */
39     char sig[4]
40              QEMU_NONSTRING;  /* ACPI signature (4 ASCII characters) */
41     uint32_t length;          /* Length of table, in bytes, including header */
42     uint8_t revision;         /* ACPI Specification minor version # */
43     uint8_t checksum;         /* To make sum of entire table == 0 */
44     char oem_id[6]
45              QEMU_NONSTRING;  /* OEM identification */
46     char oem_table_id[8]
47              QEMU_NONSTRING;  /* OEM table identification */
48     uint32_t oem_revision;    /* OEM revision number */
49     char asl_compiler_id[4]
50              QEMU_NONSTRING;  /* ASL compiler vendor ID */
51     uint32_t asl_compiler_revision; /* ASL compiler revision number */
52 } QEMU_PACKED;
53 
54 #define ACPI_TABLE_HDR_SIZE sizeof(struct acpi_table_header)
55 #define ACPI_TABLE_PFX_SIZE sizeof(uint16_t)  /* size of the extra prefix */
56 
57 static const char unsigned dfl_hdr[ACPI_TABLE_HDR_SIZE - ACPI_TABLE_PFX_SIZE] =
58     "QEMU\0\0\0\0\1\0"       /* sig (4), len(4), revno (1), csum (1) */
59     "QEMUQEQEMUQEMU\1\0\0\0" /* OEM id (6), table (8), revno (4) */
60     "QEMU\1\0\0\0"           /* ASL compiler ID (4), version (4) */
61     ;
62 
63 char unsigned *acpi_tables;
64 size_t acpi_tables_len;
65 
66 static QemuOptsList qemu_acpi_opts = {
67     .name = "acpi",
68     .implied_opt_name = "data",
69     .head = QTAILQ_HEAD_INITIALIZER(qemu_acpi_opts.head),
70     .desc = { { 0 } } /* validated with OptsVisitor */
71 };
72 
73 static void acpi_register_config(void)
74 {
75     qemu_add_opts(&qemu_acpi_opts);
76 }
77 
78 opts_init(acpi_register_config);
79 
80 static int acpi_checksum(const uint8_t *data, int len)
81 {
82     int sum, i;
83     sum = 0;
84     for (i = 0; i < len; i++) {
85         sum += data[i];
86     }
87     return (-sum) & 0xff;
88 }
89 
90 
91 /* Install a copy of the ACPI table specified in @blob.
92  *
93  * If @has_header is set, @blob starts with the System Description Table Header
94  * structure. Otherwise, "dfl_hdr" is prepended. In any case, each header field
95  * is optionally overwritten from @hdrs.
96  *
97  * It is valid to call this function with
98  * (@blob == NULL && bloblen == 0 && !has_header).
99  *
100  * @hdrs->file and @hdrs->data are ignored.
101  *
102  * SIZE_MAX is considered "infinity" in this function.
103  *
104  * The number of tables that can be installed is not limited, but the 16-bit
105  * counter at the beginning of "acpi_tables" wraps around after UINT16_MAX.
106  */
107 static void acpi_table_install(const char unsigned *blob, size_t bloblen,
108                                bool has_header,
109                                const struct AcpiTableOptions *hdrs,
110                                Error **errp)
111 {
112     size_t body_start;
113     const char unsigned *hdr_src;
114     size_t body_size, acpi_payload_size;
115     struct acpi_table_header *ext_hdr;
116     unsigned changed_fields;
117 
118     /* Calculate where the ACPI table body starts within the blob, plus where
119      * to copy the ACPI table header from.
120      */
121     if (has_header) {
122         /*   _length             | ACPI header in blob | blob body
123          *   ^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^
124          *   ACPI_TABLE_PFX_SIZE     sizeof dfl_hdr      body_size
125          *                           == body_start
126          *
127          *                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
128          *                           acpi_payload_size == bloblen
129          */
130         body_start = sizeof dfl_hdr;
131 
132         if (bloblen < body_start) {
133             error_setg(errp, "ACPI table claiming to have header is too "
134                        "short, available: %zu, expected: %zu", bloblen,
135                        body_start);
136             return;
137         }
138         hdr_src = blob;
139     } else {
140         /*   _length             | ACPI header in template | blob body
141          *   ^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^
142          *   ACPI_TABLE_PFX_SIZE       sizeof dfl_hdr        body_size
143          *                                                   == bloblen
144          *
145          *                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
146          *                                  acpi_payload_size
147          */
148         body_start = 0;
149         hdr_src = dfl_hdr;
150     }
151     body_size = bloblen - body_start;
152     acpi_payload_size = sizeof dfl_hdr + body_size;
153 
154     if (acpi_payload_size > UINT16_MAX) {
155         error_setg(errp, "ACPI table too big, requested: %zu, max: %u",
156                    acpi_payload_size, (unsigned)UINT16_MAX);
157         return;
158     }
159 
160     /* We won't fail from here on. Initialize / extend the globals. */
161     if (acpi_tables == NULL) {
162         acpi_tables_len = sizeof(uint16_t);
163         acpi_tables = g_malloc0(acpi_tables_len);
164     }
165 
166     acpi_tables = g_realloc(acpi_tables, acpi_tables_len +
167                                          ACPI_TABLE_PFX_SIZE +
168                                          sizeof dfl_hdr + body_size);
169 
170     ext_hdr = (struct acpi_table_header *)(acpi_tables + acpi_tables_len);
171     acpi_tables_len += ACPI_TABLE_PFX_SIZE;
172 
173     memcpy(acpi_tables + acpi_tables_len, hdr_src, sizeof dfl_hdr);
174     acpi_tables_len += sizeof dfl_hdr;
175 
176     if (blob != NULL) {
177         memcpy(acpi_tables + acpi_tables_len, blob + body_start, body_size);
178         acpi_tables_len += body_size;
179     }
180 
181     /* increase number of tables */
182     stw_le_p(acpi_tables, lduw_le_p(acpi_tables) + 1u);
183 
184     /* Update the header fields. The strings need not be NUL-terminated. */
185     changed_fields = 0;
186     ext_hdr->_length = cpu_to_le16(acpi_payload_size);
187 
188     if (hdrs->has_sig) {
189         strncpy(ext_hdr->sig, hdrs->sig, sizeof ext_hdr->sig);
190         ++changed_fields;
191     }
192 
193     if (has_header && le32_to_cpu(ext_hdr->length) != acpi_payload_size) {
194         warn_report("ACPI table has wrong length, header says "
195                     "%" PRIu32 ", actual size %zu bytes",
196                     le32_to_cpu(ext_hdr->length), acpi_payload_size);
197     }
198     ext_hdr->length = cpu_to_le32(acpi_payload_size);
199 
200     if (hdrs->has_rev) {
201         ext_hdr->revision = hdrs->rev;
202         ++changed_fields;
203     }
204 
205     ext_hdr->checksum = 0;
206 
207     if (hdrs->has_oem_id) {
208         strncpy(ext_hdr->oem_id, hdrs->oem_id, sizeof ext_hdr->oem_id);
209         ++changed_fields;
210     }
211     if (hdrs->has_oem_table_id) {
212         strncpy(ext_hdr->oem_table_id, hdrs->oem_table_id,
213                 sizeof ext_hdr->oem_table_id);
214         ++changed_fields;
215     }
216     if (hdrs->has_oem_rev) {
217         ext_hdr->oem_revision = cpu_to_le32(hdrs->oem_rev);
218         ++changed_fields;
219     }
220     if (hdrs->has_asl_compiler_id) {
221         strncpy(ext_hdr->asl_compiler_id, hdrs->asl_compiler_id,
222                 sizeof ext_hdr->asl_compiler_id);
223         ++changed_fields;
224     }
225     if (hdrs->has_asl_compiler_rev) {
226         ext_hdr->asl_compiler_revision = cpu_to_le32(hdrs->asl_compiler_rev);
227         ++changed_fields;
228     }
229 
230     if (!has_header && changed_fields == 0) {
231         warn_report("ACPI table: no headers are specified");
232     }
233 
234     /* recalculate checksum */
235     ext_hdr->checksum = acpi_checksum((const char unsigned *)ext_hdr +
236                                       ACPI_TABLE_PFX_SIZE, acpi_payload_size);
237 }
238 
239 void acpi_table_add(const QemuOpts *opts, Error **errp)
240 {
241     AcpiTableOptions *hdrs = NULL;
242     Error *err = NULL;
243     char **pathnames = NULL;
244     char **cur;
245     size_t bloblen = 0;
246     char unsigned *blob = NULL;
247 
248     {
249         Visitor *v;
250 
251         v = opts_visitor_new(opts);
252         visit_type_AcpiTableOptions(v, NULL, &hdrs, &err);
253         visit_free(v);
254     }
255 
256     if (err) {
257         goto out;
258     }
259     if (hdrs->has_file == hdrs->has_data) {
260         error_setg(errp, "'-acpitable' requires one of 'data' or 'file'");
261         goto out;
262     }
263 
264     pathnames = g_strsplit(hdrs->has_file ? hdrs->file : hdrs->data, ":", 0);
265     if (pathnames == NULL || pathnames[0] == NULL) {
266         error_setg(errp, "'-acpitable' requires at least one pathname");
267         goto out;
268     }
269 
270     /* now read in the data files, reallocating buffer as needed */
271     for (cur = pathnames; *cur; ++cur) {
272         int fd = open(*cur, O_RDONLY | O_BINARY);
273 
274         if (fd < 0) {
275             error_setg(errp, "can't open file %s: %s", *cur, strerror(errno));
276             goto out;
277         }
278 
279         for (;;) {
280             char unsigned data[8192];
281             ssize_t r;
282 
283             r = read(fd, data, sizeof data);
284             if (r == 0) {
285                 break;
286             } else if (r > 0) {
287                 blob = g_realloc(blob, bloblen + r);
288                 memcpy(blob + bloblen, data, r);
289                 bloblen += r;
290             } else if (errno != EINTR) {
291                 error_setg(errp, "can't read file %s: %s", *cur,
292                            strerror(errno));
293                 close(fd);
294                 goto out;
295             }
296         }
297 
298         close(fd);
299     }
300 
301     acpi_table_install(blob, bloblen, hdrs->has_file, hdrs, errp);
302 
303 out:
304     g_free(blob);
305     g_strfreev(pathnames);
306     qapi_free_AcpiTableOptions(hdrs);
307 }
308 
309 unsigned acpi_table_len(void *current)
310 {
311     struct acpi_table_header *hdr = current - sizeof(hdr->_length);
312     return hdr->_length;
313 }
314 
315 static
316 void *acpi_table_hdr(void *h)
317 {
318     struct acpi_table_header *hdr = h;
319     return &hdr->sig;
320 }
321 
322 uint8_t *acpi_table_first(void)
323 {
324     if (!acpi_tables) {
325         return NULL;
326     }
327     return acpi_table_hdr(acpi_tables + ACPI_TABLE_PFX_SIZE);
328 }
329 
330 uint8_t *acpi_table_next(uint8_t *current)
331 {
332     uint8_t *next = current + acpi_table_len(current);
333 
334     if (next - acpi_tables >= acpi_tables_len) {
335         return NULL;
336     } else {
337         return acpi_table_hdr(next);
338     }
339 }
340 
341 int acpi_get_slic_oem(AcpiSlicOem *oem)
342 {
343     uint8_t *u;
344 
345     for (u = acpi_table_first(); u; u = acpi_table_next(u)) {
346         struct acpi_table_header *hdr = (void *)(u - sizeof(hdr->_length));
347 
348         if (memcmp(hdr->sig, "SLIC", 4) == 0) {
349             oem->id = hdr->oem_id;
350             oem->table_id = hdr->oem_table_id;
351             return 0;
352         }
353     }
354     return -1;
355 }
356 
357 static void acpi_notify_wakeup(Notifier *notifier, void *data)
358 {
359     ACPIREGS *ar = container_of(notifier, ACPIREGS, wakeup);
360     WakeupReason *reason = data;
361 
362     switch (*reason) {
363     case QEMU_WAKEUP_REASON_RTC:
364         ar->pm1.evt.sts |=
365             (ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_RT_CLOCK_STATUS);
366         break;
367     case QEMU_WAKEUP_REASON_PMTIMER:
368         ar->pm1.evt.sts |=
369             (ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_TIMER_STATUS);
370         break;
371     case QEMU_WAKEUP_REASON_OTHER:
372         /* ACPI_BITMASK_WAKE_STATUS should be set on resume.
373            Pretend that resume was caused by power button */
374         ar->pm1.evt.sts |=
375             (ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_POWER_BUTTON_STATUS);
376         break;
377     default:
378         break;
379     }
380 }
381 
382 /* ACPI PM1a EVT */
383 uint16_t acpi_pm1_evt_get_sts(ACPIREGS *ar)
384 {
385     /* Compare ns-clock, not PM timer ticks, because
386        acpi_pm_tmr_update function uses ns for setting the timer. */
387     int64_t d = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
388     if (d >= muldiv64(ar->tmr.overflow_time,
389                       NANOSECONDS_PER_SECOND, PM_TIMER_FREQUENCY)) {
390         ar->pm1.evt.sts |= ACPI_BITMASK_TIMER_STATUS;
391     }
392     return ar->pm1.evt.sts;
393 }
394 
395 static void acpi_pm1_evt_write_sts(ACPIREGS *ar, uint16_t val)
396 {
397     uint16_t pm1_sts = acpi_pm1_evt_get_sts(ar);
398     if (pm1_sts & val & ACPI_BITMASK_TIMER_STATUS) {
399         /* if TMRSTS is reset, then compute the new overflow time */
400         acpi_pm_tmr_calc_overflow_time(ar);
401     }
402     ar->pm1.evt.sts &= ~val;
403 }
404 
405 static void acpi_pm1_evt_write_en(ACPIREGS *ar, uint16_t val)
406 {
407     ar->pm1.evt.en = val;
408     qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_RTC,
409                               val & ACPI_BITMASK_RT_CLOCK_ENABLE);
410     qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_PMTIMER,
411                               val & ACPI_BITMASK_TIMER_ENABLE);
412 }
413 
414 void acpi_pm1_evt_power_down(ACPIREGS *ar)
415 {
416     if (ar->pm1.evt.en & ACPI_BITMASK_POWER_BUTTON_ENABLE) {
417         ar->pm1.evt.sts |= ACPI_BITMASK_POWER_BUTTON_STATUS;
418         ar->tmr.update_sci(ar);
419     }
420 }
421 
422 void acpi_pm1_evt_reset(ACPIREGS *ar)
423 {
424     ar->pm1.evt.sts = 0;
425     ar->pm1.evt.en = 0;
426     qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_RTC, 0);
427     qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_PMTIMER, 0);
428 }
429 
430 static uint64_t acpi_pm_evt_read(void *opaque, hwaddr addr, unsigned width)
431 {
432     ACPIREGS *ar = opaque;
433     switch (addr) {
434     case 0:
435         return acpi_pm1_evt_get_sts(ar);
436     case 2:
437         return ar->pm1.evt.en;
438     default:
439         return 0;
440     }
441 }
442 
443 static void acpi_pm_evt_write(void *opaque, hwaddr addr, uint64_t val,
444                               unsigned width)
445 {
446     ACPIREGS *ar = opaque;
447     switch (addr) {
448     case 0:
449         acpi_pm1_evt_write_sts(ar, val);
450         ar->pm1.evt.update_sci(ar);
451         break;
452     case 2:
453         acpi_pm1_evt_write_en(ar, val);
454         ar->pm1.evt.update_sci(ar);
455         break;
456     }
457 }
458 
459 static const MemoryRegionOps acpi_pm_evt_ops = {
460     .read = acpi_pm_evt_read,
461     .write = acpi_pm_evt_write,
462     .valid.min_access_size = 2,
463     .valid.max_access_size = 2,
464     .endianness = DEVICE_LITTLE_ENDIAN,
465 };
466 
467 void acpi_pm1_evt_init(ACPIREGS *ar, acpi_update_sci_fn update_sci,
468                        MemoryRegion *parent)
469 {
470     ar->pm1.evt.update_sci = update_sci;
471     memory_region_init_io(&ar->pm1.evt.io, memory_region_owner(parent),
472                           &acpi_pm_evt_ops, ar, "acpi-evt", 4);
473     memory_region_add_subregion(parent, 0, &ar->pm1.evt.io);
474 }
475 
476 /* ACPI PM_TMR */
477 void acpi_pm_tmr_update(ACPIREGS *ar, bool enable)
478 {
479     int64_t expire_time;
480 
481     /* schedule a timer interruption if needed */
482     if (enable) {
483         expire_time = muldiv64(ar->tmr.overflow_time, NANOSECONDS_PER_SECOND,
484                                PM_TIMER_FREQUENCY);
485         timer_mod(ar->tmr.timer, expire_time);
486     } else {
487         timer_del(ar->tmr.timer);
488     }
489 }
490 
491 static inline int64_t acpi_pm_tmr_get_clock(void)
492 {
493     return muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), PM_TIMER_FREQUENCY,
494                     NANOSECONDS_PER_SECOND);
495 }
496 
497 void acpi_pm_tmr_calc_overflow_time(ACPIREGS *ar)
498 {
499     int64_t d = acpi_pm_tmr_get_clock();
500     ar->tmr.overflow_time = (d + 0x800000LL) & ~0x7fffffLL;
501 }
502 
503 static uint32_t acpi_pm_tmr_get(ACPIREGS *ar)
504 {
505     uint32_t d = acpi_pm_tmr_get_clock();
506     return d & 0xffffff;
507 }
508 
509 static void acpi_pm_tmr_timer(void *opaque)
510 {
511     ACPIREGS *ar = opaque;
512 
513     qemu_system_wakeup_request(QEMU_WAKEUP_REASON_PMTIMER, NULL);
514     ar->tmr.update_sci(ar);
515 }
516 
517 static uint64_t acpi_pm_tmr_read(void *opaque, hwaddr addr, unsigned width)
518 {
519     return acpi_pm_tmr_get(opaque);
520 }
521 
522 static void acpi_pm_tmr_write(void *opaque, hwaddr addr, uint64_t val,
523                               unsigned width)
524 {
525     /* nothing */
526 }
527 
528 static const MemoryRegionOps acpi_pm_tmr_ops = {
529     .read = acpi_pm_tmr_read,
530     .write = acpi_pm_tmr_write,
531     .valid.min_access_size = 4,
532     .valid.max_access_size = 4,
533     .endianness = DEVICE_LITTLE_ENDIAN,
534 };
535 
536 void acpi_pm_tmr_init(ACPIREGS *ar, acpi_update_sci_fn update_sci,
537                       MemoryRegion *parent)
538 {
539     ar->tmr.update_sci = update_sci;
540     ar->tmr.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, acpi_pm_tmr_timer, ar);
541     memory_region_init_io(&ar->tmr.io, memory_region_owner(parent),
542                           &acpi_pm_tmr_ops, ar, "acpi-tmr", 4);
543     memory_region_add_subregion(parent, 8, &ar->tmr.io);
544 }
545 
546 void acpi_pm_tmr_reset(ACPIREGS *ar)
547 {
548     ar->tmr.overflow_time = 0;
549     timer_del(ar->tmr.timer);
550 }
551 
552 /* ACPI PM1aCNT */
553 static void acpi_pm1_cnt_write(ACPIREGS *ar, uint16_t val)
554 {
555     ar->pm1.cnt.cnt = val & ~(ACPI_BITMASK_SLEEP_ENABLE);
556 
557     if (val & ACPI_BITMASK_SLEEP_ENABLE) {
558         /* change suspend type */
559         uint16_t sus_typ = (val >> 10) & 7;
560         switch(sus_typ) {
561         case 0: /* soft power off */
562             qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
563             break;
564         case 1:
565             qemu_system_suspend_request();
566             break;
567         default:
568             if (sus_typ == ar->pm1.cnt.s4_val) { /* S4 request */
569                 qapi_event_send_suspend_disk();
570                 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
571             }
572             break;
573         }
574     }
575 }
576 
577 void acpi_pm1_cnt_update(ACPIREGS *ar,
578                          bool sci_enable, bool sci_disable)
579 {
580     /* ACPI specs 3.0, 4.7.2.5 */
581     if (sci_enable) {
582         ar->pm1.cnt.cnt |= ACPI_BITMASK_SCI_ENABLE;
583     } else if (sci_disable) {
584         ar->pm1.cnt.cnt &= ~ACPI_BITMASK_SCI_ENABLE;
585     }
586 }
587 
588 static uint64_t acpi_pm_cnt_read(void *opaque, hwaddr addr, unsigned width)
589 {
590     ACPIREGS *ar = opaque;
591     return ar->pm1.cnt.cnt;
592 }
593 
594 static void acpi_pm_cnt_write(void *opaque, hwaddr addr, uint64_t val,
595                               unsigned width)
596 {
597     acpi_pm1_cnt_write(opaque, val);
598 }
599 
600 static const MemoryRegionOps acpi_pm_cnt_ops = {
601     .read = acpi_pm_cnt_read,
602     .write = acpi_pm_cnt_write,
603     .valid.min_access_size = 2,
604     .valid.max_access_size = 2,
605     .endianness = DEVICE_LITTLE_ENDIAN,
606 };
607 
608 void acpi_pm1_cnt_init(ACPIREGS *ar, MemoryRegion *parent,
609                        bool disable_s3, bool disable_s4, uint8_t s4_val)
610 {
611     FWCfgState *fw_cfg;
612 
613     ar->pm1.cnt.s4_val = s4_val;
614     ar->wakeup.notify = acpi_notify_wakeup;
615     qemu_register_wakeup_notifier(&ar->wakeup);
616 
617     /*
618      * Register wake-up support in QMP query-current-machine API
619      */
620     qemu_register_wakeup_support();
621 
622     memory_region_init_io(&ar->pm1.cnt.io, memory_region_owner(parent),
623                           &acpi_pm_cnt_ops, ar, "acpi-cnt", 2);
624     memory_region_add_subregion(parent, 4, &ar->pm1.cnt.io);
625 
626     fw_cfg = fw_cfg_find();
627     if (fw_cfg) {
628         uint8_t suspend[6] = {128, 0, 0, 129, 128, 128};
629         suspend[3] = 1 | ((!disable_s3) << 7);
630         suspend[4] = s4_val | ((!disable_s4) << 7);
631 
632         fw_cfg_add_file(fw_cfg, "etc/system-states", g_memdup(suspend, 6), 6);
633     }
634 }
635 
636 void acpi_pm1_cnt_reset(ACPIREGS *ar)
637 {
638     ar->pm1.cnt.cnt = 0;
639 }
640 
641 /* ACPI GPE */
642 void acpi_gpe_init(ACPIREGS *ar, uint8_t len)
643 {
644     ar->gpe.len = len;
645     /* Only first len / 2 bytes are ever used,
646      * but the caller in ich9.c migrates full len bytes.
647      * TODO: fix ich9.c and drop the extra allocation.
648      */
649     ar->gpe.sts = g_malloc0(len);
650     ar->gpe.en = g_malloc0(len);
651 }
652 
653 void acpi_gpe_reset(ACPIREGS *ar)
654 {
655     memset(ar->gpe.sts, 0, ar->gpe.len / 2);
656     memset(ar->gpe.en, 0, ar->gpe.len / 2);
657 }
658 
659 static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
660 {
661     uint8_t *cur = NULL;
662 
663     if (addr < ar->gpe.len / 2) {
664         cur = ar->gpe.sts + addr;
665     } else if (addr < ar->gpe.len) {
666         cur = ar->gpe.en + addr - ar->gpe.len / 2;
667     } else {
668         abort();
669     }
670 
671     return cur;
672 }
673 
674 void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
675 {
676     uint8_t *cur;
677 
678     cur = acpi_gpe_ioport_get_ptr(ar, addr);
679     if (addr < ar->gpe.len / 2) {
680         /* GPE_STS */
681         *cur = (*cur) & ~val;
682     } else if (addr < ar->gpe.len) {
683         /* GPE_EN */
684         *cur = val;
685     } else {
686         abort();
687     }
688 }
689 
690 uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
691 {
692     uint8_t *cur;
693     uint32_t val;
694 
695     cur = acpi_gpe_ioport_get_ptr(ar, addr);
696     val = 0;
697     if (cur != NULL) {
698         val = *cur;
699     }
700 
701     return val;
702 }
703 
704 void acpi_send_gpe_event(ACPIREGS *ar, qemu_irq irq,
705                          AcpiEventStatusBits status)
706 {
707     ar->gpe.sts[0] |= status;
708     acpi_update_sci(ar, irq);
709 }
710 
711 void acpi_update_sci(ACPIREGS *regs, qemu_irq irq)
712 {
713     int sci_level, pm1a_sts;
714 
715     pm1a_sts = acpi_pm1_evt_get_sts(regs);
716 
717     sci_level = ((pm1a_sts &
718                   regs->pm1.evt.en & ACPI_BITMASK_PM1_COMMON_ENABLED) != 0) ||
719                 ((regs->gpe.sts[0] & regs->gpe.en[0]) != 0);
720 
721     qemu_set_irq(irq, sci_level);
722 
723     /* schedule a timer interruption if needed */
724     acpi_pm_tmr_update(regs,
725                        (regs->pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
726                        !(pm1a_sts & ACPI_BITMASK_TIMER_STATUS));
727 }
728