1 #include <linux/bootmem.h>
3 #include <linux/export.h>
4 #include <linux/spinlock.h>
5 #include <linux/slab.h>
6 #include <linux/types.h>
7 #include <linux/dma-mapping.h>
8 #include <linux/vmalloc.h>
9 #include <linux/swiotlb.h>
12 #include <xen/interface/memory.h>
14 #include <xen/swiotlb-xen.h>
16 #include <asm/cacheflush.h>
17 #include <asm/xen/hypercall.h>
18 #include <asm/xen/interface.h>
20 struct xen_p2m_entry
{
23 unsigned long nr_pages
;
24 struct rb_node rbnode_phys
;
27 static rwlock_t p2m_lock
;
28 struct rb_root phys_to_mach
= RB_ROOT
;
29 EXPORT_SYMBOL_GPL(phys_to_mach
);
31 static int xen_add_phys_to_mach_entry(struct xen_p2m_entry
*new)
33 struct rb_node
**link
= &phys_to_mach
.rb_node
;
34 struct rb_node
*parent
= NULL
;
35 struct xen_p2m_entry
*entry
;
40 entry
= rb_entry(parent
, struct xen_p2m_entry
, rbnode_phys
);
42 if (new->pfn
== entry
->pfn
)
45 if (new->pfn
< entry
->pfn
)
46 link
= &(*link
)->rb_left
;
48 link
= &(*link
)->rb_right
;
50 rb_link_node(&new->rbnode_phys
, parent
, link
);
51 rb_insert_color(&new->rbnode_phys
, &phys_to_mach
);
56 pr_warn("%s: cannot add pfn=%pa -> mfn=%pa: pfn=%pa -> mfn=%pa already exists\n",
57 __func__
, &new->pfn
, &new->mfn
, &entry
->pfn
, &entry
->mfn
);
62 unsigned long __pfn_to_mfn(unsigned long pfn
)
64 struct rb_node
*n
= phys_to_mach
.rb_node
;
65 struct xen_p2m_entry
*entry
;
66 unsigned long irqflags
;
68 read_lock_irqsave(&p2m_lock
, irqflags
);
70 entry
= rb_entry(n
, struct xen_p2m_entry
, rbnode_phys
);
71 if (entry
->pfn
<= pfn
&&
72 entry
->pfn
+ entry
->nr_pages
> pfn
) {
73 read_unlock_irqrestore(&p2m_lock
, irqflags
);
74 return entry
->mfn
+ (pfn
- entry
->pfn
);
81 read_unlock_irqrestore(&p2m_lock
, irqflags
);
83 return INVALID_P2M_ENTRY
;
85 EXPORT_SYMBOL_GPL(__pfn_to_mfn
);
87 int set_foreign_p2m_mapping(struct gnttab_map_grant_ref
*map_ops
,
88 struct gnttab_map_grant_ref
*kmap_ops
,
89 struct page
**pages
, unsigned int count
)
93 for (i
= 0; i
< count
; i
++) {
94 if (map_ops
[i
].status
)
96 set_phys_to_machine(map_ops
[i
].host_addr
>> XEN_PAGE_SHIFT
,
97 map_ops
[i
].dev_bus_addr
>> XEN_PAGE_SHIFT
);
102 EXPORT_SYMBOL_GPL(set_foreign_p2m_mapping
);
104 int clear_foreign_p2m_mapping(struct gnttab_unmap_grant_ref
*unmap_ops
,
105 struct gnttab_unmap_grant_ref
*kunmap_ops
,
106 struct page
**pages
, unsigned int count
)
110 for (i
= 0; i
< count
; i
++) {
111 set_phys_to_machine(unmap_ops
[i
].host_addr
>> XEN_PAGE_SHIFT
,
117 EXPORT_SYMBOL_GPL(clear_foreign_p2m_mapping
);
119 bool __set_phys_to_machine_multi(unsigned long pfn
,
120 unsigned long mfn
, unsigned long nr_pages
)
123 unsigned long irqflags
;
124 struct xen_p2m_entry
*p2m_entry
;
125 struct rb_node
*n
= phys_to_mach
.rb_node
;
127 if (mfn
== INVALID_P2M_ENTRY
) {
128 write_lock_irqsave(&p2m_lock
, irqflags
);
130 p2m_entry
= rb_entry(n
, struct xen_p2m_entry
, rbnode_phys
);
131 if (p2m_entry
->pfn
<= pfn
&&
132 p2m_entry
->pfn
+ p2m_entry
->nr_pages
> pfn
) {
133 rb_erase(&p2m_entry
->rbnode_phys
, &phys_to_mach
);
134 write_unlock_irqrestore(&p2m_lock
, irqflags
);
138 if (pfn
< p2m_entry
->pfn
)
143 write_unlock_irqrestore(&p2m_lock
, irqflags
);
147 p2m_entry
= kzalloc(sizeof(*p2m_entry
), GFP_NOWAIT
);
151 p2m_entry
->pfn
= pfn
;
152 p2m_entry
->nr_pages
= nr_pages
;
153 p2m_entry
->mfn
= mfn
;
155 write_lock_irqsave(&p2m_lock
, irqflags
);
156 rc
= xen_add_phys_to_mach_entry(p2m_entry
);
158 write_unlock_irqrestore(&p2m_lock
, irqflags
);
161 write_unlock_irqrestore(&p2m_lock
, irqflags
);
164 EXPORT_SYMBOL_GPL(__set_phys_to_machine_multi
);
166 bool __set_phys_to_machine(unsigned long pfn
, unsigned long mfn
)
168 return __set_phys_to_machine_multi(pfn
, mfn
, 1);
170 EXPORT_SYMBOL_GPL(__set_phys_to_machine
);
172 static int p2m_init(void)
174 rwlock_init(&p2m_lock
);
177 arch_initcall(p2m_init
);