From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/2] vmware backdoor interface fix
Date: Wed, 04 Jun 2008 09:09:58 -0500 [thread overview]
Message-ID: <4846A236.8010001@codemonkey.ws> (raw)
In-Reply-To: <20080604132033.GB31694@minantech.com>
Gleb Natapov wrote:
> Hello,
>
> VMWare backdoor interface should work with IN/OUT port ops, but
> currently only IN is supported. BACHS bios uses OUT to query UUID.
> The patch adds OUT support.
>
> Signed-off-by: Gleb Natapov <glen <at> qumranet.com>
>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Regards,
Anthony Liguori
> Index: qemu/hw/vmport.c
> ===================================================================
> --- qemu.orig/hw/vmport.c 2008-06-04 14:02:04.000000000 +0300
> +++ qemu/hw/vmport.c 2008-06-04 14:17:10.000000000 +0300
> @@ -72,6 +72,13 @@ static uint32_t vmport_ioport_read(void
> return s->func[command](s->opaque[command], addr);
> }
>
> +static void vmport_ioport_write(void *opaque, uint32_t addr, uint32_t val)
> +{
> + CPUState *env = cpu_single_env;
> +
> + env->regs[R_EAX] = vmport_ioport_read(opaque, addr);
> +}
> +
> static uint32_t vmport_cmd_get_version(void *opaque, uint32_t addr)
> {
> CPUState *env = cpu_single_env;
> @@ -89,6 +96,7 @@ static uint32_t vmport_cmd_ram_size(void
> void vmport_init(void)
> {
> register_ioport_read(0x5658, 1, 4, vmport_ioport_read, &port_state);
> + register_ioport_write(0x5658, 1, 4, vmport_ioport_write, &port_state);
>
> /* Register some generic port commands */
> vmport_register(VMPORT_CMD_GETVERSION, vmport_cmd_get_version, NULL);
> --
> Gleb.
>
>
>
prev parent reply other threads:[~2008-06-04 14:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-04 13:20 [Qemu-devel] [PATCH 1/2] vmware backdoor interface fix Gleb Natapov
2008-06-04 14:09 ` Anthony Liguori [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4846A236.8010001@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).