]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/xen/enlighten.c
arm64: introduce CONFIG_PARAVIRT, PARAVIRT_TIME_ACCOUNTING and pv_time_ops
[mirror_ubuntu-bionic-kernel.git] / arch / arm / xen / enlighten.c
CommitLineData
4c071ee5 1#include <xen/xen.h>
0ec53ecf 2#include <xen/events.h>
b3b52fd8
SS
3#include <xen/grant_table.h>
4#include <xen/hvm.h>
9a9ab3cc 5#include <xen/interface/vcpu.h>
4c071ee5
SS
6#include <xen/interface/xen.h>
7#include <xen/interface/memory.h>
b3b52fd8 8#include <xen/interface/hvm/params.h>
ef61ee0d 9#include <xen/features.h>
4c071ee5 10#include <xen/platform_pci.h>
b3b52fd8 11#include <xen/xenbus.h>
c61ba729 12#include <xen/page.h>
6abb749e 13#include <xen/interface/sched.h>
f832da06 14#include <xen/xen-ops.h>
4c071ee5
SS
15#include <asm/xen/hypervisor.h>
16#include <asm/xen/hypercall.h>
6abb749e 17#include <asm/system_misc.h>
0ec53ecf
SS
18#include <linux/interrupt.h>
19#include <linux/irqreturn.h>
4c071ee5 20#include <linux/module.h>
2e01f166
SS
21#include <linux/of.h>
22#include <linux/of_irq.h>
23#include <linux/of_address.h>
e1a9c16b
JG
24#include <linux/cpuidle.h>
25#include <linux/cpufreq.h>
8b271d57 26#include <linux/cpu.h>
f1dddd11 27#include <linux/console.h>
4c071ee5 28
f832da06
IC
29#include <linux/mm.h>
30
4c071ee5
SS
31struct start_info _xen_start_info;
32struct start_info *xen_start_info = &_xen_start_info;
35c8ab4c 33EXPORT_SYMBOL(xen_start_info);
4c071ee5
SS
34
35enum xen_domain_type xen_domain_type = XEN_NATIVE;
35c8ab4c 36EXPORT_SYMBOL(xen_domain_type);
4c071ee5
SS
37
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);
9a9ab3cc 42static struct vcpu_info __percpu *xen_vcpu_info;
4c071ee5 43
c61ba729
IC
44/* 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
81e863c3 48static __read_mostly unsigned int xen_events_irq;
0ec53ecf 49
5882bfef
SS
50static __initdata struct device_node *xen_node;
51
a13d7201 52int xen_remap_domain_gfn_array(struct vm_area_struct *vma,
4c071ee5 53 unsigned long addr,
a13d7201 54 xen_pfn_t *gfn, int nr,
4e8c0c8c
DV
55 int *err_ptr, pgprot_t prot,
56 unsigned domid,
f832da06 57 struct page **pages)
4c071ee5 58{
a13d7201 59 return xen_xlate_remap_gfn_array(vma, addr, gfn, nr, err_ptr,
628c28ee 60 prot, domid, pages);
4c071ee5 61}
a13d7201 62EXPORT_SYMBOL_GPL(xen_remap_domain_gfn_array);
4e8c0c8c
DV
63
64/* Not used by XENFEAT_auto_translated guests. */
a13d7201 65int xen_remap_domain_gfn_range(struct vm_area_struct *vma,
4e8c0c8c 66 unsigned long addr,
a13d7201 67 xen_pfn_t gfn, int nr,
4e8c0c8c
DV
68 pgprot_t prot, unsigned domid,
69 struct page **pages)
70{
71 return -ENOSYS;
72}
a13d7201 73EXPORT_SYMBOL_GPL(xen_remap_domain_gfn_range);
2e01f166 74
a13d7201 75int xen_unmap_domain_gfn_range(struct vm_area_struct *vma,
f832da06
IC
76 int nr, struct page **pages)
77{
628c28ee 78 return xen_xlate_unmap_gfn_range(vma, nr, pages);
f832da06 79}
a13d7201 80EXPORT_SYMBOL_GPL(xen_unmap_domain_gfn_range);
f832da06 81
8b271d57 82static void xen_percpu_init(void)
9a9ab3cc
SS
83{
84 struct vcpu_register_vcpu_info info;
85 struct vcpu_info *vcpup;
86 int err;
3cc8e40e 87 int cpu = get_cpu();
9a9ab3cc 88
cb9644bf
SS
89 /*
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
9a9ab3cc
SS
97 pr_info("Xen: initializing cpu%d\n", cpu);
98 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
99
250c9af3
JG
100 info.mfn = virt_to_gfn(vcpup);
101 info.offset = xen_offset_in_page(vcpup);
9a9ab3cc
SS
102
103 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
d7266d78
SS
104 BUG_ON(err);
105 per_cpu(xen_vcpu, cpu) = vcpup;
106
cb9644bf 107after_register_vcpu_info:
3cc8e40e 108 enable_percpu_irq(xen_events_irq, 0);
0d7febe5 109 put_cpu();
9a9ab3cc
SS
110}
111
2451ade0 112static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
6abb749e
SS
113{
114 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
115 int rc;
116 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
a91c7775 117 BUG_ON(rc);
6abb749e
SS
118}
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);
a91c7775 125 BUG_ON(rc);
6abb749e
SS
126}
127
8b271d57
JG
128static 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;
cb9644bf
SS
136 case CPU_DYING:
137 disable_percpu_irq(xen_events_irq);
138 break;
8b271d57
JG
139 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
2e01f166
SS
156/*
157 * see Documentation/devicetree/bindings/arm/xen.txt for the
158 * documentation of the Xen Device Tree format.
159 */
b3b52fd8 160#define GRANT_TABLE_PHYSADDR 0
5882bfef 161void __init xen_early_init(void)
2e01f166 162{
2e01f166
SS
163 int len;
164 const char *s = NULL;
165 const char *version = NULL;
166 const char *xen_prefix = "xen,xen-";
167
5882bfef
SS
168 xen_node = of_find_compatible_node(NULL, NULL, "xen,xen");
169 if (!xen_node) {
2e01f166 170 pr_debug("No Xen support\n");
5882bfef 171 return;
2e01f166 172 }
5882bfef 173 s = of_get_property(xen_node, "compatible", &len);
2e01f166
SS
174 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");
5882bfef 179 return;
81e863c3
JG
180 }
181
5882bfef 182 pr_info("Xen %s support found\n", version);
8b271d57 183
2e01f166
SS
184 xen_domain_type = XEN_HVM_DOMAIN;
185
ef61ee0d 186 xen_setup_features();
5ebc77de 187
ef61ee0d
SS
188 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);
f1dddd11
AB
192
193 if (!console_set_on_cmdline && !xen_initial_domain())
194 add_preferred_console("hvc", 0, NULL);
5882bfef
SS
195}
196
197static 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);
ef61ee0d 220
2e01f166
SS
221 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;
250c9af3 228 xatp.gpfn = virt_to_gfn(shared_info_page);
2e01f166
SS
229 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
9a9ab3cc 236 * related functions.
2e01f166
SS
237 * 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
9a9ab3cc
SS
239 * 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;
b3b52fd8 246
efaf30a3
KRW
247 if (gnttab_setup_auto_xlat_frames(grant_frames)) {
248 free_percpu(xen_vcpu_info);
249 return -ENOMEM;
250 }
b3b52fd8
SS
251 gnttab_init();
252 if (!xen_initial_domain())
253 xenbus_probe(NULL);
254
e1a9c16b
JG
255 /*
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
8b271d57
JG
262 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
1aa3d8d9
SS
274 return 0;
275}
8b271d57 276early_initcall(xen_guest_init);
1aa3d8d9
SS
277
278static int __init xen_pm_init(void)
279{
9dd4b294
RH
280 if (!xen_domain())
281 return -ENODEV;
282
6abb749e
SS
283 pm_power_off = xen_power_off;
284 arm_pm_restart = xen_restart;
285
2e01f166
SS
286 return 0;
287}
9dd4b294 288late_initcall(xen_pm_init);
0ec53ecf 289
79390289
SS
290
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) { }
ffb7dbed 296void xen_arch_suspend(void) { }
79390289
SS
297
298
d5f985c8 299/* In the hypercall.S file. */
911dec0d
KRW
300EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
301EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
ab277bbf
SS
302EXPORT_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);
ea0af613 308EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
176455e9 309EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
9f1d3414 310EXPORT_SYMBOL_GPL(HYPERVISOR_multicall);
911dec0d 311EXPORT_SYMBOL_GPL(privcmd_call);