1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_ARM_XEN_PAGE_H
3 #define _ASM_ARM_XEN_PAGE_H
6 #include <asm/pgtable.h>
9 #include <linux/types.h>
10 #include <linux/dma-mapping.h>
13 #include <xen/interface/grant_table.h>
15 #define phys_to_machine_mapping_valid(pfn) (1)
17 /* Xen machine address */
18 typedef struct xmaddr
{
22 /* Xen pseudo-physical address */
23 typedef struct xpaddr
{
27 #define XMADDR(x) ((xmaddr_t) { .maddr = (x) })
28 #define XPADDR(x) ((xpaddr_t) { .paddr = (x) })
30 #define INVALID_P2M_ENTRY (~0UL)
33 * The pseudo-physical frame (pfn) used in all the helpers is always based
34 * on Xen page granularity (i.e 4KB).
36 * A Linux page may be split across multiple non-contiguous Xen page so we
37 * have to keep track with frame based on 4KB page granularity.
39 * PV drivers should never make a direct usage of those helpers (particularly
40 * pfn_to_gfn and gfn_to_pfn).
43 unsigned long __pfn_to_mfn(unsigned long pfn
);
44 extern struct rb_root phys_to_mach
;
46 /* Pseudo-physical <-> Guest conversion */
47 static inline unsigned long pfn_to_gfn(unsigned long pfn
)
52 static inline unsigned long gfn_to_pfn(unsigned long gfn
)
57 /* Pseudo-physical <-> BUS conversion */
58 static inline unsigned long pfn_to_bfn(unsigned long pfn
)
62 if (phys_to_mach
.rb_node
!= NULL
) {
63 mfn
= __pfn_to_mfn(pfn
);
64 if (mfn
!= INVALID_P2M_ENTRY
)
71 static inline unsigned long bfn_to_pfn(unsigned long bfn
)
76 #define bfn_to_local_pfn(bfn) bfn_to_pfn(bfn)
78 /* VIRT <-> GUEST conversion */
79 #define virt_to_gfn(v) (pfn_to_gfn(virt_to_phys(v) >> XEN_PAGE_SHIFT))
80 #define gfn_to_virt(m) (__va(gfn_to_pfn(m) << XEN_PAGE_SHIFT))
82 /* Only used in PV code. But ARM guests are always HVM. */
83 static inline xmaddr_t
arbitrary_virt_to_machine(void *vaddr
)
88 extern int set_foreign_p2m_mapping(struct gnttab_map_grant_ref
*map_ops
,
89 struct gnttab_map_grant_ref
*kmap_ops
,
90 struct page
**pages
, unsigned int count
);
92 extern int clear_foreign_p2m_mapping(struct gnttab_unmap_grant_ref
*unmap_ops
,
93 struct gnttab_unmap_grant_ref
*kunmap_ops
,
94 struct page
**pages
, unsigned int count
);
96 bool __set_phys_to_machine(unsigned long pfn
, unsigned long mfn
);
97 bool __set_phys_to_machine_multi(unsigned long pfn
, unsigned long mfn
,
98 unsigned long nr_pages
);
100 static inline bool set_phys_to_machine(unsigned long pfn
, unsigned long mfn
)
102 return __set_phys_to_machine(pfn
, mfn
);
105 #define xen_remap(cookie, size) ioremap_cache((cookie), (size))
106 #define xen_unmap(cookie) iounmap((cookie))
108 bool xen_arch_need_swiotlb(struct device
*dev
,
110 dma_addr_t dev_addr
);
111 unsigned long xen_get_swiotlb_free_pages(unsigned int order
);
113 #endif /* _ASM_ARM_XEN_PAGE_H */