| /* |
| * Copyright 2018 The Hafnium Authors. |
| * |
| * Use of this source code is governed by a BSD-style |
| * license that can be found in the LICENSE file or at |
| * https://opensource.org/licenses/BSD-3-Clause. |
| */ |
| |
| #pragma once |
| |
| #include <stdbool.h> |
| #include <stddef.h> |
| |
| #include "hf/addr.h" |
| |
| #include "vmapi/hf/ffa.h" |
| |
| /* |
| * A page table entry (PTE) will take one of the following forms: |
| * |
| * 1. absent : There is no mapping. |
| * 2. invalid block : Represents a block that is not in the address space. |
| * 3. valid block : Represents a block that is in the address space. |
| * 4. table : Represents a reference to a table of PTEs. |
| */ |
| |
| /** |
| * Creates an absent PTE. |
| */ |
| pte_t arch_mm_absent_pte(uint8_t level); |
| |
| /** |
| * Creates a table PTE. |
| */ |
| pte_t arch_mm_table_pte(uint8_t level, paddr_t pa); |
| |
| /** |
| * Creates a block PTE. |
| */ |
| pte_t arch_mm_block_pte(uint8_t level, paddr_t pa, uint64_t attrs); |
| |
| /** |
| * Checks whether a block is allowed at the given level of the page table. |
| */ |
| bool arch_mm_is_block_allowed(uint8_t level); |
| |
| /** |
| * Determines if a PTE is present i.e. it contains information and therefore |
| * needs to exist in the page table. Any non-absent PTE is present. |
| */ |
| bool arch_mm_pte_is_present(pte_t pte, uint8_t level); |
| |
| /** |
| * Determines if a PTE is valid i.e. it can affect the address space. Tables and |
| * valid blocks fall into this category. Invalid blocks do not as they hold |
| * information about blocks that are not in the address space. |
| */ |
| bool arch_mm_pte_is_valid(pte_t pte, uint8_t level); |
| |
| /** |
| * Determines if a PTE is a block and represents an address range, valid or |
| * invalid. |
| */ |
| bool arch_mm_pte_is_block(pte_t pte, uint8_t level); |
| |
| /** |
| * Determines if a PTE represents a reference to a table of PTEs. |
| */ |
| bool arch_mm_pte_is_table(pte_t pte, uint8_t level); |
| |
| /** |
| * Clears the bits of an address that are ignored by the page table. In effect, |
| * the address is rounded down to the start of the corresponding PTE range. |
| */ |
| paddr_t arch_mm_clear_pa(paddr_t pa); |
| |
| /** |
| * Extracts the start address of the PTE range. |
| */ |
| paddr_t arch_mm_block_from_pte(pte_t pte, uint8_t level); |
| |
| /** |
| * Extracts the address of the table referenced by the PTE. |
| */ |
| paddr_t arch_mm_table_from_pte(pte_t pte, uint8_t level); |
| |
| /** |
| * Extracts the attributes of the PTE. |
| */ |
| uint64_t arch_mm_pte_attrs(pte_t pte, uint8_t level); |
| |
| /** |
| * Merges the attributes of a block into those of its containing table. |
| */ |
| uint64_t arch_mm_combine_table_entry_attrs(uint64_t table_attrs, |
| uint64_t block_attrs); |
| |
| /** |
| * Invalidates the given range of stage-1 TLB. |
| */ |
| void arch_mm_invalidate_stage1_range(uint16_t asid, vaddr_t va_begin, |
| vaddr_t va_end); |
| |
| /** |
| * Invalidates the given range of stage-2 TLB. |
| */ |
| void arch_mm_invalidate_stage2_range(uint16_t vmid, ipaddr_t va_begin, |
| ipaddr_t va_end); |
| |
| /** |
| * Writes back the given range of virtual memory to such a point that all cores |
| * and devices will see the updated values. The corresponding cache lines are |
| * also invalidated. |
| */ |
| void arch_mm_flush_dcache(void *base, size_t size); |
| |
| /** |
| * Sets the maximum level allowed in the page table for stage-1. |
| */ |
| void arch_mm_stage1_max_level_set(uint32_t pa_bits); |
| |
| /** |
| * Gets the maximum level allowed in the page table for stage-1. |
| */ |
| uint8_t arch_mm_stage1_max_level(void); |
| |
| /** |
| * Gets the maximum level allowed in the page table for stage-2. |
| */ |
| uint8_t arch_mm_stage2_max_level(void); |
| |
| /** |
| * Gets the number of concatenated page tables used at the root for stage-1. |
| * |
| * Tables are concatenated at the root to avoid introducing another level in the |
| * page table meaning the table is shallow and wide. Each level is an extra |
| * memory access when walking the table so keeping it shallow reduces the memory |
| * accesses to aid performance. |
| */ |
| uint8_t arch_mm_stage1_root_table_count(void); |
| |
| /** |
| * Gets the number of concatenated page tables used at the root for stage-2. |
| */ |
| uint8_t arch_mm_stage2_root_table_count(void); |
| |
| /** |
| * Converts the mode into stage-1 attributes for a block PTE. |
| */ |
| uint64_t arch_mm_mode_to_stage1_attrs(uint32_t mode); |
| |
| /** |
| * Converts the mode into stage-2 attributes for a block PTE. |
| */ |
| uint64_t arch_mm_mode_to_stage2_attrs(uint32_t mode); |
| |
| /** |
| * Converts the stage-2 block attributes back to the corresponding mode. |
| */ |
| uint32_t arch_mm_stage2_attrs_to_mode(uint64_t attrs); |
| |
| /** |
| * Converts the stage-1 block attributes back to the corresponding mode. |
| */ |
| uint32_t arch_mm_stage1_attrs_to_mode(uint64_t attrs); |
| |
| /** |
| * Initializes the arch specific memory management. |
| */ |
| bool arch_mm_init(paddr_t table); |
| |
| /** |
| * Return the arch specific mm mode for send/recv pages of given VM ID. |
| */ |
| uint32_t arch_mm_extra_attributes_from_vm(ffa_vm_id_t id); |
| |
| /** |
| * Execute any barriers or synchronization that is required |
| * by a given architecture, after page table writes. |
| */ |
| void arch_mm_sync_table_writes(void); |
| |
| /** |
| * Returns the maximum supported PA Range index. |
| */ |
| uint64_t arch_mm_get_pa_range(void); |
| |
| /** |
| * Returns the maximum supported PA Range in bits. |
| */ |
| uint32_t arch_mm_get_pa_bits(uint64_t pa_range); |
| |
| /** |
| * Returns VTCR_EL2 configured in arch_mm_init. |
| */ |
| uintptr_t arch_mm_get_vtcr_el2(void); |
| |
| /** |
| * Returns VSTCR_EL2 configured in arch_mm_init. |
| */ |
| uintptr_t arch_mm_get_vstcr_el2(void); |