Home
last modified time | relevance | path

Searched refs:arch_page_phys_get (Results 1 – 12 of 12) sorted by relevance

/Zephyr-latest/subsys/portability/cmsis_rtos_v1/
Dcmsis_thread.c54 extern int arch_page_phys_get(void *virt, uintptr_t *phys); in thread_abort_hook()
55 (void)arch_page_phys_get((void *)thread->stack_info.start, &stack_start); in thread_abort_hook()
/Zephyr-latest/kernel/include/
Dkernel_arch_interface.h367 int arch_page_phys_get(void *virt, uintptr_t *phys);
/Zephyr-latest/lib/posix/options/
Dmmap.c123 if (arch_page_phys_get(addr, &phys) == 0) { in munmap()
Dshm.c88 if (arch_page_phys_get(shm->mem, &phys) == 0) { in shm_obj_remove()
/Zephyr-latest/kernel/
Dmmu.c501 __weak FUNC_ALIAS(virt_to_page_frame, arch_page_phys_get, int);
703 ret = arch_page_phys_get(pos - CONFIG_MMU_PAGE_SIZE, NULL); in k_mem_unmap_phys_guard()
711 ret = arch_page_phys_get(pos + size, NULL); in k_mem_unmap_phys_guard()
749 ret = arch_page_phys_get(pos, &phys); in k_mem_unmap_phys_guard()
753 ret = arch_page_phys_get(pos, &phys); in k_mem_unmap_phys_guard()
833 ret = arch_page_phys_get(addr, &phys); in k_mem_update_flags()
/Zephyr-latest/tests/arch/arm64/arm64_mmu/src/
Dmain.c200 zassert_true(arch_page_phys_get((void *)(virt + CONFIG_MMU_PAGE_SIZE), NULL) in ZTEST()
/Zephyr-latest/cmake/sca/eclair/ECL/
Dcall_properties.ecl26 -call_properties+={"name(arch_page_phys_get)", {"pointee_read(2=never)","pointee_write(2=maybe)","t…
/Zephyr-latest/arch/arm/core/mmu/
Darm_mmu.c1035 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
/Zephyr-latest/arch/arm64/core/
Dmmu.c1144 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
/Zephyr-latest/arch/x86/core/
Dx86_mmu.c2067 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
/Zephyr-latest/doc/hardware/porting/
Darch.rst489 - :c:func:`arch_page_phys_get`
/Zephyr-latest/doc/releases/
Drelease-notes-2.6.rst1283 * :github:`34989` - Implement arch_page_phys_get() for ARM64