We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdfb2a2 commit 7abfa9cCopy full SHA for 7abfa9c
src/arch/riscv/interrupts.c
@@ -85,6 +85,11 @@ void interrupts_arch_handle(void)
85
stopi = stopi >> TOPI_IID_SHIFT;
86
switch (stopi) {
87
case IRQ_S_SOFT:
88
+ /**
89
+ * This case is executed only by APLIC configuration,
90
+ * IPIs sent through IMSIC are handled as external
91
+ * interrupts.
92
+ */
93
interrupts_handle(interrupts_ipi_id);
94
csrs_sip_clear(SIP_SSIP);
95
break;
0 commit comments