hw/ppc: Avoid using Monitor in xive2_end_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-21-philmd@linaro.org>
This commit is contained in:
parent
fd32d82339
commit
33e3642684
@ -2141,14 +2141,14 @@ void pnv_xive2_pic_print_info(PnvXive2 *xive, Monitor *mon)
|
||||
while (!xive2_router_get_end(xrtr, blk, i, &end)) {
|
||||
xive2_end_eas_pic_print_info(&end, i++, buf);
|
||||
}
|
||||
info = human_readable_text_from_str(buf);
|
||||
monitor_puts(mon, info->human_readable_text);
|
||||
|
||||
monitor_printf(mon, "XIVE[%x] #%d ENDT\n", chip_id, blk);
|
||||
g_string_append_printf(buf, "XIVE[%x] #%d ENDT\n", chip_id, blk);
|
||||
i = 0;
|
||||
while (!xive2_router_get_end(xrtr, blk, i, &end)) {
|
||||
xive2_end_pic_print_info(&end, i++, mon);
|
||||
xive2_end_pic_print_info(&end, i++, buf);
|
||||
}
|
||||
info = human_readable_text_from_str(buf);
|
||||
monitor_puts(mon, info->human_readable_text);
|
||||
|
||||
monitor_printf(mon, "XIVE[%x] #%d NVPT %08x .. %08x\n", chip_id, blk,
|
||||
0, XIVE2_NVP_COUNT - 1);
|
||||
|
@ -11,12 +11,10 @@
|
||||
#include "qemu/log.h"
|
||||
#include "qemu/module.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/type-helpers.h"
|
||||
#include "target/ppc/cpu.h"
|
||||
#include "sysemu/cpus.h"
|
||||
#include "sysemu/dma.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "monitor/monitor.h"
|
||||
#include "hw/ppc/xive.h"
|
||||
#include "hw/ppc/xive2.h"
|
||||
#include "hw/ppc/xive2_regs.h"
|
||||
@ -71,7 +69,7 @@ void xive2_end_queue_pic_print_info(Xive2End *end, uint32_t width, GString *buf)
|
||||
g_string_append_printf(buf, "]");
|
||||
}
|
||||
|
||||
void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, Monitor *mon)
|
||||
void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, GString *buf)
|
||||
{
|
||||
uint64_t qaddr_base = xive2_end_qaddr(end);
|
||||
uint32_t qindex = xive_get_field32(END2_W1_PAGE_OFF, end->w1);
|
||||
@ -90,34 +88,30 @@ void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, Monitor *mon)
|
||||
|
||||
pq = xive_get_field32(END2_W1_ESn, end->w1);
|
||||
|
||||
monitor_printf(mon,
|
||||
" %08x %c%c %c%c%c%c%c%c%c%c%c%c prio:%d nvp:%02x/%04x",
|
||||
end_idx,
|
||||
pq & XIVE_ESB_VAL_P ? 'P' : '-',
|
||||
pq & XIVE_ESB_VAL_Q ? 'Q' : '-',
|
||||
xive2_end_is_valid(end) ? 'v' : '-',
|
||||
xive2_end_is_enqueue(end) ? 'q' : '-',
|
||||
xive2_end_is_notify(end) ? 'n' : '-',
|
||||
xive2_end_is_backlog(end) ? 'b' : '-',
|
||||
xive2_end_is_escalate(end) ? 'e' : '-',
|
||||
xive2_end_is_escalate_end(end) ? 'N' : '-',
|
||||
xive2_end_is_uncond_escalation(end) ? 'u' : '-',
|
||||
xive2_end_is_silent_escalation(end) ? 's' : '-',
|
||||
xive2_end_is_firmware1(end) ? 'f' : '-',
|
||||
xive2_end_is_firmware2(end) ? 'F' : '-',
|
||||
priority, nvp_blk, nvp_idx);
|
||||
g_string_append_printf(buf,
|
||||
" %08x %c%c %c%c%c%c%c%c%c%c%c%c "
|
||||
"prio:%d nvp:%02x/%04x",
|
||||
end_idx,
|
||||
pq & XIVE_ESB_VAL_P ? 'P' : '-',
|
||||
pq & XIVE_ESB_VAL_Q ? 'Q' : '-',
|
||||
xive2_end_is_valid(end) ? 'v' : '-',
|
||||
xive2_end_is_enqueue(end) ? 'q' : '-',
|
||||
xive2_end_is_notify(end) ? 'n' : '-',
|
||||
xive2_end_is_backlog(end) ? 'b' : '-',
|
||||
xive2_end_is_escalate(end) ? 'e' : '-',
|
||||
xive2_end_is_escalate_end(end) ? 'N' : '-',
|
||||
xive2_end_is_uncond_escalation(end) ? 'u' : '-',
|
||||
xive2_end_is_silent_escalation(end) ? 's' : '-',
|
||||
xive2_end_is_firmware1(end) ? 'f' : '-',
|
||||
xive2_end_is_firmware2(end) ? 'F' : '-',
|
||||
priority, nvp_blk, nvp_idx);
|
||||
|
||||
if (qaddr_base) {
|
||||
g_autoptr(GString) buf = g_string_new("");
|
||||
g_autoptr(HumanReadableText) info = NULL;
|
||||
|
||||
monitor_printf(mon, " eq:@%08"PRIx64"% 6d/%5d ^%d",
|
||||
qaddr_base, qindex, qentries, qgen);
|
||||
g_string_append_printf(buf, " eq:@%08"PRIx64"% 6d/%5d ^%d",
|
||||
qaddr_base, qindex, qentries, qgen);
|
||||
xive2_end_queue_pic_print_info(end, 6, buf);
|
||||
info = human_readable_text_from_str(buf);
|
||||
monitor_puts(mon, info->human_readable_text);
|
||||
}
|
||||
monitor_printf(mon, "\n");
|
||||
g_string_append_c(buf, '\n');
|
||||
}
|
||||
|
||||
void xive2_end_eas_pic_print_info(Xive2End *end, uint32_t end_idx,
|
||||
|
@ -130,7 +130,7 @@ static inline uint64_t xive2_end_qaddr(Xive2End *end)
|
||||
(be32_to_cpu(end->w3) & END2_W3_EQ_ADDR_LO);
|
||||
}
|
||||
|
||||
void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, Monitor *mon);
|
||||
void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, GString *buf);
|
||||
void xive2_end_queue_pic_print_info(Xive2End *end, uint32_t width,
|
||||
GString *buf);
|
||||
void xive2_end_eas_pic_print_info(Xive2End *end, uint32_t end_idx,
|
||||
|
Loading…
Reference in New Issue
Block a user