| name | riscv-privileged |
| description | RISC-V privileged architecture skill for M/S/U modes and traps. Use when handling CSRs, trap handlers, PLIC/CLINT interrupts, OpenSBI integration, page tables Sv39/Sv48, or QEMU virt testing. Activates on queries about RISC-V privileged, mstatus, mtvec, satp, OpenSBI, PLIC, or Sv39. |
RISC-V Privileged Architecture
Purpose
Guide agents through the RISC-V privileged specification: M/S/U privilege modes, CSR registers, trap handling, PLIC and CLINT interrupt controllers, OpenSBI firmware integration, Sv39/Sv48 page tables, and QEMU virt machine testing.
When to Use
- Writing an OS kernel or hypervisor for RISC-V
- Implementing trap handlers and context switch
- Integrating OpenSBI for S-mode firmware services
- Configuring interrupt controllers on QEMU virt or hardware
- Setting up virtual memory with Sv39 or Sv48
- Porting xv6-RISC-V or bare-metal firmware
Workflow
1. Privilege levels
RISC-V privilege stack
├── M-mode (Machine) — firmware, OpenSBI, most privileged
├── S-mode (Supervisor) — OS kernel
└── U-mode (User) — applications
Embedded (no S-mode): M + U only
2. Key CSRs
| CSR | Mode | Purpose |
|---|
mstatus / sstatus | M/S | Interrupt enable, privilege state |
mtvec / stvec | M/S | Trap vector base address |
mepc / sepc | M/S | Exception PC |
mcause / scause | M/S | Trap cause code |
mtval / stval | M/S | Faulting address/instruction |
satp | S | Page table root (mode + PPN) |
mie / sie | M/S | Interrupt enable bits |
mip / sip | M/S | Interrupt pending bits |
static inline uint64_t read_csr_satp(void) {
uint64_t val;
asm volatile("csrr %0, satp" : "=r"(val));
return val;
}
static inline void write_csr_stvec(void *handler) {
asm volatile("csrw stvec, %0" :: "r"(handler));
}
3. Trap handling
Trap types
├── Synchronous exceptions — ecall, page fault, illegal insn
└── Asynchronous interrupts — timer, external, software
void handle_trap(uint64_t scause, uint64_t sepc, uint64_t stval) {
if (scause & (1UL << 63)) {
switch (scause & 0xff) {
case 5:
timer_interrupt();
break;
case 9:
external_interrupt();
break;
}
} else {
switch (scause) {
case 8:
handle_syscall();
break;
case 12:
case 13:
case 15:
handle_page_fault(stval, scause);
break;
}
}
}
4. Trap vector setup
# trapvec.S — direct mode (all traps to one handler)
.section .text.trap
.globl trap_entry
.align 4
trap_entry:
# Save registers to trap frame
csrrw sp, sscratch, sp # switch to kernel stack
# ... save caller-saved ...
csrr a0, scause
csrr a1, sepc
csrr a2, stval
call handle_trap
# ... restore ...
sret
write_csr_stvec(trap_entry);
5. CLINT and PLIC
QEMU virt interrupt map
├── CLINT — timer and software interrupts (per-hart)
│ ├── mtime / mtimecmp — machine timer
│ └── msip — machine software interrupt
└── PLIC — external device interrupts (UART, virtio, etc.)
├── priority, pending, enable per source
└── claim/complete per hart context
uint32_t irq = plic_claim(hart_id);
handle_device_irq(irq);
plic_complete(hart_id, irq);
6. OpenSBI
git clone https://github.com/riscv-software-src/opensbi
cd opensbi
make PLATFORM=generic FW_PAYLOAD_PATH=../kernel.elf FW_PAYLOAD_OFFSET=0x80200000
SBI calls from S-mode via ecall:
struct sbiret sbi_set_timer(uint64_t stime) {
return sbi_ecall(0x54494D45, 0, stime, 0, 0, 0, 0, 0);
}
Common SBI extensions: Base, Timer, IPI, RFENCE, HSM.
7. Page tables — Sv39
Sv39: 39-bit virtual addresses, 3 levels
VPN[2] → L2 PTE → L1 PTE → L0 PTE → physical page
satp: MODE(4) | ASID(9) | PPN(44)
MODE = 8 for Sv39, 9 for Sv48
#define PTE_V (1L << 0)
#define PTE_R (1L << 1)
#define PTE_W (1L << 2)
#define PTE_X (1L << 3)
#define PTE_U (1L << 4)
uint64_t *walk_create(uint64_t *root, uint64_t va, int alloc);
void map_page(uint64_t *root, uint64_t va, uint64_t pa, int perm);
Sv48: 4 levels, 48-bit virtual addresses (QEMU virt default on RV64).
8. QEMU virt testing
qemu-system-riscv64 \
-machine virt \
-cpu rv64 \
-m 128M \
-kernel kernel.elf \
-bios default \
-serial mon:stdio \
-display none \
-no-reboot
qemu-system-riscv64 \
-machine virt -m 128M \
-kernel opensbi/build/.../fw_payload.elf \
-serial stdio -nographic
qemu-system-riscv64 -s -S ...
riscv64-unknown-elf-gdb kernel.elf
(gdb) target remote :1234
9. Reference: xv6-RISC-V
git clone https://github.com/mit-pdos/xv6-riscv
make qemu
Common Problems
| Symptom | Cause | Fix |
|---|
| Trap loop on boot | stvec misaligned | Align to 4 bytes; check handler |
| Page fault on entry | satp enabled before mapping | Identity-map kernel first |
| Timer not firing | SBI vs CLINT mismatch | Use sbi_set_timer in S-mode |
| PLIC no interrupts | Enable bit not set | Set priority, enable, threshold |
| OpenSBI hang | Wrong payload offset | Match FW_PAYLOAD_OFFSET to link addr |
| Illegal instruction | Compressed insn not supported | Enable C extension in CPU config |
Related Skills
skills/low-level-programming/assembly-riscv — RV32/RV64 ISA and psABI
skills/kernel/os-dev-scratch — OS dev concepts (x86 parallel)
skills/virtualization/qemu-kvm — QEMU usage patterns
skills/embedded/zephyr — Zephyr on RISC-V
skills/kernel/kernel-internals — Linux VM and scheduler analogies
skills/platform/arm-sve — other architecture platform skills