Searched refs:arch_page_phys_get (Results 1 – 12 of 12) sorted by relevance
/Zephyr-latest/subsys/portability/cmsis_rtos_v1/ |
D | cmsis_thread.c | 54 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/ |
D | kernel_arch_interface.h | 367 int arch_page_phys_get(void *virt, uintptr_t *phys);
|
/Zephyr-latest/lib/posix/options/ |
D | mmap.c | 123 if (arch_page_phys_get(addr, &phys) == 0) { in munmap()
|
D | shm.c | 88 if (arch_page_phys_get(shm->mem, &phys) == 0) { in shm_obj_remove()
|
/Zephyr-latest/kernel/ |
D | mmu.c | 501 __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/ |
D | main.c | 200 zassert_true(arch_page_phys_get((void *)(virt + CONFIG_MMU_PAGE_SIZE), NULL) in ZTEST()
|
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | call_properties.ecl | 26 -call_properties+={"name(arch_page_phys_get)", {"pointee_read(2=never)","pointee_write(2=maybe)","t…
|
/Zephyr-latest/arch/arm/core/mmu/ |
D | arm_mmu.c | 1035 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
|
/Zephyr-latest/arch/arm64/core/ |
D | mmu.c | 1144 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
|
/Zephyr-latest/arch/x86/core/ |
D | x86_mmu.c | 2067 int arch_page_phys_get(void *virt, uintptr_t *phys) in arch_page_phys_get() function
|
/Zephyr-latest/doc/hardware/porting/ |
D | arch.rst | 489 - :c:func:`arch_page_phys_get`
|
/Zephyr-latest/doc/releases/ |
D | release-notes-2.6.rst | 1283 * :github:`34989` - Implement arch_page_phys_get() for ARM64
|