Re: [PATCH] ppc: fix boot with sam460ex

2022-06-08 Thread Michael S. Tsirkin
On Mon, Jun 06, 2022 at 10:51:23AM -0300, Daniel Henrique Barboza wrote: > Michael, > > > I'll queue this patch with the commit msg proposed by Zoltan as follows: > > > Author: Michael S. Tsirkin > Date: Thu May 26 18:43:43 2022 -0400 > > ppc: fix boot with sam460ex > Recent changes

Re: [PATCH] ppc: fix boot with sam460ex

2022-06-06 Thread Daniel Henrique Barboza
Michael, I'll queue this patch with the commit msg proposed by Zoltan as follows: Author: Michael S. Tsirkin Date: Thu May 26 18:43:43 2022 -0400 ppc: fix boot with sam460ex Recent changes to pcie_host corrected size of its internal region to match what it expects: only t

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-30 Thread BALATON Zoltan
On Mon, 30 May 2022, Cédric Le Goater wrote: [ resend with a reply-all ] On 5/27/22 00:43, Michael S. Tsirkin wrote: Recent changes to pcie_host corrected size of its internal region to match what it expects - only the low 28 bits are ever decoded. Previous code just ignored bit 29 (if size was

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-30 Thread Cédric Le Goater
[ resend with a reply-all ] On 5/27/22 00:43, Michael S. Tsirkin wrote: Recent changes to pcie_host corrected size of its internal region to match what it expects - only the low 28 bits are ever decoded. Previous code just ignored bit 29 (if size was 1 << 29) in the address which does not make m

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-30 Thread Cédric Le Goater
On 5/27/22 00:43, Michael S. Tsirkin wrote: Recent changes to pcie_host corrected size of its internal region to match what it expects - only the low 28 bits are ever decoded. Previous code just ignored bit 29 (if size was 1 << 29) in the address which does not make much sense. We are now assert

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-27 Thread BALATON Zoltan
On Fri, 27 May 2022, Michael S. Tsirkin wrote: On Fri, May 27, 2022 at 12:46:57PM +0200, BALATON Zoltan wrote: Hello, Some changes to commit message (patch is OK). Want to write the commit message for me then? How about: Recent changes to pcie_host corrected size of its internal region to

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-27 Thread Michael S. Tsirkin
On Fri, May 27, 2022 at 12:46:57PM +0200, BALATON Zoltan wrote: > Hello, > > Some changes to commit message (patch is OK). Want to write the commit message for me then? > On Thu, 26 May 2022, Michael S. Tsirkin wrote: > > Recent changes to pcie_host corrected size of its internal region to > >

Re: [PATCH] ppc: fix boot with sam460ex

2022-05-27 Thread BALATON Zoltan
Hello, Some changes to commit message (patch is OK). On Thu, 26 May 2022, Michael S. Tsirkin wrote: Recent changes to pcie_host corrected size of its internal region to match what it expects - only the low 28 bits are ever decoded. Previous code just ignored bit 29 (if size was 1 << 29) in the

[PATCH] ppc: fix boot with sam460ex

2022-05-26 Thread Michael S. Tsirkin
Recent changes to pcie_host corrected size of its internal region to match what it expects - only the low 28 bits are ever decoded. Previous code just ignored bit 29 (if size was 1 << 29) in the address which does not make much sense. We are now asserting on size > 1 << 28 instead, but it so happe