]> git.proxmox.com Git - mirror_qemu.git/commit - softmmu/vl.c
qdev: convert watchdogs
authorMarkus Armbruster <armbru@redhat.com>
Fri, 21 Aug 2009 08:31:34 +0000 (10:31 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 28 Aug 2009 01:35:24 +0000 (20:35 -0500)
commit09aaa1602f9381c0e0fb539390b1793e51bdfc7b
treeabb82ec81e3f501e46d1104ab8e1af8fdfecd58e
parent9d472d51ea26af6f3006e50a9b5088efcb95e7ce
qdev: convert watchdogs

-watchdog NAME is now equivalent to -device NAME, except it treats
option argument '?' specially, and supports only one watchdog.

A side effect is that a device created with -watchdog may now receive
a different PCI address.

i6300esb is now available on any machine with a PCI bus, not just PCs.
ib700 is still PC only, but that could be changed easily.

The only remaining use of struct WatchdogTimerModel and
watchdog_add_model() is supporting '-watchdog ?'.  Should be replaced
by searching device_info_list for watchdog devices when we can
identify them there.

Also fixes ib700 not to use vm_clock before it is initialized: in
wdt_ib700_init(), called from register_watchdogs(), which runs before
init_timers().  The bug made ib700_write_enable_reg() crash in
qemu_del_timer().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Makefile.target
hw/pc.c
hw/watchdog.c
hw/watchdog.h
hw/wdt_i6300esb.c
hw/wdt_ib700.c
vl.c