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