diff options
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 0f41e7a..1d95ec4 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -274,3 +274,32 @@ pmap_unmap(struct vas vas, vaddr_t va) { return pmap_update_tbl(vas, va, 0); } + +int +pmap_set_cache(struct vas vas, vaddr_t va, int type) +{ + uintptr_t *tbl; + int status; + size_t idx; + + if ((status = pmap_get_tbl(vas, va, false, &tbl)) != 0) + return status; + + idx = pmap_get_level_index(1, va); + + /* Set the caching policy */ + switch (type) { + case VM_CACHE_UC: + tbl[idx] |= PTE_PCD; + tbl[idx] &= ~PTE_PWT; + break; + case VM_CACHE_WT: + tbl[idx] &= ~PTE_PCD; + tbl[idx] |= PTE_PWT; + break; + default: + return -EINVAL; + } + + return 0; +} |