skills/platform/riscv-privileged/SKILL.md
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.
npx skillsauth add mohitmishra786/low-level-dev-skills riscv-privilegedInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
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
| 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 |
// Read CSR (GCC extended asm)
static inline uint64_t read_csr_satp(void) {
uint64_t val;
asm volatile("csrr %0, satp" : "=r"(val));
return val;
}
// Write CSR
static inline void write_csr_stvec(void *handler) {
asm volatile("csrw stvec, %0" :: "r"(handler));
}
Trap types
├── Synchronous exceptions — ecall, page fault, illegal insn
└── Asynchronous interrupts — timer, external, software
// scause encoding (top bit: 1=interrupt, 0=exception)
void handle_trap(uint64_t scause, uint64_t sepc, uint64_t stval) {
if (scause & (1UL << 63)) {
// Interrupt
switch (scause & 0xff) {
case 5: // Supervisor timer interrupt
timer_interrupt();
break;
case 9: // Supervisor external interrupt
external_interrupt();
break;
}
} else {
// Exception
switch (scause) {
case 8: // ecall from U-mode
handle_syscall();
break;
case 12: // Instruction page fault
case 13: // Load page fault
case 15: // Store page fault
handle_page_fault(stval, scause);
break;
}
}
}
# 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);
// vectored mode: mtvec[1:0] = 01, base aligned to 4×entries
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
// Timer via SBI (preferred in S-mode) or direct CLINT in M-mode
// PLIC claim
uint32_t irq = plic_claim(hart_id);
handle_device_irq(irq);
plic_complete(hart_id, irq);
# Build OpenSBI with payload (your kernel)
git clone https://github.com/riscv-software-src/opensbi
cd opensbi
make PLATFORM=generic FW_PAYLOAD_PATH=../kernel.elf FW_PAYLOAD_OFFSET=0x80200000
# Output: build/platform/generic/firmware/fw_payload.elf
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);
// Extension ID 0x54494D45 = TIME
}
Common SBI extensions: Base, Timer, IPI, RFENCE, HSM.
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
// PTE flags
#define PTE_V (1L << 0) // Valid
#define PTE_R (1L << 1) // Read
#define PTE_W (1L << 2) // Write
#define PTE_X (1L << 3) // Execute
#define PTE_U (1L << 4) // User accessible
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).
qemu-system-riscv64 \
-machine virt \
-cpu rv64 \
-m 128M \
-kernel kernel.elf \
-bios default \
-serial mon:stdio \
-display none \
-no-reboot
# With OpenSBI payload
qemu-system-riscv64 \
-machine virt -m 128M \
-kernel opensbi/build/.../fw_payload.elf \
-serial stdio -nographic
# GDB debug
qemu-system-riscv64 -s -S ... # port 1234, wait
riscv64-unknown-elf-gdb kernel.elf
(gdb) target remote :1234
git clone https://github.com/mit-pdos/xv6-riscv
make qemu
# Study: kernel/trap.c, kernel/vm.c, kernel/start.c, kernel/plic.c
| 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 |
skills/low-level-programming/assembly-riscv — RV32/RV64 ISA and psABIskills/kernel/os-dev-scratch — OS dev concepts (x86 parallel)skills/virtualization/qemu-kvm — QEMU usage patternsskills/embedded/zephyr — Zephyr on RISC-Vskills/kernel/kernel-internals — Linux VM and scheduler analogiesskills/platform/arm-sve — other architecture platform skillsdevelopment
QEMU/KVM skill for virtualization and kernel development. Use when running qemu-system-x86_64 with KVM, configuring virtio devices, VFIO passthrough, QMP monitor, libvirt, or booting custom kernels. Activates on queries about QEMU, KVM, virtio, VFIO, virsh, virt-install, or -kernel -append.
development
Hardware virtualization internals skill for Intel VT-x and AMD-V. Use when studying VMCS/VMCB, EPT/NPT page tables, VMEXIT handling, APIC virtualization, or building minimal hypervisors. Activates on queries about VMX, SVM, VMCS, EPT, NPT, VMEXIT, or type-1 hypervisor.
testing
Linux containers internals skill for namespaces, cgroups, and OCI. Use when understanding clone/unshare namespaces, cgroups v2 limits, overlayfs, runc, seccomp profiles, capabilities, or escape mitigations. Activates on queries about namespaces, cgroups, overlayfs, runc, seccomp-bpf, OCI spec, or container escape.
tools
Reverse engineering skill for binary analysis. Use when decompiling with Ghidra, analyzing with radare2, scripting RE tools, triaging with strings/file/xxd, or diffing binaries. Activates on queries about Ghidra, radare2, r2, decompiler, Binary Ninja, Diaphora, or stripped binary analysis.