]> git.ipfire.org Git - thirdparty/qemu.git/commit
hw/intc/riscv_aplic: Fix in_clrip[x] read emulation
authorAnup Patel <apatel@ventanamicro.com>
Wed, 6 Mar 2024 09:57:22 +0000 (15:27 +0530)
committerAlistair Francis <alistair.francis@wdc.com>
Fri, 8 Mar 2024 10:48:03 +0000 (20:48 +1000)
commit0678e9f29c2301d0a1afc8d01a78cdfa7ad2ddbd
treeae72bc0ce0d5f79da1bb94dd785f7eefc50d928c
parentbf31cf06eb5e709a1a7b082dc7956baadc4b70fa
hw/intc/riscv_aplic: Fix in_clrip[x] read emulation

The reads to in_clrip[x] registers return rectified input values of the
interrupt sources.

A rectified input value of an interrupt source is defined by the section
"4.5.2 Source configurations (sourcecfg[1]–sourcecfg[1023])" of the RISC-V
AIA specification as:
"rectified input value = (incoming wire value) XOR (source is inverted)"

Update the riscv_aplic_read_input_word() implementation to match the above.

Fixes: e8f79343cfc8 ("hw/intc: Add RISC-V AIA APLIC device emulation")
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
Message-ID: <20240306095722.463296-3-apatel@ventanamicro.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
hw/intc/riscv_aplic.c