Home
last modified time | relevance | path

Searched refs:TEE_RAM_VA_SIZE (Results 1 – 14 of 14) sorted by relevance

/optee_os/core/arch/riscv/include/mm/
H A Dgeneric_ram_layout.h121 #define TEE_RAM_VA_SIZE CFG_TEE_RAM_VA_SIZE macro
123 #define TEE_RAM_VA_SIZE CORE_MMU_PGDIR_SIZE macro
150 TEE_RAM_VA_SIZE)
161 #define TEE_RAM_PH_SIZE TEE_RAM_VA_SIZE
162 #define TA_RAM_START ROUNDUP(TDDRAM_BASE + TEE_RAM_VA_SIZE, \
/optee_os/core/arch/arm/plat-sprd/
H A Dplatform_config.h67 #define TEE_RAM_VA_SIZE (1024 * 1024) macro
81 #define TEE_RAM_PH_SIZE TEE_RAM_VA_SIZE
83 #define TA_RAM_START ROUNDUP((TZDRAM_BASE + TEE_RAM_VA_SIZE), \
85 #define TA_RAM_SIZE ROUNDDOWN((TZDRAM_SIZE - TEE_RAM_VA_SIZE), \
/optee_os/core/arch/arm/plat-ti/
H A Dplatform_config.h110 #define TEE_RAM_VA_SIZE (1 * 1024 * 1024) macro
127 #define TEE_RAM_VA_SIZE (1 * 1024 * 1024) macro
128 #define TEE_RAM_PH_SIZE TEE_RAM_VA_SIZE
134 #define TA_RAM_START ROUNDUP((TZDRAM_BASE + TEE_RAM_VA_SIZE), \
137 #define TA_RAM_SIZE ROUNDDOWN((TZDRAM_SIZE - TEE_RAM_VA_SIZE), \
H A Dmain.c30 register_phys_mem(MEM_AREA_RAM_SEC, TZDRAM_BASE, TEE_RAM_VA_SIZE);
/optee_os/core/arch/arm/plat-poplar/
H A Dplatform_config.h133 #define TEE_RAM_PH_SIZE TEE_RAM_VA_SIZE
134 #define TA_RAM_START ROUNDUP((TZDRAM_BASE + TEE_RAM_VA_SIZE), \
137 #define TA_RAM_SIZE ROUNDDOWN((TZDRAM_SIZE - TEE_RAM_VA_SIZE),\
145 #define TEE_RAM_VA_SIZE (2 * 1024 * 1024) macro
/optee_os/core/arch/arm/include/mm/
H A Dgeneric_ram_layout.h120 #define TEE_RAM_VA_SIZE CFG_TEE_RAM_VA_SIZE macro
122 #define TEE_RAM_VA_SIZE CORE_MMU_PGDIR_SIZE macro
149 TEE_RAM_VA_SIZE)
159 #define TEE_RAM_PH_SIZE TEE_RAM_VA_SIZE
/optee_os/core/arch/riscv/kernel/
H A Dkern.ld.S226 . = TEE_RAM_START + (TEE_RAM_VA_SIZE * 8) / 9 - 8;
230 . += TEE_RAM_VA_SIZE / 9;
243 ASSERT(. <= (TEE_RAM_START + TEE_RAM_VA_SIZE),
245 . = TEE_RAM_START + TEE_RAM_VA_SIZE;
/optee_os/core/arch/arm/kernel/
H A Dkern.ld.S393 ASSERT(. <= (TEE_RAM_START + (TEE_RAM_VA_SIZE * 8) / 9 - 8),
395 . = TEE_RAM_START + (TEE_RAM_VA_SIZE * 8) / 9 - 8;
403 . += TEE_RAM_VA_SIZE / 9;
418 ASSERT(. <= (TEE_RAM_START + TEE_RAM_VA_SIZE),
420 . = TEE_RAM_START + TEE_RAM_VA_SIZE;
H A Dboot.c312 ROUNDUP(TEE_RAM_START + (TEE_RAM_VA_SIZE * 8) / 9 - 8, 8) in init_asan()
409 size_t size = TEE_RAM_VA_SIZE; in init_virt_pool()
/optee_os/core/arch/arm/plat-zynq7k/
H A Dplatform_config.h69 #define TEE_RAM_VA_SIZE (1024 * 1024) macro
/optee_os/core/include/mm/
H A Dcore_mmu.h45 #ifndef TEE_RAM_VA_SIZE
46 #define TEE_RAM_VA_SIZE CORE_MMU_PGDIR_SIZE macro
/optee_os/core/mm/
H A Dphys_mem.c57 return nex_core_pool->size - TEE_RAM_VA_SIZE; in nex_phys_mem_get_ta_size()
H A Dcore_mmu.c1037 assert(end - begin < TEE_RAM_VA_SIZE); in add_pager_vaspace()
1038 size = TEE_RAM_VA_SIZE - (end - begin); in add_pager_vaspace()
/optee_os/core/arch/arm/mm/
H A Dtee_pager.c147 (ROUNDUP(VCORE_START_VA + TEE_RAM_VA_SIZE, CORE_MMU_PGDIR_SIZE) - \
254 if (v >= (TEE_RAM_START + TEE_RAM_VA_SIZE)) in tee_pager_phys_to_virt()