Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-22 Thread Michael S. Tsirkin
On Tue, Dec 22, 2015 at 05:19:02PM +0100, Igor Mammedov wrote: > On Tue, 22 Dec 2015 17:58:41 +0200 > "Michael S. Tsirkin" wrote: > > > On Tue, Dec 22, 2015 at 04:37:11PM +0100, Igor Mammedov wrote: > > > On Tue, 22 Dec 2015 17:17:33 +0200 > > > "Michael S. Tsirkin" wrote: > > > > > > > On Thu,

Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-22 Thread Igor Mammedov
On Tue, 22 Dec 2015 17:58:41 +0200 "Michael S. Tsirkin" wrote: > On Tue, Dec 22, 2015 at 04:37:11PM +0100, Igor Mammedov wrote: > > On Tue, 22 Dec 2015 17:17:33 +0200 > > "Michael S. Tsirkin" wrote: > > > > > On Thu, Dec 10, 2015 at 12:41:18AM +0100, Igor Mammedov wrote: > > > > ASL Interrupt()

Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-22 Thread Michael S. Tsirkin
On Tue, Dec 22, 2015 at 04:37:11PM +0100, Igor Mammedov wrote: > On Tue, 22 Dec 2015 17:17:33 +0200 > "Michael S. Tsirkin" wrote: > > > On Thu, Dec 10, 2015 at 12:41:18AM +0100, Igor Mammedov wrote: > > > ASL Interrupt() macro translates to Extended Interrupt Descriptor > > > which supports varia

Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-22 Thread Igor Mammedov
On Tue, 22 Dec 2015 17:17:33 +0200 "Michael S. Tsirkin" wrote: > On Thu, Dec 10, 2015 at 12:41:18AM +0100, Igor Mammedov wrote: > > ASL Interrupt() macro translates to Extended Interrupt Descriptor > > which supports variable number of IRQs. It will be used for > > conversion of ASL code for pc/q

Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-22 Thread Michael S. Tsirkin
On Thu, Dec 10, 2015 at 12:41:18AM +0100, Igor Mammedov wrote: > ASL Interrupt() macro translates to Extended Interrupt Descriptor > which supports variable number of IRQs. It will be used for > conversion of ASL code for pc/q35 machines that use it for > returning several IRQs in _PSR object. > >

Re: [Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-09 Thread Shannon Zhao
On 2015/12/10 7:41, Igor Mammedov wrote: > static void acpi_dsdt_add_virtio(Aml *scope, > const MemMapEntry *virtio_mmio_memmap, > - int mmio_irq, int num) > + uint32_t mmio_irq, int num) > { >

[Qemu-devel] [PATCH 24/74] acpi: extend aml_interrupt() to support multiple irqs

2015-12-09 Thread Igor Mammedov
ASL Interrupt() macro translates to Extended Interrupt Descriptor which supports variable number of IRQs. It will be used for conversion of ASL code for pc/q35 machines that use it for returning several IRQs in _PSR object. Signed-off-by: Igor Mammedov --- CC: zhaoshengl...@huawei.com CC: qemu-..