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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /* i82731AB (PIIX4) compatible power management function */
24 #define PM_FREQ 3579545
26 #define ACPI_DBG_IO_ADDR 0xb044
28 typedef struct PIIX4PMState
{
36 int64_t tmr_overflow_time
;
48 #define RTC_EN (1 << 10)
49 #define PWRBTN_EN (1 << 8)
50 #define GBL_EN (1 << 5)
51 #define TMROF_EN (1 << 0)
53 #define SCI_EN (1 << 0)
55 #define SUS_EN (1 << 13)
57 #define ACPI_ENABLE 0xf1
58 #define ACPI_DISABLE 0xf0
60 #define SMBHSTSTS 0x00
61 #define SMBHSTCNT 0x02
62 #define SMBHSTCMD 0x03
63 #define SMBHSTADD 0x04
64 #define SMBHSTDAT0 0x05
65 #define SMBHSTDAT1 0x06
66 #define SMBBLKDAT 0x07
68 static uint32_t get_pmtmr(PIIX4PMState
*s
)
71 d
= muldiv64(qemu_get_clock(vm_clock
), PM_FREQ
, ticks_per_sec
);
75 static int get_pmsts(PIIX4PMState
*s
)
80 d
= muldiv64(qemu_get_clock(vm_clock
), PM_FREQ
, ticks_per_sec
);
81 if (d
>= s
->tmr_overflow_time
)
86 static void pm_update_sci(PIIX4PMState
*s
)
92 sci_level
= (((pmsts
& s
->pmen
) &
93 (RTC_EN
| PWRBTN_EN
| GBL_EN
| TMROF_EN
)) != 0);
94 qemu_set_irq(s
->dev
.irq
[0], sci_level
);
95 /* schedule a timer interruption if needed */
96 if ((s
->pmen
& TMROF_EN
) && !(pmsts
& TMROF_EN
)) {
97 expire_time
= muldiv64(s
->tmr_overflow_time
, ticks_per_sec
, PM_FREQ
);
98 qemu_mod_timer(s
->tmr_timer
, expire_time
);
100 qemu_del_timer(s
->tmr_timer
);
104 static void pm_tmr_timer(void *opaque
)
106 PIIX4PMState
*s
= opaque
;
110 static void pm_ioport_writew(void *opaque
, uint32_t addr
, uint32_t val
)
112 PIIX4PMState
*s
= opaque
;
119 pmsts
= get_pmsts(s
);
120 if (pmsts
& val
& TMROF_EN
) {
121 /* if TMRSTS is reset, then compute the new overflow time */
122 d
= muldiv64(qemu_get_clock(vm_clock
), PM_FREQ
, ticks_per_sec
);
123 s
->tmr_overflow_time
= (d
+ 0x800000LL
) & ~0x7fffffLL
;
136 s
->pmcntrl
= val
& ~(SUS_EN
);
138 /* change suspend type */
139 sus_typ
= (val
>> 10) & 3;
141 case 0: /* soft power off */
142 qemu_system_shutdown_request();
154 printf("PM writew port=0x%04x val=0x%04x\n", addr
, val
);
158 static uint32_t pm_ioport_readw(void *opaque
, uint32_t addr
)
160 PIIX4PMState
*s
= opaque
;
179 printf("PM readw port=0x%04x val=0x%04x\n", addr
, val
);
184 static void pm_ioport_writel(void *opaque
, uint32_t addr
, uint32_t val
)
186 // PIIX4PMState *s = opaque;
189 printf("PM writel port=0x%04x val=0x%08x\n", addr
, val
);
193 static uint32_t pm_ioport_readl(void *opaque
, uint32_t addr
)
195 PIIX4PMState
*s
= opaque
;
208 printf("PM readl port=0x%04x val=0x%08x\n", addr
, val
);
213 static void pm_smi_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
215 PIIX4PMState
*s
= opaque
;
218 printf("pm_smi_writeb addr=0x%x val=0x%02x\n", addr
, val
);
223 /* ACPI specs 3.0, 4.7.2.5 */
224 if (val
== ACPI_ENABLE
) {
225 s
->pmcntrl
|= SCI_EN
;
226 } else if (val
== ACPI_DISABLE
) {
227 s
->pmcntrl
&= ~SCI_EN
;
230 if (s
->dev
.config
[0x5b] & (1 << 1)) {
231 cpu_interrupt(first_cpu
, CPU_INTERRUPT_SMI
);
238 static uint32_t pm_smi_readb(void *opaque
, uint32_t addr
)
240 PIIX4PMState
*s
= opaque
;
250 printf("pm_smi_readb addr=0x%x val=0x%02x\n", addr
, val
);
255 static void acpi_dbg_writel(void *opaque
, uint32_t addr
, uint32_t val
)
258 printf("ACPI: DBG: 0x%08x\n", val
);
262 static void smb_transaction(PIIX4PMState
*s
)
264 uint8_t prot
= (s
->smb_ctl
>> 2) & 0x07;
265 uint8_t read
= s
->smb_addr
& 0x01;
266 uint8_t cmd
= s
->smb_cmd
;
267 uint8_t addr
= s
->smb_addr
>> 1;
268 i2c_bus
*bus
= s
->smbus
;
271 printf("SMBus trans addr=0x%02x prot=0x%02x\n", addr
, prot
);
275 smbus_quick_command(bus
, addr
, read
);
279 s
->smb_data0
= smbus_receive_byte(bus
, addr
);
281 smbus_send_byte(bus
, addr
, cmd
);
286 s
->smb_data0
= smbus_read_byte(bus
, addr
, cmd
);
288 smbus_write_byte(bus
, addr
, cmd
, s
->smb_data0
);
294 val
= smbus_read_word(bus
, addr
, cmd
);
296 s
->smb_data1
= val
>> 8;
298 smbus_write_word(bus
, addr
, cmd
, (s
->smb_data1
<< 8) | s
->smb_data0
);
303 s
->smb_data0
= smbus_read_block(bus
, addr
, cmd
, s
->smb_data
);
305 smbus_write_block(bus
, addr
, cmd
, s
->smb_data
, s
->smb_data0
);
317 static void smb_ioport_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
319 PIIX4PMState
*s
= opaque
;
322 printf("SMB writeb port=0x%04x val=0x%02x\n", addr
, val
);
347 s
->smb_data
[s
->smb_index
++] = val
;
348 if (s
->smb_index
> 31)
356 static uint32_t smb_ioport_readb(void *opaque
, uint32_t addr
)
358 PIIX4PMState
*s
= opaque
;
368 val
= s
->smb_ctl
& 0x1f;
383 val
= s
->smb_data
[s
->smb_index
++];
384 if (s
->smb_index
> 31)
392 printf("SMB readb port=0x%04x val=0x%02x\n", addr
, val
);
397 static void pm_io_space_update(PIIX4PMState
*s
)
401 if (s
->dev
.config
[0x80] & 1) {
402 pm_io_base
= le32_to_cpu(*(uint32_t *)(s
->dev
.config
+ 0x40));
403 pm_io_base
&= 0xffc0;
405 /* XXX: need to improve memory and ioport allocation */
407 printf("PM: mapping to 0x%x\n", pm_io_base
);
409 register_ioport_write(pm_io_base
, 64, 2, pm_ioport_writew
, s
);
410 register_ioport_read(pm_io_base
, 64, 2, pm_ioport_readw
, s
);
411 register_ioport_write(pm_io_base
, 64, 4, pm_ioport_writel
, s
);
412 register_ioport_read(pm_io_base
, 64, 4, pm_ioport_readl
, s
);
416 static void pm_write_config(PCIDevice
*d
,
417 uint32_t address
, uint32_t val
, int len
)
419 pci_default_write_config(d
, address
, val
, len
);
421 pm_io_space_update((PIIX4PMState
*)d
);
424 static void pm_save(QEMUFile
* f
,void *opaque
)
426 PIIX4PMState
*s
= opaque
;
428 pci_device_save(&s
->dev
, f
);
430 qemu_put_be16s(f
, &s
->pmsts
);
431 qemu_put_be16s(f
, &s
->pmen
);
432 qemu_put_be16s(f
, &s
->pmcntrl
);
433 qemu_put_8s(f
, &s
->apmc
);
434 qemu_put_8s(f
, &s
->apms
);
435 qemu_put_timer(f
, s
->tmr_timer
);
436 qemu_put_be64s(f
, &s
->tmr_overflow_time
);
439 static int pm_load(QEMUFile
* f
,void* opaque
,int version_id
)
441 PIIX4PMState
*s
= opaque
;
447 ret
= pci_device_load(&s
->dev
, f
);
451 qemu_get_be16s(f
, &s
->pmsts
);
452 qemu_get_be16s(f
, &s
->pmen
);
453 qemu_get_be16s(f
, &s
->pmcntrl
);
454 qemu_get_8s(f
, &s
->apmc
);
455 qemu_get_8s(f
, &s
->apms
);
456 qemu_get_timer(f
, s
->tmr_timer
);
457 qemu_get_be64s(f
, &s
->tmr_overflow_time
);
459 pm_io_space_update(s
);
464 i2c_bus
*piix4_pm_init(PCIBus
*bus
, int devfn
, uint32_t smb_io_base
)
469 s
= (PIIX4PMState
*)pci_register_device(bus
,
470 "PM", sizeof(PIIX4PMState
),
471 devfn
, NULL
, pm_write_config
);
472 pci_conf
= s
->dev
.config
;
473 pci_conf
[0x00] = 0x86;
474 pci_conf
[0x01] = 0x80;
475 pci_conf
[0x02] = 0x13;
476 pci_conf
[0x03] = 0x71;
477 pci_conf
[0x06] = 0x80;
478 pci_conf
[0x07] = 0x02;
479 pci_conf
[0x08] = 0x00; // revision number
480 pci_conf
[0x09] = 0x00;
481 pci_conf
[0x0a] = 0x80; // other bridge device
482 pci_conf
[0x0b] = 0x06; // bridge device
483 pci_conf
[0x0e] = 0x00; // header_type
484 pci_conf
[0x3d] = 0x01; // interrupt pin 1
486 pci_conf
[0x40] = 0x01; /* PM io base read only bit */
488 register_ioport_write(0xb2, 2, 1, pm_smi_writeb
, s
);
489 register_ioport_read(0xb2, 2, 1, pm_smi_readb
, s
);
491 register_ioport_write(ACPI_DBG_IO_ADDR
, 4, 4, acpi_dbg_writel
, s
);
493 /* XXX: which specification is used ? The i82731AB has different
495 pci_conf
[0x5f] = (parallel_hds
[0] != NULL
? 0x80 : 0) | 0x10;
496 pci_conf
[0x63] = 0x60;
497 pci_conf
[0x67] = (serial_hds
[0] != NULL
? 0x08 : 0) |
498 (serial_hds
[1] != NULL
? 0x90 : 0);
500 pci_conf
[0x90] = smb_io_base
| 1;
501 pci_conf
[0x91] = smb_io_base
>> 8;
502 pci_conf
[0xd2] = 0x09;
503 register_ioport_write(smb_io_base
, 64, 1, smb_ioport_writeb
, s
);
504 register_ioport_read(smb_io_base
, 64, 1, smb_ioport_readb
, s
);
506 s
->tmr_timer
= qemu_new_timer(vm_clock
, pm_tmr_timer
, s
);
508 register_savevm("piix4_pm", 0, 1, pm_save
, pm_load
, s
);
510 s
->smbus
= i2c_init_bus();