2 * QEMU ICH9 TCO emulation tests
4 * Copyright (c) 2015 Paulo Alcantara <pcacjr@zytor.com>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
13 #include "libqos/pci.h"
14 #include "libqos/pci-pc.h"
15 #include "qapi/qmp/qdict.h"
16 #include "hw/pci/pci_regs.h"
17 #include "hw/i386/ich9.h"
18 #include "hw/acpi/ich9.h"
19 #include "hw/acpi/tco.h"
21 #define RCBA_BASE_ADDR 0xfed1c000
22 #define PM_IO_BASE_ADDR 0xb000
25 TCO_RLD_DEFAULT
= 0x0000,
26 TCO_DAT_IN_DEFAULT
= 0x00,
27 TCO_DAT_OUT_DEFAULT
= 0x00,
28 TCO1_STS_DEFAULT
= 0x0000,
29 TCO2_STS_DEFAULT
= 0x0000,
30 TCO1_CNT_DEFAULT
= 0x0000,
31 TCO2_CNT_DEFAULT
= 0x0008,
32 TCO_MESSAGE1_DEFAULT
= 0x00,
33 TCO_MESSAGE2_DEFAULT
= 0x00,
34 TCO_WDCNT_DEFAULT
= 0x00,
35 TCO_TMR_DEFAULT
= 0x0004,
36 SW_IRQ_GEN_DEFAULT
= 0x03,
39 #define TCO_SECS_TO_TICKS(secs) (((secs) * 10) / 6)
40 #define TCO_TICKS_TO_SECS(ticks) (((ticks) * 6) / 10)
50 static void test_end(TestData
*d
)
57 static void test_init(TestData
*d
)
61 qs
= qtest_initf("-machine q35 %s %s",
62 d
->noreboot
? "" : "-global ICH9-LPC.noreboot=false",
63 !d
->args
? "" : d
->args
);
65 qtest_irq_intercept_in(qs
, "ioapic");
67 d
->bus
= qpci_init_pc(qs
, NULL
);
68 d
->dev
= qpci_device_find(d
->bus
, QPCI_DEVFN(0x1f, 0x00));
69 g_assert(d
->dev
!= NULL
);
71 qpci_device_enable(d
->dev
);
73 /* set ACPI PM I/O space base address */
74 qpci_config_writel(d
->dev
, ICH9_LPC_PMBASE
, PM_IO_BASE_ADDR
| 0x1);
76 qpci_config_writeb(d
->dev
, ICH9_LPC_ACPI_CTRL
, 0x80);
77 /* set Root Complex BAR */
78 qpci_config_writel(d
->dev
, ICH9_LPC_RCBA
, RCBA_BASE_ADDR
| 0x1);
80 d
->tco_io_bar
= qpci_legacy_iomap(d
->dev
, PM_IO_BASE_ADDR
+ 0x60);
83 static void stop_tco(const TestData
*d
)
87 val
= qpci_io_readw(d
->dev
, d
->tco_io_bar
, TCO1_CNT
);
89 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_CNT
, val
);
92 static void start_tco(const TestData
*d
)
96 val
= qpci_io_readw(d
->dev
, d
->tco_io_bar
, TCO1_CNT
);
98 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_CNT
, val
);
101 static void load_tco(const TestData
*d
)
103 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO_RLD
, 4);
106 static void set_tco_timeout(const TestData
*d
, uint16_t ticks
)
108 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO_TMR
, ticks
);
111 static void clear_tco_status(const TestData
*d
)
113 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_STS
, 0x0008);
114 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO2_STS
, 0x0002);
115 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO2_STS
, 0x0004);
118 static void reset_on_second_timeout(bool enable
)
122 val
= readl(RCBA_BASE_ADDR
+ ICH9_CC_GCS
);
124 val
&= ~ICH9_CC_GCS_NO_REBOOT
;
126 val
|= ICH9_CC_GCS_NO_REBOOT
;
128 writel(RCBA_BASE_ADDR
+ ICH9_CC_GCS
, val
);
131 static void test_tco_defaults(void)
138 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
), ==,
140 /* TCO_DAT_IN & TCO_DAT_OUT */
141 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_DAT_IN
), ==,
142 (TCO_DAT_OUT_DEFAULT
<< 8) | TCO_DAT_IN_DEFAULT
);
143 /* TCO1_STS & TCO2_STS */
144 g_assert_cmpint(qpci_io_readl(d
.dev
, d
.tco_io_bar
, TCO1_STS
), ==,
145 (TCO2_STS_DEFAULT
<< 16) | TCO1_STS_DEFAULT
);
146 /* TCO1_CNT & TCO2_CNT */
147 g_assert_cmpint(qpci_io_readl(d
.dev
, d
.tco_io_bar
, TCO1_CNT
), ==,
148 (TCO2_CNT_DEFAULT
<< 16) | TCO1_CNT_DEFAULT
);
149 /* TCO_MESSAGE1 & TCO_MESSAGE2 */
150 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_MESSAGE1
), ==,
151 (TCO_MESSAGE2_DEFAULT
<< 8) | TCO_MESSAGE1_DEFAULT
);
152 g_assert_cmpint(qpci_io_readb(d
.dev
, d
.tco_io_bar
, TCO_WDCNT
), ==,
154 g_assert_cmpint(qpci_io_readb(d
.dev
, d
.tco_io_bar
, SW_IRQ_GEN
), ==,
156 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_TMR
), ==,
161 static void test_tco_timeout(void)
164 const uint16_t ticks
= TCO_SECS_TO_TICKS(4);
173 clear_tco_status(&d
);
174 reset_on_second_timeout(false);
175 set_tco_timeout(&d
, ticks
);
178 clock_step(ticks
* TCO_TICK_NSEC
);
180 /* test first timeout */
181 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
182 ret
= val
& TCO_TIMEOUT
? 1 : 0;
185 /* test clearing timeout bit */
187 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_STS
, val
);
188 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
189 ret
= val
& TCO_TIMEOUT
? 1 : 0;
192 /* test second timeout */
193 clock_step(ticks
* TCO_TICK_NSEC
);
194 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
195 ret
= val
& TCO_TIMEOUT
? 1 : 0;
197 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
);
198 ret
= val
& TCO_SECOND_TO_STS
? 1 : 0;
205 static void test_tco_max_timeout(void)
208 const uint16_t ticks
= 0xffff;
217 clear_tco_status(&d
);
218 reset_on_second_timeout(false);
219 set_tco_timeout(&d
, ticks
);
222 clock_step(((ticks
& TCO_TMR_MASK
) - 1) * TCO_TICK_NSEC
);
224 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
);
225 g_assert_cmpint(val
& TCO_RLD_MASK
, ==, 1);
226 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
227 ret
= val
& TCO_TIMEOUT
? 1 : 0;
229 clock_step(TCO_TICK_NSEC
);
230 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
231 ret
= val
& TCO_TIMEOUT
? 1 : 0;
238 static QDict
*get_watchdog_action(void)
240 QDict
*ev
= qmp_eventwait_ref("WATCHDOG");
243 data
= qdict_get_qdict(ev
, "data");
249 static void test_tco_second_timeout_pause(void)
252 const uint16_t ticks
= TCO_SECS_TO_TICKS(32);
255 td
.args
= "-watchdog-action pause";
260 clear_tco_status(&td
);
261 reset_on_second_timeout(true);
262 set_tco_timeout(&td
, TCO_SECS_TO_TICKS(16));
265 clock_step(ticks
* TCO_TICK_NSEC
* 2);
266 ad
= get_watchdog_action();
267 g_assert(!strcmp(qdict_get_str(ad
, "action"), "pause"));
274 static void test_tco_second_timeout_reset(void)
277 const uint16_t ticks
= TCO_SECS_TO_TICKS(16);
280 td
.args
= "-watchdog-action reset";
285 clear_tco_status(&td
);
286 reset_on_second_timeout(true);
287 set_tco_timeout(&td
, TCO_SECS_TO_TICKS(16));
290 clock_step(ticks
* TCO_TICK_NSEC
* 2);
291 ad
= get_watchdog_action();
292 g_assert(!strcmp(qdict_get_str(ad
, "action"), "reset"));
299 static void test_tco_second_timeout_shutdown(void)
302 const uint16_t ticks
= TCO_SECS_TO_TICKS(128);
305 td
.args
= "-watchdog-action shutdown";
310 clear_tco_status(&td
);
311 reset_on_second_timeout(true);
312 set_tco_timeout(&td
, ticks
);
315 clock_step(ticks
* TCO_TICK_NSEC
* 2);
316 ad
= get_watchdog_action();
317 g_assert(!strcmp(qdict_get_str(ad
, "action"), "shutdown"));
324 static void test_tco_second_timeout_none(void)
327 const uint16_t ticks
= TCO_SECS_TO_TICKS(256);
330 td
.args
= "-watchdog-action none";
335 clear_tco_status(&td
);
336 reset_on_second_timeout(true);
337 set_tco_timeout(&td
, ticks
);
340 clock_step(ticks
* TCO_TICK_NSEC
* 2);
341 ad
= get_watchdog_action();
342 g_assert(!strcmp(qdict_get_str(ad
, "action"), "none"));
349 static void test_tco_ticks_counter(void)
352 uint16_t ticks
= TCO_SECS_TO_TICKS(8);
360 clear_tco_status(&d
);
361 reset_on_second_timeout(false);
362 set_tco_timeout(&d
, ticks
);
367 rld
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
) & TCO_RLD_MASK
;
368 g_assert_cmpint(rld
, ==, ticks
);
369 clock_step(TCO_TICK_NSEC
);
371 } while (!(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
) & TCO_TIMEOUT
));
377 static void test_tco1_control_bits(void)
387 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_CNT
, val
);
389 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_CNT
, val
);
390 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_CNT
), ==,
395 static void test_tco1_status_bits(void)
407 clear_tco_status(&d
);
408 reset_on_second_timeout(false);
409 set_tco_timeout(&d
, ticks
);
412 clock_step(ticks
* TCO_TICK_NSEC
);
414 qpci_io_writeb(d
.dev
, d
.tco_io_bar
, TCO_DAT_IN
, 0);
415 qpci_io_writeb(d
.dev
, d
.tco_io_bar
, TCO_DAT_OUT
, 0);
416 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
417 ret
= val
& (TCO_TIMEOUT
| SW_TCO_SMI
| TCO_INT_STS
) ? 1 : 0;
419 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_STS
, val
);
420 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
), ==, 0);
424 static void test_tco2_status_bits(void)
436 clear_tco_status(&d
);
437 reset_on_second_timeout(true);
438 set_tco_timeout(&d
, ticks
);
441 clock_step(ticks
* TCO_TICK_NSEC
* 2);
443 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
);
444 ret
= val
& (TCO_SECOND_TO_STS
| TCO_BOOT_STS
) ? 1 : 0;
446 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO2_STS
, val
);
447 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
), ==, 0);
451 int main(int argc
, char **argv
)
453 g_test_init(&argc
, &argv
, NULL
);
455 qtest_add_func("tco/defaults", test_tco_defaults
);
456 qtest_add_func("tco/timeout/no_action", test_tco_timeout
);
457 qtest_add_func("tco/timeout/no_action/max", test_tco_max_timeout
);
458 qtest_add_func("tco/second_timeout/pause", test_tco_second_timeout_pause
);
459 qtest_add_func("tco/second_timeout/reset", test_tco_second_timeout_reset
);
460 qtest_add_func("tco/second_timeout/shutdown",
461 test_tco_second_timeout_shutdown
);
462 qtest_add_func("tco/second_timeout/none", test_tco_second_timeout_none
);
463 qtest_add_func("tco/counter", test_tco_ticks_counter
);
464 qtest_add_func("tco/tco1_control/bits", test_tco1_control_bits
);
465 qtest_add_func("tco/tco1_status/bits", test_tco1_status_bits
);
466 qtest_add_func("tco/tco2_status/bits", test_tco2_status_bits
);