Re: [Qemu-devel] [PATCH V4 0/6] pxb: fix 64-bit MMIO allocation

2016-07-01 Thread Marcel Apfelbaum
On 07/01/2016 04:57 PM, Laszlo Ersek wrote: On 06/30/16 21:07, Marcel Apfelbaum wrote: 64-bit BARs allocations fix for devices behind PXBs/PXB-PCIEs. In build_crs() the calculation and merging of the ranges already happens in 64-bit, but the entry boundaries are silently truncated to 32-bit in

Re: [Qemu-devel] [PATCH V4 0/6] pxb: fix 64-bit MMIO allocation

2016-07-01 Thread Laszlo Ersek
On 06/30/16 21:07, Marcel Apfelbaum wrote: > 64-bit BARs allocations fix for devices behind PXBs/PXB-PCIEs. > > In build_crs() the calculation and merging of the ranges already happens > in 64-bit, but the entry boundaries are silently truncated to 32-bit in the > call to aml_dword_memory(). Fix i

[Qemu-devel] [PATCH V4 0/6] pxb: fix 64-bit MMIO allocation

2016-06-30 Thread Marcel Apfelbaum
64-bit BARs allocations fix for devices behind PXBs/PXB-PCIEs. In build_crs() the calculation and merging of the ranges already happens in 64-bit, but the entry boundaries are silently truncated to 32-bit in the call to aml_dword_memory(). Fix it by handling the 64-bit MMIO ranges separately. v3