Merge tag 'media/v4.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[deliverable/linux.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
4c071ee5
SS
48/* TODO: to be removed */
49__read_mostly int xen_have_vector_callback;
50EXPORT_SYMBOL_GPL(xen_have_vector_callback);
51
52int xen_platform_pci_unplug = XEN_UNPLUG_ALL;
53EXPORT_SYMBOL_GPL(xen_platform_pci_unplug);
54
81e863c3 55static __read_mostly unsigned int xen_events_irq;
0ec53ecf 56
5882bfef
SS
57static __initdata struct device_node *xen_node;
58
4e8c0c8c 59int xen_remap_domain_mfn_array(struct vm_area_struct *vma,
4c071ee5 60 unsigned long addr,
4e8c0c8c
DV
61 xen_pfn_t *mfn, int nr,
62 int *err_ptr, pgprot_t prot,
63 unsigned domid,
f832da06 64 struct page **pages)
4c071ee5 65{
4e8c0c8c 66 return xen_xlate_remap_gfn_array(vma, addr, mfn, nr, err_ptr,
628c28ee 67 prot, domid, pages);
4c071ee5 68}
4e8c0c8c
DV
69EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_array);
70
71/* Not used by XENFEAT_auto_translated guests. */
72int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
73 unsigned long addr,
74 xen_pfn_t mfn, int nr,
75 pgprot_t prot, unsigned domid,
76 struct page **pages)
77{
78 return -ENOSYS;
79}
4c071ee5 80EXPORT_SYMBOL_GPL(xen_remap_domain_mfn_range);
2e01f166 81
f832da06
IC
82int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
83 int nr, struct page **pages)
84{
628c28ee 85 return xen_xlate_unmap_gfn_range(vma, nr, pages);
f832da06
IC
86}
87EXPORT_SYMBOL_GPL(xen_unmap_domain_mfn_range);
88
8b271d57 89static void xen_percpu_init(void)
9a9ab3cc
SS
90{
91 struct vcpu_register_vcpu_info info;
92 struct vcpu_info *vcpup;
93 int err;
3cc8e40e 94 int cpu = get_cpu();
9a9ab3cc
SS
95
96 pr_info("Xen: initializing cpu%d\n", cpu);
97 vcpup = per_cpu_ptr(xen_vcpu_info, cpu);
98
99 info.mfn = __pa(vcpup) >> PAGE_SHIFT;
100 info.offset = offset_in_page(vcpup);
101
102 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
d7266d78
SS
103 BUG_ON(err);
104 per_cpu(xen_vcpu, cpu) = vcpup;
105
3cc8e40e 106 enable_percpu_irq(xen_events_irq, 0);
0d7febe5 107 put_cpu();
9a9ab3cc
SS
108}
109
2451ade0 110static void xen_restart(enum reboot_mode reboot_mode, const char *cmd)
6abb749e
SS
111{
112 struct sched_shutdown r = { .reason = SHUTDOWN_reboot };
113 int rc;
114 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
a91c7775 115 BUG_ON(rc);
6abb749e
SS
116}
117
118static void xen_power_off(void)
119{
120 struct sched_shutdown r = { .reason = SHUTDOWN_poweroff };
121 int rc;
122 rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
a91c7775 123 BUG_ON(rc);
6abb749e
SS
124}
125
8b271d57
JG
126static int xen_cpu_notification(struct notifier_block *self,
127 unsigned long action,
128 void *hcpu)
129{
130 switch (action) {
131 case CPU_STARTING:
132 xen_percpu_init();
133 break;
134 default:
135 break;
136 }
137
138 return NOTIFY_OK;
139}
140
141static struct notifier_block xen_cpu_notifier = {
142 .notifier_call = xen_cpu_notification,
143};
144
145static irqreturn_t xen_arm_callback(int irq, void *arg)
146{
147 xen_hvm_evtchn_do_upcall();
148 return IRQ_HANDLED;
149}
150
2e01f166
SS
151/*
152 * see Documentation/devicetree/bindings/arm/xen.txt for the
153 * documentation of the Xen Device Tree format.
154 */
b3b52fd8 155#define GRANT_TABLE_PHYSADDR 0
5882bfef 156void __init xen_early_init(void)
2e01f166 157{
2e01f166
SS
158 int len;
159 const char *s = NULL;
160 const char *version = NULL;
161 const char *xen_prefix = "xen,xen-";
162
5882bfef
SS
163 xen_node = of_find_compatible_node(NULL, NULL, "xen,xen");
164 if (!xen_node) {
2e01f166 165 pr_debug("No Xen support\n");
5882bfef 166 return;
2e01f166 167 }
5882bfef 168 s = of_get_property(xen_node, "compatible", &len);
2e01f166
SS
169 if (strlen(xen_prefix) + 3 < len &&
170 !strncmp(xen_prefix, s, strlen(xen_prefix)))
171 version = s + strlen(xen_prefix);
172 if (version == NULL) {
173 pr_debug("Xen version not found\n");
5882bfef 174 return;
81e863c3
JG
175 }
176
5882bfef 177 pr_info("Xen %s support found\n", version);
8b271d57 178
2e01f166
SS
179 xen_domain_type = XEN_HVM_DOMAIN;
180
ef61ee0d 181 xen_setup_features();
5ebc77de 182
ef61ee0d
SS
183 if (xen_feature(XENFEAT_dom0))
184 xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
185 else
186 xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
f1dddd11
AB
187
188 if (!console_set_on_cmdline && !xen_initial_domain())
189 add_preferred_console("hvc", 0, NULL);
5882bfef
SS
190}
191
192static int __init xen_guest_init(void)
193{
194 struct xen_add_to_physmap xatp;
195 struct shared_info *shared_info_page = NULL;
196 struct resource res;
197 phys_addr_t grant_frames;
198
199 if (!xen_domain())
200 return 0;
201
202 if (of_address_to_resource(xen_node, GRANT_TABLE_PHYSADDR, &res)) {
203 pr_err("Xen grant table base address not found\n");
204 return -ENODEV;
205 }
206 grant_frames = res.start;
207
208 xen_events_irq = irq_of_parse_and_map(xen_node, 0);
209 if (!xen_events_irq) {
210 pr_err("Xen event channel interrupt not found\n");
211 return -ENODEV;
212 }
213
214 shared_info_page = (struct shared_info *)get_zeroed_page(GFP_KERNEL);
ef61ee0d 215
2e01f166
SS
216 if (!shared_info_page) {
217 pr_err("not enough memory\n");
218 return -ENOMEM;
219 }
220 xatp.domid = DOMID_SELF;
221 xatp.idx = 0;
222 xatp.space = XENMAPSPACE_shared_info;
223 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
224 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
225 BUG();
226
227 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
228
229 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
230 * page, we use it in the event channel upcall and in some pvclock
9a9ab3cc 231 * related functions.
2e01f166
SS
232 * The shared info contains exactly 1 CPU (the boot CPU). The guest
233 * is required to use VCPUOP_register_vcpu_info to place vcpu info
9a9ab3cc
SS
234 * for secondary CPUs as they are brought up.
235 * For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
236 */
237 xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
238 sizeof(struct vcpu_info));
239 if (xen_vcpu_info == NULL)
240 return -ENOMEM;
b3b52fd8 241
efaf30a3
KRW
242 if (gnttab_setup_auto_xlat_frames(grant_frames)) {
243 free_percpu(xen_vcpu_info);
244 return -ENOMEM;
245 }
b3b52fd8
SS
246 gnttab_init();
247 if (!xen_initial_domain())
248 xenbus_probe(NULL);
249
e1a9c16b
JG
250 /*
251 * Making sure board specific code will not set up ops for
252 * cpu idle and cpu freq.
253 */
254 disable_cpuidle();
255 disable_cpufreq();
256
8b271d57
JG
257 xen_init_IRQ();
258
259 if (request_percpu_irq(xen_events_irq, xen_arm_callback,
260 "events", &xen_vcpu)) {
261 pr_err("Error request IRQ %d\n", xen_events_irq);
262 return -EINVAL;
263 }
264
265 xen_percpu_init();
266
267 register_cpu_notifier(&xen_cpu_notifier);
268
1aa3d8d9
SS
269 return 0;
270}
8b271d57 271early_initcall(xen_guest_init);
1aa3d8d9
SS
272
273static int __init xen_pm_init(void)
274{
9dd4b294
RH
275 if (!xen_domain())
276 return -ENODEV;
277
6abb749e
SS
278 pm_power_off = xen_power_off;
279 arm_pm_restart = xen_restart;
280
2e01f166
SS
281 return 0;
282}
9dd4b294 283late_initcall(xen_pm_init);
0ec53ecf 284
79390289
SS
285
286/* empty stubs */
287void xen_arch_pre_suspend(void) { }
288void xen_arch_post_suspend(int suspend_cancelled) { }
289void xen_timer_resume(void) { }
290void xen_arch_resume(void) { }
ffb7dbed 291void xen_arch_suspend(void) { }
79390289
SS
292
293
911dec0d
KRW
294/* In the hypervisor.S file. */
295EXPORT_SYMBOL_GPL(HYPERVISOR_event_channel_op);
296EXPORT_SYMBOL_GPL(HYPERVISOR_grant_table_op);
ab277bbf
SS
297EXPORT_SYMBOL_GPL(HYPERVISOR_xen_version);
298EXPORT_SYMBOL_GPL(HYPERVISOR_console_io);
299EXPORT_SYMBOL_GPL(HYPERVISOR_sched_op);
300EXPORT_SYMBOL_GPL(HYPERVISOR_hvm_op);
301EXPORT_SYMBOL_GPL(HYPERVISOR_memory_op);
302EXPORT_SYMBOL_GPL(HYPERVISOR_physdev_op);
ea0af613 303EXPORT_SYMBOL_GPL(HYPERVISOR_vcpu_op);
176455e9 304EXPORT_SYMBOL_GPL(HYPERVISOR_tmem_op);
9f1d3414 305EXPORT_SYMBOL_GPL(HYPERVISOR_multicall);
911dec0d 306EXPORT_SYMBOL_GPL(privcmd_call);
This page took 0.151593 seconds and 5 git commands to generate.