Re: [PULL 00/22] ppc-for-6.0 queue 20210106

2021-01-05 Thread BALATON Zoltan via
ion of the PPC 4xx UIC devices from Peter Maydell * Some other assorted fixes and cleanups -------- BALATON Zoltan via (5): ppc4xx: Move common dependency on serial to common option sam460ex: Remove FDT_PPC dependency from KConfig

[PATCH 0/3] Fix up sam460ex fixes

2021-01-06 Thread BALATON Zoltan via
Accidentally the wrong version of this series was committed, this series fixes that up to the last version that was meant to be merged. BALATON Zoltan (3): Revert "sam460ex: Remove FDT_PPC dependency from KConfig" Revert "ppc4xx: Move common dependency on serial to common option" sam460ex: U

[PATCH 2/3] Revert "ppc4xx: Move common dependency on serial to common option"

2021-01-06 Thread BALATON Zoltan via
This reverts commit e6d5106786 which was added mistakenly. While this change works it was suggested during review that keeping dependencies explicit for each board may be better than listing them in a common option so keep the previous version and revert this change. Signed-off-by: BALATON Zoltan

[PATCH 3/3] sam460ex: Use type cast macro instead of simple cast

2021-01-06 Thread BALATON Zoltan via
Use the PCI_BUS type cast macro to convert result of qdev_get_child_bus(). Also remove the check for NULL afterwards which should not be needed because sysbus_create_simple() uses error_abort and PCI_BUS macro also checks its argument by default so this shouldn't fail here. Signed-off-by: BALATON

[PATCH 1/3] Revert "sam460ex: Remove FDT_PPC dependency from KConfig"

2021-01-06 Thread BALATON Zoltan via
This reverts commit 038da2adf that was mistakenly added, this dependency is still needed to get libfdt dependencies even if fdt.o is not needed by sam460ex. Signed-off-by: BALATON Zoltan --- hw/ppc/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index

Re: [PULL 00/22] ppc-for-6.0 queue 20210106

2021-01-06 Thread BALATON Zoltan via
s for some DRC reset problems from Greg Kurz * QOM conversion of the PPC 4xx UIC devices from Peter Maydell * Some other assorted fixes and cleanups -------- BALATON Zoltan via (5): ppc4xx: Move common dependency on serial to com

Re: [PATCH] load_elf: Remove unused address variables from callers

2020-09-23 Thread BALATON Zoltan via
On Tue, 7 Jul 2020, BALATON Zoltan wrote: On Tue, 7 Jul 2020, Alistair Francis wrote: On Sun, Jul 5, 2020 at 10:41 AM BALATON Zoltan wrote: Several callers of load_elf() pass pointers for lowaddr and highaddr parameters which are then not used for anything. This may stem from a misunderstandin

Re: [PATCH] load_elf: Remove unused address variables from callers

2020-09-23 Thread BALATON Zoltan via
On Wed, 23 Sep 2020, BALATON Zoltan wrote: On Tue, 7 Jul 2020, BALATON Zoltan wrote: On Tue, 7 Jul 2020, Alistair Francis wrote: On Sun, Jul 5, 2020 at 10:41 AM BALATON Zoltan wrote: Several callers of load_elf() pass pointers for lowaddr and highaddr parameters which are then not used for an

Re: [PATCH 5/6] macio: don't reference serial_hd() directly within the device

2020-09-20 Thread BALATON Zoltan via
On Sun, 20 Sep 2020, Mark Cave-Ayland wrote: Instead use qdev_prop_set_chr() to configure the ESCC serial chardevs at the Mac Old World and New World machine level. Also remove the now obsolete comment referring to the use of serial_hd() and change user_createable to true accordingly. Signed-of

Re: [PATCH v2 5/6] macio: don't reference serial_hd() directly within the device

2020-11-04 Thread BALATON Zoltan via
On Wed, 4 Nov 2020, Thomas Huth wrote: > On 26/09/2020 16.02, Mark Cave-Ayland wrote: >> Instead use qdev_prop_set_chr() to configure the ESCC serial chardevs at the >> Mac Old World and New World machine level. >> >> Also remove the now obsolete comment referring to the use of serial_hd() and >> t

Re: [PATCH v2 5/6] macio: don't reference serial_hd() directly within the device

2020-11-04 Thread BALATON Zoltan via
On Wed, 4 Nov 2020, BALATON Zoltan via wrote: On Wed, 4 Nov 2020, Thomas Huth wrote: On 26/09/2020 16.02, Mark Cave-Ayland wrote: Instead use qdev_prop_set_chr() to configure the ESCC serial chardevs at the Mac Old World and New World machine level. Also remove the now obsolete comment

Re: Use of "?" for help has been deprecated for 8 years, can we drop it?

2020-10-01 Thread BALATON Zoltan via
On Thu, 1 Oct 2020, Eric Blake wrote: On 10/1/20 5:35 AM, Markus Armbruster wrote: We deprecated "?" more than eight years ago. We didn't have a deprecation process back then, but we did purge "?" from the documentation and from help texts. Can we finally drop it? I'm asking because there is

Re: [PATCH 1/2] softmmu: move more files to softmmu/

2020-10-06 Thread BALATON Zoltan via
On Tue, 6 Oct 2020, Paolo Bonzini wrote: Keep most softmmu_ss files into the system-emulation-specific directory. The name of this dir may be misleading. I think it originally stood for the actual MMU emulation but now it seems everything related to system emulation is dumped here. Is it bett

Re: Purpose of QOM properties registered at realize time?

2020-10-07 Thread BALATON Zoltan via
On Tue, 6 Oct 2020, Eduardo Habkost wrote: Hi, While trying to understand how QOM properties are used in QEMU, I stumbled upon multiple cases where alias properties are added at realize time. Now, I don't understand why those properties exist. As the properties are added at realize time, I ass

Re: [PATCH] ati-vga: Fix checks in ati_2d_blt() to avoid crash

2020-08-22 Thread BALATON Zoltan via
On Sat, 22 Aug 2020, Philippe Mathieu-Daudé wrote: On 4/6/20 10:34 PM, BALATON Zoltan wrote: In some corner cases (that never happen during normal operation but a malicious guest could program wrong values) pixman functions were called with parameters that result in a crash. Fix this and add mor

<    1   2   3