Re: [PATCH v2 0/2] Fix PSIHB interrupts init PQ state

2023-07-03 Thread Daniel Henrique Barboza
Queued in gitlab.com/danielhb/qemu/tree/ppc-next. Thanks, Daniel On 7/3/23 05:12, Frederic Barrat wrote: On P9 and 10, the real hardware defines the PQ state of the PSIHB interrupts to be 0b00. Qemu defaults to 0b01. It doesn't matter to skiboot, which doesn't rely on it and explicitly masks

Re: [PATCH v2 0/2] Fix PSIHB interrupts init PQ state

2023-07-03 Thread Philippe Mathieu-Daudé
On 3/7/23 10:12, Frederic Barrat wrote: Frederic Barrat (2): pnv/xive: Add property on xive sources to define PQ state on reset pnv/psi: Initialize the PSIHB interrupts to match hardware Reviewed-by: Philippe Mathieu-Daudé

[PATCH v2 0/2] Fix PSIHB interrupts init PQ state

2023-07-03 Thread Frederic Barrat
On P9 and 10, the real hardware defines the PQ state of the PSIHB interrupts to be 0b00. Qemu defaults to 0b01. It doesn't matter to skiboot, which doesn't rely on it and explicitly masks the interrupts during intialization. But this patch fixes it, just in case some other hypervisor checks it. C