1 /******************************************************************************
5 * Granting foreign access to our memory reservation.
7 * Copyright (c) 2005-2006, Christopher Clark
8 * Copyright (c) 2004-2005, K A Fraser
9 * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
10 * VA Linux Systems Japan. Split out x86 specific part.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation; or, when distributed
15 * separately from the Linux kernel or incorporated into other
16 * software packages, subject to the following license:
18 * Permission is hereby granted, free of charge, to any person obtaining a copy
19 * of this source file (the "Software"), to deal in the Software without
20 * restriction, including without limitation the rights to use, copy, modify,
21 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
22 * and to permit persons to whom the Software is furnished to do so, subject to
23 * the following conditions:
25 * The above copyright notice and this permission notice shall be included in
26 * all copies or substantial portions of the Software.
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
33 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
37 #include <linux/sched.h>
39 #include <linux/slab.h>
40 #include <linux/vmalloc.h>
42 #include <xen/interface/xen.h>
44 #include <xen/grant_table.h>
47 #include <asm/pgtable.h>
49 static struct gnttab_vm_area {
50 struct vm_struct *area;
52 } gnttab_shared_vm_area;
54 int arch_gnttab_map_shared(unsigned long *frames, unsigned long nr_gframes,
55 unsigned long max_nr_gframes,
58 void *shared = *__shared;
63 *__shared = shared = gnttab_shared_vm_area.area->addr;
65 addr = (unsigned long)shared;
67 for (i = 0; i < nr_gframes; i++) {
68 set_pte_at(&init_mm, addr, gnttab_shared_vm_area.ptes[i],
69 mfn_pte(frames[i], PAGE_KERNEL));
76 void arch_gnttab_unmap(void *shared, unsigned long nr_gframes)
81 addr = (unsigned long)shared;
83 for (i = 0; i < nr_gframes; i++) {
84 set_pte_at(&init_mm, addr, gnttab_shared_vm_area.ptes[i],
90 static int arch_gnttab_valloc(struct gnttab_vm_area *area, unsigned nr_frames)
92 area->ptes = kmalloc(sizeof(pte_t *) * nr_frames, GFP_KERNEL);
93 if (area->ptes == NULL)
96 area->area = alloc_vm_area(PAGE_SIZE * nr_frames, area->ptes);
97 if (area->area == NULL) {
105 int arch_gnttab_init(unsigned long nr_shared)
107 if (!xen_pv_domain())
110 return arch_gnttab_valloc(&gnttab_shared_vm_area, nr_shared);
113 #ifdef CONFIG_XEN_PVH
114 #include <xen/balloon.h>
115 #include <xen/events.h>
116 #include <linux/slab.h>
117 static int __init xlated_setup_gnttab_pages(void)
124 unsigned long nr_grant_frames = gnttab_max_grant_frames();
126 BUG_ON(nr_grant_frames == 0);
127 pages = kcalloc(nr_grant_frames, sizeof(pages[0]), GFP_KERNEL);
131 pfns = kcalloc(nr_grant_frames, sizeof(pfns[0]), GFP_KERNEL);
136 rc = alloc_xenballooned_pages(nr_grant_frames, pages, 0 /* lowmem */);
138 pr_warn("%s Couldn't balloon alloc %ld pfns rc:%d\n", __func__,
139 nr_grant_frames, rc);
144 for (i = 0; i < nr_grant_frames; i++)
145 pfns[i] = page_to_pfn(pages[i]);
147 vaddr = vmap(pages, nr_grant_frames, 0, PAGE_KERNEL);
149 pr_warn("%s Couldn't map %ld pfns rc:%d\n", __func__,
150 nr_grant_frames, rc);
151 free_xenballooned_pages(nr_grant_frames, pages);
158 xen_auto_xlat_grant_frames.pfn = pfns;
159 xen_auto_xlat_grant_frames.count = nr_grant_frames;
160 xen_auto_xlat_grant_frames.vaddr = vaddr;
165 static int __init xen_pvh_gnttab_setup(void)
167 if (!xen_pvh_domain())
170 return xlated_setup_gnttab_pages();
172 /* Call it _before_ __gnttab_init as we need to initialize the
173 * xen_auto_xlat_grant_frames first. */
174 core_initcall(xen_pvh_gnttab_setup);