Introduce reset notifier order
[qemu] / hw / acpi.c
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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
18  */
19 #include "hw.h"
20 #include "pc.h"
21 #include "pci.h"
22 #include "qemu-timer.h"
23 #include "sysemu.h"
24 #include "i2c.h"
25 #include "smbus.h"
26 #include "kvm.h"
27
28 //#define DEBUG
29
30 /* i82731AB (PIIX4) compatible power management function */
31 #define PM_FREQ 3579545
32
33 #define ACPI_DBG_IO_ADDR  0xb044
34
35 typedef struct PIIX4PMState {
36     PCIDevice dev;
37     uint16_t pmsts;
38     uint16_t pmen;
39     uint16_t pmcntrl;
40     uint8_t apmc;
41     uint8_t apms;
42     QEMUTimer *tmr_timer;
43     int64_t tmr_overflow_time;
44     i2c_bus *smbus;
45     uint8_t smb_stat;
46     uint8_t smb_ctl;
47     uint8_t smb_cmd;
48     uint8_t smb_addr;
49     uint8_t smb_data0;
50     uint8_t smb_data1;
51     uint8_t smb_data[32];
52     uint8_t smb_index;
53     qemu_irq irq;
54 } PIIX4PMState;
55
56 #define RSM_STS (1 << 15)
57 #define PWRBTN_STS (1 << 8)
58 #define RTC_EN (1 << 10)
59 #define PWRBTN_EN (1 << 8)
60 #define GBL_EN (1 << 5)
61 #define TMROF_EN (1 << 0)
62
63 #define SCI_EN (1 << 0)
64
65 #define SUS_EN (1 << 13)
66
67 #define ACPI_ENABLE 0xf1
68 #define ACPI_DISABLE 0xf0
69
70 #define SMBHSTSTS 0x00
71 #define SMBHSTCNT 0x02
72 #define SMBHSTCMD 0x03
73 #define SMBHSTADD 0x04
74 #define SMBHSTDAT0 0x05
75 #define SMBHSTDAT1 0x06
76 #define SMBBLKDAT 0x07
77
78 static PIIX4PMState *pm_state;
79
80 static uint32_t get_pmtmr(PIIX4PMState *s)
81 {
82     uint32_t d;
83     d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
84     return d & 0xffffff;
85 }
86
87 static int get_pmsts(PIIX4PMState *s)
88 {
89     int64_t d;
90     int pmsts;
91     pmsts = s->pmsts;
92     d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
93     if (d >= s->tmr_overflow_time)
94         s->pmsts |= TMROF_EN;
95     return s->pmsts;
96 }
97
98 static void pm_update_sci(PIIX4PMState *s)
99 {
100     int sci_level, pmsts;
101     int64_t expire_time;
102
103     pmsts = get_pmsts(s);
104     sci_level = (((pmsts & s->pmen) &
105                   (RTC_EN | PWRBTN_EN | GBL_EN | TMROF_EN)) != 0);
106     qemu_set_irq(s->irq, sci_level);
107     /* schedule a timer interruption if needed */
108     if ((s->pmen & TMROF_EN) && !(pmsts & TMROF_EN)) {
109         expire_time = muldiv64(s->tmr_overflow_time, ticks_per_sec, PM_FREQ);
110         qemu_mod_timer(s->tmr_timer, expire_time);
111     } else {
112         qemu_del_timer(s->tmr_timer);
113     }
114 }
115
116 static void pm_tmr_timer(void *opaque)
117 {
118     PIIX4PMState *s = opaque;
119     pm_update_sci(s);
120 }
121
122 static void pm_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
123 {
124     PIIX4PMState *s = opaque;
125     addr &= 0x3f;
126     switch(addr) {
127     case 0x00:
128         {
129             int64_t d;
130             int pmsts;
131             pmsts = get_pmsts(s);
132             if (pmsts & val & TMROF_EN) {
133                 /* if TMRSTS is reset, then compute the new overflow time */
134                 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
135                 s->tmr_overflow_time = (d + 0x800000LL) & ~0x7fffffLL;
136             }
137             s->pmsts &= ~val;
138             pm_update_sci(s);
139         }
140         break;
141     case 0x02:
142         s->pmen = val;
143         pm_update_sci(s);
144         break;
145     case 0x04:
146         {
147             int sus_typ;
148             s->pmcntrl = val & ~(SUS_EN);
149             if (val & SUS_EN) {
150                 /* change suspend type */
151                 sus_typ = (val >> 10) & 7;
152                 switch(sus_typ) {
153                 case 0: /* soft power off */
154                     qemu_system_shutdown_request();
155                     break;
156                 case 1:
157                     /* RSM_STS should be set on resume. Pretend that resume
158                        was caused by power button */
159                     s->pmsts |= (RSM_STS | PWRBTN_STS);
160                     qemu_system_reset_request();
161 #if defined(TARGET_I386)
162                     cmos_set_s3_resume();
163 #endif
164                 default:
165                     break;
166                 }
167             }
168         }
169         break;
170     default:
171         break;
172     }
173 #ifdef DEBUG
174     printf("PM writew port=0x%04x val=0x%04x\n", addr, val);
175 #endif
176 }
177
178 static uint32_t pm_ioport_readw(void *opaque, uint32_t addr)
179 {
180     PIIX4PMState *s = opaque;
181     uint32_t val;
182
183     addr &= 0x3f;
184     switch(addr) {
185     case 0x00:
186         val = get_pmsts(s);
187         break;
188     case 0x02:
189         val = s->pmen;
190         break;
191     case 0x04:
192         val = s->pmcntrl;
193         break;
194     default:
195         val = 0;
196         break;
197     }
198 #ifdef DEBUG
199     printf("PM readw port=0x%04x val=0x%04x\n", addr, val);
200 #endif
201     return val;
202 }
203
204 static void pm_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
205 {
206     //    PIIX4PMState *s = opaque;
207     addr &= 0x3f;
208 #ifdef DEBUG
209     printf("PM writel port=0x%04x val=0x%08x\n", addr, val);
210 #endif
211 }
212
213 static uint32_t pm_ioport_readl(void *opaque, uint32_t addr)
214 {
215     PIIX4PMState *s = opaque;
216     uint32_t val;
217
218     addr &= 0x3f;
219     switch(addr) {
220     case 0x08:
221         val = get_pmtmr(s);
222         break;
223     default:
224         val = 0;
225         break;
226     }
227 #ifdef DEBUG
228     printf("PM readl port=0x%04x val=0x%08x\n", addr, val);
229 #endif
230     return val;
231 }
232
233 static void pm_smi_writeb(void *opaque, uint32_t addr, uint32_t val)
234 {
235     PIIX4PMState *s = opaque;
236     addr &= 1;
237 #ifdef DEBUG
238     printf("pm_smi_writeb addr=0x%x val=0x%02x\n", addr, val);
239 #endif
240     if (addr == 0) {
241         s->apmc = val;
242
243         /* ACPI specs 3.0, 4.7.2.5 */
244         if (val == ACPI_ENABLE) {
245             s->pmcntrl |= SCI_EN;
246         } else if (val == ACPI_DISABLE) {
247             s->pmcntrl &= ~SCI_EN;
248         }
249
250         if (s->dev.config[0x5b] & (1 << 1)) {
251             cpu_interrupt(first_cpu, CPU_INTERRUPT_SMI);
252         }
253     } else {
254         s->apms = val;
255     }
256 }
257
258 static uint32_t pm_smi_readb(void *opaque, uint32_t addr)
259 {
260     PIIX4PMState *s = opaque;
261     uint32_t val;
262
263     addr &= 1;
264     if (addr == 0) {
265         val = s->apmc;
266     } else {
267         val = s->apms;
268     }
269 #ifdef DEBUG
270     printf("pm_smi_readb addr=0x%x val=0x%02x\n", addr, val);
271 #endif
272     return val;
273 }
274
275 static void acpi_dbg_writel(void *opaque, uint32_t addr, uint32_t val)
276 {
277 #if defined(DEBUG)
278     printf("ACPI: DBG: 0x%08x\n", val);
279 #endif
280 }
281
282 static void smb_transaction(PIIX4PMState *s)
283 {
284     uint8_t prot = (s->smb_ctl >> 2) & 0x07;
285     uint8_t read = s->smb_addr & 0x01;
286     uint8_t cmd = s->smb_cmd;
287     uint8_t addr = s->smb_addr >> 1;
288     i2c_bus *bus = s->smbus;
289
290 #ifdef DEBUG
291     printf("SMBus trans addr=0x%02x prot=0x%02x\n", addr, prot);
292 #endif
293     switch(prot) {
294     case 0x0:
295         smbus_quick_command(bus, addr, read);
296         break;
297     case 0x1:
298         if (read) {
299             s->smb_data0 = smbus_receive_byte(bus, addr);
300         } else {
301             smbus_send_byte(bus, addr, cmd);
302         }
303         break;
304     case 0x2:
305         if (read) {
306             s->smb_data0 = smbus_read_byte(bus, addr, cmd);
307         } else {
308             smbus_write_byte(bus, addr, cmd, s->smb_data0);
309         }
310         break;
311     case 0x3:
312         if (read) {
313             uint16_t val;
314             val = smbus_read_word(bus, addr, cmd);
315             s->smb_data0 = val;
316             s->smb_data1 = val >> 8;
317         } else {
318             smbus_write_word(bus, addr, cmd, (s->smb_data1 << 8) | s->smb_data0);
319         }
320         break;
321     case 0x5:
322         if (read) {
323             s->smb_data0 = smbus_read_block(bus, addr, cmd, s->smb_data);
324         } else {
325             smbus_write_block(bus, addr, cmd, s->smb_data, s->smb_data0);
326         }
327         break;
328     default:
329         goto error;
330     }
331     return;
332
333   error:
334     s->smb_stat |= 0x04;
335 }
336
337 static void smb_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
338 {
339     PIIX4PMState *s = opaque;
340     addr &= 0x3f;
341 #ifdef DEBUG
342     printf("SMB writeb port=0x%04x val=0x%02x\n", addr, val);
343 #endif
344     switch(addr) {
345     case SMBHSTSTS:
346         s->smb_stat = 0;
347         s->smb_index = 0;
348         break;
349     case SMBHSTCNT:
350         s->smb_ctl = val;
351         if (val & 0x40)
352             smb_transaction(s);
353         break;
354     case SMBHSTCMD:
355         s->smb_cmd = val;
356         break;
357     case SMBHSTADD:
358         s->smb_addr = val;
359         break;
360     case SMBHSTDAT0:
361         s->smb_data0 = val;
362         break;
363     case SMBHSTDAT1:
364         s->smb_data1 = val;
365         break;
366     case SMBBLKDAT:
367         s->smb_data[s->smb_index++] = val;
368         if (s->smb_index > 31)
369             s->smb_index = 0;
370         break;
371     default:
372         break;
373     }
374 }
375
376 static uint32_t smb_ioport_readb(void *opaque, uint32_t addr)
377 {
378     PIIX4PMState *s = opaque;
379     uint32_t val;
380
381     addr &= 0x3f;
382     switch(addr) {
383     case SMBHSTSTS:
384         val = s->smb_stat;
385         break;
386     case SMBHSTCNT:
387         s->smb_index = 0;
388         val = s->smb_ctl & 0x1f;
389         break;
390     case SMBHSTCMD:
391         val = s->smb_cmd;
392         break;
393     case SMBHSTADD:
394         val = s->smb_addr;
395         break;
396     case SMBHSTDAT0:
397         val = s->smb_data0;
398         break;
399     case SMBHSTDAT1:
400         val = s->smb_data1;
401         break;
402     case SMBBLKDAT:
403         val = s->smb_data[s->smb_index++];
404         if (s->smb_index > 31)
405             s->smb_index = 0;
406         break;
407     default:
408         val = 0;
409         break;
410     }
411 #ifdef DEBUG
412     printf("SMB readb port=0x%04x val=0x%02x\n", addr, val);
413 #endif
414     return val;
415 }
416
417 static void pm_io_space_update(PIIX4PMState *s)
418 {
419     uint32_t pm_io_base;
420
421     if (s->dev.config[0x80] & 1) {
422         pm_io_base = le32_to_cpu(*(uint32_t *)(s->dev.config + 0x40));
423         pm_io_base &= 0xffc0;
424
425         /* XXX: need to improve memory and ioport allocation */
426 #if defined(DEBUG)
427         printf("PM: mapping to 0x%x\n", pm_io_base);
428 #endif
429         register_ioport_write(pm_io_base, 64, 2, pm_ioport_writew, s);
430         register_ioport_read(pm_io_base, 64, 2, pm_ioport_readw, s);
431         register_ioport_write(pm_io_base, 64, 4, pm_ioport_writel, s);
432         register_ioport_read(pm_io_base, 64, 4, pm_ioport_readl, s);
433     }
434 }
435
436 static void pm_write_config(PCIDevice *d,
437                             uint32_t address, uint32_t val, int len)
438 {
439     pci_default_write_config(d, address, val, len);
440     if (address == 0x80)
441         pm_io_space_update((PIIX4PMState *)d);
442 }
443
444 static void pm_save(QEMUFile* f,void *opaque)
445 {
446     PIIX4PMState *s = opaque;
447
448     pci_device_save(&s->dev, f);
449
450     qemu_put_be16s(f, &s->pmsts);
451     qemu_put_be16s(f, &s->pmen);
452     qemu_put_be16s(f, &s->pmcntrl);
453     qemu_put_8s(f, &s->apmc);
454     qemu_put_8s(f, &s->apms);
455     qemu_put_timer(f, s->tmr_timer);
456     qemu_put_be64(f, s->tmr_overflow_time);
457 }
458
459 static int pm_load(QEMUFile* f,void* opaque,int version_id)
460 {
461     PIIX4PMState *s = opaque;
462     int ret;
463
464     if (version_id > 1)
465         return -EINVAL;
466
467     ret = pci_device_load(&s->dev, f);
468     if (ret < 0)
469         return ret;
470
471     qemu_get_be16s(f, &s->pmsts);
472     qemu_get_be16s(f, &s->pmen);
473     qemu_get_be16s(f, &s->pmcntrl);
474     qemu_get_8s(f, &s->apmc);
475     qemu_get_8s(f, &s->apms);
476     qemu_get_timer(f, s->tmr_timer);
477     s->tmr_overflow_time=qemu_get_be64(f);
478
479     pm_io_space_update(s);
480
481     return 0;
482 }
483
484 static void piix4_reset(void *opaque)
485 {
486     PIIX4PMState *s = opaque;
487     uint8_t *pci_conf = s->dev.config;
488
489     pci_conf[0x58] = 0;
490     pci_conf[0x59] = 0;
491     pci_conf[0x5a] = 0;
492     pci_conf[0x5b] = 0;
493
494     if (kvm_enabled()) {
495         /* Mark SMM as already inited (until KVM supports SMM). */
496         pci_conf[0x5B] = 0x02;
497     }
498 }
499
500 i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
501                        qemu_irq sci_irq)
502 {
503     PIIX4PMState *s;
504     uint8_t *pci_conf;
505
506     s = (PIIX4PMState *)pci_register_device(bus,
507                                          "PM", sizeof(PIIX4PMState),
508                                          devfn, NULL, pm_write_config);
509     pm_state = s;
510     pci_conf = s->dev.config;
511     pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL);
512     pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82371AB_3);
513     pci_conf[0x06] = 0x80;
514     pci_conf[0x07] = 0x02;
515     pci_conf[0x08] = 0x03; // revision number
516     pci_conf[0x09] = 0x00;
517     pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_OTHER);
518     pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
519     pci_conf[0x3d] = 0x01; // interrupt pin 1
520
521     pci_conf[0x40] = 0x01; /* PM io base read only bit */
522
523     register_ioport_write(0xb2, 2, 1, pm_smi_writeb, s);
524     register_ioport_read(0xb2, 2, 1, pm_smi_readb, s);
525
526     register_ioport_write(ACPI_DBG_IO_ADDR, 4, 4, acpi_dbg_writel, s);
527
528     if (kvm_enabled()) {
529         /* Mark SMM as already inited to prevent SMM from running.  KVM does not
530          * support SMM mode. */
531         pci_conf[0x5B] = 0x02;
532     }
533
534     /* XXX: which specification is used ? The i82731AB has different
535        mappings */
536     pci_conf[0x5f] = (parallel_hds[0] != NULL ? 0x80 : 0) | 0x10;
537     pci_conf[0x63] = 0x60;
538     pci_conf[0x67] = (serial_hds[0] != NULL ? 0x08 : 0) |
539         (serial_hds[1] != NULL ? 0x90 : 0);
540
541     pci_conf[0x90] = smb_io_base | 1;
542     pci_conf[0x91] = smb_io_base >> 8;
543     pci_conf[0xd2] = 0x09;
544     register_ioport_write(smb_io_base, 64, 1, smb_ioport_writeb, s);
545     register_ioport_read(smb_io_base, 64, 1, smb_ioport_readb, s);
546
547     s->tmr_timer = qemu_new_timer(vm_clock, pm_tmr_timer, s);
548
549     register_savevm("piix4_pm", 0, 1, pm_save, pm_load, s);
550
551     s->smbus = i2c_init_bus();
552     s->irq = sci_irq;
553     qemu_register_reset(piix4_reset, 0, s);
554
555     return s->smbus;
556 }
557
558 #if defined(TARGET_I386)
559 void qemu_system_powerdown(void)
560 {
561     if (!pm_state) {
562         qemu_system_shutdown_request();
563     } else if (pm_state->pmen & PWRBTN_EN) {
564         pm_state->pmsts |= PWRBTN_EN;
565         pm_update_sci(pm_state);
566     }
567 }
568 #endif
569
570 #define GPE_BASE 0xafe0
571 #define PCI_BASE 0xae00
572 #define PCI_EJ_BASE 0xae08
573
574 struct gpe_regs {
575     uint16_t sts; /* status */
576     uint16_t en;  /* enabled */
577 };
578
579 struct pci_status {
580     uint32_t up;
581     uint32_t down;
582 };
583
584 static struct gpe_regs gpe;
585 static struct pci_status pci0_status;
586
587 static uint32_t gpe_read_val(uint16_t val, uint32_t addr)
588 {
589     if (addr & 1)
590         return (val >> 8) & 0xff;
591     return val & 0xff;
592 }
593
594 static uint32_t gpe_readb(void *opaque, uint32_t addr)
595 {
596     uint32_t val = 0;
597     struct gpe_regs *g = opaque;
598     switch (addr) {
599         case GPE_BASE:
600         case GPE_BASE + 1:
601             val = gpe_read_val(g->sts, addr);
602             break;
603         case GPE_BASE + 2:
604         case GPE_BASE + 3:
605             val = gpe_read_val(g->en, addr);
606             break;
607         default:
608             break;
609     }
610
611 #if defined(DEBUG)
612     printf("gpe read %x == %x\n", addr, val);
613 #endif
614     return val;
615 }
616
617 static void gpe_write_val(uint16_t *cur, int addr, uint32_t val)
618 {
619     if (addr & 1)
620         *cur = (*cur & 0xff) | (val << 8);
621     else
622         *cur = (*cur & 0xff00) | (val & 0xff);
623 }
624
625 static void gpe_reset_val(uint16_t *cur, int addr, uint32_t val)
626 {
627     uint16_t x1, x0 = val & 0xff;
628     int shift = (addr & 1) ? 8 : 0;
629
630     x1 = (*cur >> shift) & 0xff;
631
632     x1 = x1 & ~x0;
633
634     *cur = (*cur & (0xff << (8 - shift))) | (x1 << shift);
635 }
636
637 static void gpe_writeb(void *opaque, uint32_t addr, uint32_t val)
638 {
639     struct gpe_regs *g = opaque;
640     switch (addr) {
641         case GPE_BASE:
642         case GPE_BASE + 1:
643             gpe_reset_val(&g->sts, addr, val);
644             break;
645         case GPE_BASE + 2:
646         case GPE_BASE + 3:
647             gpe_write_val(&g->en, addr, val);
648             break;
649         default:
650             break;
651    }
652
653 #if defined(DEBUG)
654     printf("gpe write %x <== %d\n", addr, val);
655 #endif
656 }
657
658 static uint32_t pcihotplug_read(void *opaque, uint32_t addr)
659 {
660     uint32_t val = 0;
661     struct pci_status *g = opaque;
662     switch (addr) {
663         case PCI_BASE:
664             val = g->up;
665             break;
666         case PCI_BASE + 4:
667             val = g->down;
668             break;
669         default:
670             break;
671     }
672
673 #if defined(DEBUG)
674     printf("pcihotplug read %x == %x\n", addr, val);
675 #endif
676     return val;
677 }
678
679 static void pcihotplug_write(void *opaque, uint32_t addr, uint32_t val)
680 {
681     struct pci_status *g = opaque;
682     switch (addr) {
683         case PCI_BASE:
684             g->up = val;
685             break;
686         case PCI_BASE + 4:
687             g->down = val;
688             break;
689    }
690
691 #if defined(DEBUG)
692     printf("pcihotplug write %x <== %d\n", addr, val);
693 #endif
694 }
695
696 static uint32_t pciej_read(void *opaque, uint32_t addr)
697 {
698 #if defined(DEBUG)
699     printf("pciej read %x\n", addr);
700 #endif
701     return 0;
702 }
703
704 static void pciej_write(void *opaque, uint32_t addr, uint32_t val)
705 {
706 #if defined (TARGET_I386)
707     int slot = ffs(val) - 1;
708
709     pci_device_hot_remove_success(0, slot);
710 #endif
711
712 #if defined(DEBUG)
713     printf("pciej write %x <== %d\n", addr, val);
714 #endif
715 }
716
717 void qemu_system_hot_add_init(void)
718 {
719     register_ioport_write(GPE_BASE, 4, 1, gpe_writeb, &gpe);
720     register_ioport_read(GPE_BASE, 4, 1,  gpe_readb, &gpe);
721
722     register_ioport_write(PCI_BASE, 8, 4, pcihotplug_write, &pci0_status);
723     register_ioport_read(PCI_BASE, 8, 4,  pcihotplug_read, &pci0_status);
724
725     register_ioport_write(PCI_EJ_BASE, 4, 4, pciej_write, NULL);
726     register_ioport_read(PCI_EJ_BASE, 4, 4,  pciej_read, NULL);
727 }
728
729 static void enable_device(struct pci_status *p, struct gpe_regs *g, int slot)
730 {
731     g->sts |= 2;
732     p->up |= (1 << slot);
733 }
734
735 static void disable_device(struct pci_status *p, struct gpe_regs *g, int slot)
736 {
737     g->sts |= 2;
738     p->down |= (1 << slot);
739 }
740
741 void qemu_system_device_hot_add(int bus, int slot, int state)
742 {
743     pci0_status.up = 0;
744     pci0_status.down = 0;
745     if (state)
746         enable_device(&pci0_status, &gpe, slot);
747     else
748         disable_device(&pci0_status, &gpe, slot);
749     if (gpe.en & 2) {
750         qemu_set_irq(pm_state->irq, 1);
751         qemu_set_irq(pm_state->irq, 0);
752     }
753 }
754
755 struct acpi_table_header
756 {
757     char signature [4];    /* ACPI signature (4 ASCII characters) */
758     uint32_t length;          /* Length of table, in bytes, including header */
759     uint8_t revision;         /* ACPI Specification minor version # */
760     uint8_t checksum;         /* To make sum of entire table == 0 */
761     char oem_id [6];       /* OEM identification */
762     char oem_table_id [8]; /* OEM table identification */
763     uint32_t oem_revision;    /* OEM revision number */
764     char asl_compiler_id [4]; /* ASL compiler vendor ID */
765     uint32_t asl_compiler_revision; /* ASL compiler revision number */
766 } __attribute__((packed));
767
768 char *acpi_tables;
769 size_t acpi_tables_len;
770
771 static int acpi_checksum(const uint8_t *data, int len)
772 {
773     int sum, i;
774     sum = 0;
775     for(i = 0; i < len; i++)
776         sum += data[i];
777     return (-sum) & 0xff;
778 }
779
780 int acpi_table_add(const char *t)
781 {
782     static const char *dfl_id = "QEMUQEMU";
783     char buf[1024], *p, *f;
784     struct acpi_table_header acpi_hdr;
785     unsigned long val;
786     size_t off;
787
788     memset(&acpi_hdr, 0, sizeof(acpi_hdr));
789   
790     if (get_param_value(buf, sizeof(buf), "sig", t)) {
791         strncpy(acpi_hdr.signature, buf, 4);
792     } else {
793         strncpy(acpi_hdr.signature, dfl_id, 4);
794     }
795     if (get_param_value(buf, sizeof(buf), "rev", t)) {
796         val = strtoul(buf, &p, 10);
797         if (val > 255 || *p != '\0')
798             goto out;
799     } else {
800         val = 1;
801     }
802     acpi_hdr.revision = (int8_t)val;
803
804     if (get_param_value(buf, sizeof(buf), "oem_id", t)) {
805         strncpy(acpi_hdr.oem_id, buf, 6);
806     } else {
807         strncpy(acpi_hdr.oem_id, dfl_id, 6);
808     }
809
810     if (get_param_value(buf, sizeof(buf), "oem_table_id", t)) {
811         strncpy(acpi_hdr.oem_table_id, buf, 8);
812     } else {
813         strncpy(acpi_hdr.oem_table_id, dfl_id, 8);
814     }
815
816     if (get_param_value(buf, sizeof(buf), "oem_rev", t)) {
817         val = strtol(buf, &p, 10);
818         if(*p != '\0')
819             goto out;
820     } else {
821         val = 1;
822     }
823     acpi_hdr.oem_revision = cpu_to_le32(val);
824
825     if (get_param_value(buf, sizeof(buf), "asl_compiler_id", t)) {
826         strncpy(acpi_hdr.asl_compiler_id, buf, 4);
827     } else {
828         strncpy(acpi_hdr.asl_compiler_id, dfl_id, 4);
829     }
830
831     if (get_param_value(buf, sizeof(buf), "asl_compiler_rev", t)) {
832         val = strtol(buf, &p, 10);
833         if(*p != '\0')
834             goto out;
835     } else {
836         val = 1;
837     }
838     acpi_hdr.asl_compiler_revision = cpu_to_le32(val);
839     
840     if (!get_param_value(buf, sizeof(buf), "data", t)) {
841          buf[0] = '\0';
842     }
843
844     acpi_hdr.length = sizeof(acpi_hdr);
845
846     f = buf;
847     while (buf[0]) {
848         struct stat s;
849         char *n = strchr(f, ':');
850         if (n)
851             *n = '\0';
852         if(stat(f, &s) < 0) {
853             fprintf(stderr, "Can't stat file '%s': %s\n", f, strerror(errno));
854             goto out;
855         }
856         acpi_hdr.length += s.st_size;
857         if (!n)
858             break;
859         *n = ':';
860         f = n + 1;
861     }
862
863     if (!acpi_tables) {
864         acpi_tables_len = sizeof(uint16_t);
865         acpi_tables = qemu_mallocz(acpi_tables_len);
866     }
867     p = acpi_tables + acpi_tables_len;
868     acpi_tables_len += sizeof(uint16_t) + acpi_hdr.length;
869     acpi_tables = qemu_realloc(acpi_tables, acpi_tables_len);
870
871     acpi_hdr.length = cpu_to_le32(acpi_hdr.length);
872     *(uint16_t*)p = acpi_hdr.length;
873     p += sizeof(uint16_t);
874     memcpy(p, &acpi_hdr, sizeof(acpi_hdr));
875     off = sizeof(acpi_hdr);
876
877     f = buf;
878     while (buf[0]) {
879         struct stat s;
880         int fd;
881         char *n = strchr(f, ':');
882         if (n)
883             *n = '\0';
884         fd = open(f, O_RDONLY);
885
886         if(fd < 0)
887             goto out;
888         if(fstat(fd, &s) < 0) {
889             close(fd);
890             goto out;
891         }
892
893         do {
894             int r;
895             r = read(fd, p + off, s.st_size);
896             if (r > 0) {
897                 off += r;
898                 s.st_size -= r;
899             } else if ((r < 0 && errno != EINTR) || r == 0) {
900                 close(fd);
901                 goto out;
902             }
903         } while(s.st_size);
904
905         close(fd);
906         if (!n)
907             break;
908         f = n + 1;
909     }
910
911     ((struct acpi_table_header*)p)->checksum = acpi_checksum((uint8_t*)p, off);
912     /* increase number of tables */
913     (*(uint16_t*)acpi_tables) =
914             cpu_to_le32(le32_to_cpu(*(uint16_t*)acpi_tables) + 1);
915     return 0;
916 out:
917     if (acpi_tables) {
918         free(acpi_tables);
919         acpi_tables = NULL;
920     }
921     return -1;
922 }