diff options
| author | Frederic Barrat <fbarrat@linux.ibm.com> | 2025-03-11 11:53:53 +1000 |
|---|---|---|
| committer | Nicholas Piggin <npiggin@gmail.com> | 2025-03-11 22:43:31 +1000 |
| commit | 0b266ae15e8c00bd8e72a55bc0bfc1a89c20bc34 (patch) | |
| tree | 076f2314d5a44c57e50aeddaa827a7b66a34ed7e /include/hw/ppc | |
| parent | 7988ac082603164937becea2910ea4fec8e9d3de (diff) | |
| download | focaccia-qemu-0b266ae15e8c00bd8e72a55bc0bfc1a89c20bc34.tar.gz focaccia-qemu-0b266ae15e8c00bd8e72a55bc0bfc1a89c20bc34.zip | |
ppc/xive2: Check crowd backlog when scanning group backlog
When processing a backlog scan for group interrupts, also take into account crowd interrupts. Signed-off-by: Frederic Barrat <fbarrat@linux.ibm.com> Signed-off-by: Michael Kowal <kowal@linux.ibm.com> Reviewed-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Diffstat (limited to 'include/hw/ppc')
| -rw-r--r-- | include/hw/ppc/xive2_regs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hw/ppc/xive2_regs.h b/include/hw/ppc/xive2_regs.h index 9bcf7a8a6f..b11395c563 100644 --- a/include/hw/ppc/xive2_regs.h +++ b/include/hw/ppc/xive2_regs.h @@ -236,4 +236,8 @@ void xive2_nvgc_pic_print_info(Xive2Nvgc *nvgc, uint32_t nvgc_idx, #define NVx_BACKLOG_OP PPC_BITMASK(52, 53) #define NVx_BACKLOG_PRIO PPC_BITMASK(57, 59) +/* split the 6-bit crowd/group level */ +#define NVx_CROWD_LVL(level) ((level >> 4) & 0b11) +#define NVx_GROUP_LVL(level) (level & 0b1111) + #endif /* PPC_XIVE2_REGS_H */ |