40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
|
|
From b44fc9f3fc91363c55f6ba739f6c09222f979d88 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Sergey Makarov <s.makarov@syntacore.com>
|
||
|
|
Date: Wed, 18 Sep 2024 17:02:29 +0300
|
||
|
|
Subject: [PATCH] hw/intc: Don't clear pending bits on IRQ lowering
|
||
|
|
|
||
|
|
According to PLIC specification (chapter 5), there
|
||
|
|
is only one case, when interrupt is claimed. Fix
|
||
|
|
PLIC controller to match this behavior.
|
||
|
|
|
||
|
|
Signed-off-by: Sergey Makarov <s.makarov@syntacore.com>
|
||
|
|
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
|
||
|
|
Message-ID: <20240918140229.124329-3-s.makarov@syntacore.com>
|
||
|
|
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
|
||
|
|
(cherry picked from commit a84be2baa9eca8bc500f866ad943b8f63dc99adf)
|
||
|
|
Signed-off-by: zhujun2 <zhujun2_yewu@cmss.chinamobile.com>
|
||
|
|
---
|
||
|
|
hw/intc/sifive_plic.c | 6 ++++--
|
||
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/hw/intc/sifive_plic.c b/hw/intc/sifive_plic.c
|
||
|
|
index 5522ede2cf..e5de52bc44 100644
|
||
|
|
--- a/hw/intc/sifive_plic.c
|
||
|
|
+++ b/hw/intc/sifive_plic.c
|
||
|
|
@@ -349,8 +349,10 @@ static void sifive_plic_irq_request(void *opaque, int irq, int level)
|
||
|
|
{
|
||
|
|
SiFivePLICState *s = opaque;
|
||
|
|
|
||
|
|
- sifive_plic_set_pending(s, irq, level > 0);
|
||
|
|
- sifive_plic_update(s);
|
||
|
|
+ if (level > 0) {
|
||
|
|
+ sifive_plic_set_pending(s, irq, true);
|
||
|
|
+ sifive_plic_update(s);
|
||
|
|
+ }
|
||
|
|
}
|
||
|
|
|
||
|
|
static void sifive_plic_realize(DeviceState *dev, Error **errp)
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|