]> 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)
committerMichael Tokarev <mjt@tls.msk.ru>
Sun, 10 Nov 2024 08:09:44 +0000 (11:09 +0300)
commit54e5df724e08abb55b64ebc146dd47d0379ed406
tree3f4792397f21608644396825c964252ba75c74b7
parent9ed225f1baf7533cd701b4d8518ffb5c531ccaaa
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>
(cherry picked from commit 0678e9f29c2301d0a1afc8d01a78cdfa7ad2ddbd)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
hw/intc/riscv_aplic.c