/* * Copyright 2017, Data61 * Commonwealth Scientific and Industrial Research Organisation (CSIRO) * ABN 41 687 119 230. * * This software may be distributed and modified according to the terms of * the BSD 2-Clause license. Note that NO WARRANTY is provided. * See "LICENSE_BSD2.txt" for details. * * @TAG(DATA61_BSD) */ #pragma once #include #include #include static inline int vka_alloc_pml4(vka_t *vka, vka_object_t *result) { return vka_alloc_object(vka, kobject_get_type(KOBJECT_PML4, 0), seL4_PML4Bits, result); } static inline int vka_alloc_pdpt(vka_t *vka, vka_object_t *result) { return vka_alloc_object(vka, kobject_get_type(KOBJECT_PDPT, 0), seL4_PDPTBits, result); } LEAKY(pml4) LEAKY(pdpt) static inline int vka_alloc_vspace_root(vka_t *vka, vka_object_t *result) { return vka_alloc_pml4(vka, result); } static inline unsigned long vka_x86_mode_get_object_size(seL4_Word objectType) { switch (objectType) { case seL4_X64_HugePageObject: return seL4_HugePageBits; case seL4_X86_PDPTObject: return seL4_PDPTBits; case seL4_X64_PML4Object: return seL4_PML4Bits; default: /* Unknown object type. */ ZF_LOGE("Unknown object type %ld", (long)objectType); return -1; } }