Home
last modified time | relevance | path

Searched refs:xatp (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/arch/arm64/core/xen/
Denlighten.c35 struct xen_add_to_physmap xatp; in xen_map_shared_info() local
37 xatp.domid = DOMID_SELF; in xen_map_shared_info()
38 xatp.idx = 0; in xen_map_shared_info()
39 xatp.space = XENMAPSPACE_shared_info; in xen_map_shared_info()
40 xatp.gpfn = (((xen_pfn_t) shared_page) >> XEN_PAGE_SHIFT); in xen_map_shared_info()
42 return HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp); in xen_map_shared_info()
/Zephyr-latest/drivers/xen/
Dgnttab.c301 struct xen_add_to_physmap xatp; in gnttab_init() local
318 xatp.domid = DOMID_SELF; in gnttab_init()
319 xatp.size = 0; in gnttab_init()
320 xatp.space = XENMAPSPACE_grant_table; in gnttab_init()
321 xatp.idx = i; in gnttab_init()
322 xatp.gpfn = xen_virt_to_gfn(Z_TOPLEVEL_ROM_NAME(grant_tables).phys_addr) + i; in gnttab_init()
323 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp); in gnttab_init()
Dmemory.c16 struct xen_add_to_physmap xatp = { in xendom_add_to_physmap() local
23 return HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp); in xendom_add_to_physmap()