blob: 9a0a917cdeb6db78cbb078d134e2fab807d3ccc3 [file] [log] [blame]
Stefano Stabellini4c071ee2012-09-14 13:53:39 +00001#include <xen/xen.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00002#include <xen/events.h>
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +00003#include <xen/grant_table.h>
4#include <xen/hvm.h>
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +00005#include <xen/interface/vcpu.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +00006#include <xen/interface/xen.h>
7#include <xen/interface/memory.h>
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +00008#include <xen/interface/hvm/params.h>
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +00009#include <xen/features.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000010#include <xen/platform_pci.h>
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +000011#include <xen/xenbus.h>
Ian Campbellc61ba722012-10-03 12:28:26 +010012#include <xen/page.h>
Stefano Stabellini6abb7492013-04-25 10:23:07 +000013#include <xen/xen.h>
14#include <xen/interface/sched.h>
Ian Campbellf832da02012-10-03 16:37:09 +010015#include <xen/xen-ops.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000016#include <asm/xen/hypervisor.h>
17#include <asm/xen/hypercall.h>
Stefano Stabellini6abb7492013-04-25 10:23:07 +000018#include <asm/system_misc.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000019#include <linux/interrupt.h>
20#include <linux/irqreturn.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000021#include <linux/module.h>
Stefano Stabellini2e01f162012-09-14 10:47:52 +000022#include <linux/of.h>
23#include <linux/of_irq.h>
24#include <linux/of_address.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000025
Ian Campbellf832da02012-10-03 16:37:09 +010026#include <linux/mm.h>
27
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000028struct start_info _xen_start_info;
29struct start_info *xen_start_info = &_xen_start_info;
30EXPORT_SYMBOL_GPL(xen_start_info);
31
32enum xen_domain_type xen_domain_type = XEN_NATIVE;
33EXPORT_SYMBOL_GPL(xen_domain_type);
34
35struct shared_info xen_dummy_shared_info;
36struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
37
38DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000039static struct vcpu_info __percpu *xen_vcpu_info;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000040
Ian Campbellc61ba722012-10-03 12:28:26 +010041/* These are unused until we support booting "pre-ballooned" */
42unsigned long xen_released_pages;
43struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
44
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000045/* TODO: to be removed */
46__read_mostly int xen_have_vector_callback;
47EXPORT_SYMBOL_GPL(xen_have_vector_callback);
48
49int xen_platform_pci_unplug = XEN_UNPLUG_ALL;
50EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
51
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000052static __read_mostly int xen_events_irq = -1;
53
Ian Campbellf832da02012-10-03 16:37:09 +010054/* map fgmfn of domid to lpfn in the current domain */
55static int map_foreign_page(unsigned long lpfn, unsigned long fgmfn,
56 unsigned int domid)
57{
58 int rc;
59 struct xen_add_to_physmap_range xatp = {
60 .domid = DOMID_SELF,
61 .foreign_domid = domid,
62 .size = 1,
63 .space = XENMAPSPACE_gmfn_foreign,
64 };
65 xen_ulong_t idx = fgmfn;
66 xen_pfn_t gpfn = lpfn;
Ian Campbell07d0c942013-02-19 22:00:58 -050067 int err = 0;
Ian Campbellf832da02012-10-03 16:37:09 +010068
69 set_xen_guest_handle(xatp.idxs, &idx);
70 set_xen_guest_handle(xatp.gpfns, &gpfn);
Ian Campbell07d0c942013-02-19 22:00:58 -050071 set_xen_guest_handle(xatp.errs, &err);
Ian Campbellf832da02012-10-03 16:37:09 +010072
73 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap_range, &xatp);
Ian Campbell07d0c942013-02-19 22:00:58 -050074 if (rc || err) {
75 pr_warn("Failed to map pfn to mfn rc:%d:%d pfn:%lx mfn:%lx\n",
76 rc, err, lpfn, fgmfn);
Ian Campbellf832da02012-10-03 16:37:09 +010077 return 1;
78 }
79 return 0;
80}
81
82struct remap_data {
83 xen_pfn_t fgmfn; /* foreign domain's gmfn */
84 pgprot_t prot;
85 domid_t domid;
86 struct vm_area_struct *vma;
87 int index;
88 struct page **pages;
89 struct xen_remap_mfn_info *info;
90};
91
92static int remap_pte_fn(pte_t *ptep, pgtable_t token, unsigned long addr,
93 void *data)
94{
95 struct remap_data *info = data;
96 struct page *page = info->pages[info->index++];
97 unsigned long pfn = page_to_pfn(page);
98 pte_t pte = pfn_pte(pfn, info->prot);
99
100 if (map_foreign_page(pfn, info->fgmfn, info->domid))
101 return -EFAULT;
102 set_pte_at(info->vma->vm_mm, addr, ptep, pte);
103
104 return 0;
105}
106
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000107int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
108 unsigned long addr,
Ian Campbellf832da02012-10-03 16:37:09 +0100109 xen_pfn_t mfn, int nr,
110 pgprot_t prot, unsigned domid,
111 struct page **pages)
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000112{
Ian Campbellf832da02012-10-03 16:37:09 +0100113 int err;
114 struct remap_data data;
115
116 /* TBD: Batching, current sole caller only does page at a time */
117 if (nr > 1)
118 return -EINVAL;
119
120 data.fgmfn = mfn;
121 data.prot = prot;
122 data.domid = domid;
123 data.vma = vma;
124 data.index = 0;
125 data.pages = pages;
126 err = apply_to_page_range(vma->vm_mm, addr, nr << PAGE_SHIFT,
127 remap_pte_fn, &data);
128 return err;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000129}
130EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_range);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000131
Ian Campbellf832da02012-10-03 16:37:09 +0100132int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
133 int nr, struct page **pages)
134{
135 int i;
136
137 for (i = 0; i < nr; i++) {
138 struct xen_remove_from_physmap xrp;
139 unsigned long rc, pfn;
140
141 pfn = page_to_pfn(pages[i]);
142
143 xrp.domid = DOMID_SELF;
144 xrp.gpfn = pfn;
145 rc = HYPERVISOR_memory_op(XENMEM_remove_from_physmap, &xrp);
146 if (rc) {
147 pr_warn("Failed to unmap pfn:%lx rc:%ld\n",
148 pfn, rc);
149 return rc;
150 }
151 }
152 return 0;
153}
154EXPORT_SYMBOL_GPL(xen_unmap_domain_mfn_range);
155
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000156static int __init xen_secondary_init(unsigned int cpu)
157{
158 struct vcpu_register_vcpu_info info;
159 struct vcpu_info *vcpup;
160 int err;
161
162 pr_info("Xen: initializing cpu%d\n", cpu);
163 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
164
165 info.mfn = __pa(vcpup) >> PAGE_SHIFT;
166 info.offset = offset_in_page(vcpup);
167
168 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
169 if (err) {
170 pr_debug("register_vcpu_info failed: err=%d\n", err);
171 } else {
172 /* This cpu is using the registered vcpu info, even if
173 later ones fail to. */
174 per_cpu(xen_vcpu, cpu) = vcpup;
175 }
176 return 0;
177}
178
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000179static void xen_restart(char str, const char *cmd)
180{
181 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
182 int rc;
183 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
184 if (rc)
185 BUG();
186}
187
188static void xen_power_off(void)
189{
190 struct sched_shutdown r = { .reason = SHUTDOWN_poweroff };
191 int rc;
192 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
193 if (rc)
194 BUG();
195}
196
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000197/*
198 * see Documentation/devicetree/bindings/arm/xen.txt for the
199 * documentation of the Xen Device Tree format.
200 */
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000201#define GRANT_TABLE_PHYSADDR 0
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000202static int __init xen_guest_init(void)
203{
204 struct xen_add_to_physmap xatp;
205 static struct shared_info *shared_info_page = 0;
206 struct device_node *node;
207 int len;
208 const char *s = NULL;
209 const char *version = NULL;
210 const char *xen_prefix = "xen,xen-";
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000211 struct resource res;
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000212 int i;
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000213
214 node = of_find_compatible_node(NULL, NULL, "xen,xen");
215 if (!node) {
216 pr_debug("No Xen support\n");
217 return 0;
218 }
219 s = of_get_property(node, "compatible", &len);
220 if (strlen(xen_prefix) + 3 < len &&
221 !strncmp(xen_prefix, s, strlen(xen_prefix)))
222 version = s + strlen(xen_prefix);
223 if (version == NULL) {
224 pr_debug("Xen version not found\n");
225 return 0;
226 }
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000227 if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res))
228 return 0;
229 xen_hvm_resume_frames = res.start >> PAGE_SHIFT;
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000230 xen_events_irq = irq_of_parse_and_map(node, 0);
231 pr_info("Xen %s support found, events_irq=%d gnttab_frame_pfn=%lx\n",
232 version, xen_events_irq, xen_hvm_resume_frames);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000233 xen_domain_type = XEN_HVM_DOMAIN;
234
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000235 xen_setup_features();
236 if (xen_feature(XENFEAT_dom0))
237 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
238 else
239 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
240
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000241 if (!shared_info_page)
242 shared_info_page = (struct shared_info *)
243 get_zeroed_page(GFP_KERNEL);
244 if (!shared_info_page) {
245 pr_err("not enough memory\n");
246 return -ENOMEM;
247 }
248 xatp.domid = DOMID_SELF;
249 xatp.idx = 0;
250 xatp.space = XENMAPSPACE_shared_info;
251 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
252 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
253 BUG();
254
255 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
256
257 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
258 * page, we use it in the event channel upcall and in some pvclock
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000259 * related functions.
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000260 * The shared info contains exactly 1 CPU (the boot CPU). The guest
261 * is required to use VCPUOP_register_vcpu_info to place vcpu info
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000262 * for secondary CPUs as they are brought up.
263 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
264 */
265 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
266 sizeof(struct vcpu_info));
267 if (xen_vcpu_info == NULL)
268 return -ENOMEM;
269 for_each_online_cpu(i)
270 xen_secondary_init(i);
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000271
272 gnttab_init();
273 if (!xen_initial_domain())
274 xenbus_probe(NULL);
275
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000276 pm_power_off = xen_power_off;
277 arm_pm_restart = xen_restart;
278
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000279 return 0;
280}
281core_initcall(xen_guest_init);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000282
283static irqreturn_t xen_arm_callback(int irq, void *arg)
284{
285 xen_hvm_evtchn_do_upcall();
286 return IRQ_HANDLED;
287}
288
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000289static __init void xen_percpu_enable_events(void *unused)
290{
291 enable_percpu_irq(xen_events_irq, 0);
292}
293
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000294static int __init xen_init_events(void)
295{
296 if (!xen_domain() || xen_events_irq < 0)
297 return -ENODEV;
298
299 xen_init_IRQ();
300
301 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
Stefano Stabellini2798ba72013-04-25 13:53:09 +0000302 "events", &xen_vcpu)) {
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000303 pr_err("Error requesting IRQ %d\n", xen_events_irq);
304 return -EINVAL;
305 }
306
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000307 on_each_cpu(xen_percpu_enable_events, NULL, 0);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000308
309 return 0;
310}
311postcore_initcall(xen_init_events);
Stefano Stabelliniea542092012-08-08 17:20:58 +0000312
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500313/* In the hypervisor.S file. */
314EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
315EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
Stefano Stabelliniab277bb2012-11-08 15:58:55 +0000316EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
317EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
318EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
319EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
320EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
321EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
Stefano Stabelliniea0af612013-04-25 13:53:05 +0000322EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500323EXPORT_SYMBOL_GPL(privcmd_call);