4 * Copyright (c) 2006 Fabrice Bellard
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.
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.
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/>
21 #include "qemu-timer.h"
29 /* i82731AB (PIIX4) compatible power management function */
30 #define PM_FREQ 3579545
32 #define ACPI_DBG_IO_ADDR 0xb044
34 typedef struct PIIX4PMState {
42 int64_t tmr_overflow_time;
55 #define RSM_STS (1 << 15)
56 #define PWRBTN_STS (1 << 8)
57 #define RTC_EN (1 << 10)
58 #define PWRBTN_EN (1 << 8)
59 #define GBL_EN (1 << 5)
60 #define TMROF_EN (1 << 0)
62 #define SCI_EN (1 << 0)
64 #define SUS_EN (1 << 13)
66 #define ACPI_ENABLE 0xf1
67 #define ACPI_DISABLE 0xf0
69 #define SMBHSTSTS 0x00
70 #define SMBHSTCNT 0x02
71 #define SMBHSTCMD 0x03
72 #define SMBHSTADD 0x04
73 #define SMBHSTDAT0 0x05
74 #define SMBHSTDAT1 0x06
75 #define SMBBLKDAT 0x07
77 static PIIX4PMState *pm_state;
79 static uint32_t get_pmtmr(PIIX4PMState *s)
82 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
86 static int get_pmsts(PIIX4PMState *s)
91 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
92 if (d >= s->tmr_overflow_time)
97 static void pm_update_sci(PIIX4PMState *s)
102 pmsts = get_pmsts(s);
103 sci_level = (((pmsts & s->pmen) &
104 (RTC_EN | PWRBTN_EN | GBL_EN | TMROF_EN)) != 0);
105 qemu_set_irq(s->irq, sci_level);
106 /* schedule a timer interruption if needed */
107 if ((s->pmen & TMROF_EN) && !(pmsts & TMROF_EN)) {
108 expire_time = muldiv64(s->tmr_overflow_time, ticks_per_sec, PM_FREQ);
109 qemu_mod_timer(s->tmr_timer, expire_time);
111 qemu_del_timer(s->tmr_timer);
115 static void pm_tmr_timer(void *opaque)
117 PIIX4PMState *s = opaque;
121 static void pm_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
123 PIIX4PMState *s = opaque;
130 pmsts = get_pmsts(s);
131 if (pmsts & val & TMROF_EN) {
132 /* if TMRSTS is reset, then compute the new overflow time */
133 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
134 s->tmr_overflow_time = (d + 0x800000LL) & ~0x7fffffLL;
147 s->pmcntrl = val & ~(SUS_EN);
149 /* change suspend type */
150 sus_typ = (val >> 10) & 7;
152 case 0: /* soft power off */
153 qemu_system_shutdown_request();
156 /* RSM_STS should be set on resume. Pretend that resume
157 was caused by power button */
158 s->pmsts |= (RSM_STS | PWRBTN_STS);
159 qemu_system_reset_request();
160 #if defined(TARGET_I386)
161 cmos_set_s3_resume();
173 printf("PM writew port=0x%04x val=0x%04x\n", addr, val);
177 static uint32_t pm_ioport_readw(void *opaque, uint32_t addr)
179 PIIX4PMState *s = opaque;
198 printf("PM readw port=0x%04x val=0x%04x\n", addr, val);
203 static void pm_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
205 // PIIX4PMState *s = opaque;
208 printf("PM writel port=0x%04x val=0x%08x\n", addr, val);
212 static uint32_t pm_ioport_readl(void *opaque, uint32_t addr)
214 PIIX4PMState *s = opaque;
227 printf("PM readl port=0x%04x val=0x%08x\n", addr, val);
232 static void pm_smi_writeb(void *opaque, uint32_t addr, uint32_t val)
234 PIIX4PMState *s = opaque;
237 printf("pm_smi_writeb addr=0x%x val=0x%02x\n", addr, val);
242 /* ACPI specs 3.0, 4.7.2.5 */
243 if (val == ACPI_ENABLE) {
244 s->pmcntrl |= SCI_EN;
245 } else if (val == ACPI_DISABLE) {
246 s->pmcntrl &= ~SCI_EN;
249 if (s->dev.config[0x5b] & (1 << 1)) {
250 cpu_interrupt(first_cpu, CPU_INTERRUPT_SMI);
257 static uint32_t pm_smi_readb(void *opaque, uint32_t addr)
259 PIIX4PMState *s = opaque;
269 printf("pm_smi_readb addr=0x%x val=0x%02x\n", addr, val);
274 static void acpi_dbg_writel(void *opaque, uint32_t addr, uint32_t val)
277 printf("ACPI: DBG: 0x%08x\n", val);
281 static void smb_transaction(PIIX4PMState *s)
283 uint8_t prot = (s->smb_ctl >> 2) & 0x07;
284 uint8_t read = s->smb_addr & 0x01;
285 uint8_t cmd = s->smb_cmd;
286 uint8_t addr = s->smb_addr >> 1;
287 i2c_bus *bus = s->smbus;
290 printf("SMBus trans addr=0x%02x prot=0x%02x\n", addr, prot);
294 smbus_quick_command(bus, addr, read);
298 s->smb_data0 = smbus_receive_byte(bus, addr);
300 smbus_send_byte(bus, addr, cmd);
305 s->smb_data0 = smbus_read_byte(bus, addr, cmd);
307 smbus_write_byte(bus, addr, cmd, s->smb_data0);
313 val = smbus_read_word(bus, addr, cmd);
315 s->smb_data1 = val >> 8;
317 smbus_write_word(bus, addr, cmd, (s->smb_data1 << 8) | s->smb_data0);
322 s->smb_data0 = smbus_read_block(bus, addr, cmd, s->smb_data);
324 smbus_write_block(bus, addr, cmd, s->smb_data, s->smb_data0);
336 static void smb_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
338 PIIX4PMState *s = opaque;
341 printf("SMB writeb port=0x%04x val=0x%02x\n", addr, val);
366 s->smb_data[s->smb_index++] = val;
367 if (s->smb_index > 31)
375 static uint32_t smb_ioport_readb(void *opaque, uint32_t addr)
377 PIIX4PMState *s = opaque;
387 val = s->smb_ctl & 0x1f;
402 val = s->smb_data[s->smb_index++];
403 if (s->smb_index > 31)
411 printf("SMB readb port=0x%04x val=0x%02x\n", addr, val);
416 static void pm_io_space_update(PIIX4PMState *s)
420 if (s->dev.config[0x80] & 1) {
421 pm_io_base = le32_to_cpu(*(uint32_t *)(s->dev.config + 0x40));
422 pm_io_base &= 0xffc0;
424 /* XXX: need to improve memory and ioport allocation */
426 printf("PM: mapping to 0x%x\n", pm_io_base);
428 register_ioport_write(pm_io_base, 64, 2, pm_ioport_writew, s);
429 register_ioport_read(pm_io_base, 64, 2, pm_ioport_readw, s);
430 register_ioport_write(pm_io_base, 64, 4, pm_ioport_writel, s);
431 register_ioport_read(pm_io_base, 64, 4, pm_ioport_readl, s);
435 static void pm_write_config(PCIDevice *d,
436 uint32_t address, uint32_t val, int len)
438 pci_default_write_config(d, address, val, len);
440 pm_io_space_update((PIIX4PMState *)d);
443 static void pm_save(QEMUFile* f,void *opaque)
445 PIIX4PMState *s = opaque;
447 pci_device_save(&s->dev, f);
449 qemu_put_be16s(f, &s->pmsts);
450 qemu_put_be16s(f, &s->pmen);
451 qemu_put_be16s(f, &s->pmcntrl);
452 qemu_put_8s(f, &s->apmc);
453 qemu_put_8s(f, &s->apms);
454 qemu_put_timer(f, s->tmr_timer);
455 qemu_put_be64(f, s->tmr_overflow_time);
458 static int pm_load(QEMUFile* f,void* opaque,int version_id)
460 PIIX4PMState *s = opaque;
466 ret = pci_device_load(&s->dev, f);
470 qemu_get_be16s(f, &s->pmsts);
471 qemu_get_be16s(f, &s->pmen);
472 qemu_get_be16s(f, &s->pmcntrl);
473 qemu_get_8s(f, &s->apmc);
474 qemu_get_8s(f, &s->apms);
475 qemu_get_timer(f, s->tmr_timer);
476 s->tmr_overflow_time=qemu_get_be64(f);
478 pm_io_space_update(s);
483 static void piix4_reset(void *opaque)
485 PIIX4PMState *s = opaque;
486 uint8_t *pci_conf = s->dev.config;
494 /* Mark SMM as already inited (until KVM supports SMM). */
495 pci_conf[0x5B] = 0x02;
499 i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
505 s = (PIIX4PMState *)pci_register_device(bus,
506 "PM", sizeof(PIIX4PMState),
507 devfn, NULL, pm_write_config);
509 pci_conf = s->dev.config;
510 pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL);
511 pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82371AB_3);
512 pci_conf[0x06] = 0x80;
513 pci_conf[0x07] = 0x02;
514 pci_conf[0x08] = 0x03; // revision number
515 pci_conf[0x09] = 0x00;
516 pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_OTHER);
517 pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
518 pci_conf[0x3d] = 0x01; // interrupt pin 1
520 pci_conf[0x40] = 0x01; /* PM io base read only bit */
522 register_ioport_write(0xb2, 2, 1, pm_smi_writeb, s);
523 register_ioport_read(0xb2, 2, 1, pm_smi_readb, s);
525 register_ioport_write(ACPI_DBG_IO_ADDR, 4, 4, acpi_dbg_writel, s);
528 /* Mark SMM as already inited to prevent SMM from running. KVM does not
529 * support SMM mode. */
530 pci_conf[0x5B] = 0x02;
533 /* XXX: which specification is used ? The i82731AB has different
535 pci_conf[0x5f] = (parallel_hds[0] != NULL ? 0x80 : 0) | 0x10;
536 pci_conf[0x63] = 0x60;
537 pci_conf[0x67] = (serial_hds[0] != NULL ? 0x08 : 0) |
538 (serial_hds[1] != NULL ? 0x90 : 0);
540 pci_conf[0x90] = smb_io_base | 1;
541 pci_conf[0x91] = smb_io_base >> 8;
542 pci_conf[0xd2] = 0x09;
543 register_ioport_write(smb_io_base, 64, 1, smb_ioport_writeb, s);
544 register_ioport_read(smb_io_base, 64, 1, smb_ioport_readb, s);
546 s->tmr_timer = qemu_new_timer(vm_clock, pm_tmr_timer, s);
548 register_savevm("piix4_pm", 0, 1, pm_save, pm_load, s);
550 s->smbus = i2c_init_bus(NULL, "i2c");
552 qemu_register_reset(piix4_reset, s);
557 #if defined(TARGET_I386)
558 void qemu_system_powerdown(void)
561 qemu_system_shutdown_request();
562 } else if (pm_state->pmen & PWRBTN_EN) {
563 pm_state->pmsts |= PWRBTN_EN;
564 pm_update_sci(pm_state);
569 #define GPE_BASE 0xafe0
570 #define PCI_BASE 0xae00
571 #define PCI_EJ_BASE 0xae08
574 uint16_t sts; /* status */
575 uint16_t en; /* enabled */
583 static struct gpe_regs gpe;
584 static struct pci_status pci0_status;
586 static uint32_t gpe_read_val(uint16_t val, uint32_t addr)
589 return (val >> 8) & 0xff;
593 static uint32_t gpe_readb(void *opaque, uint32_t addr)
596 struct gpe_regs *g = opaque;
600 val = gpe_read_val(g->sts, addr);
604 val = gpe_read_val(g->en, addr);
611 printf("gpe read %x == %x\n", addr, val);
616 static void gpe_write_val(uint16_t *cur, int addr, uint32_t val)
619 *cur = (*cur & 0xff) | (val << 8);
621 *cur = (*cur & 0xff00) | (val & 0xff);
624 static void gpe_reset_val(uint16_t *cur, int addr, uint32_t val)
626 uint16_t x1, x0 = val & 0xff;
627 int shift = (addr & 1) ? 8 : 0;
629 x1 = (*cur >> shift) & 0xff;
633 *cur = (*cur & (0xff << (8 - shift))) | (x1 << shift);
636 static void gpe_writeb(void *opaque, uint32_t addr, uint32_t val)
638 struct gpe_regs *g = opaque;
642 gpe_reset_val(&g->sts, addr, val);
646 gpe_write_val(&g->en, addr, val);
653 printf("gpe write %x <== %d\n", addr, val);
657 static uint32_t pcihotplug_read(void *opaque, uint32_t addr)
660 struct pci_status *g = opaque;
673 printf("pcihotplug read %x == %x\n", addr, val);
678 static void pcihotplug_write(void *opaque, uint32_t addr, uint32_t val)
680 struct pci_status *g = opaque;
691 printf("pcihotplug write %x <== %d\n", addr, val);
695 static uint32_t pciej_read(void *opaque, uint32_t addr)
698 printf("pciej read %x\n", addr);
703 static void pciej_write(void *opaque, uint32_t addr, uint32_t val)
705 #if defined (TARGET_I386)
706 int slot = ffs(val) - 1;
708 pci_device_hot_remove_success(0, slot);
712 printf("pciej write %x <== %d\n", addr, val);
716 static void piix4_device_hot_add(int bus, int slot, int state);
718 void piix4_acpi_system_hot_add_init(void)
720 register_ioport_write(GPE_BASE, 4, 1, gpe_writeb, &gpe);
721 register_ioport_read(GPE_BASE, 4, 1, gpe_readb, &gpe);
723 register_ioport_write(PCI_BASE, 8, 4, pcihotplug_write, &pci0_status);
724 register_ioport_read(PCI_BASE, 8, 4, pcihotplug_read, &pci0_status);
726 register_ioport_write(PCI_EJ_BASE, 4, 4, pciej_write, NULL);
727 register_ioport_read(PCI_EJ_BASE, 4, 4, pciej_read, NULL);
729 qemu_system_device_hot_add_register(piix4_device_hot_add);
732 static void enable_device(struct pci_status *p, struct gpe_regs *g, int slot)
735 p->up |= (1 << slot);
738 static void disable_device(struct pci_status *p, struct gpe_regs *g, int slot)
741 p->down |= (1 << slot);
744 static void piix4_device_hot_add(int bus, int slot, int state)
747 pci0_status.down = 0;
749 enable_device(&pci0_status, &gpe, slot);
751 disable_device(&pci0_status, &gpe, slot);
753 qemu_set_irq(pm_state->irq, 1);
754 qemu_set_irq(pm_state->irq, 0);
758 static qemu_system_device_hot_add_t device_hot_add_callback;
759 void qemu_system_device_hot_add_register(qemu_system_device_hot_add_t callback)
761 device_hot_add_callback = callback;
764 void qemu_system_device_hot_add(int pcibus, int slot, int state)
766 if (device_hot_add_callback)
767 device_hot_add_callback(pcibus, slot, state);
770 struct acpi_table_header
772 char signature [4]; /* ACPI signature (4 ASCII characters) */
773 uint32_t length; /* Length of table, in bytes, including header */
774 uint8_t revision; /* ACPI Specification minor version # */
775 uint8_t checksum; /* To make sum of entire table == 0 */
776 char oem_id [6]; /* OEM identification */
777 char oem_table_id [8]; /* OEM table identification */
778 uint32_t oem_revision; /* OEM revision number */
779 char asl_compiler_id [4]; /* ASL compiler vendor ID */
780 uint32_t asl_compiler_revision; /* ASL compiler revision number */
781 } __attribute__((packed));
784 size_t acpi_tables_len;
786 static int acpi_checksum(const uint8_t *data, int len)
790 for(i = 0; i < len; i++)
792 return (-sum) & 0xff;
795 int acpi_table_add(const char *t)
797 static const char *dfl_id = "QEMUQEMU";
798 char buf[1024], *p, *f;
799 struct acpi_table_header acpi_hdr;
803 memset(&acpi_hdr, 0, sizeof(acpi_hdr));
805 if (get_param_value(buf, sizeof(buf), "sig", t)) {
806 strncpy(acpi_hdr.signature, buf, 4);
808 strncpy(acpi_hdr.signature, dfl_id, 4);
810 if (get_param_value(buf, sizeof(buf), "rev", t)) {
811 val = strtoul(buf, &p, 10);
812 if (val > 255 || *p != '\0')
817 acpi_hdr.revision = (int8_t)val;
819 if (get_param_value(buf, sizeof(buf), "oem_id", t)) {
820 strncpy(acpi_hdr.oem_id, buf, 6);
822 strncpy(acpi_hdr.oem_id, dfl_id, 6);
825 if (get_param_value(buf, sizeof(buf), "oem_table_id", t)) {
826 strncpy(acpi_hdr.oem_table_id, buf, 8);
828 strncpy(acpi_hdr.oem_table_id, dfl_id, 8);
831 if (get_param_value(buf, sizeof(buf), "oem_rev", t)) {
832 val = strtol(buf, &p, 10);
838 acpi_hdr.oem_revision = cpu_to_le32(val);
840 if (get_param_value(buf, sizeof(buf), "asl_compiler_id", t)) {
841 strncpy(acpi_hdr.asl_compiler_id, buf, 4);
843 strncpy(acpi_hdr.asl_compiler_id, dfl_id, 4);
846 if (get_param_value(buf, sizeof(buf), "asl_compiler_rev", t)) {
847 val = strtol(buf, &p, 10);
853 acpi_hdr.asl_compiler_revision = cpu_to_le32(val);
855 if (!get_param_value(buf, sizeof(buf), "data", t)) {
859 acpi_hdr.length = sizeof(acpi_hdr);
864 char *n = strchr(f, ':');
867 if(stat(f, &s) < 0) {
868 fprintf(stderr, "Can't stat file '%s': %s\n", f, strerror(errno));
871 acpi_hdr.length += s.st_size;
879 acpi_tables_len = sizeof(uint16_t);
880 acpi_tables = qemu_mallocz(acpi_tables_len);
882 p = acpi_tables + acpi_tables_len;
883 acpi_tables_len += sizeof(uint16_t) + acpi_hdr.length;
884 acpi_tables = qemu_realloc(acpi_tables, acpi_tables_len);
886 acpi_hdr.length = cpu_to_le32(acpi_hdr.length);
887 *(uint16_t*)p = acpi_hdr.length;
888 p += sizeof(uint16_t);
889 memcpy(p, &acpi_hdr, sizeof(acpi_hdr));
890 off = sizeof(acpi_hdr);
896 char *n = strchr(f, ':');
899 fd = open(f, O_RDONLY);
903 if(fstat(fd, &s) < 0) {
910 r = read(fd, p + off, s.st_size);
914 } else if ((r < 0 && errno != EINTR) || r == 0) {
926 ((struct acpi_table_header*)p)->checksum = acpi_checksum((uint8_t*)p, off);
927 /* increase number of tables */
928 (*(uint16_t*)acpi_tables) =
929 cpu_to_le32(le32_to_cpu(*(uint16_t*)acpi_tables) + 1);