blob: 79b317a5e480a1120c2c6bfb5e398caa3cd16135 [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>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000026
Ian Campbellf832da02012-10-03 16:37:09 +010027#include <linux/mm.h>
28
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000029struct start_info _xen_start_info;
30struct start_info *xen_start_info = &_xen_start_info;
31EXPORT_SYMBOL_GPL(xen_start_info);
32
33enum xen_domain_type xen_domain_type = XEN_NATIVE;
34EXPORT_SYMBOL_GPL(xen_domain_type);
35
36struct shared_info xen_dummy_shared_info;
37struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
38
39DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000040static struct vcpu_info __percpu *xen_vcpu_info;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000041
Ian Campbellc61ba722012-10-03 12:28:26 +010042/* These are unused until we support booting "pre-ballooned" */
43unsigned long xen_released_pages;
44struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
45
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000046/* TODO: to be removed */
47__read_mostly int xen_have_vector_callback;
48EXPORT_SYMBOL_GPL(xen_have_vector_callback);
49
50int xen_platform_pci_unplug = XEN_UNPLUG_ALL;
51EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
52
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000053static __read_mostly int xen_events_irq = -1;
54
Ian Campbellf832da02012-10-03 16:37:09 +010055/* map fgmfn of domid to lpfn in the current domain */
56static int map_foreign_page(unsigned long lpfn, unsigned long fgmfn,
57 unsigned int domid)
58{
59 int rc;
60 struct xen_add_to_physmap_range xatp = {
61 .domid = DOMID_SELF,
62 .foreign_domid = domid,
63 .size = 1,
64 .space = XENMAPSPACE_gmfn_foreign,
65 };
66 xen_ulong_t idx = fgmfn;
67 xen_pfn_t gpfn = lpfn;
Ian Campbell07d0c942013-02-19 22:00:58 -050068 int err = 0;
Ian Campbellf832da02012-10-03 16:37:09 +010069
70 set_xen_guest_handle(xatp.idxs, &idx);
71 set_xen_guest_handle(xatp.gpfns, &gpfn);
Ian Campbell07d0c942013-02-19 22:00:58 -050072 set_xen_guest_handle(xatp.errs, &err);
Ian Campbellf832da02012-10-03 16:37:09 +010073
74 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap_range, &xatp);
Ian Campbell07d0c942013-02-19 22:00:58 -050075 if (rc || err) {
76 pr_warn("Failed to map pfn to mfn rc:%d:%d pfn:%lx mfn:%lx\n",
77 rc, err, lpfn, fgmfn);
Ian Campbellf832da02012-10-03 16:37:09 +010078 return 1;
79 }
80 return 0;
81}
82
83struct remap_data {
84 xen_pfn_t fgmfn; /* foreign domain's gmfn */
85 pgprot_t prot;
86 domid_t domid;
87 struct vm_area_struct *vma;
88 int index;
89 struct page **pages;
90 struct xen_remap_mfn_info *info;
91};
92
93static int remap_pte_fn(pte_t *ptep, pgtable_t token, unsigned long addr,
94 void *data)
95{
96 struct remap_data *info = data;
97 struct page *page = info->pages[info->index++];
98 unsigned long pfn = page_to_pfn(page);
99 pte_t pte = pfn_pte(pfn, info->prot);
100
101 if (map_foreign_page(pfn, info->fgmfn, info->domid))
102 return -EFAULT;
103 set_pte_at(info->vma->vm_mm, addr, ptep, pte);
104
105 return 0;
106}
107
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000108int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
109 unsigned long addr,
Ian Campbellf832da02012-10-03 16:37:09 +0100110 xen_pfn_t mfn, int nr,
111 pgprot_t prot, unsigned domid,
112 struct page **pages)
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000113{
Ian Campbellf832da02012-10-03 16:37:09 +0100114 int err;
115 struct remap_data data;
116
117 /* TBD: Batching, current sole caller only does page at a time */
118 if (nr > 1)
119 return -EINVAL;
120
121 data.fgmfn = mfn;
122 data.prot = prot;
123 data.domid = domid;
124 data.vma = vma;
125 data.index = 0;
126 data.pages = pages;
127 err = apply_to_page_range(vma->vm_mm, addr, nr << PAGE_SHIFT,
128 remap_pte_fn, &data);
129 return err;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +0000130}
131EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_range);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000132
Ian Campbellf832da02012-10-03 16:37:09 +0100133int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
134 int nr, struct page **pages)
135{
136 int i;
137
138 for (i = 0; i < nr; i++) {
139 struct xen_remove_from_physmap xrp;
140 unsigned long rc, pfn;
141
142 pfn = page_to_pfn(pages[i]);
143
144 xrp.domid = DOMID_SELF;
145 xrp.gpfn = pfn;
146 rc = HYPERVISOR_memory_op(XENMEM_remove_from_physmap, &xrp);
147 if (rc) {
148 pr_warn("Failed to unmap pfn:%lx rc:%ld\n",
149 pfn, rc);
150 return rc;
151 }
152 }
153 return 0;
154}
155EXPORT_SYMBOL_GPL(xen_unmap_domain_mfn_range);
156
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000157static void __init xen_percpu_init(void *unused)
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000158{
159 struct vcpu_register_vcpu_info info;
160 struct vcpu_info *vcpup;
161 int err;
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000162 int cpu = get_cpu();
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000163
164 pr_info("Xen: initializing cpu%d\n", cpu);
165 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
166
167 info.mfn = __pa(vcpup) >> PAGE_SHIFT;
168 info.offset = offset_in_page(vcpup);
169
170 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
Stefano Stabellinid7266d72013-05-08 13:02:38 +0000171 BUG_ON(err);
172 per_cpu(xen_vcpu, cpu) = vcpup;
173
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000174 enable_percpu_irq(xen_events_irq, 0);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000175}
176
Stefano Stabellini2451ade2013-07-21 15:17:54 +0000177static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000178{
179 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
180 int rc;
181 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
182 if (rc)
183 BUG();
184}
185
186static void xen_power_off(void)
187{
188 struct sched_shutdown r = { .reason = SHUTDOWN_poweroff };
189 int rc;
190 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
191 if (rc)
192 BUG();
193}
194
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000195/*
196 * see Documentation/devicetree/bindings/arm/xen.txt for the
197 * documentation of the Xen Device Tree format.
198 */
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000199#define GRANT_TABLE_PHYSADDR 0
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000200static int __init xen_guest_init(void)
201{
202 struct xen_add_to_physmap xatp;
203 static struct shared_info *shared_info_page = 0;
204 struct device_node *node;
205 int len;
206 const char *s = NULL;
207 const char *version = NULL;
208 const char *xen_prefix = "xen,xen-";
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000209 struct resource res;
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000210
211 node = of_find_compatible_node(NULL, NULL, "xen,xen");
212 if (!node) {
213 pr_debug("No Xen support\n");
214 return 0;
215 }
216 s = of_get_property(node, "compatible", &len);
217 if (strlen(xen_prefix) + 3 < len &&
218 !strncmp(xen_prefix, s, strlen(xen_prefix)))
219 version = s + strlen(xen_prefix);
220 if (version == NULL) {
221 pr_debug("Xen version not found\n");
222 return 0;
223 }
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000224 if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res))
225 return 0;
226 xen_hvm_resume_frames = res.start >> PAGE_SHIFT;
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000227 xen_events_irq = irq_of_parse_and_map(node, 0);
228 pr_info("Xen %s support found, events_irq=%d gnttab_frame_pfn=%lx\n",
229 version, xen_events_irq, xen_hvm_resume_frames);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000230 xen_domain_type = XEN_HVM_DOMAIN;
231
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000232 xen_setup_features();
233 if (xen_feature(XENFEAT_dom0))
234 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
235 else
236 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
237
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000238 if (!shared_info_page)
239 shared_info_page = (struct shared_info *)
240 get_zeroed_page(GFP_KERNEL);
241 if (!shared_info_page) {
242 pr_err("not enough memory\n");
243 return -ENOMEM;
244 }
245 xatp.domid = DOMID_SELF;
246 xatp.idx = 0;
247 xatp.space = XENMAPSPACE_shared_info;
248 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
249 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
250 BUG();
251
252 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
253
254 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
255 * page, we use it in the event channel upcall and in some pvclock
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000256 * related functions.
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000257 * The shared info contains exactly 1 CPU (the boot CPU). The guest
258 * is required to use VCPUOP_register_vcpu_info to place vcpu info
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000259 * for secondary CPUs as they are brought up.
260 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
261 */
262 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
263 sizeof(struct vcpu_info));
264 if (xen_vcpu_info == NULL)
265 return -ENOMEM;
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000266
267 gnttab_init();
268 if (!xen_initial_domain())
269 xenbus_probe(NULL);
270
Julien Gralle1a9c162013-09-09 11:35:26 +0000271 /*
272 * Making sure board specific code will not set up ops for
273 * cpu idle and cpu freq.
274 */
275 disable_cpuidle();
276 disable_cpufreq();
277
Stefano Stabellini1aa3d8d2013-05-08 11:59:01 +0000278 return 0;
279}
280core_initcall(xen_guest_init);
281
282static int __init xen_pm_init(void)
283{
Rob Herring9dd4b292013-08-29 07:43:52 -0500284 if (!xen_domain())
285 return -ENODEV;
286
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000287 pm_power_off = xen_power_off;
288 arm_pm_restart = xen_restart;
289
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000290 return 0;
291}
Rob Herring9dd4b292013-08-29 07:43:52 -0500292late_initcall(xen_pm_init);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000293
294static irqreturn_t xen_arm_callback(int irq, void *arg)
295{
296 xen_hvm_evtchn_do_upcall();
297 return IRQ_HANDLED;
298}
299
300static int __init xen_init_events(void)
301{
302 if (!xen_domain() || xen_events_irq < 0)
303 return -ENODEV;
304
305 xen_init_IRQ();
306
307 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
Stefano Stabellini2798ba72013-04-25 13:53:09 +0000308 "events", &xen_vcpu)) {
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000309 pr_err("Error requesting IRQ %d\n", xen_events_irq);
310 return -EINVAL;
311 }
312
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000313 on_each_cpu(xen_percpu_init, NULL, 0);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000314
315 return 0;
316}
317postcore_initcall(xen_init_events);
Stefano Stabelliniea542092012-08-08 17:20:58 +0000318
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500319/* In the hypervisor.S file. */
320EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
321EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
Stefano Stabelliniab277bb2012-11-08 15:58:55 +0000322EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
323EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
324EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
325EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
326EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
327EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
Stefano Stabelliniea0af612013-04-25 13:53:05 +0000328EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
Stefano Stabellini176455e2013-07-02 10:42:40 +0000329EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500330EXPORT_SYMBOL_GPL(privcmd_call);