xv6-65oo2/kernel/plic.c

48 lines
908 B
C
Raw Normal View History

2019-06-06 09:19:59 +00:00
#include "types.h"
#include "param.h"
#include "memlayout.h"
#include "riscv.h"
#include "defs.h"
//
// the riscv Platform Level Interrupt Controller (PLIC).
//
void
plicinit(void)
{
2019-06-13 10:49:02 +00:00
// set desired IRQ priorities non-zero (otherwise disabled).
2019-06-06 09:19:59 +00:00
*(uint32*)(PLIC + UART0_IRQ*4) = 1;
2019-06-13 13:40:17 +00:00
*(uint32*)(PLIC + VIRTIO0_IRQ*4) = 1;
2019-06-06 09:19:59 +00:00
}
void
plicinithart(void)
{
int hart = cpuid();
2022-08-09 19:11:25 +00:00
// set enable bits for this hart's S-mode
// for the uart and virtio disk.
2022-08-12 14:57:16 +00:00
*(uint32*)PLIC_SENABLE(hart) = (1 << UART0_IRQ) | (1 << VIRTIO0_IRQ);
2019-06-06 09:19:59 +00:00
// set this hart's S-mode priority threshold to 0.
*(uint32*)PLIC_SPRIORITY(hart) = 0;
}
// ask the PLIC what interrupt we should serve.
int
plic_claim(void)
{
int hart = cpuid();
int irq = *(uint32*)PLIC_SCLAIM(hart);
return irq;
}
// tell the PLIC we've served this IRQ.
void
plic_complete(int irq)
{
int hart = cpuid();
*(uint32*)PLIC_SCLAIM(hart) = irq;
}