From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YUZ0m-0005hv-Uo for qemu-devel@nongnu.org; Sun, 08 Mar 2015 07:04:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YUZ0l-0000fk-Ok for qemu-devel@nongnu.org; Sun, 08 Mar 2015 07:04:44 -0400 Message-ID: <54FC2CA7.8080408@redhat.com> Date: Sun, 08 Mar 2015 13:04:07 +0200 From: Marcel Apfelbaum MIME-Version: 1.0 References: <1425567322-8337-1-git-send-email-marcel@redhat.com> <1425567322-8337-11-git-send-email-marcel@redhat.com> <20150308104634.GA4714@redhat.com> In-Reply-To: <20150308104634.GA4714@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 for-2.3 10/24] hw/apci: add _PRT method for extra PCI root busses List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: kraxel@redhat.com, quintela@redhat.com, seabios@seabios.org, qemu-devel@nongnu.org, agraf@suse.de, alex.williamson@redhat.com, kevin@koconnor.net, qemu-ppc@nongnu.org, hare@suse.de, imammedo@redhat.com, amit.shah@redhat.com, pbonzini@redhat.com, leon.alrae@imgtec.com, aurelien@aurel32.net, rth@twiddle.net On 03/08/2015 12:46 PM, Michael S. Tsirkin wrote: > On Thu, Mar 05, 2015 at 04:55:08PM +0200, Marcel Apfelbaum wrote: >> Signed-off-by: Marcel Apfelbaum > > some ideas for cleaning this up. > there's more here btw. > >> --- >> hw/i386/acpi-build.c | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 78 insertions(+) >> >> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c >> index e5709e8..f0401d2 100644 >> --- a/hw/i386/acpi-build.c >> +++ b/hw/i386/acpi-build.c >> @@ -664,6 +664,83 @@ static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus, >> aml_append(parent_scope, method); >> } >> >> +static Aml *build_prt(void) >> +{ >> + Aml *method, *pkg, *if_ctx, *while_ctx; >> + >> + method = aml_method("_PRT", 0); >> + >> + aml_append(method, aml_store(aml_package(128), aml_local(0))); >> + aml_append(method, aml_store(aml_int(0), aml_local(1))); >> + while_ctx = aml_while(aml_lless(aml_local(1), aml_int(128))); >> + { >> + aml_append(while_ctx, >> + aml_store(aml_shiftright(aml_local(1), aml_int(2)), aml_local(2))); >> + aml_append(while_ctx, >> + aml_store(aml_and(aml_add(aml_local(1), aml_local(2)), aml_int(3)), >> + aml_local(3))); > > > As an example, you can have > > Aml *i = aml_local(1); > Aml *mask = aml_local(2); Hi Michael, Thank you for the tip, the implementation is ready and I'll submit it right away. BTW, I found a bug in aml_equal implementation during re-testing, so it was worth it! Thanks, Marcel > > >> + >> + if_ctx = aml_if(aml_equal(aml_local(3), aml_int(0))); >> + { >> + pkg = aml_package(4); > > Make pkg local here? > >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_name("LNKD")); >> + aml_append(pkg, aml_int(0)); >> + aml_append(if_ctx, aml_store(pkg, aml_local(4))); >> + } >> + aml_append(while_ctx, if_ctx); >> + >> + if_ctx = aml_if(aml_equal(aml_local(3), aml_int(1))); >> + { >> + pkg = aml_package(4); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_name("LNKA")); >> + aml_append(pkg, aml_int(0)); >> + aml_append(if_ctx, aml_store(pkg, aml_local(4))); >> + } >> + aml_append(while_ctx, if_ctx); >> + >> + if_ctx = aml_if(aml_equal(aml_local(3), aml_int(2))); >> + { >> + pkg = aml_package(4); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_name("LNKB")); >> + aml_append(pkg, aml_int(0)); >> + aml_append(if_ctx, aml_store(pkg, aml_local(4))); >> + } >> + aml_append(while_ctx, if_ctx); >> + >> + if_ctx = aml_if(aml_equal(aml_local(3), aml_int(3))); >> + { >> + pkg = aml_package(4); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_int(0)); >> + aml_append(pkg, aml_name("LNKC")); >> + aml_append(pkg, aml_int(0)); >> + aml_append(if_ctx, aml_store(pkg, aml_local(4))); >> + } >> + aml_append(while_ctx, if_ctx); >> + >> + aml_append(while_ctx, >> + aml_store(aml_or(aml_shiftleft(aml_local(2), aml_int(16)), >> + aml_int(0xFFFF)), >> + aml_index(aml_local(4), aml_int(0)))); >> + aml_append(while_ctx, >> + aml_store(aml_and(aml_local(1), aml_int(3)), >> + aml_index(aml_local(4), aml_int(1)))); >> + aml_append(while_ctx, >> + aml_store(aml_local(4), aml_index(aml_local(0), aml_local(1)))); >> + aml_append(while_ctx, aml_increment(aml_local(1))); >> + } >> + aml_append(method, while_ctx); >> + aml_append(method, aml_return(aml_local(0))); >> + >> + return method; >> +} >> + >> static void >> build_ssdt(GArray *table_data, GArray *linker, >> AcpiCpuInfo *cpu, AcpiPmInfo *pm, AcpiMiscInfo *misc, >> @@ -708,6 +785,7 @@ build_ssdt(GArray *table_data, GArray *linker, >> aml_append(dev, aml_name_decl("_HID", aml_string("PNP0A03"))); >> aml_append(dev, >> aml_name_decl("_BBN", aml_int((uint8_t)bus_info->bus))); >> + aml_append(dev, build_prt()); >> aml_append(scope, dev); >> aml_append(ssdt, scope); >> } >> -- >> 2.1.0