qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Marcel Apfelbaum <marcel@redhat.com>
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
Subject: Re: [Qemu-devel] [PATCH v3 for-2.3 10/24] hw/apci: add _PRT method for extra PCI root busses
Date: Thu, 5 Mar 2015 23:17:52 +0100	[thread overview]
Message-ID: <20150305221752.GA18567@redhat.com> (raw)
In-Reply-To: <54F8D0D6.3020102@redhat.com>

On Thu, Mar 05, 2015 at 11:55:34PM +0200, Marcel Apfelbaum wrote:
> On 03/05/2015 09:52 PM, Michael S. Tsirkin wrote:
> >On Thu, Mar 05, 2015 at 04:55:08PM +0200, Marcel Apfelbaum wrote:
> >>Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
> >>---
> >>  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)));
> >>+
> >>+        if_ctx = aml_if(aml_equal(aml_local(3), aml_int(0)));
> >>+        {
> >>+            pkg = aml_package(4);
> >>+            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;
> >>+}
> >>+
> >
> >Pls improve readability of this code using comments, sub-functions and
> >local variables.
> It is the exact "copy" of the static aml code we had, witch by itself
> wasn't so nice, so it is so much I can do.

That one has *some* comments at least.
But yes, we can do better.

Duplication of code is also a problem.



> However, I'll try to improve it.
> 
> Thanks,
> Marcel
> 
> 
> >
> >
> >>  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

  reply	other threads:[~2015-03-05 22:18 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-05 14:54 [Qemu-devel] [PATCH v3 for-2.3 00/24] hw/pc: implement multiple primary busses for pc machines Marcel Apfelbaum
2015-03-05 14:54 ` [Qemu-devel] [PATCH v3 for-2.3 01/24] acpi: add aml_or() term Marcel Apfelbaum
2015-03-06  9:50   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 02/24] acpi: add aml_add() term Marcel Apfelbaum
2015-03-06  9:55   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 03/24] acpi: add aml_lless() term Marcel Apfelbaum
2015-03-06  9:58   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 04/24] acpi: add aml_index() term Marcel Apfelbaum
2015-03-06 10:40   ` Igor Mammedov
2015-03-06 18:24     ` Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 05/24] acpi: add aml_shiftleft() term Marcel Apfelbaum
2015-03-06 10:43   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 06/24] acpi: add aml_shiftright() term Marcel Apfelbaum
2015-03-06 10:46   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 07/24] acpi: add aml_increment() term Marcel Apfelbaum
2015-03-06 10:50   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 08/24] acpi: add aml_while() term Marcel Apfelbaum
2015-03-06 10:56   ` Igor Mammedov
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 09/24] hw/acpi: add support for multiple root busses Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 10/24] hw/apci: add _PRT method for extra PCI " Marcel Apfelbaum
2015-03-05 19:52   ` Michael S. Tsirkin
2015-03-05 21:55     ` Marcel Apfelbaum
2015-03-05 22:17       ` Michael S. Tsirkin [this message]
2015-03-08 10:46   ` Michael S. Tsirkin
2015-03-08 11:04     ` Marcel Apfelbaum
2015-03-08 14:47       ` Michael S. Tsirkin
2015-03-08 15:22         ` Marcel Apfelbaum
2015-03-08 15:27           ` Michael S. Tsirkin
2015-03-08 15:37             ` Marcel Apfelbaum
2015-03-08 16:03               ` Michael S. Tsirkin
2015-03-08 17:56                 ` Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 11/24] hw/acpi: add _CRS method for extra " Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 12/24] hw/acpi: remove from root bus 0 the crs resources used by other busses Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 13/24] hw/pci: move pci bus related code to separate files Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 14/24] hw/pci: made pci_bus_is_root a PCIBusClass method Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 15/24] hw/pci: made pci_bus_num " Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 16/24] hw/pci: introduce TYPE_PCI_MAIN_HOST_BRIDGE interface Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 17/24] hw/pci: removed 'rootbus nr is 0' assumption from qmp_pci_query Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 18/24] hw/pci: implement iteration over multiple host bridges Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 19/24] hw/pci: introduce PCI Expander Bridge (PXB) Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 20/24] hw/pci: inform bios if the system has more than one pci bridge Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 21/24] hw/pci: piix - suport multiple host bridges Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 22/24] hw/pxb: add map_irq func Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 23/24] hw/pci_bus: add support for NUMA nodes Marcel Apfelbaum
2015-03-05 14:55 ` [Qemu-devel] [PATCH v3 for-2.3 24/24] hw/pxb: add numa_node parameter Marcel Apfelbaum

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=20150305221752.GA18567@redhat.com \
    --to=mst@redhat.com \
    --cc=agraf@suse.de \
    --cc=alex.williamson@redhat.com \
    --cc=amit.shah@redhat.com \
    --cc=aurelien@aurel32.net \
    --cc=hare@suse.de \
    --cc=imammedo@redhat.com \
    --cc=kevin@koconnor.net \
    --cc=kraxel@redhat.com \
    --cc=leon.alrae@imgtec.com \
    --cc=marcel@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=rth@twiddle.net \
    --cc=seabios@seabios.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).