danos/system
Daniel Samson 125a3b4993
M14b: DMA memory (dma_alloc / dma_free)
An HCD programs a bus-master engine: it needs a descriptor ring that is physically
contiguous, at a physical address it knows, uncacheable, and pinned. mmap gives none
of those. Add dma_alloc(len, flags) -> vaddr (rax), paddr (rdx) and dma_free(vaddr,
len): grant contiguous, zeroed, pinned, strong-uncacheable memory in a per-process DMA
arena (PML4[228]) and hand back both addresses.

Pieces: pmm.allocContiguous(count, max_phys) finds a run of contiguous free frames
below a cap (dma_below_4g for 32-bit engines); mapUserDmaInto maps them uncacheable
(PCD|PWT) but WITHOUT device_grant, so unlike an MMIO grant these frames are real RAM
and freeSubtree returns them on teardown — a driver that dies leaks nothing. dma_free
is bounded to the DMA arena so it can never unmap the caller's stack/heap/MMIO.
dma_write_combining is accepted but falls back to coherent (WC needs PAT programming).

Runtime: runtime.dma.alloc/free (a two-return-value stub, like replyWait). New `dma`
kernel test drives the mechanism directly — contiguity, the below-4G cap, coherent
mapping, and reclaim-on-teardown (no leak). The thin syscall wrappers follow the tested
mmap/mmio_map shape and land their first real use with the first DMA driver. Suite
38/38 plus host tests.
2026-07-10 19:43:59 +01:00
..
devices Split the `system` contract into boot-handoff / abi / device-abi 2026-07-10 18:08:51 +01:00
drivers M14a: memory-ordering / MMIO layer (library/mmio) 2026-07-10 19:32:57 +01:00
kernel M14b: DMA memory (dma_alloc / dma_free) 2026-07-10 19:43:59 +01:00
services M13: IPC capability passing 2026-07-10 19:23:19 +01:00
abi.zig M14b: DMA memory (dma_alloc / dma_free) 2026-07-10 19:43:59 +01:00
boot-handoff.zig Update stale /sbin/ references to real FHS paths 2026-07-10 18:13:24 +01:00
initial-ramdisk.zig Post-reorg cleanup: POSIX layer, and naming fixes 2026-07-10 13:33:06 +01:00
parameters.zig Re-organize the source tree as a monorepo mirroring the FHS 2026-07-10 12:55:56 +01:00