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.
9 #include "qemu/osdep.h"
12 #include "libqos/pci.h"
13 #include "libqos/pci-pc.h"
14 #include "hw/pci/pci_regs.h"
15 #include "hw/i386/ich9.h"
16 #include "hw/acpi/ich9.h"
17 #include "hw/acpi/tco.h"
19 #define RCBA_BASE_ADDR 0xfed1c000
20 #define PM_IO_BASE_ADDR 0xb000
23 TCO_RLD_DEFAULT
= 0x0000,
24 TCO_DAT_IN_DEFAULT
= 0x00,
25 TCO_DAT_OUT_DEFAULT
= 0x00,
26 TCO1_STS_DEFAULT
= 0x0000,
27 TCO2_STS_DEFAULT
= 0x0000,
28 TCO1_CNT_DEFAULT
= 0x0000,
29 TCO2_CNT_DEFAULT
= 0x0008,
30 TCO_MESSAGE1_DEFAULT
= 0x00,
31 TCO_MESSAGE2_DEFAULT
= 0x00,
32 TCO_WDCNT_DEFAULT
= 0x00,
33 TCO_TMR_DEFAULT
= 0x0004,
34 SW_IRQ_GEN_DEFAULT
= 0x03,
37 #define TCO_SECS_TO_TICKS(secs) (((secs) * 10) / 6)
38 #define TCO_TICKS_TO_SECS(ticks) (((ticks) * 6) / 10)
48 static void test_end(TestData
*d
)
55 static void test_init(TestData
*d
)
59 qs
= qtest_startf("-machine q35 %s %s",
60 d
->noreboot
? "" : "-global ICH9-LPC.noreboot=false",
61 !d
->args
? "" : d
->args
);
63 qtest_irq_intercept_in(qs
, "ioapic");
65 d
->bus
= qpci_init_pc(NULL
);
66 d
->dev
= qpci_device_find(d
->bus
, QPCI_DEVFN(0x1f, 0x00));
67 g_assert(d
->dev
!= NULL
);
69 qpci_device_enable(d
->dev
);
71 /* set ACPI PM I/O space base address */
72 qpci_config_writel(d
->dev
, ICH9_LPC_PMBASE
, PM_IO_BASE_ADDR
| 0x1);
74 qpci_config_writeb(d
->dev
, ICH9_LPC_ACPI_CTRL
, 0x80);
75 /* set Root Complex BAR */
76 qpci_config_writel(d
->dev
, ICH9_LPC_RCBA
, RCBA_BASE_ADDR
| 0x1);
78 d
->tco_io_bar
= qpci_legacy_iomap(d
->dev
, PM_IO_BASE_ADDR
+ 0x60);
81 static void stop_tco(const TestData
*d
)
85 val
= qpci_io_readw(d
->dev
, d
->tco_io_bar
, TCO1_CNT
);
87 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_CNT
, val
);
90 static void start_tco(const TestData
*d
)
94 val
= qpci_io_readw(d
->dev
, d
->tco_io_bar
, TCO1_CNT
);
96 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_CNT
, val
);
99 static void load_tco(const TestData
*d
)
101 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO_RLD
, 4);
104 static void set_tco_timeout(const TestData
*d
, uint16_t ticks
)
106 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO_TMR
, ticks
);
109 static void clear_tco_status(const TestData
*d
)
111 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO1_STS
, 0x0008);
112 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO2_STS
, 0x0002);
113 qpci_io_writew(d
->dev
, d
->tco_io_bar
, TCO2_STS
, 0x0004);
116 static void reset_on_second_timeout(bool enable
)
120 val
= readl(RCBA_BASE_ADDR
+ ICH9_CC_GCS
);
122 val
&= ~ICH9_CC_GCS_NO_REBOOT
;
124 val
|= ICH9_CC_GCS_NO_REBOOT
;
126 writel(RCBA_BASE_ADDR
+ ICH9_CC_GCS
, val
);
129 static void test_tco_defaults(void)
136 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
), ==,
138 /* TCO_DAT_IN & TCO_DAT_OUT */
139 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_DAT_IN
), ==,
140 (TCO_DAT_OUT_DEFAULT
<< 8) | TCO_DAT_IN_DEFAULT
);
141 /* TCO1_STS & TCO2_STS */
142 g_assert_cmpint(qpci_io_readl(d
.dev
, d
.tco_io_bar
, TCO1_STS
), ==,
143 (TCO2_STS_DEFAULT
<< 16) | TCO1_STS_DEFAULT
);
144 /* TCO1_CNT & TCO2_CNT */
145 g_assert_cmpint(qpci_io_readl(d
.dev
, d
.tco_io_bar
, TCO1_CNT
), ==,
146 (TCO2_CNT_DEFAULT
<< 16) | TCO1_CNT_DEFAULT
);
147 /* TCO_MESSAGE1 & TCO_MESSAGE2 */
148 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_MESSAGE1
), ==,
149 (TCO_MESSAGE2_DEFAULT
<< 8) | TCO_MESSAGE1_DEFAULT
);
150 g_assert_cmpint(qpci_io_readb(d
.dev
, d
.tco_io_bar
, TCO_WDCNT
), ==,
152 g_assert_cmpint(qpci_io_readb(d
.dev
, d
.tco_io_bar
, SW_IRQ_GEN
), ==,
154 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_TMR
), ==,
159 static void test_tco_timeout(void)
162 const uint16_t ticks
= TCO_SECS_TO_TICKS(4);
171 clear_tco_status(&d
);
172 reset_on_second_timeout(false);
173 set_tco_timeout(&d
, ticks
);
176 clock_step(ticks
* TCO_TICK_NSEC
);
178 /* test first timeout */
179 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
180 ret
= val
& TCO_TIMEOUT
? 1 : 0;
183 /* test clearing timeout bit */
185 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_STS
, val
);
186 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
187 ret
= val
& TCO_TIMEOUT
? 1 : 0;
190 /* test second timeout */
191 clock_step(ticks
* TCO_TICK_NSEC
);
192 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
193 ret
= val
& TCO_TIMEOUT
? 1 : 0;
195 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
);
196 ret
= val
& TCO_SECOND_TO_STS
? 1 : 0;
203 static void test_tco_max_timeout(void)
206 const uint16_t ticks
= 0xffff;
215 clear_tco_status(&d
);
216 reset_on_second_timeout(false);
217 set_tco_timeout(&d
, ticks
);
220 clock_step(((ticks
& TCO_TMR_MASK
) - 1) * TCO_TICK_NSEC
);
222 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
);
223 g_assert_cmpint(val
& TCO_RLD_MASK
, ==, 1);
224 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
225 ret
= val
& TCO_TIMEOUT
? 1 : 0;
227 clock_step(TCO_TICK_NSEC
);
228 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
229 ret
= val
& TCO_TIMEOUT
? 1 : 0;
236 static QDict
*get_watchdog_action(void)
240 g_assert(!strcmp(qdict_get_str(ev
, "event"), "WATCHDOG"));
242 data
= qdict_get_qdict(ev
, "data");
248 static void test_tco_second_timeout_pause(void)
251 const uint16_t ticks
= TCO_SECS_TO_TICKS(32);
254 td
.args
= "-watchdog-action pause";
259 clear_tco_status(&td
);
260 reset_on_second_timeout(true);
261 set_tco_timeout(&td
, TCO_SECS_TO_TICKS(16));
264 clock_step(ticks
* TCO_TICK_NSEC
* 2);
265 ad
= get_watchdog_action();
266 g_assert(!strcmp(qdict_get_str(ad
, "action"), "pause"));
273 static void test_tco_second_timeout_reset(void)
276 const uint16_t ticks
= TCO_SECS_TO_TICKS(16);
279 td
.args
= "-watchdog-action reset";
284 clear_tco_status(&td
);
285 reset_on_second_timeout(true);
286 set_tco_timeout(&td
, TCO_SECS_TO_TICKS(16));
289 clock_step(ticks
* TCO_TICK_NSEC
* 2);
290 ad
= get_watchdog_action();
291 g_assert(!strcmp(qdict_get_str(ad
, "action"), "reset"));
298 static void test_tco_second_timeout_shutdown(void)
301 const uint16_t ticks
= TCO_SECS_TO_TICKS(128);
304 td
.args
= "-watchdog-action shutdown";
309 clear_tco_status(&td
);
310 reset_on_second_timeout(true);
311 set_tco_timeout(&td
, ticks
);
314 clock_step(ticks
* TCO_TICK_NSEC
* 2);
315 ad
= get_watchdog_action();
316 g_assert(!strcmp(qdict_get_str(ad
, "action"), "shutdown"));
323 static void test_tco_second_timeout_none(void)
326 const uint16_t ticks
= TCO_SECS_TO_TICKS(256);
329 td
.args
= "-watchdog-action none";
334 clear_tco_status(&td
);
335 reset_on_second_timeout(true);
336 set_tco_timeout(&td
, ticks
);
339 clock_step(ticks
* TCO_TICK_NSEC
* 2);
340 ad
= get_watchdog_action();
341 g_assert(!strcmp(qdict_get_str(ad
, "action"), "none"));
348 static void test_tco_ticks_counter(void)
351 uint16_t ticks
= TCO_SECS_TO_TICKS(8);
359 clear_tco_status(&d
);
360 reset_on_second_timeout(false);
361 set_tco_timeout(&d
, ticks
);
366 rld
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO_RLD
) & TCO_RLD_MASK
;
367 g_assert_cmpint(rld
, ==, ticks
);
368 clock_step(TCO_TICK_NSEC
);
370 } while (!(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
) & TCO_TIMEOUT
));
376 static void test_tco1_control_bits(void)
386 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_CNT
, val
);
388 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_CNT
, val
);
389 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_CNT
), ==,
394 static void test_tco1_status_bits(void)
406 clear_tco_status(&d
);
407 reset_on_second_timeout(false);
408 set_tco_timeout(&d
, ticks
);
411 clock_step(ticks
* TCO_TICK_NSEC
);
413 qpci_io_writeb(d
.dev
, d
.tco_io_bar
, TCO_DAT_IN
, 0);
414 qpci_io_writeb(d
.dev
, d
.tco_io_bar
, TCO_DAT_OUT
, 0);
415 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
);
416 ret
= val
& (TCO_TIMEOUT
| SW_TCO_SMI
| TCO_INT_STS
) ? 1 : 0;
418 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO1_STS
, val
);
419 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO1_STS
), ==, 0);
423 static void test_tco2_status_bits(void)
435 clear_tco_status(&d
);
436 reset_on_second_timeout(true);
437 set_tco_timeout(&d
, ticks
);
440 clock_step(ticks
* TCO_TICK_NSEC
* 2);
442 val
= qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
);
443 ret
= val
& (TCO_SECOND_TO_STS
| TCO_BOOT_STS
) ? 1 : 0;
445 qpci_io_writew(d
.dev
, d
.tco_io_bar
, TCO2_STS
, val
);
446 g_assert_cmpint(qpci_io_readw(d
.dev
, d
.tco_io_bar
, TCO2_STS
), ==, 0);
450 int main(int argc
, char **argv
)
452 g_test_init(&argc
, &argv
, NULL
);
454 qtest_add_func("tco/defaults", test_tco_defaults
);
455 qtest_add_func("tco/timeout/no_action", test_tco_timeout
);
456 qtest_add_func("tco/timeout/no_action/max", test_tco_max_timeout
);
457 qtest_add_func("tco/second_timeout/pause", test_tco_second_timeout_pause
);
458 qtest_add_func("tco/second_timeout/reset", test_tco_second_timeout_reset
);
459 qtest_add_func("tco/second_timeout/shutdown",
460 test_tco_second_timeout_shutdown
);
461 qtest_add_func("tco/second_timeout/none", test_tco_second_timeout_none
);
462 qtest_add_func("tco/counter", test_tco_ticks_counter
);
463 qtest_add_func("tco/tco1_control/bits", test_tco1_control_bits
);
464 qtest_add_func("tco/tco1_status/bits", test_tco1_status_bits
);
465 qtest_add_func("tco/tco2_status/bits", test_tco2_status_bits
);