blob: 1e632430570b1ffc5d5358b55f0c8b4b43b80098 [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/interface/sched.h>
Ian Campbellf832da02012-10-03 16:37:09 +010014#include <xen/xen-ops.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000015#include <asm/xen/hypervisor.h>
16#include <asm/xen/hypercall.h>
Stefano Stabellini6abb7492013-04-25 10:23:07 +000017#include <asm/system_misc.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000018#include <linux/interrupt.h>
19#include <linux/irqreturn.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000020#include <linux/module.h>
Stefano Stabellini2e01f162012-09-14 10:47:52 +000021#include <linux/of.h>
22#include <linux/of_irq.h>
23#include <linux/of_address.h>
Julien Gralle1a9c162013-09-09 11:35:26 +000024#include <linux/cpuidle.h>
25#include <linux/cpufreq.h>
Julien Grall8b271d52014-01-30 12:52:59 +000026#include <linux/cpu.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000027
Ian Campbellf832da02012-10-03 16:37:09 +010028#include <linux/mm.h>
29
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000030struct start_info _xen_start_info;
31struct start_info *xen_start_info = &_xen_start_info;
32EXPORT_SYMBOL_GPL(xen_start_info);
33
34enum xen_domain_type xen_domain_type = XEN_NATIVE;
35EXPORT_SYMBOL_GPL(xen_domain_type);
36
37struct shared_info xen_dummy_shared_info;
38struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
39
40DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000041static struct vcpu_info __percpu *xen_vcpu_info;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000042
Ian Campbellc61ba722012-10-03 12:28:26 +010043/* These are unused until we support booting "pre-ballooned" */
44unsigned long xen_released_pages;
45struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
46
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000047/* TODO: to be removed */
48__read_mostly int xen_have_vector_callback;
49EXPORT_SYMBOL_GPL(xen_have_vector_callback);
50
51int xen_platform_pci_unplug = XEN_UNPLUG_ALL;
52EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
53
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000054static __read_mostly int xen_events_irq = -1;
55
Ian Campbellf832da02012-10-03 16:37:09 +010056/* map fgmfn of domid to lpfn in the current domain */
57static int map_foreign_page(unsigned long lpfn, unsigned long fgmfn,
58 unsigned int domid)
59{
60 int rc;
61 struct xen_add_to_physmap_range xatp = {
62 .domid = DOMID_SELF,
63 .foreign_domid = domid,
64 .size = 1,
65 .space = XENMAPSPACE_gmfn_foreign,
66 };
67 xen_ulong_t idx = fgmfn;
68 xen_pfn_t gpfn = lpfn;
Ian Campbell07d0c942013-02-19 22:00:58 -050069 int err = 0;
Ian Campbellf832da02012-10-03 16:37:09 +010070
71 set_xen_guest_handle(xatp.idxs, &idx);
72 set_xen_guest_handle(xatp.gpfns, &gpfn);
Ian Campbell07d0c942013-02-19 22:00:58 -050073 set_xen_guest_handle(xatp.errs, &err);
Ian Campbellf832da02012-10-03 16:37:09 +010074
75 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap_range, &xatp);
Ian Campbell07d0c942013-02-19 22:00:58 -050076 if (rc || err) {
77 pr_warn("Failed to map pfn to mfn rc:%d:%d pfn:%lx mfn:%lx\n",
78 rc, err, lpfn, fgmfn);
Ian Campbellf832da02012-10-03 16:37:09 +010079 return 1;
80 }
81 return 0;
82}
83
84struct remap_data {
85 xen_pfn_t fgmfn; /* foreign domain's gmfn */
86 pgprot_t prot;
87 domid_t domid;
88 struct vm_area_struct *vma;
89 int index;
90 struct page **pages;
91 struct xen_remap_mfn_info *info;
92};
93
94static int remap_pte_fn(pte_t *ptep, pgtable_t token, unsigned long addr,
95 void *data)
96{
97 struct remap_data *info = data;
98 struct page *page = info->pages[info->index++];
99 unsigned long pfn = page_to_pfn(page);
Ian Campbella7892f32013-12-11 17:02:27 +0000100 pte_t pte = pte_mkspecial(pfn_pte(pfn, info->prot));
Ian Campbellf832da02012-10-03 16:37:09 +0100101
102 if (map_foreign_page(pfn, info->fgmfn, info->domid))
103 return -EFAULT;
104 set_pte_at(info->vma->vm_mm, addr, ptep, pte);
105
106 return 0;
107}
108
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000109int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
110 unsigned long addr,
Ian Campbellf832da02012-10-03 16:37:09 +0100111 xen_pfn_t mfn, int nr,
112 pgprot_t prot, unsigned domid,
113 struct page **pages)
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000114{
Ian Campbellf832da02012-10-03 16:37:09 +0100115 int err;
116 struct remap_data data;
117
118 /* TBD: Batching, current sole caller only does page at a time */
119 if (nr > 1)
120 return -EINVAL;
121
122 data.fgmfn = mfn;
123 data.prot = prot;
124 data.domid = domid;
125 data.vma = vma;
126 data.index = 0;
127 data.pages = pages;
128 err = apply_to_page_range(vma->vm_mm, addr, nr << PAGE_SHIFT,
129 remap_pte_fn, &data);
130 return err;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000131}
132EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_range);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000133
Ian Campbellf832da02012-10-03 16:37:09 +0100134int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
135 int nr, struct page **pages)
136{
137 int i;
138
139 for (i = 0; i < nr; i++) {
140 struct xen_remove_from_physmap xrp;
141 unsigned long rc, pfn;
142
143 pfn = page_to_pfn(pages[i]);
144
145 xrp.domid = DOMID_SELF;
146 xrp.gpfn = pfn;
147 rc = HYPERVISOR_memory_op(XENMEM_remove_from_physmap, &xrp);
148 if (rc) {
149 pr_warn("Failed to unmap pfn:%lx rc:%ld\n",
150 pfn, rc);
151 return rc;
152 }
153 }
154 return 0;
155}
156EXPORT_SYMBOL_GPL(xen_unmap_domain_mfn_range);
157
Julien Grall8b271d52014-01-30 12:52:59 +0000158static void xen_percpu_init(void)
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000159{
160 struct vcpu_register_vcpu_info info;
161 struct vcpu_info *vcpup;
162 int err;
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000163 int cpu = get_cpu();
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000164
165 pr_info("Xen: initializing cpu%d\n", cpu);
166 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
167
168 info.mfn = __pa(vcpup) >> PAGE_SHIFT;
169 info.offset = offset_in_page(vcpup);
170
171 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
Stefano Stabellinid7266d72013-05-08 13:02:38 +0000172 BUG_ON(err);
173 per_cpu(xen_vcpu, cpu) = vcpup;
174
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000175 enable_percpu_irq(xen_events_irq, 0);
Julien Grall0d7febe2013-07-29 17:06:05 +0100176 put_cpu();
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000177}
178
Stefano Stabellini2451ade2013-07-21 15:17:54 +0000179static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000180{
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
Julien Grall8b271d52014-01-30 12:52:59 +0000197static int xen_cpu_notification(struct notifier_block *self,
198 unsigned long action,
199 void *hcpu)
200{
201 switch (action) {
202 case CPU_STARTING:
203 xen_percpu_init();
204 break;
205 default:
206 break;
207 }
208
209 return NOTIFY_OK;
210}
211
212static struct notifier_block xen_cpu_notifier = {
213 .notifier_call = xen_cpu_notification,
214};
215
216static irqreturn_t xen_arm_callback(int irq, void *arg)
217{
218 xen_hvm_evtchn_do_upcall();
219 return IRQ_HANDLED;
220}
221
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000222/*
223 * see Documentation/devicetree/bindings/arm/xen.txt for the
224 * documentation of the Xen Device Tree format.
225 */
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000226#define GRANT_TABLE_PHYSADDR 0
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000227static int __init xen_guest_init(void)
228{
229 struct xen_add_to_physmap xatp;
230 static struct shared_info *shared_info_page = 0;
231 struct device_node *node;
232 int len;
233 const char *s = NULL;
234 const char *version = NULL;
235 const char *xen_prefix = "xen,xen-";
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000236 struct resource res;
Julien Grall47c54202014-01-30 12:56:34 +0000237 phys_addr_t grant_frames;
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000238
239 node = of_find_compatible_node(NULL, NULL, "xen,xen");
240 if (!node) {
241 pr_debug("No Xen support\n");
242 return 0;
243 }
244 s = of_get_property(node, "compatible", &len);
245 if (strlen(xen_prefix) + 3 < len &&
246 !strncmp(xen_prefix, s, strlen(xen_prefix)))
247 version = s + strlen(xen_prefix);
248 if (version == NULL) {
249 pr_debug("Xen version not found\n");
250 return 0;
251 }
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000252 if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res))
253 return 0;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500254 grant_frames = res.start;
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000255 xen_events_irq = irq_of_parse_and_map(node, 0);
Julien Grall47c54202014-01-30 12:56:34 +0000256 pr_info("Xen %s support found, events_irq=%d gnttab_frame=%pa\n",
257 version, xen_events_irq, &grant_frames);
Julien Grall8b271d52014-01-30 12:52:59 +0000258
259 if (xen_events_irq < 0)
260 return -ENODEV;
261
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000262 xen_domain_type = XEN_HVM_DOMAIN;
263
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000264 xen_setup_features();
265 if (xen_feature(XENFEAT_dom0))
266 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
267 else
268 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
269
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000270 if (!shared_info_page)
271 shared_info_page = (struct shared_info *)
272 get_zeroed_page(GFP_KERNEL);
273 if (!shared_info_page) {
274 pr_err("not enough memory\n");
275 return -ENOMEM;
276 }
277 xatp.domid = DOMID_SELF;
278 xatp.idx = 0;
279 xatp.space = XENMAPSPACE_shared_info;
280 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
281 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
282 BUG();
283
284 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
285
286 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
287 * page, we use it in the event channel upcall and in some pvclock
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000288 * related functions.
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000289 * The shared info contains exactly 1 CPU (the boot CPU). The guest
290 * is required to use VCPUOP_register_vcpu_info to place vcpu info
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000291 * for secondary CPUs as they are brought up.
292 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
293 */
294 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
295 sizeof(struct vcpu_info));
296 if (xen_vcpu_info == NULL)
297 return -ENOMEM;
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000298
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500299 if (gnttab_setup_auto_xlat_frames(grant_frames)) {
300 free_percpu(xen_vcpu_info);
301 return -ENOMEM;
302 }
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000303 gnttab_init();
304 if (!xen_initial_domain())
305 xenbus_probe(NULL);
306
Julien Gralle1a9c162013-09-09 11:35:26 +0000307 /*
308 * Making sure board specific code will not set up ops for
309 * cpu idle and cpu freq.
310 */
311 disable_cpuidle();
312 disable_cpufreq();
313
Julien Grall8b271d52014-01-30 12:52:59 +0000314 xen_init_IRQ();
315
316 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
317 "events", &xen_vcpu)) {
318 pr_err("Error request IRQ %d\n", xen_events_irq);
319 return -EINVAL;
320 }
321
322 xen_percpu_init();
323
324 register_cpu_notifier(&xen_cpu_notifier);
325
Stefano Stabellini1aa3d8d2013-05-08 11:59:01 +0000326 return 0;
327}
Julien Grall8b271d52014-01-30 12:52:59 +0000328early_initcall(xen_guest_init);
Stefano Stabellini1aa3d8d2013-05-08 11:59:01 +0000329
330static int __init xen_pm_init(void)
331{
Rob Herring9dd4b292013-08-29 07:43:52 -0500332 if (!xen_domain())
333 return -ENODEV;
334
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000335 pm_power_off = xen_power_off;
336 arm_pm_restart = xen_restart;
337
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000338 return 0;
339}
Rob Herring9dd4b292013-08-29 07:43:52 -0500340late_initcall(xen_pm_init);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000341
Stefano Stabellini79390282014-05-08 16:54:02 +0100342
343/* empty stubs */
344void xen_arch_pre_suspend(void) { }
345void xen_arch_post_suspend(int suspend_cancelled) { }
346void xen_timer_resume(void) { }
347void xen_arch_resume(void) { }
348
349
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500350/* In the hypervisor.S file. */
351EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
352EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
Stefano Stabelliniab277bb2012-11-08 15:58:55 +0000353EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
354EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
355EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
356EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
357EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
358EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
Stefano Stabelliniea0af612013-04-25 13:53:05 +0000359EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
Stefano Stabellini176455e2013-07-02 10:42:40 +0000360EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
Ian Campbell9f1d34142014-05-09 16:10:49 +0000361EXPORT_SYMBOL_GPL(HYPERVISOR_multicall);
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500362EXPORT_SYMBOL_GPL(privcmd_call);