blob: fc7ea529f462de75149c31168f01f17a42908e76 [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>
Ard Biesheuvelf1dddd12015-05-06 14:14:22 +000027#include <linux/console.h>
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000028
Ian Campbellf832da02012-10-03 16:37:09 +010029#include <linux/mm.h>
30
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000031struct start_info _xen_start_info;
32struct start_info *xen_start_info = &_xen_start_info;
Chuck Tuffli35c8ab42014-12-21 12:30:58 -080033EXPORT_SYMBOL(xen_start_info);
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000034
35enum xen_domain_type xen_domain_type = XEN_NATIVE;
Chuck Tuffli35c8ab42014-12-21 12:30:58 -080036EXPORT_SYMBOL(xen_domain_type);
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000037
38struct shared_info xen_dummy_shared_info;
39struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
40
41DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000042static struct vcpu_info __percpu *xen_vcpu_info;
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000043
Ian Campbellc61ba722012-10-03 12:28:26 +010044/* These are unused until we support booting "pre-ballooned" */
45unsigned long xen_released_pages;
46struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
47
Julien Grall81e863c2015-05-06 14:09:06 +000048static __read_mostly unsigned int xen_events_irq;
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000049
Stefano Stabellini5882bfe2015-05-06 14:13:31 +000050static __initdata struct device_node *xen_node;
51
Julien Gralla13d7202015-08-07 17:34:41 +010052int xen_remap_domain_gfn_array(struct vm_area_struct *vma,
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000053 unsigned long addr,
Julien Gralla13d7202015-08-07 17:34:41 +010054 xen_pfn_t *gfn, int nr,
David Vrabel4e8c0c82015-03-11 14:49:57 +000055 int *err_ptr, pgprot_t prot,
56 unsigned domid,
Ian Campbellf832da02012-10-03 16:37:09 +010057 struct page **pages)
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000058{
Julien Gralla13d7202015-08-07 17:34:41 +010059 return xen_xlate_remap_gfn_array(vma, addr, gfn, nr, err_ptr,
David Vrabel628c28e2015-03-11 14:49:56 +000060 prot, domid, pages);
Stefano Stabellini4c071ee2012-09-14 13:53:39 +000061}
Julien Gralla13d7202015-08-07 17:34:41 +010062EXPORT_SYMBOL_GPL(xen_remap_domain_gfn_array);
David Vrabel4e8c0c82015-03-11 14:49:57 +000063
64/* Not used by XENFEAT_auto_translated guests. */
Julien Gralla13d7202015-08-07 17:34:41 +010065int xen_remap_domain_gfn_range(struct vm_area_struct *vma,
David Vrabel4e8c0c82015-03-11 14:49:57 +000066 unsigned long addr,
Julien Gralla13d7202015-08-07 17:34:41 +010067 xen_pfn_t gfn, int nr,
David Vrabel4e8c0c82015-03-11 14:49:57 +000068 pgprot_t prot, unsigned domid,
69 struct page **pages)
70{
71 return -ENOSYS;
72}
Julien Gralla13d7202015-08-07 17:34:41 +010073EXPORT_SYMBOL_GPL(xen_remap_domain_gfn_range);
Stefano Stabellini2e01f162012-09-14 10:47:52 +000074
Julien Gralla13d7202015-08-07 17:34:41 +010075int xen_unmap_domain_gfn_range(struct vm_area_struct *vma,
Ian Campbellf832da02012-10-03 16:37:09 +010076 int nr, struct page **pages)
77{
David Vrabel628c28e2015-03-11 14:49:56 +000078 return xen_xlate_unmap_gfn_range(vma, nr, pages);
Ian Campbellf832da02012-10-03 16:37:09 +010079}
Julien Gralla13d7202015-08-07 17:34:41 +010080EXPORT_SYMBOL_GPL(xen_unmap_domain_gfn_range);
Ian Campbellf832da02012-10-03 16:37:09 +010081
Julien Grall8b271d52014-01-30 12:52:59 +000082static void xen_percpu_init(void)
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000083{
84 struct vcpu_register_vcpu_info info;
85 struct vcpu_info *vcpup;
86 int err;
Stefano Stabellini3cc8e402013-05-08 11:59:01 +000087 int cpu = get_cpu();
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000088
Stefano Stabellinicb9644b2015-10-22 16:22:46 +000089 /*
90 * VCPUOP_register_vcpu_info cannot be called twice for the same
91 * vcpu, so if vcpu_info is already registered, just get out. This
92 * can happen with cpu-hotplug.
93 */
94 if (per_cpu(xen_vcpu, cpu) != NULL)
95 goto after_register_vcpu_info;
96
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +000097 pr_info("Xen: initializing cpu%d\n", cpu);
98 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
99
Julien Grall250c9af2015-05-05 16:36:56 +0100100 info.mfn = virt_to_gfn(vcpup);
101 info.offset = xen_offset_in_page(vcpup);
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000102
103 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
Stefano Stabellinid7266d72013-05-08 13:02:38 +0000104 BUG_ON(err);
105 per_cpu(xen_vcpu, cpu) = vcpup;
106
Stefano Stabellinicb9644b2015-10-22 16:22:46 +0000107after_register_vcpu_info:
Stefano Stabellini3cc8e402013-05-08 11:59:01 +0000108 enable_percpu_irq(xen_events_irq, 0);
Julien Grall0d7febe2013-07-29 17:06:05 +0100109 put_cpu();
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000110}
111
Stefano Stabellini2451ade2013-07-21 15:17:54 +0000112static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000113{
114 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
115 int rc;
116 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
Himangi Saraogia91c7772014-07-25 12:05:39 -0400117 BUG_ON(rc);
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000118}
119
120static void xen_power_off(void)
121{
122 struct sched_shutdown r = { .reason = SHUTDOWN_poweroff };
123 int rc;
124 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
Himangi Saraogia91c7772014-07-25 12:05:39 -0400125 BUG_ON(rc);
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000126}
127
Julien Grall8b271d52014-01-30 12:52:59 +0000128static int xen_cpu_notification(struct notifier_block *self,
129 unsigned long action,
130 void *hcpu)
131{
132 switch (action) {
133 case CPU_STARTING:
134 xen_percpu_init();
135 break;
Stefano Stabellinicb9644b2015-10-22 16:22:46 +0000136 case CPU_DYING:
137 disable_percpu_irq(xen_events_irq);
138 break;
Julien Grall8b271d52014-01-30 12:52:59 +0000139 default:
140 break;
141 }
142
143 return NOTIFY_OK;
144}
145
146static struct notifier_block xen_cpu_notifier = {
147 .notifier_call = xen_cpu_notification,
148};
149
150static irqreturn_t xen_arm_callback(int irq, void *arg)
151{
152 xen_hvm_evtchn_do_upcall();
153 return IRQ_HANDLED;
154}
155
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000156/*
157 * see Documentation/devicetree/bindings/arm/xen.txt for the
158 * documentation of the Xen Device Tree format.
159 */
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000160#define GRANT_TABLE_PHYSADDR 0
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000161void __init xen_early_init(void)
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000162{
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000163 int len;
164 const char *s = NULL;
165 const char *version = NULL;
166 const char *xen_prefix = "xen,xen-";
167
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000168 xen_node = of_find_compatible_node(NULL, NULL, "xen,xen");
169 if (!xen_node) {
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000170 pr_debug("No Xen support\n");
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000171 return;
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000172 }
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000173 s = of_get_property(xen_node, "compatible", &len);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000174 if (strlen(xen_prefix) + 3 < len &&
175 !strncmp(xen_prefix, s, strlen(xen_prefix)))
176 version = s + strlen(xen_prefix);
177 if (version == NULL) {
178 pr_debug("Xen version not found\n");
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000179 return;
Julien Grall81e863c2015-05-06 14:09:06 +0000180 }
181
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000182 pr_info("Xen %s support found\n", version);
Julien Grall8b271d52014-01-30 12:52:59 +0000183
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000184 xen_domain_type = XEN_HVM_DOMAIN;
185
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000186 xen_setup_features();
Stefano Stabellini5ebc77d2014-09-10 22:49:30 +0000187
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000188 if (xen_feature(XENFEAT_dom0))
189 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
190 else
191 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
Ard Biesheuvelf1dddd12015-05-06 14:14:22 +0000192
193 if (!console_set_on_cmdline && !xen_initial_domain())
194 add_preferred_console("hvc", 0, NULL);
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000195}
Stefano Stabellinief61ee0d2012-08-08 17:20:18 +0000196
Stefano Stabellini5882bfe2015-05-06 14:13:31 +0000197static int __init xen_guest_init(void)
198{
199 struct xen_add_to_physmap xatp;
200 struct shared_info *shared_info_page = NULL;
201 struct resource res;
202 phys_addr_t grant_frames;
203
204 if (!xen_domain())
205 return 0;
206
207 if (of_address_to_resource(xen_node, GRANT_TABLE_PHYSADDR, &res)) {
208 pr_err("Xen grant table base address not found\n");
209 return -ENODEV;
210 }
211 grant_frames = res.start;
212
213 xen_events_irq = irq_of_parse_and_map(xen_node, 0);
214 if (!xen_events_irq) {
215 pr_err("Xen event channel interrupt not found\n");
216 return -ENODEV;
217 }
218
219 shared_info_page = (struct shared_info *)get_zeroed_page(GFP_KERNEL);
220
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000221 if (!shared_info_page) {
222 pr_err("not enough memory\n");
223 return -ENOMEM;
224 }
225 xatp.domid = DOMID_SELF;
226 xatp.idx = 0;
227 xatp.space = XENMAPSPACE_shared_info;
Julien Grall250c9af2015-05-05 16:36:56 +0100228 xatp.gpfn = virt_to_gfn(shared_info_page);
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000229 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
230 BUG();
231
232 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
233
234 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
235 * page, we use it in the event channel upcall and in some pvclock
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000236 * related functions.
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000237 * The shared info contains exactly 1 CPU (the boot CPU). The guest
238 * is required to use VCPUOP_register_vcpu_info to place vcpu info
Stefano Stabellini9a9ab3c2013-04-25 16:17:04 +0000239 * for secondary CPUs as they are brought up.
240 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
241 */
242 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
243 sizeof(struct vcpu_info));
244 if (xen_vcpu_info == NULL)
245 return -ENOMEM;
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000246
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500247 if (gnttab_setup_auto_xlat_frames(grant_frames)) {
248 free_percpu(xen_vcpu_info);
249 return -ENOMEM;
250 }
Stefano Stabellinib3b52fd2012-09-13 12:06:52 +0000251 gnttab_init();
252 if (!xen_initial_domain())
253 xenbus_probe(NULL);
254
Julien Gralle1a9c162013-09-09 11:35:26 +0000255 /*
256 * Making sure board specific code will not set up ops for
257 * cpu idle and cpu freq.
258 */
259 disable_cpuidle();
260 disable_cpufreq();
261
Julien Grall8b271d52014-01-30 12:52:59 +0000262 xen_init_IRQ();
263
264 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
265 "events", &xen_vcpu)) {
266 pr_err("Error request IRQ %d\n", xen_events_irq);
267 return -EINVAL;
268 }
269
270 xen_percpu_init();
271
272 register_cpu_notifier(&xen_cpu_notifier);
273
Stefano Stabellini1aa3d8d2013-05-08 11:59:01 +0000274 return 0;
275}
Julien Grall8b271d52014-01-30 12:52:59 +0000276early_initcall(xen_guest_init);
Stefano Stabellini1aa3d8d2013-05-08 11:59:01 +0000277
278static int __init xen_pm_init(void)
279{
Rob Herring9dd4b292013-08-29 07:43:52 -0500280 if (!xen_domain())
281 return -ENODEV;
282
Stefano Stabellini6abb7492013-04-25 10:23:07 +0000283 pm_power_off = xen_power_off;
284 arm_pm_restart = xen_restart;
285
Stefano Stabellini2e01f162012-09-14 10:47:52 +0000286 return 0;
287}
Rob Herring9dd4b292013-08-29 07:43:52 -0500288late_initcall(xen_pm_init);
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +0000289
Stefano Stabellini79390282014-05-08 16:54:02 +0100290
291/* empty stubs */
292void xen_arch_pre_suspend(void) { }
293void xen_arch_post_suspend(int suspend_cancelled) { }
294void xen_timer_resume(void) { }
295void xen_arch_resume(void) { }
Boris Ostrovskyffb7dbe2015-05-07 12:55:23 -0400296void xen_arch_suspend(void) { }
Stefano Stabellini79390282014-05-08 16:54:02 +0100297
298
Juergen Grossd5f985c2015-09-14 15:20:52 +0200299/* In the hypercall.S file. */
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500300EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
301EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
Stefano Stabelliniab277bb2012-11-08 15:58:55 +0000302EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
303EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
304EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
305EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
306EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
307EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
Stefano Stabelliniea0af612013-04-25 13:53:05 +0000308EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
Stefano Stabellini176455e2013-07-02 10:42:40 +0000309EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
Ian Campbell9f1d34142014-05-09 16:10:49 +0000310EXPORT_SYMBOL_GPL(HYPERVISOR_multicall);
Konrad Rzeszutek Wilk911dec02012-11-06 17:06:52 -0500311EXPORT_SYMBOL_GPL(privcmd_call);