From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51135) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQF7e-0000BJ-6R for qemu-devel@nongnu.org; Mon, 22 Oct 2012 06:20:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TQF7c-0005w4-Ip for qemu-devel@nongnu.org; Mon, 22 Oct 2012 06:20:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13563) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQF7c-0005vA-9m for qemu-devel@nongnu.org; Mon, 22 Oct 2012 06:20:36 -0400 Date: Mon, 22 Oct 2012 13:22:40 +0200 From: "Michael S. Tsirkin" Message-ID: <20121022112240.GE30844@redhat.com> References: <86fb4fa7670dcfb45cfcfe0b1a15968e351d7cab.1350677361.git.jbaron@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86fb4fa7670dcfb45cfcfe0b1a15968e351d7cab.1350677361.git.jbaron@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 12/26] ich9: Add acpi support and definitions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Baron Cc: agraf@suse.de, aliguori@us.ibm.com, juzhang@redhat.com, jan.kiszka@siemens.com, qemu-devel@nongnu.org, armbru@redhat.com, blauwirbel@gmail.com, yamahata@valinux.co.jp, alex.williamson@redhat.com, kevin@koconnor.net, avi@redhat.com, mkletzan@redhat.com, pbonzini@redhat.com, lcapitulino@redhat.com, afaerber@suse.de, kraxel@redhat.com On Fri, Oct 19, 2012 at 04:43:33PM -0400, Jason Baron wrote: > From: Jason Baron > > Lay the groundwork for subsequent ich9 support. > > Signed-off-by: Isaku Yamahata > Signed-off-by: Jason Baron > --- > hw/acpi_ich9.c | 315 +++++++++++++++++++++++++++++++++++++++++++++++++ > hw/acpi_ich9.h | 47 ++++++++ > hw/i386/Makefile.objs | 1 + > hw/ich9.h | 207 ++++++++++++++++++++++++++++++++ > hw/pci_ids.h | 12 ++ > 5 files changed, 582 insertions(+), 0 deletions(-) > create mode 100644 hw/acpi_ich9.c > create mode 100644 hw/acpi_ich9.h > create mode 100644 hw/ich9.h > > diff --git a/hw/acpi_ich9.c b/hw/acpi_ich9.c > new file mode 100644 > index 0000000..c45921c > --- /dev/null > +++ b/hw/acpi_ich9.c > @@ -0,0 +1,315 @@ > +/* > + * ACPI implementation > + * > + * Copyright (c) 2006 Fabrice Bellard > + * > + * This library is free software; you can redistribute it and/or > + * modify it under the terms of the GNU Lesser General Public > + * License version 2 as published by the Free Software Foundation. > + * > + * This library is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > + * Lesser General Public License for more details. > + * > + * You should have received a copy of the GNU Lesser General Public > + * License along with this library; if not, see > + */ > +/* > + * Copyright (c) 2009 Isaku Yamahata > + * VA Linux Systems Japan K.K. > + * Copyright (C) 2012 Jason Baron > + * > + * This is based on acpi.c. > + */ Anthony, acpi.c header says: * Contributions after 2012-01-13 are licensed under the terms of the * GNU GPL, version 2 or (at your option) any later version. I am guessing it would be hard to guess which parts of this patch are original and which are derivative. -- MST