2 #include <xen/events.h>
3 #include <xen/grant_table.h>
5 #include <xen/interface/vcpu.h>
6 #include <xen/interface/xen.h>
7 #include <xen/interface/memory.h>
8 #include <xen/interface/hvm/params.h>
9 #include <xen/features.h>
10 #include <xen/platform_pci.h>
11 #include <xen/xenbus.h>
13 #include <xen/interface/sched.h>
14 #include <xen/xen-ops.h>
15 #include <asm/xen/hypervisor.h>
16 #include <asm/xen/hypercall.h>
17 #include <asm/system_misc.h>
18 #include <linux/interrupt.h>
19 #include <linux/irqreturn.h>
20 #include <linux/module.h>
22 #include <linux/of_irq.h>
23 #include <linux/of_address.h>
24 #include <linux/cpuidle.h>
25 #include <linux/cpufreq.h>
26 #include <linux/cpu.h>
30 struct start_info _xen_start_info;
31 struct start_info *xen_start_info = &_xen_start_info;
32 EXPORT_SYMBOL_GPL(xen_start_info);
34 enum xen_domain_type xen_domain_type = XEN_NATIVE;
35 EXPORT_SYMBOL_GPL(xen_domain_type);
37 struct shared_info xen_dummy_shared_info;
38 struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
40 DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
41 static struct vcpu_info __percpu *xen_vcpu_info;
43 /* These are unused until we support booting "pre-ballooned" */
44 unsigned long xen_released_pages;
45 struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
47 /* TODO: to be removed */
48 __read_mostly int xen_have_vector_callback;
49 EXPORT_SYMBOL_GPL(xen_have_vector_callback);
51 int xen_platform_pci_unplug = XEN_UNPLUG_ALL;
52 EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
54 static __read_mostly int xen_events_irq = -1;
56 /* map fgmfn of domid to lpfn in the current domain */
57 static int map_foreign_page(unsigned long lpfn, unsigned long fgmfn,
61 struct xen_add_to_physmap_range xatp = {
63 .foreign_domid = domid,
65 .space = XENMAPSPACE_gmfn_foreign,
67 xen_ulong_t idx = fgmfn;
68 xen_pfn_t gpfn = lpfn;
71 set_xen_guest_handle(xatp.idxs, &idx);
72 set_xen_guest_handle(xatp.gpfns, &gpfn);
73 set_xen_guest_handle(xatp.errs, &err);
75 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap_range, &xatp);
77 pr_warn("Failed to map pfn to mfn rc:%d:%d pfn:%lx mfn:%lx\n",
78 rc, err, lpfn, fgmfn);
85 xen_pfn_t fgmfn; /* foreign domain's gmfn */
88 struct vm_area_struct *vma;
91 struct xen_remap_mfn_info *info;
94 static int remap_pte_fn(pte_t *ptep, pgtable_t token, unsigned long addr,
97 struct remap_data *info = data;
98 struct page *page = info->pages[info->index++];
99 unsigned long pfn = page_to_pfn(page);
100 pte_t pte = pte_mkspecial(pfn_pte(pfn, info->prot));
102 if (map_foreign_page(pfn, info->fgmfn, info->domid))
104 set_pte_at(info->vma->vm_mm, addr, ptep, pte);
109 int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
111 xen_pfn_t mfn, int nr,
112 pgprot_t prot, unsigned domid,
116 struct remap_data data;
118 /* TBD: Batching, current sole caller only does page at a time */
128 err = apply_to_page_range(vma->vm_mm, addr, nr << PAGE_SHIFT,
129 remap_pte_fn, &data);
132 EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_range);
134 int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
135 int nr, struct page **pages)
139 for (i = 0; i < nr; i++) {
140 struct xen_remove_from_physmap xrp;
141 unsigned long rc, pfn;
143 pfn = page_to_pfn(pages[i]);
145 xrp.domid = DOMID_SELF;
147 rc = HYPERVISOR_memory_op(XENMEM_remove_from_physmap, &xrp);
149 pr_warn("Failed to unmap pfn:%lx rc:%ld\n",
156 EXPORT_SYMBOL_GPL(xen_unmap_domain_mfn_range);
158 static void xen_percpu_init(void)
160 struct vcpu_register_vcpu_info info;
161 struct vcpu_info *vcpup;
165 pr_info("Xen: initializing cpu%d\n", cpu);
166 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
168 info.mfn = __pa(vcpup) >> PAGE_SHIFT;
169 info.offset = offset_in_page(vcpup);
171 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
173 per_cpu(xen_vcpu, cpu) = vcpup;
175 enable_percpu_irq(xen_events_irq, 0);
179 static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
181 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
183 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
187 static void xen_power_off(void)
189 struct sched_shutdown r = { .reason = SHUTDOWN_poweroff };
191 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
195 static int xen_cpu_notification(struct notifier_block *self,
196 unsigned long action,
210 static struct notifier_block xen_cpu_notifier = {
211 .notifier_call = xen_cpu_notification,
214 static irqreturn_t xen_arm_callback(int irq, void *arg)
216 xen_hvm_evtchn_do_upcall();
221 * see Documentation/devicetree/bindings/arm/xen.txt for the
222 * documentation of the Xen Device Tree format.
224 #define GRANT_TABLE_PHYSADDR 0
225 static int __init xen_guest_init(void)
227 struct xen_add_to_physmap xatp;
228 static struct shared_info *shared_info_page = 0;
229 struct device_node *node;
231 const char *s = NULL;
232 const char *version = NULL;
233 const char *xen_prefix = "xen,xen-";
235 phys_addr_t grant_frames;
237 node = of_find_compatible_node(NULL, NULL, "xen,xen");
239 pr_debug("No Xen support\n");
242 s = of_get_property(node, "compatible", &len);
243 if (strlen(xen_prefix) + 3 < len &&
244 !strncmp(xen_prefix, s, strlen(xen_prefix)))
245 version = s + strlen(xen_prefix);
246 if (version == NULL) {
247 pr_debug("Xen version not found\n");
250 if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res))
252 grant_frames = res.start;
253 xen_events_irq = irq_of_parse_and_map(node, 0);
254 pr_info("Xen %s support found, events_irq=%d gnttab_frame=%pa\n",
255 version, xen_events_irq, &grant_frames);
257 if (xen_events_irq < 0)
260 xen_domain_type = XEN_HVM_DOMAIN;
262 xen_setup_features();
264 if (!xen_feature(XENFEAT_grant_map_identity)) {
265 pr_warn("Please upgrade your Xen.\n"
266 "If your platform has any non-coherent DMA devices, they won't work properly.\n");
269 if (xen_feature(XENFEAT_dom0))
270 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
272 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
274 if (!shared_info_page)
275 shared_info_page = (struct shared_info *)
276 get_zeroed_page(GFP_KERNEL);
277 if (!shared_info_page) {
278 pr_err("not enough memory\n");
281 xatp.domid = DOMID_SELF;
283 xatp.space = XENMAPSPACE_shared_info;
284 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
285 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
288 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
290 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
291 * page, we use it in the event channel upcall and in some pvclock
293 * The shared info contains exactly 1 CPU (the boot CPU). The guest
294 * is required to use VCPUOP_register_vcpu_info to place vcpu info
295 * for secondary CPUs as they are brought up.
296 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
298 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
299 sizeof(struct vcpu_info));
300 if (xen_vcpu_info == NULL)
303 if (gnttab_setup_auto_xlat_frames(grant_frames)) {
304 free_percpu(xen_vcpu_info);
308 if (!xen_initial_domain())
312 * Making sure board specific code will not set up ops for
313 * cpu idle and cpu freq.
320 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
321 "events", &xen_vcpu)) {
322 pr_err("Error request IRQ %d\n", xen_events_irq);
328 register_cpu_notifier(&xen_cpu_notifier);
332 early_initcall(xen_guest_init);
334 static int __init xen_pm_init(void)
339 pm_power_off = xen_power_off;
340 arm_pm_restart = xen_restart;
344 late_initcall(xen_pm_init);
348 void xen_arch_pre_suspend(void) { }
349 void xen_arch_post_suspend(int suspend_cancelled) { }
350 void xen_timer_resume(void) { }
351 void xen_arch_resume(void) { }
354 /* In the hypervisor.S file. */
355 EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
356 EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
357 EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
358 EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
359 EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
360 EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
361 EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
362 EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
363 EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
364 EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
365 EXPORT_SYMBOL_GPL(HYPERVISOR_multicall);
366 EXPORT_SYMBOL_GPL(privcmd_call);