hw/ppc: Avoid using Monitor in pnv_xive2_pic_print_info()
Replace Monitor API by HumanReadableText one. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Harsh Prateek Bora <harshpb@linux.ibm.com> Message-Id: <20240610062105.49848-23-philmd@linaro.org>
This commit is contained in:
parent
e6024fd832
commit
70fb275d07
@ -10,11 +10,9 @@
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/log.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/type-helpers.h"
|
||||
#include "target/ppc/cpu.h"
|
||||
#include "sysemu/cpus.h"
|
||||
#include "sysemu/dma.h"
|
||||
#include "monitor/monitor.h"
|
||||
#include "hw/ppc/fdt.h"
|
||||
#include "hw/ppc/pnv.h"
|
||||
#include "hw/ppc/pnv_chip.h"
|
||||
@ -2105,7 +2103,7 @@ static uint64_t pnv_xive2_vst_per_subpage(PnvXive2 *xive, uint32_t type)
|
||||
return (1ull << page_shift) / info->size;
|
||||
}
|
||||
|
||||
void pnv_xive2_pic_print_info(PnvXive2 *xive, Monitor *mon)
|
||||
void pnv_xive2_pic_print_info(PnvXive2 *xive, GString *buf)
|
||||
{
|
||||
Xive2Router *xrtr = XIVE2_ROUTER(xive);
|
||||
uint8_t blk = pnv_xive2_block_id(xive);
|
||||
@ -2117,8 +2115,6 @@ void pnv_xive2_pic_print_info(PnvXive2 *xive, Monitor *mon)
|
||||
Xive2Nvp nvp;
|
||||
int i;
|
||||
uint64_t xive_nvp_per_subpage;
|
||||
g_autoptr(GString) buf = g_string_new("");
|
||||
g_autoptr(HumanReadableText) info = NULL;
|
||||
|
||||
g_string_append_printf(buf, "XIVE[%x] Source %08x .. %08x\n",
|
||||
blk, srcno0, srcno0 + nr_esbs - 1);
|
||||
@ -2156,7 +2152,4 @@ void pnv_xive2_pic_print_info(PnvXive2 *xive, Monitor *mon)
|
||||
xive2_nvp_pic_print_info(&nvp, i++, buf);
|
||||
}
|
||||
}
|
||||
|
||||
info = human_readable_text_from_str(buf);
|
||||
monitor_puts(mon, info->human_readable_text);
|
||||
}
|
||||
|
@ -864,7 +864,7 @@ static void pnv_chip_power10_pic_print_info(PnvChip *chip, Monitor *mon)
|
||||
g_autoptr(GString) buf = g_string_new("");
|
||||
g_autoptr(HumanReadableText) info = NULL;
|
||||
|
||||
pnv_xive2_pic_print_info(&chip10->xive, mon);
|
||||
pnv_xive2_pic_print_info(&chip10->xive, buf);
|
||||
|
||||
pnv_psi_pic_print_info(&chip10->psi, buf);
|
||||
info = human_readable_text_from_str(buf);
|
||||
|
@ -163,6 +163,6 @@ typedef struct PnvXive2Class {
|
||||
DeviceRealize parent_realize;
|
||||
} PnvXive2Class;
|
||||
|
||||
void pnv_xive2_pic_print_info(PnvXive2 *xive, Monitor *mon);
|
||||
void pnv_xive2_pic_print_info(PnvXive2 *xive, GString *buf);
|
||||
|
||||
#endif /* PPC_PNV_XIVE_H */
|
||||
|
Loading…
Reference in New Issue
Block a user