]> git.proxmox.com Git - qemu.git/commit - hw/spapr_rtas.c
pseries: Consolidate hack for RTAS display-character usage
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 4 Apr 2012 05:02:07 +0000 (15:02 +1000)
committerAndreas Färber <afaerber@suse.de>
Sun, 15 Apr 2012 15:07:19 +0000 (17:07 +0200)
commit5f2e2ba2625d6fa4ecbc2af86e076c20ab84c171
tree5e05cd8d51dac60a279db6bdd40af035853c3144
parent3b768df95a877577a9b8d7ea98166240b017ca84
pseries: Consolidate hack for RTAS display-character usage

Currently the pseries machine contains not one but two somewhat ugly hacks
to allow printing of early debug messages before the guest has properly
read the device tree.

First, we special case H_PUT_TERM_CHAR so that a vtermno of 0 (usually
invalid) will look for a suitable vty and use that.  This supports Linux's
early debug code which will use H_PUT_TERM_CHAR with vtermno==0 before
reading the device tree.  Second, we support the RTAS display-character call.
This takes no vtermno so we assume the address of the default first VTY.

This patch makes things more consistent by folding the second hack into the
first.  Now, display-character uses the existing vty_lookup() function to
do the same search for a suitable VTY.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Andreas Färber <afaerber@suse.de>
hw/spapr_rtas.c
hw/spapr_vio.h
hw/spapr_vty.c