2 * Xen implementation for transcendent memory (tmem)
4 * Copyright (C) 2009-2010 Oracle Corp. All rights reserved.
5 * Author: Dan Magenheimer
8 #include <linux/kernel.h>
9 #include <linux/types.h>
10 #include <linux/init.h>
11 #include <linux/pagemap.h>
12 #include <linux/cleancache.h>
15 #include <xen/interface/xen.h>
16 #include <asm/xen/hypercall.h>
17 #include <asm/xen/page.h>
18 #include <asm/xen/hypervisor.h>
20 #define TMEM_CONTROL 0
21 #define TMEM_NEW_POOL 1
22 #define TMEM_DESTROY_POOL 2
23 #define TMEM_NEW_PAGE 3
24 #define TMEM_PUT_PAGE 4
25 #define TMEM_GET_PAGE 5
26 #define TMEM_FLUSH_PAGE 6
27 #define TMEM_FLUSH_OBJECT 7
32 /* Bits for HYPERVISOR_tmem_op(TMEM_NEW_POOL) */
33 #define TMEM_POOL_PERSIST 1
34 #define TMEM_POOL_SHARED 2
35 #define TMEM_POOL_PAGESIZE_SHIFT 4
36 #define TMEM_VERSION_SHIFT 24
39 struct tmem_pool_uuid
{
48 #define TMEM_POOL_PRIVATE_UUID { 0, 0 }
50 /* flags for tmem_ops.new_pool */
51 #define TMEM_POOL_PERSIST 1
52 #define TMEM_POOL_SHARED 2
54 /* xen tmem foundation ops/hypercalls */
56 static inline int xen_tmem_op(u32 tmem_cmd
, u32 tmem_pool
, struct tmem_oid oid
,
57 u32 index
, unsigned long gmfn
, u32 tmem_offset
, u32 pfn_offset
, u32 len
)
63 op
.pool_id
= tmem_pool
;
64 op
.u
.gen
.oid
[0] = oid
.oid
[0];
65 op
.u
.gen
.oid
[1] = oid
.oid
[1];
66 op
.u
.gen
.oid
[2] = oid
.oid
[2];
67 op
.u
.gen
.index
= index
;
68 op
.u
.gen
.tmem_offset
= tmem_offset
;
69 op
.u
.gen
.pfn_offset
= pfn_offset
;
71 set_xen_guest_handle(op
.u
.gen
.gmfn
, (void *)gmfn
);
72 rc
= HYPERVISOR_tmem_op(&op
);
76 static int xen_tmem_new_pool(struct tmem_pool_uuid uuid
,
77 u32 flags
, unsigned long pagesize
)
80 int rc
= 0, pageshift
;
82 for (pageshift
= 0; pagesize
!= 1; pageshift
++)
84 flags
|= (pageshift
- 12) << TMEM_POOL_PAGESIZE_SHIFT
;
85 flags
|= TMEM_SPEC_VERSION
<< TMEM_VERSION_SHIFT
;
86 op
.cmd
= TMEM_NEW_POOL
;
87 op
.u
.new.uuid
[0] = uuid
.uuid_lo
;
88 op
.u
.new.uuid
[1] = uuid
.uuid_hi
;
89 op
.u
.new.flags
= flags
;
90 rc
= HYPERVISOR_tmem_op(&op
);
94 /* xen generic tmem ops */
96 static int xen_tmem_put_page(u32 pool_id
, struct tmem_oid oid
,
97 u32 index
, unsigned long pfn
)
99 unsigned long gmfn
= xen_pv_domain() ? pfn_to_mfn(pfn
) : pfn
;
101 return xen_tmem_op(TMEM_PUT_PAGE
, pool_id
, oid
, index
,
105 static int xen_tmem_get_page(u32 pool_id
, struct tmem_oid oid
,
106 u32 index
, unsigned long pfn
)
108 unsigned long gmfn
= xen_pv_domain() ? pfn_to_mfn(pfn
) : pfn
;
110 return xen_tmem_op(TMEM_GET_PAGE
, pool_id
, oid
, index
,
114 static int xen_tmem_flush_page(u32 pool_id
, struct tmem_oid oid
, u32 index
)
116 return xen_tmem_op(TMEM_FLUSH_PAGE
, pool_id
, oid
, index
,
120 static int xen_tmem_flush_object(u32 pool_id
, struct tmem_oid oid
)
122 return xen_tmem_op(TMEM_FLUSH_OBJECT
, pool_id
, oid
, 0, 0, 0, 0, 0);
125 static int xen_tmem_destroy_pool(u32 pool_id
)
127 struct tmem_oid oid
= { { 0 } };
129 return xen_tmem_op(TMEM_DESTROY_POOL
, pool_id
, oid
, 0, 0, 0, 0, 0);
134 static int __init
enable_tmem(char *s
)
140 __setup("tmem", enable_tmem
);
144 static void tmem_cleancache_put_page(int pool
, struct cleancache_filekey key
,
145 pgoff_t index
, struct page
*page
)
147 u32 ind
= (u32
) index
;
148 struct tmem_oid oid
= *(struct tmem_oid
*)&key
;
149 unsigned long pfn
= page_to_pfn(page
);
155 mb(); /* ensure page is quiescent; tmem may address it with an alias */
156 (void)xen_tmem_put_page((u32
)pool
, oid
, ind
, pfn
);
159 static int tmem_cleancache_get_page(int pool
, struct cleancache_filekey key
,
160 pgoff_t index
, struct page
*page
)
162 u32 ind
= (u32
) index
;
163 struct tmem_oid oid
= *(struct tmem_oid
*)&key
;
164 unsigned long pfn
= page_to_pfn(page
);
167 /* translate return values to linux semantics */
172 ret
= xen_tmem_get_page((u32
)pool
, oid
, ind
, pfn
);
179 static void tmem_cleancache_flush_page(int pool
, struct cleancache_filekey key
,
182 u32 ind
= (u32
) index
;
183 struct tmem_oid oid
= *(struct tmem_oid
*)&key
;
189 (void)xen_tmem_flush_page((u32
)pool
, oid
, ind
);
192 static void tmem_cleancache_flush_inode(int pool
, struct cleancache_filekey key
)
194 struct tmem_oid oid
= *(struct tmem_oid
*)&key
;
198 (void)xen_tmem_flush_object((u32
)pool
, oid
);
201 static void tmem_cleancache_flush_fs(int pool
)
205 (void)xen_tmem_destroy_pool((u32
)pool
);
208 static int tmem_cleancache_init_fs(size_t pagesize
)
210 struct tmem_pool_uuid uuid_private
= TMEM_POOL_PRIVATE_UUID
;
212 return xen_tmem_new_pool(uuid_private
, 0, pagesize
);
215 static int tmem_cleancache_init_shared_fs(char *uuid
, size_t pagesize
)
217 struct tmem_pool_uuid shared_uuid
;
219 shared_uuid
.uuid_lo
= *(u64
*)uuid
;
220 shared_uuid
.uuid_hi
= *(u64
*)(&uuid
[8]);
221 return xen_tmem_new_pool(shared_uuid
, TMEM_POOL_SHARED
, pagesize
);
224 static int use_cleancache
= 1;
226 static int __init
no_cleancache(char *s
)
232 __setup("nocleancache", no_cleancache
);
234 static struct cleancache_ops tmem_cleancache_ops
= {
235 .put_page
= tmem_cleancache_put_page
,
236 .get_page
= tmem_cleancache_get_page
,
237 .flush_page
= tmem_cleancache_flush_page
,
238 .flush_inode
= tmem_cleancache_flush_inode
,
239 .flush_fs
= tmem_cleancache_flush_fs
,
240 .init_shared_fs
= tmem_cleancache_init_shared_fs
,
241 .init_fs
= tmem_cleancache_init_fs
244 static int __init
xen_tmem_init(void)
246 struct cleancache_ops old_ops
;
250 #ifdef CONFIG_CLEANCACHE
251 BUG_ON(sizeof(struct cleancache_filekey
) != sizeof(struct tmem_oid
));
252 if (tmem_enabled
&& use_cleancache
) {
254 old_ops
= cleancache_register_ops(&tmem_cleancache_ops
);
255 if (old_ops
.init_fs
!= NULL
)
256 s
= " (WARNING: cleancache_ops overridden)";
257 printk(KERN_INFO
"cleancache enabled, RAM provided by "
258 "Xen Transcendent Memory%s\n", s
);
264 module_init(xen_tmem_init
)