blob: 415dbc6e43fd7ac6c256e2b30b704567ab5966d2 [file] [log] [blame]
Stefano Stabellini36a67ab2012-08-08 16:33:46 +00001#ifndef _ASM_ARM_XEN_PAGE_H
2#define _ASM_ARM_XEN_PAGE_H
3
4#include <asm/page.h>
5#include <asm/pgtable.h>
6
7#include <linux/pfn.h>
8#include <linux/types.h>
Stefano Stabellini83862cc2013-10-10 13:40:44 +00009#include <linux/dma-mapping.h>
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000010
Stefano Stabellini4a191382013-10-17 16:22:27 +000011#include <xen/xen.h>
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000012#include <xen/interface/grant_table.h>
13
Ian Campbellee7b5952012-10-17 09:39:17 +010014#define phys_to_machine_mapping_valid(pfn) (1)
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000015
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000016/* Xen machine address */
17typedef struct xmaddr {
18 phys_addr_t maddr;
19} xmaddr_t;
20
21/* Xen pseudo-physical address */
22typedef struct xpaddr {
23 phys_addr_t paddr;
24} xpaddr_t;
25
26#define XMADDR(x) ((xmaddr_t) { .maddr = (x) })
27#define XPADDR(x) ((xpaddr_t) { .paddr = (x) })
28
Ian Campbellee7b5952012-10-17 09:39:17 +010029#define INVALID_P2M_ENTRY (~0UL)
30
Julien Grall250c9af2015-05-05 16:36:56 +010031/*
32 * The pseudo-physical frame (pfn) used in all the helpers is always based
33 * on Xen page granularity (i.e 4KB).
34 *
35 * A Linux page may be split across multiple non-contiguous Xen page so we
36 * have to keep track with frame based on 4KB page granularity.
37 *
38 * PV drivers should never make a direct usage of those helpers (particularly
39 * pfn_to_gfn and gfn_to_pfn).
40 */
41
Stefano Stabellini4a191382013-10-17 16:22:27 +000042unsigned long __pfn_to_mfn(unsigned long pfn);
Stefano Stabellini4a191382013-10-17 16:22:27 +000043extern struct rb_root phys_to_mach;
44
Julien Grall0df4f262015-08-07 17:34:37 +010045/* Pseudo-physical <-> Guest conversion */
46static inline unsigned long pfn_to_gfn(unsigned long pfn)
Stefano Stabellini4a191382013-10-17 16:22:27 +000047{
Stefano Stabellini18c51e12013-11-11 12:50:30 +000048 return pfn;
Stefano Stabellini4a191382013-10-17 16:22:27 +000049}
50
Julien Grall0df4f262015-08-07 17:34:37 +010051static inline unsigned long gfn_to_pfn(unsigned long gfn)
Stefano Stabellini4a191382013-10-17 16:22:27 +000052{
Julien Grall0df4f262015-08-07 17:34:37 +010053 return gfn;
Stefano Stabellini4a191382013-10-17 16:22:27 +000054}
55
Julien Grall32e09872015-08-07 17:34:35 +010056/* Pseudo-physical <-> BUS conversion */
57static inline unsigned long pfn_to_bfn(unsigned long pfn)
58{
59 unsigned long mfn;
60
61 if (phys_to_mach.rb_node != NULL) {
62 mfn = __pfn_to_mfn(pfn);
63 if (mfn != INVALID_P2M_ENTRY)
64 return mfn;
65 }
66
67 return pfn;
68}
69
70static inline unsigned long bfn_to_pfn(unsigned long bfn)
71{
72 return bfn;
73}
74
75#define bfn_to_local_pfn(bfn) bfn_to_pfn(bfn)
Stefano Stabellini4a191382013-10-17 16:22:27 +000076
Julien Grall0df4f262015-08-07 17:34:37 +010077/* VIRT <-> GUEST conversion */
Julien Grall250c9af2015-05-05 16:36:56 +010078#define virt_to_gfn(v) (pfn_to_gfn(virt_to_phys(v) >> XEN_PAGE_SHIFT))
79#define gfn_to_virt(m) (__va(gfn_to_pfn(m) << XEN_PAGE_SHIFT))
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000080
Julien Grall724afae2015-08-07 17:34:34 +010081/* Only used in PV code. But ARM guests are always HVM. */
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000082static inline xmaddr_t arbitrary_virt_to_machine(void *vaddr)
83{
Julien Grall724afae2015-08-07 17:34:34 +010084 BUG();
Stefano Stabellini36a67ab2012-08-08 16:33:46 +000085}
86
87/* TODO: this shouldn't be here but it is because the frontend drivers
88 * are using it (its rolled in headers) even though we won't hit the code path.
89 * So for right now just punt with this.
90 */
91static inline pte_t *lookup_address(unsigned long address, unsigned int *level)
92{
93 BUG();
94 return NULL;
95}
96
Zoltan Kiss1429d462014-02-27 15:55:30 +000097extern int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
98 struct gnttab_map_grant_ref *kmap_ops,
99 struct page **pages, unsigned int count);
Stefano Stabellini36a67ab2012-08-08 16:33:46 +0000100
Zoltan Kiss1429d462014-02-27 15:55:30 +0000101extern int clear_foreign_p2m_mapping(struct gnttab_unmap_grant_ref *unmap_ops,
David Vrabel853d0282015-01-05 14:13:41 +0000102 struct gnttab_unmap_grant_ref *kunmap_ops,
Zoltan Kiss1429d462014-02-27 15:55:30 +0000103 struct page **pages, unsigned int count);
Stefano Stabellini36a67ab2012-08-08 16:33:46 +0000104
Stefano Stabellini4a191382013-10-17 16:22:27 +0000105bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn);
106bool __set_phys_to_machine_multi(unsigned long pfn, unsigned long mfn,
107 unsigned long nr_pages);
Ian Campbellee7b5952012-10-17 09:39:17 +0100108
Stefano Stabellini36a67ab2012-08-08 16:33:46 +0000109static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
110{
Ian Campbellee7b5952012-10-17 09:39:17 +0100111 return __set_phys_to_machine(pfn, mfn);
Stefano Stabellini36a67ab2012-08-08 16:33:46 +0000112}
Stefano Stabellini3216dce2013-02-19 13:59:19 +0000113
Linus Torvalds84621c92014-01-22 22:00:18 -0800114#define xen_remap(cookie, size) ioremap_cache((cookie), (size))
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500115#define xen_unmap(cookie) iounmap((cookie))
Stefano Stabellini3216dce2013-02-19 13:59:19 +0000116
Stefano Stabellinia4dba132014-11-21 11:07:39 +0000117bool xen_arch_need_swiotlb(struct device *dev,
Julien Grall291be102015-09-09 15:17:33 +0100118 phys_addr_t phys,
119 dma_addr_t dev_addr);
Stefano Stabellini87465152015-04-24 10:16:40 +0100120unsigned long xen_get_swiotlb_free_pages(unsigned int order);
Stefano Stabellinia4dba132014-11-21 11:07:39 +0000121
Stefano Stabellini36a67ab2012-08-08 16:33:46 +0000122#endif /* _ASM_ARM_XEN_PAGE_H */