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