qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] hw/arm/virt: fix limit of 64-bit ACPI/ECAM PCI


From: Shannon Zhao
Subject: Re: [Qemu-devel] [PATCH] hw/arm/virt: fix limit of 64-bit ACPI/ECAM PCI MMIO range
Date: Tue, 24 May 2016 17:01:51 +0800
User-agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.4.0


On 2016/5/24 16:18, Laszlo Ersek wrote:
> On 05/21/16 20:43, Ard Biesheuvel wrote:
>> Set the MMIO range limit field to 'base + size - 1' as required.
>>
>> Signed-off-by: Ard Biesheuvel <address@hidden>
Reviewed-by: Shannon Zhao <address@hidden>

>> ---
>>  hw/arm/virt-acpi-build.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
>> index f51fe396ce9c..60a70370dd96 100644
>> --- a/hw/arm/virt-acpi-build.c
>> +++ b/hw/arm/virt-acpi-build.c
>> @@ -230,7 +230,8 @@ static void acpi_dsdt_add_pci(Aml *scope, const 
>> MemMapEntry *memmap,
>>          aml_append(rbuf,
>>              aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED,
>>                               AML_NON_CACHEABLE, AML_READ_WRITE, 0x0000,
>> -                             base_mmio_high, base_mmio_high, 0x0000,
>> +                             base_mmio_high,
>> +                             base_mmio_high + size_mmio_high - 1, 0x0000,
>>                               size_mmio_high));
>>      }
>>  
>>
> 
> $ scripts/get_maintainer.pl -f hw/arm/virt-acpi-build.c
> 
> "Michael S. Tsirkin" <address@hidden> (supporter:ACPI/SMBIOS)
> Igor Mammedov <address@hidden> (supporter:ACPI/SMBIOS)
> Shannon Zhao <address@hidden> (maintainer:ARM ACPI Subsystem)
> Peter Maydell <address@hidden> (maintainer:ARM)
> address@hidden (open list:ARM ACPI Subsystem)
> address@hidden (open list:All patches CC here)
> 
> For this patch specifically, I'm CC'ing Shannon.
> 
Thanks, Laszlo :)

-- 
Shannon




reply via email to

[Prev in Thread] Current Thread [Next in Thread]