]>
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 | ||
53b67b30 | 532 | if (kvm_enabled) { |
7ba1e619 AL |
533 | /* Mark SMM as already inited to prevent SMM from running. KVM does not |
534 | * support SMM mode. */ | |
535 | pci_conf[0x5B] = 0x02; | |
536 | } | |
537 | ||
1ce549ab FB |
538 | /* XXX: which specification is used ? The i82731AB has different |
539 | mappings */ | |
540 | pci_conf[0x5f] = (parallel_hds[0] != NULL ? 0x80 : 0) | 0x10; | |
541 | pci_conf[0x63] = 0x60; | |
542 | pci_conf[0x67] = (serial_hds[0] != NULL ? 0x08 : 0) | | |
543 | (serial_hds[1] != NULL ? 0x90 : 0); | |
544 | ||
3fffc223 TS |
545 | pci_conf[0x90] = smb_io_base | 1; |
546 | pci_conf[0x91] = smb_io_base >> 8; | |
547 | pci_conf[0xd2] = 0x09; | |
548 | register_ioport_write(smb_io_base, 64, 1, smb_ioport_writeb, s); | |
549 | register_ioport_read(smb_io_base, 64, 1, smb_ioport_readb, s); | |
550 | ||
6515b203 | 551 | s->tmr_timer = qemu_new_timer(vm_clock, pm_tmr_timer, s); |
6515b203 | 552 | |
d9c32310 BS |
553 | qemu_system_powerdown = *qemu_allocate_irqs(piix4_powerdown, s, 1); |
554 | ||
76dec49f | 555 | vmstate_register(0, &vmstate_acpi, s); |
3fffc223 | 556 | |
02e2da45 | 557 | s->smbus = i2c_init_bus(NULL, "i2c"); |
cf7a2fe2 | 558 | s->irq = sci_irq; |
53b67b30 BS |
559 | s->cmos_s3 = cmos_s3; |
560 | s->smi_irq = smi_irq; | |
a08d4367 | 561 | qemu_register_reset(piix4_reset, s); |
0bacd130 | 562 | |
0ff596d0 | 563 | return s->smbus; |
6515b203 | 564 | } |
cf7a2fe2 | 565 | |
5e3cb534 | 566 | #define GPE_BASE 0xafe0 |
ca2c72be AL |
567 | #define PCI_BASE 0xae00 |
568 | #define PCI_EJ_BASE 0xae08 | |
5e3cb534 AL |
569 | |
570 | struct gpe_regs { | |
571 | uint16_t sts; /* status */ | |
572 | uint16_t en; /* enabled */ | |
573 | }; | |
574 | ||
ca2c72be AL |
575 | struct pci_status { |
576 | uint32_t up; | |
577 | uint32_t down; | |
578 | }; | |
579 | ||
5e3cb534 | 580 | static struct gpe_regs gpe; |
ca2c72be | 581 | static struct pci_status pci0_status; |
5e3cb534 | 582 | |
6eb011b0 AL |
583 | static uint32_t gpe_read_val(uint16_t val, uint32_t addr) |
584 | { | |
585 | if (addr & 1) | |
586 | return (val >> 8) & 0xff; | |
587 | return val & 0xff; | |
588 | } | |
589 | ||
5e3cb534 AL |
590 | static uint32_t gpe_readb(void *opaque, uint32_t addr) |
591 | { | |
592 | uint32_t val = 0; | |
593 | struct gpe_regs *g = opaque; | |
594 | switch (addr) { | |
595 | case GPE_BASE: | |
5e3cb534 | 596 | case GPE_BASE + 1: |
6eb011b0 | 597 | val = gpe_read_val(g->sts, addr); |
5e3cb534 AL |
598 | break; |
599 | case GPE_BASE + 2: | |
5e3cb534 | 600 | case GPE_BASE + 3: |
6eb011b0 | 601 | val = gpe_read_val(g->en, addr); |
5e3cb534 AL |
602 | break; |
603 | default: | |
604 | break; | |
605 | } | |
606 | ||
607 | #if defined(DEBUG) | |
f654d9e2 | 608 | printf("gpe read %x == %x\n", addr, val); |
5e3cb534 AL |
609 | #endif |
610 | return val; | |
611 | } | |
612 | ||
6eb011b0 AL |
613 | static void gpe_write_val(uint16_t *cur, int addr, uint32_t val) |
614 | { | |
615 | if (addr & 1) | |
616 | *cur = (*cur & 0xff) | (val << 8); | |
617 | else | |
618 | *cur = (*cur & 0xff00) | (val & 0xff); | |
619 | } | |
620 | ||
621 | static void gpe_reset_val(uint16_t *cur, int addr, uint32_t val) | |
622 | { | |
623 | uint16_t x1, x0 = val & 0xff; | |
624 | int shift = (addr & 1) ? 8 : 0; | |
625 | ||
626 | x1 = (*cur >> shift) & 0xff; | |
627 | ||
628 | x1 = x1 & ~x0; | |
629 | ||
630 | *cur = (*cur & (0xff << (8 - shift))) | (x1 << shift); | |
631 | } | |
632 | ||
5e3cb534 AL |
633 | static void gpe_writeb(void *opaque, uint32_t addr, uint32_t val) |
634 | { | |
635 | struct gpe_regs *g = opaque; | |
636 | switch (addr) { | |
637 | case GPE_BASE: | |
5e3cb534 | 638 | case GPE_BASE + 1: |
6eb011b0 | 639 | gpe_reset_val(&g->sts, addr, val); |
5e3cb534 AL |
640 | break; |
641 | case GPE_BASE + 2: | |
5e3cb534 | 642 | case GPE_BASE + 3: |
6eb011b0 | 643 | gpe_write_val(&g->en, addr, val); |
5e3cb534 AL |
644 | break; |
645 | default: | |
646 | break; | |
647 | } | |
648 | ||
649 | #if defined(DEBUG) | |
f654d9e2 | 650 | printf("gpe write %x <== %d\n", addr, val); |
5e3cb534 AL |
651 | #endif |
652 | } | |
653 | ||
ca2c72be AL |
654 | static uint32_t pcihotplug_read(void *opaque, uint32_t addr) |
655 | { | |
656 | uint32_t val = 0; | |
657 | struct pci_status *g = opaque; | |
658 | switch (addr) { | |
659 | case PCI_BASE: | |
660 | val = g->up; | |
661 | break; | |
662 | case PCI_BASE + 4: | |
663 | val = g->down; | |
664 | break; | |
665 | default: | |
666 | break; | |
667 | } | |
668 | ||
669 | #if defined(DEBUG) | |
f654d9e2 | 670 | printf("pcihotplug read %x == %x\n", addr, val); |
ca2c72be AL |
671 | #endif |
672 | return val; | |
673 | } | |
674 | ||
675 | static void pcihotplug_write(void *opaque, uint32_t addr, uint32_t val) | |
676 | { | |
677 | struct pci_status *g = opaque; | |
678 | switch (addr) { | |
679 | case PCI_BASE: | |
680 | g->up = val; | |
681 | break; | |
682 | case PCI_BASE + 4: | |
683 | g->down = val; | |
684 | break; | |
685 | } | |
686 | ||
687 | #if defined(DEBUG) | |
f654d9e2 | 688 | printf("pcihotplug write %x <== %d\n", addr, val); |
ca2c72be AL |
689 | #endif |
690 | } | |
691 | ||
692 | static uint32_t pciej_read(void *opaque, uint32_t addr) | |
693 | { | |
694 | #if defined(DEBUG) | |
f654d9e2 | 695 | printf("pciej read %x\n", addr); |
ca2c72be AL |
696 | #endif |
697 | return 0; | |
698 | } | |
699 | ||
700 | static void pciej_write(void *opaque, uint32_t addr, uint32_t val) | |
701 | { | |
3f84865a | 702 | BusState *bus = opaque; |
98449371 | 703 | DeviceState *qdev, *next; |
3f84865a | 704 | PCIDevice *dev; |
ca2c72be AL |
705 | int slot = ffs(val) - 1; |
706 | ||
98449371 | 707 | QLIST_FOREACH_SAFE(qdev, &bus->children, sibling, next) { |
3f84865a GH |
708 | dev = DO_UPCAST(PCIDevice, qdev, qdev); |
709 | if (PCI_SLOT(dev->devfn) == slot) { | |
3f84865a GH |
710 | qdev_free(qdev); |
711 | } | |
712 | } | |
713 | ||
6f338c34 | 714 | |
ca2c72be | 715 | #if defined(DEBUG) |
f654d9e2 | 716 | printf("pciej write %x <== %d\n", addr, val); |
ca2c72be AL |
717 | #endif |
718 | } | |
719 | ||
3f84865a | 720 | static int piix4_device_hotplug(PCIDevice *dev, int state); |
9d5e77a2 | 721 | |
3f84865a | 722 | void piix4_acpi_system_hot_add_init(PCIBus *bus) |
5e3cb534 AL |
723 | { |
724 | register_ioport_write(GPE_BASE, 4, 1, gpe_writeb, &gpe); | |
725 | register_ioport_read(GPE_BASE, 4, 1, gpe_readb, &gpe); | |
726 | ||
ca2c72be AL |
727 | register_ioport_write(PCI_BASE, 8, 4, pcihotplug_write, &pci0_status); |
728 | register_ioport_read(PCI_BASE, 8, 4, pcihotplug_read, &pci0_status); | |
729 | ||
3f84865a GH |
730 | register_ioport_write(PCI_EJ_BASE, 4, 4, pciej_write, bus); |
731 | register_ioport_read(PCI_EJ_BASE, 4, 4, pciej_read, bus); | |
9d5e77a2 | 732 | |
3f84865a | 733 | pci_bus_hotplug(bus, piix4_device_hotplug); |
ca2c72be AL |
734 | } |
735 | ||
736 | static void enable_device(struct pci_status *p, struct gpe_regs *g, int slot) | |
737 | { | |
738 | g->sts |= 2; | |
ca2c72be AL |
739 | p->up |= (1 << slot); |
740 | } | |
741 | ||
742 | static void disable_device(struct pci_status *p, struct gpe_regs *g, int slot) | |
743 | { | |
744 | g->sts |= 2; | |
ca2c72be AL |
745 | p->down |= (1 << slot); |
746 | } | |
747 | ||
3f84865a | 748 | static int piix4_device_hotplug(PCIDevice *dev, int state) |
ca2c72be | 749 | { |
3f84865a GH |
750 | int slot = PCI_SLOT(dev->devfn); |
751 | ||
ca2c72be AL |
752 | pci0_status.up = 0; |
753 | pci0_status.down = 0; | |
754 | if (state) | |
755 | enable_device(&pci0_status, &gpe, slot); | |
756 | else | |
757 | disable_device(&pci0_status, &gpe, slot); | |
1f0711e2 AL |
758 | if (gpe.en & 2) { |
759 | qemu_set_irq(pm_state->irq, 1); | |
760 | qemu_set_irq(pm_state->irq, 0); | |
761 | } | |
3f84865a | 762 | return 0; |
9d5e77a2 IY |
763 | } |
764 | ||
8a92ea2f AL |
765 | struct acpi_table_header |
766 | { | |
767 | char signature [4]; /* ACPI signature (4 ASCII characters) */ | |
768 | uint32_t length; /* Length of table, in bytes, including header */ | |
769 | uint8_t revision; /* ACPI Specification minor version # */ | |
770 | uint8_t checksum; /* To make sum of entire table == 0 */ | |
771 | char oem_id [6]; /* OEM identification */ | |
772 | char oem_table_id [8]; /* OEM table identification */ | |
773 | uint32_t oem_revision; /* OEM revision number */ | |
774 | char asl_compiler_id [4]; /* ASL compiler vendor ID */ | |
775 | uint32_t asl_compiler_revision; /* ASL compiler revision number */ | |
776 | } __attribute__((packed)); | |
777 | ||
778 | char *acpi_tables; | |
779 | size_t acpi_tables_len; | |
780 | ||
781 | static int acpi_checksum(const uint8_t *data, int len) | |
782 | { | |
783 | int sum, i; | |
784 | sum = 0; | |
785 | for(i = 0; i < len; i++) | |
786 | sum += data[i]; | |
787 | return (-sum) & 0xff; | |
788 | } | |
789 | ||
790 | int acpi_table_add(const char *t) | |
791 | { | |
792 | static const char *dfl_id = "QEMUQEMU"; | |
793 | char buf[1024], *p, *f; | |
794 | struct acpi_table_header acpi_hdr; | |
795 | unsigned long val; | |
796 | size_t off; | |
797 | ||
798 | memset(&acpi_hdr, 0, sizeof(acpi_hdr)); | |
799 | ||
800 | if (get_param_value(buf, sizeof(buf), "sig", t)) { | |
801 | strncpy(acpi_hdr.signature, buf, 4); | |
802 | } else { | |
803 | strncpy(acpi_hdr.signature, dfl_id, 4); | |
804 | } | |
805 | if (get_param_value(buf, sizeof(buf), "rev", t)) { | |
806 | val = strtoul(buf, &p, 10); | |
807 | if (val > 255 || *p != '\0') | |
808 | goto out; | |
809 | } else { | |
810 | val = 1; | |
811 | } | |
812 | acpi_hdr.revision = (int8_t)val; | |
813 | ||
814 | if (get_param_value(buf, sizeof(buf), "oem_id", t)) { | |
815 | strncpy(acpi_hdr.oem_id, buf, 6); | |
816 | } else { | |
817 | strncpy(acpi_hdr.oem_id, dfl_id, 6); | |
818 | } | |
819 | ||
820 | if (get_param_value(buf, sizeof(buf), "oem_table_id", t)) { | |
821 | strncpy(acpi_hdr.oem_table_id, buf, 8); | |
822 | } else { | |
823 | strncpy(acpi_hdr.oem_table_id, dfl_id, 8); | |
824 | } | |
825 | ||
826 | if (get_param_value(buf, sizeof(buf), "oem_rev", t)) { | |
827 | val = strtol(buf, &p, 10); | |
828 | if(*p != '\0') | |
829 | goto out; | |
830 | } else { | |
831 | val = 1; | |
832 | } | |
833 | acpi_hdr.oem_revision = cpu_to_le32(val); | |
834 | ||
835 | if (get_param_value(buf, sizeof(buf), "asl_compiler_id", t)) { | |
836 | strncpy(acpi_hdr.asl_compiler_id, buf, 4); | |
837 | } else { | |
838 | strncpy(acpi_hdr.asl_compiler_id, dfl_id, 4); | |
839 | } | |
840 | ||
841 | if (get_param_value(buf, sizeof(buf), "asl_compiler_rev", t)) { | |
842 | val = strtol(buf, &p, 10); | |
843 | if(*p != '\0') | |
844 | goto out; | |
845 | } else { | |
846 | val = 1; | |
847 | } | |
848 | acpi_hdr.asl_compiler_revision = cpu_to_le32(val); | |
849 | ||
850 | if (!get_param_value(buf, sizeof(buf), "data", t)) { | |
851 | buf[0] = '\0'; | |
852 | } | |
853 | ||
854 | acpi_hdr.length = sizeof(acpi_hdr); | |
855 | ||
856 | f = buf; | |
857 | while (buf[0]) { | |
858 | struct stat s; | |
54042bcf | 859 | char *n = strchr(f, ':'); |
8a92ea2f AL |
860 | if (n) |
861 | *n = '\0'; | |
862 | if(stat(f, &s) < 0) { | |
863 | fprintf(stderr, "Can't stat file '%s': %s\n", f, strerror(errno)); | |
864 | goto out; | |
865 | } | |
866 | acpi_hdr.length += s.st_size; | |
867 | if (!n) | |
868 | break; | |
869 | *n = ':'; | |
870 | f = n + 1; | |
871 | } | |
872 | ||
873 | if (!acpi_tables) { | |
874 | acpi_tables_len = sizeof(uint16_t); | |
875 | acpi_tables = qemu_mallocz(acpi_tables_len); | |
876 | } | |
877 | p = acpi_tables + acpi_tables_len; | |
878 | acpi_tables_len += sizeof(uint16_t) + acpi_hdr.length; | |
879 | acpi_tables = qemu_realloc(acpi_tables, acpi_tables_len); | |
880 | ||
881 | acpi_hdr.length = cpu_to_le32(acpi_hdr.length); | |
882 | *(uint16_t*)p = acpi_hdr.length; | |
883 | p += sizeof(uint16_t); | |
884 | memcpy(p, &acpi_hdr, sizeof(acpi_hdr)); | |
885 | off = sizeof(acpi_hdr); | |
886 | ||
887 | f = buf; | |
888 | while (buf[0]) { | |
889 | struct stat s; | |
890 | int fd; | |
54042bcf | 891 | char *n = strchr(f, ':'); |
8a92ea2f AL |
892 | if (n) |
893 | *n = '\0'; | |
894 | fd = open(f, O_RDONLY); | |
895 | ||
896 | if(fd < 0) | |
897 | goto out; | |
898 | if(fstat(fd, &s) < 0) { | |
899 | close(fd); | |
900 | goto out; | |
901 | } | |
902 | ||
903 | do { | |
904 | int r; | |
905 | r = read(fd, p + off, s.st_size); | |
906 | if (r > 0) { | |
907 | off += r; | |
908 | s.st_size -= r; | |
909 | } else if ((r < 0 && errno != EINTR) || r == 0) { | |
910 | close(fd); | |
911 | goto out; | |
912 | } | |
913 | } while(s.st_size); | |
914 | ||
915 | close(fd); | |
916 | if (!n) | |
917 | break; | |
918 | f = n + 1; | |
919 | } | |
920 | ||
921 | ((struct acpi_table_header*)p)->checksum = acpi_checksum((uint8_t*)p, off); | |
922 | /* increase number of tables */ | |
923 | (*(uint16_t*)acpi_tables) = | |
924 | cpu_to_le32(le32_to_cpu(*(uint16_t*)acpi_tables) + 1); | |
925 | return 0; | |
926 | out: | |
927 | if (acpi_tables) { | |
b2538b4b | 928 | qemu_free(acpi_tables); |
8a92ea2f AL |
929 | acpi_tables = NULL; |
930 | } | |
931 | return -1; | |
932 | } |