]> git.proxmox.com Git - qemu.git/blame - hw/acpi.c
Optional "precise" VGA retrace support
[qemu.git] / hw / acpi.c
CommitLineData
6515b203
FB
1/*
2 * ACPI implementation
5fafdf24 3 *
6515b203 4 * Copyright (c) 2006 Fabrice Bellard
5fafdf24 5 *
6515b203
FB
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
87ecb68b
PB
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"
6515b203
FB
26
27//#define DEBUG
28
29/* i82731AB (PIIX4) compatible power management function */
30#define PM_FREQ 3579545
31
6515b203
FB
32#define ACPI_DBG_IO_ADDR 0xb044
33
34typedef struct PIIX4PMState {
35 PCIDevice dev;
36 uint16_t pmsts;
37 uint16_t pmen;
38 uint16_t pmcntrl;
ab1e34ad
FB
39 uint8_t apmc;
40 uint8_t apms;
6515b203
FB
41 QEMUTimer *tmr_timer;
42 int64_t tmr_overflow_time;
0ff596d0 43 i2c_bus *smbus;
3fffc223
TS
44 uint8_t smb_stat;
45 uint8_t smb_ctl;
46 uint8_t smb_cmd;
47 uint8_t smb_addr;
48 uint8_t smb_data0;
49 uint8_t smb_data1;
50 uint8_t smb_data[32];
51 uint8_t smb_index;
cf7a2fe2 52 qemu_irq irq;
6515b203
FB
53} PIIX4PMState;
54
55#define RTC_EN (1 << 10)
56#define PWRBTN_EN (1 << 8)
57#define GBL_EN (1 << 5)
58#define TMROF_EN (1 << 0)
59
60#define SCI_EN (1 << 0)
61
62#define SUS_EN (1 << 13)
63
24bc1cbc
TS
64#define ACPI_ENABLE 0xf1
65#define ACPI_DISABLE 0xf0
66
3fffc223
TS
67#define SMBHSTSTS 0x00
68#define SMBHSTCNT 0x02
69#define SMBHSTCMD 0x03
70#define SMBHSTADD 0x04
71#define SMBHSTDAT0 0x05
72#define SMBHSTDAT1 0x06
73#define SMBBLKDAT 0x07
74
9669d3c5 75static PIIX4PMState *pm_state;
cf7a2fe2 76
6515b203
FB
77static uint32_t get_pmtmr(PIIX4PMState *s)
78{
7546c016
AZ
79 uint32_t d;
80 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
81 return d & 0xffffff;
6515b203
FB
82}
83
84static int get_pmsts(PIIX4PMState *s)
85{
7546c016
AZ
86 int64_t d;
87 int pmsts;
88 pmsts = s->pmsts;
89 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
90 if (d >= s->tmr_overflow_time)
91 s->pmsts |= TMROF_EN;
92 return pmsts;
6515b203
FB
93}
94
95static void pm_update_sci(PIIX4PMState *s)
96{
7546c016
AZ
97 int sci_level, pmsts;
98 int64_t expire_time;
99
100 pmsts = get_pmsts(s);
101 sci_level = (((pmsts & s->pmen) &
102 (RTC_EN | PWRBTN_EN | GBL_EN | TMROF_EN)) != 0);
103 qemu_set_irq(s->irq, sci_level);
104 /* schedule a timer interruption if needed */
105 if ((s->pmen & TMROF_EN) && !(pmsts & TMROF_EN)) {
106 expire_time = muldiv64(s->tmr_overflow_time, ticks_per_sec, PM_FREQ);
107 qemu_mod_timer(s->tmr_timer, expire_time);
7546c016
AZ
108 } else {
109 qemu_del_timer(s->tmr_timer);
110 }
6515b203
FB
111}
112
113static void pm_tmr_timer(void *opaque)
114{
115 PIIX4PMState *s = opaque;
7546c016 116 pm_update_sci(s);
6515b203
FB
117}
118
119static void pm_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
120{
121 PIIX4PMState *s = opaque;
122 addr &= 0x3f;
123 switch(addr) {
124 case 0x00:
7546c016
AZ
125 {
126 int64_t d;
127 int pmsts;
128 pmsts = get_pmsts(s);
129 if (pmsts & val & TMROF_EN) {
130 /* if TMRSTS is reset, then compute the new overflow time */
131 d = muldiv64(qemu_get_clock(vm_clock), PM_FREQ, ticks_per_sec);
132 s->tmr_overflow_time = (d + 0x800000LL) & ~0x7fffffLL;
133 }
134 s->pmsts &= ~val;
135 pm_update_sci(s);
136 }
6515b203
FB
137 break;
138 case 0x02:
139 s->pmen = val;
140 pm_update_sci(s);
141 break;
142 case 0x04:
143 {
144 int sus_typ;
145 s->pmcntrl = val & ~(SUS_EN);
146 if (val & SUS_EN) {
147 /* change suspend type */
f99ed40a 148 sus_typ = (val >> 10) & 7;
6515b203
FB
149 switch(sus_typ) {
150 case 0: /* soft power off */
151 qemu_system_shutdown_request();
152 break;
153 default:
154 break;
155 }
156 }
157 }
158 break;
159 default:
160 break;
161 }
162#ifdef DEBUG
163 printf("PM writew port=0x%04x val=0x%04x\n", addr, val);
164#endif
165}
166
167static uint32_t pm_ioport_readw(void *opaque, uint32_t addr)
168{
169 PIIX4PMState *s = opaque;
170 uint32_t val;
171
172 addr &= 0x3f;
173 switch(addr) {
174 case 0x00:
175 val = get_pmsts(s);
176 break;
177 case 0x02:
178 val = s->pmen;
179 break;
180 case 0x04:
181 val = s->pmcntrl;
182 break;
183 default:
184 val = 0;
185 break;
186 }
187#ifdef DEBUG
188 printf("PM readw port=0x%04x val=0x%04x\n", addr, val);
189#endif
190 return val;
191}
192
193static void pm_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
194{
195 // PIIX4PMState *s = opaque;
196 addr &= 0x3f;
197#ifdef DEBUG
198 printf("PM writel port=0x%04x val=0x%08x\n", addr, val);
199#endif
200}
201
202static uint32_t pm_ioport_readl(void *opaque, uint32_t addr)
203{
204 PIIX4PMState *s = opaque;
205 uint32_t val;
206
207 addr &= 0x3f;
208 switch(addr) {
209 case 0x08:
210 val = get_pmtmr(s);
211 break;
212 default:
213 val = 0;
214 break;
215 }
216#ifdef DEBUG
217 printf("PM readl port=0x%04x val=0x%08x\n", addr, val);
218#endif
219 return val;
220}
221
ab1e34ad 222static void pm_smi_writeb(void *opaque, uint32_t addr, uint32_t val)
6515b203
FB
223{
224 PIIX4PMState *s = opaque;
ab1e34ad 225 addr &= 1;
6515b203 226#ifdef DEBUG
ab1e34ad 227 printf("pm_smi_writeb addr=0x%x val=0x%02x\n", addr, val);
6515b203 228#endif
ab1e34ad
FB
229 if (addr == 0) {
230 s->apmc = val;
24bc1cbc
TS
231
232 /* ACPI specs 3.0, 4.7.2.5 */
233 if (val == ACPI_ENABLE) {
234 s->pmcntrl |= SCI_EN;
235 } else if (val == ACPI_DISABLE) {
236 s->pmcntrl &= ~SCI_EN;
237 }
238
47d02f6d
FB
239 if (s->dev.config[0x5b] & (1 << 1)) {
240 cpu_interrupt(first_cpu, CPU_INTERRUPT_SMI);
ab1e34ad 241 }
ab1e34ad
FB
242 } else {
243 s->apms = val;
6515b203
FB
244 }
245}
246
ab1e34ad
FB
247static uint32_t pm_smi_readb(void *opaque, uint32_t addr)
248{
249 PIIX4PMState *s = opaque;
250 uint32_t val;
3b46e624 251
ab1e34ad
FB
252 addr &= 1;
253 if (addr == 0) {
254 val = s->apmc;
255 } else {
256 val = s->apms;
257 }
258#ifdef DEBUG
259 printf("pm_smi_readb addr=0x%x val=0x%02x\n", addr, val);
260#endif
261 return val;
262}
263
6515b203
FB
264static void acpi_dbg_writel(void *opaque, uint32_t addr, uint32_t val)
265{
266#if defined(DEBUG)
267 printf("ACPI: DBG: 0x%08x\n", val);
268#endif
269}
270
3fffc223
TS
271static void smb_transaction(PIIX4PMState *s)
272{
273 uint8_t prot = (s->smb_ctl >> 2) & 0x07;
274 uint8_t read = s->smb_addr & 0x01;
275 uint8_t cmd = s->smb_cmd;
276 uint8_t addr = s->smb_addr >> 1;
0ff596d0 277 i2c_bus *bus = s->smbus;
3fffc223
TS
278
279#ifdef DEBUG
280 printf("SMBus trans addr=0x%02x prot=0x%02x\n", addr, prot);
281#endif
3fffc223
TS
282 switch(prot) {
283 case 0x0:
0ff596d0 284 smbus_quick_command(bus, addr, read);
3fffc223
TS
285 break;
286 case 0x1:
287 if (read) {
0ff596d0
PB
288 s->smb_data0 = smbus_receive_byte(bus, addr);
289 } else {
290 smbus_send_byte(bus, addr, cmd);
3fffc223
TS
291 }
292 break;
293 case 0x2:
294 if (read) {
0ff596d0
PB
295 s->smb_data0 = smbus_read_byte(bus, addr, cmd);
296 } else {
297 smbus_write_byte(bus, addr, cmd, s->smb_data0);
3fffc223
TS
298 }
299 break;
300 case 0x3:
301 if (read) {
302 uint16_t val;
0ff596d0 303 val = smbus_read_word(bus, addr, cmd);
3fffc223
TS
304 s->smb_data0 = val;
305 s->smb_data1 = val >> 8;
0ff596d0
PB
306 } else {
307 smbus_write_word(bus, addr, cmd, (s->smb_data1 << 8) | s->smb_data0);
3fffc223
TS
308 }
309 break;
310 case 0x5:
311 if (read) {
0ff596d0
PB
312 s->smb_data0 = smbus_read_block(bus, addr, cmd, s->smb_data);
313 } else {
314 smbus_write_block(bus, addr, cmd, s->smb_data, s->smb_data0);
3fffc223
TS
315 }
316 break;
317 default:
318 goto error;
319 }
320 return;
321
322 error:
323 s->smb_stat |= 0x04;
324}
325
326static void smb_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
327{
328 PIIX4PMState *s = opaque;
329 addr &= 0x3f;
330#ifdef DEBUG
331 printf("SMB writeb port=0x%04x val=0x%02x\n", addr, val);
332#endif
333 switch(addr) {
334 case SMBHSTSTS:
335 s->smb_stat = 0;
336 s->smb_index = 0;
337 break;
338 case SMBHSTCNT:
339 s->smb_ctl = val;
340 if (val & 0x40)
341 smb_transaction(s);
342 break;
343 case SMBHSTCMD:
344 s->smb_cmd = val;
345 break;
346 case SMBHSTADD:
347 s->smb_addr = val;
348 break;
349 case SMBHSTDAT0:
350 s->smb_data0 = val;
351 break;
352 case SMBHSTDAT1:
353 s->smb_data1 = val;
354 break;
355 case SMBBLKDAT:
356 s->smb_data[s->smb_index++] = val;
357 if (s->smb_index > 31)
358 s->smb_index = 0;
359 break;
360 default:
361 break;
362 }
363}
364
365static uint32_t smb_ioport_readb(void *opaque, uint32_t addr)
366{
367 PIIX4PMState *s = opaque;
368 uint32_t val;
369
370 addr &= 0x3f;
371 switch(addr) {
372 case SMBHSTSTS:
373 val = s->smb_stat;
374 break;
375 case SMBHSTCNT:
376 s->smb_index = 0;
377 val = s->smb_ctl & 0x1f;
378 break;
379 case SMBHSTCMD:
380 val = s->smb_cmd;
381 break;
382 case SMBHSTADD:
383 val = s->smb_addr;
384 break;
385 case SMBHSTDAT0:
386 val = s->smb_data0;
387 break;
388 case SMBHSTDAT1:
389 val = s->smb_data1;
390 break;
391 case SMBBLKDAT:
392 val = s->smb_data[s->smb_index++];
393 if (s->smb_index > 31)
394 s->smb_index = 0;
395 break;
396 default:
397 val = 0;
398 break;
399 }
400#ifdef DEBUG
401 printf("SMB readb port=0x%04x val=0x%02x\n", addr, val);
402#endif
403 return val;
404}
405
ab1e34ad
FB
406static void pm_io_space_update(PIIX4PMState *s)
407{
408 uint32_t pm_io_base;
409
410 if (s->dev.config[0x80] & 1) {
411 pm_io_base = le32_to_cpu(*(uint32_t *)(s->dev.config + 0x40));
bf367b54 412 pm_io_base &= 0xffc0;
ab1e34ad
FB
413
414 /* XXX: need to improve memory and ioport allocation */
415#if defined(DEBUG)
416 printf("PM: mapping to 0x%x\n", pm_io_base);
417#endif
418 register_ioport_write(pm_io_base, 64, 2, pm_ioport_writew, s);
419 register_ioport_read(pm_io_base, 64, 2, pm_ioport_readw, s);
420 register_ioport_write(pm_io_base, 64, 4, pm_ioport_writel, s);
421 register_ioport_read(pm_io_base, 64, 4, pm_ioport_readl, s);
422 }
423}
424
5fafdf24 425static void pm_write_config(PCIDevice *d,
ab1e34ad
FB
426 uint32_t address, uint32_t val, int len)
427{
428 pci_default_write_config(d, address, val, len);
429 if (address == 0x80)
430 pm_io_space_update((PIIX4PMState *)d);
431}
432
433static void pm_save(QEMUFile* f,void *opaque)
434{
435 PIIX4PMState *s = opaque;
436
437 pci_device_save(&s->dev, f);
438
439 qemu_put_be16s(f, &s->pmsts);
440 qemu_put_be16s(f, &s->pmen);
441 qemu_put_be16s(f, &s->pmcntrl);
442 qemu_put_8s(f, &s->apmc);
443 qemu_put_8s(f, &s->apms);
444 qemu_put_timer(f, s->tmr_timer);
bee8d684 445 qemu_put_be64(f, s->tmr_overflow_time);
ab1e34ad
FB
446}
447
448static int pm_load(QEMUFile* f,void* opaque,int version_id)
449{
450 PIIX4PMState *s = opaque;
451 int ret;
452
453 if (version_id > 1)
454 return -EINVAL;
455
456 ret = pci_device_load(&s->dev, f);
457 if (ret < 0)
458 return ret;
459
460 qemu_get_be16s(f, &s->pmsts);
461 qemu_get_be16s(f, &s->pmen);
462 qemu_get_be16s(f, &s->pmcntrl);
463 qemu_get_8s(f, &s->apmc);
464 qemu_get_8s(f, &s->apms);
465 qemu_get_timer(f, s->tmr_timer);
bee8d684 466 s->tmr_overflow_time=qemu_get_be64(f);
ab1e34ad
FB
467
468 pm_io_space_update(s);
469
470 return 0;
471}
472
cf7a2fe2
AJ
473i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
474 qemu_irq sci_irq)
6515b203
FB
475{
476 PIIX4PMState *s;
477 uint8_t *pci_conf;
6515b203
FB
478
479 s = (PIIX4PMState *)pci_register_device(bus,
480 "PM", sizeof(PIIX4PMState),
ab1e34ad 481 devfn, NULL, pm_write_config);
cf7a2fe2 482 pm_state = s;
6515b203
FB
483 pci_conf = s->dev.config;
484 pci_conf[0x00] = 0x86;
485 pci_conf[0x01] = 0x80;
486 pci_conf[0x02] = 0x13;
7ef4da1c 487 pci_conf[0x03] = 0x71;
bf367b54
TS
488 pci_conf[0x06] = 0x80;
489 pci_conf[0x07] = 0x02;
a78b03cb 490 pci_conf[0x08] = 0x03; // revision number
6515b203
FB
491 pci_conf[0x09] = 0x00;
492 pci_conf[0x0a] = 0x80; // other bridge device
493 pci_conf[0x0b] = 0x06; // bridge device
494 pci_conf[0x0e] = 0x00; // header_type
495 pci_conf[0x3d] = 0x01; // interrupt pin 1
3b46e624 496
ab1e34ad 497 pci_conf[0x40] = 0x01; /* PM io base read only bit */
3b46e624 498
ab1e34ad
FB
499 register_ioport_write(0xb2, 2, 1, pm_smi_writeb, s);
500 register_ioport_read(0xb2, 2, 1, pm_smi_readb, s);
501
6515b203
FB
502 register_ioport_write(ACPI_DBG_IO_ADDR, 4, 4, acpi_dbg_writel, s);
503
1ce549ab
FB
504 /* XXX: which specification is used ? The i82731AB has different
505 mappings */
506 pci_conf[0x5f] = (parallel_hds[0] != NULL ? 0x80 : 0) | 0x10;
507 pci_conf[0x63] = 0x60;
508 pci_conf[0x67] = (serial_hds[0] != NULL ? 0x08 : 0) |
509 (serial_hds[1] != NULL ? 0x90 : 0);
510
3fffc223
TS
511 pci_conf[0x90] = smb_io_base | 1;
512 pci_conf[0x91] = smb_io_base >> 8;
513 pci_conf[0xd2] = 0x09;
514 register_ioport_write(smb_io_base, 64, 1, smb_ioport_writeb, s);
515 register_ioport_read(smb_io_base, 64, 1, smb_ioport_readb, s);
516
6515b203 517 s->tmr_timer = qemu_new_timer(vm_clock, pm_tmr_timer, s);
6515b203 518
ab1e34ad 519 register_savevm("piix4_pm", 0, 1, pm_save, pm_load, s);
3fffc223 520
0ff596d0 521 s->smbus = i2c_init_bus();
cf7a2fe2 522 s->irq = sci_irq;
0ff596d0 523 return s->smbus;
6515b203 524}
cf7a2fe2
AJ
525
526#if defined(TARGET_I386)
527void qemu_system_powerdown(void)
528{
9669d3c5
AJ
529 if (!pm_state) {
530 qemu_system_shutdown_request();
531 } else if (pm_state->pmen & PWRBTN_EN) {
cf7a2fe2
AJ
532 pm_state->pmsts |= PWRBTN_EN;
533 pm_update_sci(pm_state);
534 }
535}
536#endif