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 2417108 commit 7014857Copy full SHA for 7014857
src/arch/riscv/interrupts.c
@@ -87,6 +87,11 @@ void interrupts_arch_handle(void)
87
stopi = stopi >> TOPI_IID_SHIFT;
88
switch (stopi) {
89
case IRQ_S_SOFT:
90
+ /**
91
+ * This case is executed only by APLIC configuration,
92
+ * IPIs sent through IMSIC are handled as external
93
+ * interrupts.
94
+ */
95
interrupts_handle(interrupts_ipi_id);
96
csrs_sip_clear(SIP_SSIP);
97
break;
0 commit comments