From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0l7b-000771-O4 for qemu-devel@nongnu.org; Thu, 12 May 2016 03:33:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b0l7X-00084q-40 for qemu-devel@nongnu.org; Thu, 12 May 2016 03:33:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43287) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0l7W-00084k-UK for qemu-devel@nongnu.org; Thu, 12 May 2016 03:33:19 -0400 Date: Thu, 12 May 2016 10:33:15 +0300 From: "Michael S. Tsirkin" Message-ID: <20160512073315.GA22625@redhat.com> References: <1462995966-1184-1-git-send-email-minyard@acm.org> <1462995966-1184-7-git-send-email-minyard@acm.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1462995966-1184-7-git-send-email-minyard@acm.org> Subject: Re: [Qemu-devel] [PATCH 6/7] ipmi: Fix SSIF ACPI handling to use the right CRS List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: minyard@acm.org Cc: Igor Mammedov , Paolo Bonzini , qemu-devel@nongnu.org, Corey Minyard On Wed, May 11, 2016 at 02:46:05PM -0500, minyard@acm.org wrote: > From: Corey Minyard > > Signed-off-by: Corey Minyard > --- > hw/acpi/ipmi.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/hw/acpi/ipmi.c b/hw/acpi/ipmi.c > index 731f4ad..c187fdd 100644 > --- a/hw/acpi/ipmi.c > +++ b/hw/acpi/ipmi.c > @@ -49,7 +49,9 @@ static Aml *aml_ipmi_crs(IPMIFwInfo *info) > regspacing, info->register_length)); > break; > case IPMI_MEMSPACE_SMBUS: > - aml_append(crs, aml_return(aml_int(info->base_address))); > + aml_append(crs, aml_i2c_serial_bus_device(0, 100000, > + info->base_address, > + info->acpi_parent)); Isn't this fairly new? If so using these opcodes is likely to break some older guests. Maybe they already don't work, but I'd like to see some explanation about that, and what was tested. > break; > default: > abort(); > -- > 2.7.4