From: Marcel Apfelbaum <marcel@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: quintela@redhat.com, seabios@seabios.org, agraf@suse.de,
qemu-devel@nongnu.org, alex.williamson@redhat.com,
kevin@koconnor.net, mst@redhat.com, kraxel@redhat.com,
pbonzini@redhat.com, amit.shah@redhat.com, qemu-ppc@nongnu.org,
rth@twiddle.net, leon.alrae@imgtec.com, aurelien@aurel32.net,
hare@suse.de
Subject: Re: [Qemu-devel] [PATCH v3 for-2.3 04/24] acpi: add aml_index() term
Date: Fri, 06 Mar 2015 20:24:17 +0200 [thread overview]
Message-ID: <54F9F0D1.3070101@redhat.com> (raw)
In-Reply-To: <20150306114052.086620b0@nial.brq.redhat.com>
On 03/06/2015 12:40 PM, Igor Mammedov wrote:
> On Thu, 5 Mar 2015 16:55:02 +0200
> Marcel Apfelbaum <marcel@redhat.com> wrote:
>
>> Add encoding for ACPI DefIndex Opcode.
>>
>> Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
>> ---
>> hw/acpi/aml-build.c | 10 ++++++++++
>> include/hw/acpi/aml-build.h | 1 +
>> 2 files changed, 11 insertions(+)
>>
>> diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-build.c
>> index 611c949..0b3fcda 100644
>> --- a/hw/acpi/aml-build.c
>> +++ b/hw/acpi/aml-build.c
>> @@ -477,6 +477,16 @@ Aml *aml_add(Aml *arg1, Aml *arg2)
>> return var;
>> }
>>
>> +/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefIndex */
>> +Aml *aml_index(Aml *arg1, Aml *idx)
>> +{
>> + Aml *var = aml_opcode(0x88 /* IndexOp */);
> could you add assert to check that Arg1 is BuffPkgStrObj?
Sure, thanks!
Marcel
>
>> + aml_append(var, arg1);
>> + aml_append(var, idx);
>> + build_append_int(var->buf, 0x00 /* NullNameOp */);
>> + return var;
>> +}
>> +
>> /* ACPI 1.0b: 16.2.5.3 Type 1 Opcodes Encoding: DefNotify */
>> Aml *aml_notify(Aml *arg1, Aml *arg2)
>> {
>> diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h
>> index edc0520..b860732 100644
>> --- a/include/hw/acpi/aml-build.h
>> +++ b/include/hw/acpi/aml-build.h
>> @@ -140,6 +140,7 @@ Aml *aml_and(Aml *arg1, Aml *arg2);
>> Aml *aml_or(Aml *arg1, Aml *arg2);
>> Aml *aml_lless(Aml *arg1, Aml *arg2);
>> Aml *aml_add(Aml *arg1, Aml *arg2);
>> +Aml *aml_index(Aml *arg1, Aml *idx);
>> Aml *aml_notify(Aml *arg1, Aml *arg2);
>> Aml *aml_call1(const char *method, Aml *arg1);
>> Aml *aml_call2(const char *method, Aml *arg1, Aml *arg2);
>
next prev parent reply other threads:[~2015-03-06 18:24 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 [this message]
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
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=54F9F0D1.3070101@redhat.com \
--to=marcel@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=mst@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).