mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
monitor: Rework API (Jan Kiszka)
Refactor the monitor API and prepare it for decoupled terminals: term_print functions are renamed to monitor_* and all monitor services gain a new parameter (mon) that will once refer to the monitor instance the output is supposed to appear on. However, the argument remains unused for now. All monitor command callbacks are also extended by a mon parameter so that command handlers are able to pass an appropriate reference to monitor output services. For the case that monitor outputs so far happen without clearly identifiable context, the global variable cur_mon is introduced that shall once provide a pointer either to the current active monitor (while processing commands) or to the default one. On the mid or long term, those use case will be obsoleted so that this variable can be removed again. Due to the broad usage of the monitor interface, this patch mostly deals with converting users of the monitor API. A few of them are already extended to pass 'mon' from the command handler further down to internal functions that invoke monitor_printf. At this chance, monitor-related prototypes are moved from console.h to a new monitor.h. The same is done for the readline API. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6711 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
+3
-3
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
#include "hw/hw.h"
|
||||
#include "audio.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "sysemu.h"
|
||||
|
||||
@@ -328,10 +328,10 @@ void AUD_vlog (const char *cap, const char *fmt, va_list ap)
|
||||
{
|
||||
if (conf.log_to_monitor) {
|
||||
if (cap) {
|
||||
term_printf ("%s: ", cap);
|
||||
monitor_printf(cur_mon, "%s: ", cap);
|
||||
}
|
||||
|
||||
term_vprintf (fmt, ap);
|
||||
monitor_vprintf(cur_mon, fmt, ap);
|
||||
}
|
||||
else {
|
||||
if (cap) {
|
||||
|
||||
+11
-10
@@ -1,5 +1,5 @@
|
||||
#include "hw/hw.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "audio.h"
|
||||
|
||||
typedef struct {
|
||||
@@ -71,9 +71,9 @@ static void wav_capture_info (void *opaque)
|
||||
WAVState *wav = opaque;
|
||||
char *path = wav->path;
|
||||
|
||||
term_printf ("Capturing audio(%d,%d,%d) to %s: %d bytes\n",
|
||||
wav->freq, wav->bits, wav->nchannels,
|
||||
path ? path : "<not available>", wav->bytes);
|
||||
monitor_printf(cur_mon, "Capturing audio(%d,%d,%d) to %s: %d bytes\n",
|
||||
wav->freq, wav->bits, wav->nchannels,
|
||||
path ? path : "<not available>", wav->bytes);
|
||||
}
|
||||
|
||||
static struct capture_ops wav_capture_ops = {
|
||||
@@ -84,6 +84,7 @@ static struct capture_ops wav_capture_ops = {
|
||||
int wav_start_capture (CaptureState *s, const char *path, int freq,
|
||||
int bits, int nchannels)
|
||||
{
|
||||
Monitor *mon = cur_mon;
|
||||
WAVState *wav;
|
||||
uint8_t hdr[] = {
|
||||
0x52, 0x49, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x57, 0x41, 0x56,
|
||||
@@ -97,13 +98,13 @@ int wav_start_capture (CaptureState *s, const char *path, int freq,
|
||||
CaptureVoiceOut *cap;
|
||||
|
||||
if (bits != 8 && bits != 16) {
|
||||
term_printf ("incorrect bit count %d, must be 8 or 16\n", bits);
|
||||
monitor_printf(mon, "incorrect bit count %d, must be 8 or 16\n", bits);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (nchannels != 1 && nchannels != 2) {
|
||||
term_printf ("incorrect channel count %d, must be 1 or 2\n",
|
||||
nchannels);
|
||||
monitor_printf(mon, "incorrect channel count %d, must be 1 or 2\n",
|
||||
nchannels);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -131,8 +132,8 @@ int wav_start_capture (CaptureState *s, const char *path, int freq,
|
||||
|
||||
wav->f = qemu_fopen (path, "wb");
|
||||
if (!wav->f) {
|
||||
term_printf ("Failed to open wave file `%s'\nReason: %s\n",
|
||||
path, strerror (errno));
|
||||
monitor_printf(mon, "Failed to open wave file `%s'\nReason: %s\n",
|
||||
path, strerror (errno));
|
||||
qemu_free (wav);
|
||||
return -1;
|
||||
}
|
||||
@@ -146,7 +147,7 @@ int wav_start_capture (CaptureState *s, const char *path, int freq,
|
||||
|
||||
cap = AUD_add_capture (NULL, &as, &ops, wav);
|
||||
if (!cap) {
|
||||
term_printf ("Failed to add audio capture\n");
|
||||
monitor_printf(mon, "Failed to add audio capture\n");
|
||||
qemu_free (wav->path);
|
||||
qemu_fclose (wav->f);
|
||||
qemu_free (wav);
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
#endif
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "block_int.h"
|
||||
|
||||
#ifdef _BSD
|
||||
@@ -1091,66 +1091,66 @@ int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
|
||||
return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
|
||||
}
|
||||
|
||||
void bdrv_info(void)
|
||||
void bdrv_info(Monitor *mon)
|
||||
{
|
||||
BlockDriverState *bs;
|
||||
|
||||
for (bs = bdrv_first; bs != NULL; bs = bs->next) {
|
||||
term_printf("%s:", bs->device_name);
|
||||
term_printf(" type=");
|
||||
monitor_printf(mon, "%s:", bs->device_name);
|
||||
monitor_printf(mon, " type=");
|
||||
switch(bs->type) {
|
||||
case BDRV_TYPE_HD:
|
||||
term_printf("hd");
|
||||
monitor_printf(mon, "hd");
|
||||
break;
|
||||
case BDRV_TYPE_CDROM:
|
||||
term_printf("cdrom");
|
||||
monitor_printf(mon, "cdrom");
|
||||
break;
|
||||
case BDRV_TYPE_FLOPPY:
|
||||
term_printf("floppy");
|
||||
monitor_printf(mon, "floppy");
|
||||
break;
|
||||
}
|
||||
term_printf(" removable=%d", bs->removable);
|
||||
monitor_printf(mon, " removable=%d", bs->removable);
|
||||
if (bs->removable) {
|
||||
term_printf(" locked=%d", bs->locked);
|
||||
monitor_printf(mon, " locked=%d", bs->locked);
|
||||
}
|
||||
if (bs->drv) {
|
||||
term_printf(" file=");
|
||||
term_print_filename(bs->filename);
|
||||
monitor_printf(mon, " file=");
|
||||
monitor_print_filename(mon, bs->filename);
|
||||
if (bs->backing_file[0] != '\0') {
|
||||
term_printf(" backing_file=");
|
||||
term_print_filename(bs->backing_file);
|
||||
}
|
||||
term_printf(" ro=%d", bs->read_only);
|
||||
term_printf(" drv=%s", bs->drv->format_name);
|
||||
term_printf(" encrypted=%d", bdrv_is_encrypted(bs));
|
||||
monitor_printf(mon, " backing_file=");
|
||||
monitor_print_filename(mon, bs->backing_file);
|
||||
}
|
||||
monitor_printf(mon, " ro=%d", bs->read_only);
|
||||
monitor_printf(mon, " drv=%s", bs->drv->format_name);
|
||||
monitor_printf(mon, " encrypted=%d", bdrv_is_encrypted(bs));
|
||||
} else {
|
||||
term_printf(" [not inserted]");
|
||||
monitor_printf(mon, " [not inserted]");
|
||||
}
|
||||
term_printf("\n");
|
||||
monitor_printf(mon, "\n");
|
||||
}
|
||||
}
|
||||
|
||||
/* The "info blockstats" command. */
|
||||
void bdrv_info_stats (void)
|
||||
void bdrv_info_stats(Monitor *mon)
|
||||
{
|
||||
BlockDriverState *bs;
|
||||
BlockDriverInfo bdi;
|
||||
|
||||
for (bs = bdrv_first; bs != NULL; bs = bs->next) {
|
||||
term_printf ("%s:"
|
||||
" rd_bytes=%" PRIu64
|
||||
" wr_bytes=%" PRIu64
|
||||
" rd_operations=%" PRIu64
|
||||
" wr_operations=%" PRIu64
|
||||
,
|
||||
bs->device_name,
|
||||
bs->rd_bytes, bs->wr_bytes,
|
||||
bs->rd_ops, bs->wr_ops);
|
||||
monitor_printf(mon, "%s:"
|
||||
" rd_bytes=%" PRIu64
|
||||
" wr_bytes=%" PRIu64
|
||||
" rd_operations=%" PRIu64
|
||||
" wr_operations=%" PRIu64
|
||||
,
|
||||
bs->device_name,
|
||||
bs->rd_bytes, bs->wr_bytes,
|
||||
bs->rd_ops, bs->wr_ops);
|
||||
if (bdrv_get_info(bs, &bdi) == 0)
|
||||
term_printf(" high=%" PRId64
|
||||
" bytes_free=%" PRId64,
|
||||
bdi.highest_alloc, bdi.num_free_bytes);
|
||||
term_printf("\n");
|
||||
monitor_printf(mon, " high=%" PRId64
|
||||
" bytes_free=%" PRId64,
|
||||
bdi.highest_alloc, bdi.num_free_bytes);
|
||||
monitor_printf(mon, "\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -56,8 +56,8 @@ typedef struct QEMUSnapshotInfo {
|
||||
|
||||
#define BDRV_O_CACHE_MASK (BDRV_O_NOCACHE | BDRV_O_CACHE_WB | BDRV_O_CACHE_DEF)
|
||||
|
||||
void bdrv_info(void);
|
||||
void bdrv_info_stats(void);
|
||||
void bdrv_info(Monitor *mon);
|
||||
void bdrv_info_stats(Monitor *mon);
|
||||
|
||||
void bdrv_init(void);
|
||||
BlockDriver *bdrv_find_format(const char *format_name);
|
||||
|
||||
@@ -43,8 +43,8 @@ struct mouse_transform_info_s {
|
||||
int a[7];
|
||||
};
|
||||
|
||||
void do_info_mice(void);
|
||||
void do_mouse_set(int index);
|
||||
void do_info_mice(Monitor *mon);
|
||||
void do_mouse_set(Monitor *mon, int index);
|
||||
|
||||
/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
|
||||
constants) */
|
||||
@@ -287,39 +287,9 @@ void vnc_display_init(DisplayState *ds);
|
||||
void vnc_display_close(DisplayState *ds);
|
||||
int vnc_display_open(DisplayState *ds, const char *display);
|
||||
int vnc_display_password(DisplayState *ds, const char *password);
|
||||
void do_info_vnc(void);
|
||||
void do_info_vnc(Monitor *mon);
|
||||
|
||||
/* curses.c */
|
||||
void curses_display_init(DisplayState *ds, int full_screen);
|
||||
|
||||
/* FIXME: term_printf et al should probably go elsewhere so everything
|
||||
does not need to include console.h */
|
||||
/* monitor.c */
|
||||
void monitor_init(CharDriverState *hd, int show_banner);
|
||||
void term_puts(const char *str);
|
||||
void term_vprintf(const char *fmt, va_list ap);
|
||||
void term_printf(const char *fmt, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
|
||||
void term_print_filename(const char *filename);
|
||||
void term_flush(void);
|
||||
void term_print_help(void);
|
||||
void monitor_suspend(void);
|
||||
void monitor_resume(void);
|
||||
|
||||
#include "block.h"
|
||||
void monitor_read_bdrv_key_start(BlockDriverState *bs,
|
||||
BlockDriverCompletionFunc *completion_cb,
|
||||
void *opaque);
|
||||
|
||||
/* readline.c */
|
||||
typedef void ReadLineFunc(void *opaque, const char *str);
|
||||
|
||||
extern int completion_index;
|
||||
void add_completion(const char *str);
|
||||
void readline_handle_byte(int ch);
|
||||
void readline_find_completion(const char *cmdline);
|
||||
const char *readline_get_history(unsigned int index);
|
||||
void readline_start(const char *prompt, int is_password,
|
||||
ReadLineFunc *readline_func, void *opaque);
|
||||
void readline_show_prompt(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -308,8 +308,7 @@ const char *lookup_symbol(target_ulong orig_addr)
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
|
||||
void term_vprintf(const char *fmt, va_list ap);
|
||||
void term_printf(const char *fmt, ...);
|
||||
#include "monitor.h"
|
||||
|
||||
static int monitor_disas_is_physical;
|
||||
static CPUState *monitor_disas_env;
|
||||
@@ -330,19 +329,19 @@ static int monitor_fprintf(FILE *stream, const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
term_vprintf(fmt, ap);
|
||||
monitor_vprintf((Monitor *)stream, fmt, ap);
|
||||
va_end(ap);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void monitor_disas(CPUState *env,
|
||||
void monitor_disas(Monitor *mon, CPUState *env,
|
||||
target_ulong pc, int nb_insn, int is_physical, int flags)
|
||||
{
|
||||
int count, i;
|
||||
struct disassemble_info disasm_info;
|
||||
int (*print_insn)(bfd_vma pc, disassemble_info *info);
|
||||
|
||||
INIT_DISASSEMBLE_INFO(disasm_info, NULL, monitor_fprintf);
|
||||
INIT_DISASSEMBLE_INFO(disasm_info, (FILE *)mon, monitor_fprintf);
|
||||
|
||||
monitor_disas_env = env;
|
||||
monitor_disas_is_physical = is_physical;
|
||||
@@ -388,15 +387,15 @@ void monitor_disas(CPUState *env,
|
||||
print_insn = print_insn_little_mips;
|
||||
#endif
|
||||
#else
|
||||
term_printf("0x" TARGET_FMT_lx
|
||||
": Asm output not supported on this arch\n", pc);
|
||||
monitor_printf(mon, "0x" TARGET_FMT_lx
|
||||
": Asm output not supported on this arch\n", pc);
|
||||
return;
|
||||
#endif
|
||||
|
||||
for(i = 0; i < nb_insn; i++) {
|
||||
term_printf("0x" TARGET_FMT_lx ": ", pc);
|
||||
monitor_printf(mon, "0x" TARGET_FMT_lx ": ", pc);
|
||||
count = print_insn(pc, &disasm_info);
|
||||
term_printf("\n");
|
||||
monitor_printf(mon, "\n");
|
||||
if (count < 0)
|
||||
break;
|
||||
pc += count;
|
||||
|
||||
@@ -1,11 +1,17 @@
|
||||
#ifndef _QEMU_DISAS_H
|
||||
#define _QEMU_DISAS_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* Disassemble this for me please... (debugging). */
|
||||
void disas(FILE *out, void *code, unsigned long size);
|
||||
void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
||||
void monitor_disas(CPUState *env,
|
||||
|
||||
/* The usual mess... FIXME: Remove this condition once dyngen-exec.h is gone */
|
||||
#ifndef __DYNGEN_EXEC_H__
|
||||
void monitor_disas(Monitor *mon, CPUState *env,
|
||||
target_ulong pc, int nb_insn, int is_physical, int flags);
|
||||
#endif
|
||||
|
||||
/* Look up symbol for debugging purpose. Returns "" if unknown. */
|
||||
const char *lookup_symbol(target_ulong orig_addr);
|
||||
|
||||
+3
-2
@@ -7,6 +7,7 @@
|
||||
*/
|
||||
|
||||
#include "hw.h"
|
||||
#include "pc.h"
|
||||
#include "mcf.h"
|
||||
#include "sysemu.h"
|
||||
#include "boards.h"
|
||||
@@ -16,11 +17,11 @@
|
||||
#define AN5206_RAMBAR_ADDR 0x20000000
|
||||
|
||||
/* Stub functions for hardware that doesn't exist. */
|
||||
void pic_info(void)
|
||||
void pic_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
void irq_info(void)
|
||||
void irq_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
+3
-2
@@ -8,14 +8,15 @@
|
||||
*/
|
||||
|
||||
#include "hw.h"
|
||||
#include "pc.h"
|
||||
#include "arm-misc.h"
|
||||
|
||||
/* Stub functions for hardware that doesn't exist. */
|
||||
void pic_info(void)
|
||||
void pic_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
void irq_info(void)
|
||||
void irq_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
+3
-2
@@ -24,6 +24,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include "hw.h"
|
||||
#include "pc.h"
|
||||
#include "etraxfs.h"
|
||||
|
||||
#define D(x)
|
||||
@@ -135,11 +136,11 @@ static CPUWriteMemoryFunc *pic_write[] = {
|
||||
&pic_writel,
|
||||
};
|
||||
|
||||
void pic_info(void)
|
||||
void pic_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
void irq_info(void)
|
||||
void irq_info(Monitor *mon)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
+11
-10
@@ -24,7 +24,7 @@
|
||||
#include "hw.h"
|
||||
#include "pc.h"
|
||||
#include "isa.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
|
||||
/* debug PIC */
|
||||
//#define DEBUG_PIC
|
||||
@@ -511,7 +511,7 @@ static void pic_init1(int io_addr, int elcr_addr, PicState *s)
|
||||
qemu_register_reset(pic_reset, s);
|
||||
}
|
||||
|
||||
void pic_info(void)
|
||||
void pic_info(Monitor *mon)
|
||||
{
|
||||
int i;
|
||||
PicState *s;
|
||||
@@ -521,26 +521,27 @@ void pic_info(void)
|
||||
|
||||
for(i=0;i<2;i++) {
|
||||
s = &isa_pic->pics[i];
|
||||
term_printf("pic%d: irr=%02x imr=%02x isr=%02x hprio=%d irq_base=%02x rr_sel=%d elcr=%02x fnm=%d\n",
|
||||
i, s->irr, s->imr, s->isr, s->priority_add,
|
||||
s->irq_base, s->read_reg_select, s->elcr,
|
||||
s->special_fully_nested_mode);
|
||||
monitor_printf(mon, "pic%d: irr=%02x imr=%02x isr=%02x hprio=%d "
|
||||
"irq_base=%02x rr_sel=%d elcr=%02x fnm=%d\n",
|
||||
i, s->irr, s->imr, s->isr, s->priority_add,
|
||||
s->irq_base, s->read_reg_select, s->elcr,
|
||||
s->special_fully_nested_mode);
|
||||
}
|
||||
}
|
||||
|
||||
void irq_info(void)
|
||||
void irq_info(Monitor *mon)
|
||||
{
|
||||
#ifndef DEBUG_IRQ_COUNT
|
||||
term_printf("irq statistic code not compiled.\n");
|
||||
monitor_printf(mon, "irq statistic code not compiled.\n");
|
||||
#else
|
||||
int i;
|
||||
int64_t count;
|
||||
|
||||
term_printf("IRQ statistics:\n");
|
||||
monitor_printf(mon, "IRQ statistics:\n");
|
||||
for (i = 0; i < 16; i++) {
|
||||
count = irq_count[i];
|
||||
if (count > 0)
|
||||
term_printf("%2d: %" PRId64 "\n", i, count);
|
||||
monitor_printf(mon, "%2d: %" PRId64 "\n", i, count);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "net.h"
|
||||
#include "smbus.h"
|
||||
#include "boards.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "fw_cfg.h"
|
||||
#include "virtio-blk.h"
|
||||
#include "virtio-balloon.h"
|
||||
@@ -208,6 +208,7 @@ static int boot_device2nibble(char boot_device)
|
||||
and used there as well */
|
||||
static int pc_boot_set(void *opaque, const char *boot_device)
|
||||
{
|
||||
Monitor *mon = cur_mon;
|
||||
#define PC_MAX_BOOT_DEVICES 3
|
||||
RTCState *s = (RTCState *)opaque;
|
||||
int nbds, bds[3] = { 0, };
|
||||
@@ -215,14 +216,14 @@ static int pc_boot_set(void *opaque, const char *boot_device)
|
||||
|
||||
nbds = strlen(boot_device);
|
||||
if (nbds > PC_MAX_BOOT_DEVICES) {
|
||||
term_printf("Too many boot devices for PC\n");
|
||||
monitor_printf(mon, "Too many boot devices for PC\n");
|
||||
return(1);
|
||||
}
|
||||
for (i = 0; i < nbds; i++) {
|
||||
bds[i] = boot_device2nibble(boot_device[i]);
|
||||
if (bds[i] == 0) {
|
||||
term_printf("Invalid boot device for PC: '%c'\n",
|
||||
boot_device[i]);
|
||||
monitor_printf(mon, "Invalid boot device for PC: '%c'\n",
|
||||
boot_device[i]);
|
||||
return(1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
#ifndef HW_PC_H
|
||||
#define HW_PC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* PC-style peripherals (also used by other machines). */
|
||||
|
||||
/* serial.c */
|
||||
@@ -34,8 +37,8 @@ void pic_set_alt_irq_func(PicState2 *s, SetIRQFunc *alt_irq_func,
|
||||
int pic_read_irq(PicState2 *s);
|
||||
void pic_update_irq(PicState2 *s);
|
||||
uint32_t pic_intack_read(PicState2 *s);
|
||||
void pic_info(void);
|
||||
void irq_info(void);
|
||||
void pic_info(Monitor *mon);
|
||||
void irq_info(Monitor *mon);
|
||||
|
||||
/* APIC */
|
||||
typedef struct IOAPICState IOAPICState;
|
||||
|
||||
+27
-24
@@ -28,7 +28,7 @@
|
||||
#include "net.h"
|
||||
#include "sysemu.h"
|
||||
#include "pc.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "block_int.h"
|
||||
#include "virtio-blk.h"
|
||||
|
||||
@@ -43,7 +43,7 @@ static PCIDevice *qemu_pci_hot_add_nic(PCIBus *pci_bus, const char *opts)
|
||||
return pci_nic_init (pci_bus, &nd_table[ret], -1, "rtl8139");
|
||||
}
|
||||
|
||||
void drive_hot_add(const char *pci_addr, const char *opts)
|
||||
void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts)
|
||||
{
|
||||
int dom, pci_bus;
|
||||
unsigned slot;
|
||||
@@ -52,13 +52,13 @@ void drive_hot_add(const char *pci_addr, const char *opts)
|
||||
PCIDevice *dev;
|
||||
|
||||
if (pci_read_devaddr(pci_addr, &dom, &pci_bus, &slot)) {
|
||||
term_printf("Invalid pci address\n");
|
||||
monitor_printf(mon, "Invalid pci address\n");
|
||||
return;
|
||||
}
|
||||
|
||||
dev = pci_find_device(pci_bus, slot, 0);
|
||||
if (!dev) {
|
||||
term_printf("no pci device with address %s\n", pci_addr);
|
||||
monitor_printf(mon, "no pci device with address %s\n", pci_addr);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -75,16 +75,18 @@ void drive_hot_add(const char *pci_addr, const char *opts)
|
||||
drives_table[drive_idx].unit);
|
||||
break;
|
||||
default:
|
||||
term_printf("Can't hot-add drive to type %d\n", type);
|
||||
monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
|
||||
}
|
||||
|
||||
if (success)
|
||||
term_printf("OK bus %d, unit %d\n", drives_table[drive_idx].bus,
|
||||
drives_table[drive_idx].unit);
|
||||
monitor_printf(mon, "OK bus %d, unit %d\n",
|
||||
drives_table[drive_idx].bus,
|
||||
drives_table[drive_idx].unit);
|
||||
return;
|
||||
}
|
||||
|
||||
static PCIDevice *qemu_pci_hot_add_storage(PCIBus *pci_bus, const char *opts)
|
||||
static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon, PCIBus *pci_bus,
|
||||
const char *opts)
|
||||
{
|
||||
void *opaque = NULL;
|
||||
int type = -1, drive_idx = -1;
|
||||
@@ -97,7 +99,7 @@ static PCIDevice *qemu_pci_hot_add_storage(PCIBus *pci_bus, const char *opts)
|
||||
type = IF_VIRTIO;
|
||||
}
|
||||
} else {
|
||||
term_printf("no if= specified\n");
|
||||
monitor_printf(mon, "no if= specified\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -106,7 +108,7 @@ static PCIDevice *qemu_pci_hot_add_storage(PCIBus *pci_bus, const char *opts)
|
||||
if (drive_idx < 0)
|
||||
return NULL;
|
||||
} else if (type == IF_VIRTIO) {
|
||||
term_printf("virtio requires a backing file/device.\n");
|
||||
monitor_printf(mon, "virtio requires a backing file/device.\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -121,13 +123,14 @@ static PCIDevice *qemu_pci_hot_add_storage(PCIBus *pci_bus, const char *opts)
|
||||
opaque = virtio_blk_init (pci_bus, drives_table[drive_idx].bdrv);
|
||||
break;
|
||||
default:
|
||||
term_printf ("type %s not a hotpluggable PCI device.\n", buf);
|
||||
monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
|
||||
}
|
||||
|
||||
return opaque;
|
||||
}
|
||||
|
||||
void pci_device_hot_add(const char *pci_addr, const char *type, const char *opts)
|
||||
void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
|
||||
const char *opts)
|
||||
{
|
||||
PCIDevice *dev = NULL;
|
||||
PCIBus *pci_bus;
|
||||
@@ -135,47 +138,47 @@ void pci_device_hot_add(const char *pci_addr, const char *type, const char *opts
|
||||
unsigned slot;
|
||||
|
||||
if (pci_assign_devaddr(pci_addr, &dom, &bus, &slot)) {
|
||||
term_printf("Invalid pci address\n");
|
||||
monitor_printf(mon, "Invalid pci address\n");
|
||||
return;
|
||||
}
|
||||
|
||||
pci_bus = pci_find_bus(bus);
|
||||
if (!pci_bus) {
|
||||
term_printf("Can't find pci_bus %d\n", bus);
|
||||
monitor_printf(mon, "Can't find pci_bus %d\n", bus);
|
||||
return;
|
||||
}
|
||||
|
||||
if (strcmp(type, "nic") == 0)
|
||||
dev = qemu_pci_hot_add_nic(pci_bus, opts);
|
||||
else if (strcmp(type, "storage") == 0)
|
||||
dev = qemu_pci_hot_add_storage(pci_bus, opts);
|
||||
dev = qemu_pci_hot_add_storage(mon, pci_bus, opts);
|
||||
else
|
||||
term_printf("invalid type: %s\n", type);
|
||||
monitor_printf(mon, "invalid type: %s\n", type);
|
||||
|
||||
if (dev) {
|
||||
qemu_system_device_hot_add(bus, PCI_SLOT(dev->devfn), 1);
|
||||
term_printf("OK domain %d, bus %d, slot %d, function %d\n",
|
||||
0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
|
||||
PCI_FUNC(dev->devfn));
|
||||
monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
|
||||
0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
|
||||
PCI_FUNC(dev->devfn));
|
||||
} else
|
||||
term_printf("failed to add %s\n", opts);
|
||||
monitor_printf(mon, "failed to add %s\n", opts);
|
||||
}
|
||||
#endif
|
||||
|
||||
void pci_device_hot_remove(const char *pci_addr)
|
||||
void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
|
||||
{
|
||||
PCIDevice *d;
|
||||
int dom, bus;
|
||||
unsigned slot;
|
||||
|
||||
if (pci_read_devaddr(pci_addr, &dom, &bus, &slot)) {
|
||||
term_printf("Invalid pci address\n");
|
||||
monitor_printf(mon, "Invalid pci address\n");
|
||||
return;
|
||||
}
|
||||
|
||||
d = pci_find_device(bus, slot, 0);
|
||||
if (!d) {
|
||||
term_printf("slot %d empty\n", slot);
|
||||
monitor_printf(mon, "slot %d empty\n", slot);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -199,7 +202,7 @@ void pci_device_hot_remove_success(int pcibus, int slot)
|
||||
int class_code;
|
||||
|
||||
if (!d) {
|
||||
term_printf("invalid slot %d\n", slot);
|
||||
monitor_printf(cur_mon, "invalid slot %d\n", slot);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "pci.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
#include "net.h"
|
||||
#include "virtio-net.h"
|
||||
#include "sysemu.h"
|
||||
@@ -705,42 +705,44 @@ static const pci_class_desc pci_class_descriptions[] =
|
||||
|
||||
static void pci_info_device(PCIDevice *d)
|
||||
{
|
||||
Monitor *mon = cur_mon;
|
||||
int i, class;
|
||||
PCIIORegion *r;
|
||||
const pci_class_desc *desc;
|
||||
|
||||
term_printf(" Bus %2d, device %3d, function %d:\n",
|
||||
d->bus->bus_num, d->devfn >> 3, d->devfn & 7);
|
||||
monitor_printf(mon, " Bus %2d, device %3d, function %d:\n",
|
||||
d->bus->bus_num, d->devfn >> 3, d->devfn & 7);
|
||||
class = le16_to_cpu(*((uint16_t *)(d->config + PCI_CLASS_DEVICE)));
|
||||
term_printf(" ");
|
||||
monitor_printf(mon, " ");
|
||||
desc = pci_class_descriptions;
|
||||
while (desc->desc && class != desc->class)
|
||||
desc++;
|
||||
if (desc->desc) {
|
||||
term_printf("%s", desc->desc);
|
||||
monitor_printf(mon, "%s", desc->desc);
|
||||
} else {
|
||||
term_printf("Class %04x", class);
|
||||
monitor_printf(mon, "Class %04x", class);
|
||||
}
|
||||
term_printf(": PCI device %04x:%04x\n",
|
||||
monitor_printf(mon, ": PCI device %04x:%04x\n",
|
||||
le16_to_cpu(*((uint16_t *)(d->config + PCI_VENDOR_ID))),
|
||||
le16_to_cpu(*((uint16_t *)(d->config + PCI_DEVICE_ID))));
|
||||
|
||||
if (d->config[PCI_INTERRUPT_PIN] != 0) {
|
||||
term_printf(" IRQ %d.\n", d->config[PCI_INTERRUPT_LINE]);
|
||||
monitor_printf(mon, " IRQ %d.\n",
|
||||
d->config[PCI_INTERRUPT_LINE]);
|
||||
}
|
||||
if (class == 0x0604) {
|
||||
term_printf(" BUS %d.\n", d->config[0x19]);
|
||||
monitor_printf(mon, " BUS %d.\n", d->config[0x19]);
|
||||
}
|
||||
for(i = 0;i < PCI_NUM_REGIONS; i++) {
|
||||
r = &d->io_regions[i];
|
||||
if (r->size != 0) {
|
||||
term_printf(" BAR%d: ", i);
|
||||
monitor_printf(mon, " BAR%d: ", i);
|
||||
if (r->type & PCI_ADDRESS_SPACE_IO) {
|
||||
term_printf("I/O at 0x%04x [0x%04x].\n",
|
||||
r->addr, r->addr + r->size - 1);
|
||||
monitor_printf(mon, "I/O at 0x%04x [0x%04x].\n",
|
||||
r->addr, r->addr + r->size - 1);
|
||||
} else {
|
||||
term_printf("32 bit memory at 0x%08x [0x%08x].\n",
|
||||
r->addr, r->addr + r->size - 1);
|
||||
monitor_printf(mon, "32 bit memory at 0x%08x [0x%08x].\n",
|
||||
r->addr, r->addr + r->size - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -766,7 +768,7 @@ void pci_for_each_device(int bus_num, void (*fn)(PCIDevice *d))
|
||||
}
|
||||
}
|
||||
|
||||
void pci_info(void)
|
||||
void pci_info(Monitor *mon)
|
||||
{
|
||||
pci_for_each_device(0, pci_info_device);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef QEMU_PCI_H
|
||||
#define QEMU_PCI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* PCI includes legacy ISA access. */
|
||||
#include "isa.h"
|
||||
|
||||
@@ -242,7 +244,7 @@ PCIDevice *pci_find_device(int bus_num, int slot, int function);
|
||||
int pci_read_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp);
|
||||
int pci_assign_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp);
|
||||
|
||||
void pci_info(void);
|
||||
void pci_info(Monitor *mon);
|
||||
PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
|
||||
pci_map_irq_fn map_irq, const char *name);
|
||||
|
||||
|
||||
+3
-1
@@ -1,5 +1,7 @@
|
||||
/* PCMCIA/Cardbus */
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
struct pcmcia_socket_s {
|
||||
qemu_irq irq;
|
||||
int attached;
|
||||
@@ -9,7 +11,7 @@ struct pcmcia_socket_s {
|
||||
|
||||
void pcmcia_socket_register(struct pcmcia_socket_s *socket);
|
||||
void pcmcia_socket_unregister(struct pcmcia_socket_s *socket);
|
||||
void pcmcia_info(void);
|
||||
void pcmcia_info(Monitor *mon);
|
||||
|
||||
struct pcmcia_card_s {
|
||||
void *state;
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
More information in target-sh4/README.sh4
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "pc.h"
|
||||
#include "sh.h"
|
||||
#include "sysemu.h"
|
||||
#include "boards.h"
|
||||
@@ -35,12 +36,12 @@
|
||||
#define BIOS_FILENAME "shix_bios.bin"
|
||||
#define BIOS_ADDRESS 0xA0000000
|
||||
|
||||
void irq_info(void)
|
||||
void irq_info(Monitor *mon)
|
||||
{
|
||||
/* XXXXX */
|
||||
}
|
||||
|
||||
void pic_info(void)
|
||||
void pic_info(Monitor *mon)
|
||||
{
|
||||
/* XXXXX */
|
||||
}
|
||||
|
||||
+10
-10
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "sun4m.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
|
||||
//#define DEBUG_IRQ_COUNT
|
||||
//#define DEBUG_IRQ
|
||||
@@ -219,33 +219,33 @@ static CPUWriteMemoryFunc *slavio_intctlm_mem_write[3] = {
|
||||
slavio_intctlm_mem_writel,
|
||||
};
|
||||
|
||||
void slavio_pic_info(void *opaque)
|
||||
void slavio_pic_info(Monitor *mon, void *opaque)
|
||||
{
|
||||
SLAVIO_INTCTLState *s = opaque;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < MAX_CPUS; i++) {
|
||||
term_printf("per-cpu %d: pending 0x%08x\n", i,
|
||||
s->slaves[i]->intreg_pending);
|
||||
monitor_printf(mon, "per-cpu %d: pending 0x%08x\n", i,
|
||||
s->slaves[i]->intreg_pending);
|
||||
}
|
||||
term_printf("master: pending 0x%08x, disabled 0x%08x\n",
|
||||
s->intregm_pending, s->intregm_disabled);
|
||||
monitor_printf(mon, "master: pending 0x%08x, disabled 0x%08x\n",
|
||||
s->intregm_pending, s->intregm_disabled);
|
||||
}
|
||||
|
||||
void slavio_irq_info(void *opaque)
|
||||
void slavio_irq_info(Monitor *mon, void *opaque)
|
||||
{
|
||||
#ifndef DEBUG_IRQ_COUNT
|
||||
term_printf("irq statistic code not compiled.\n");
|
||||
monitor_printf(mon, "irq statistic code not compiled.\n");
|
||||
#else
|
||||
SLAVIO_INTCTLState *s = opaque;
|
||||
int i;
|
||||
int64_t count;
|
||||
|
||||
term_printf("IRQ statistics:\n");
|
||||
monitor_printf(mon, "IRQ statistics:\n");
|
||||
for (i = 0; i < 32; i++) {
|
||||
count = s->irq_count[i];
|
||||
if (count > 0)
|
||||
term_printf("%2d: %" PRId64 "\n", i, count);
|
||||
monitor_printf(mon, "%2d: %" PRId64 "\n", i, count);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
+8
-8
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "sun4m.h"
|
||||
#include "console.h"
|
||||
#include "monitor.h"
|
||||
//#define DEBUG_IRQ_COUNT
|
||||
//#define DEBUG_IRQ
|
||||
|
||||
@@ -90,26 +90,26 @@ static CPUWriteMemoryFunc *sun4c_intctl_mem_write[3] = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
void sun4c_pic_info(void *opaque)
|
||||
void sun4c_pic_info(Monitor *mon, void *opaque)
|
||||
{
|
||||
Sun4c_INTCTLState *s = opaque;
|
||||
|
||||
term_printf("master: pending 0x%2.2x, enabled 0x%2.2x\n", s->pending,
|
||||
s->reg);
|
||||
monitor_printf(mon, "master: pending 0x%2.2x, enabled 0x%2.2x\n",
|
||||
s->pending, s->reg);
|
||||
}
|
||||
|
||||
void sun4c_irq_info(void *opaque)
|
||||
void sun4c_irq_info(Monitor *mon, void *opaque)
|
||||
{
|
||||
#ifndef DEBUG_IRQ_COUNT
|
||||
term_printf("irq statistic code not compiled.\n");
|
||||
monitor_printf(mon, "irq statistic code not compiled.\n");
|
||||
#else
|
||||
Sun4c_INTCTLState *s = opaque;
|
||||
int64_t count;
|
||||
|
||||
term_printf("IRQ statistics:\n");
|
||||
monitor_printf(mon, "IRQ statistics:\n");
|
||||
count = s->irq_count[i];
|
||||
if (count > 0)
|
||||
term_printf("%2d: %" PRId64 "\n", i, count);
|
||||
monitor_printf(mon, "%2d: %" PRId64 "\n", i, count);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user