xen: whitespace/checkpatch cleanup
[deliverable/linux.git] / arch / x86 / xen / setup.c
CommitLineData
5ead97c8
JF
1/*
2 * Machine specific setup for xen
3 *
4 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
5 */
6
7#include <linux/module.h>
8#include <linux/sched.h>
9#include <linux/mm.h>
10#include <linux/pm.h>
11
12#include <asm/elf.h>
6c3652ef 13#include <asm/vdso.h>
5ead97c8
JF
14#include <asm/e820.h>
15#include <asm/setup.h>
b792c755 16#include <asm/acpi.h>
5ead97c8
JF
17#include <asm/xen/hypervisor.h>
18#include <asm/xen/hypercall.h>
19
8006ec3e 20#include <xen/page.h>
e2a81baf 21#include <xen/interface/callback.h>
5ead97c8
JF
22#include <xen/interface/physdev.h>
23#include <xen/features.h>
24
25#include "xen-ops.h"
d2eea68e 26#include "vdso.h"
5ead97c8
JF
27
28/* These are code, but not functions. Defined in entry.S */
29extern const char xen_hypervisor_callback[];
30extern const char xen_failsafe_callback[];
f63c2f24
T
31extern void xen_sysenter_target(void);
32extern void xen_syscall_target(void);
33extern void xen_syscall32_target(void);
5ead97c8 34
5ead97c8
JF
35
36/**
37 * machine_specific_memory_setup - Hook for machine specific memory setup.
38 **/
39
40char * __init xen_memory_setup(void)
41{
42 unsigned long max_pfn = xen_start_info->nr_pages;
43
8006ec3e
JF
44 max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
45
5ead97c8 46 e820.nr_map = 0;
be5bf9fa 47
5670a43d 48 e820_add_region(0, PFN_PHYS((u64)max_pfn), E820_RAM);
b792c755
JF
49
50 /*
51 * Even though this is normal, usable memory under Xen, reserve
52 * ISA memory anyway because too many things think they can poke
53 * about in there.
54 */
55 e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
56 E820_RESERVED);
5ead97c8 57
be5bf9fa
JF
58 /*
59 * Reserve Xen bits:
60 * - mfn_list
61 * - xen_start_info
62 * See comment above "struct start_info" in <xen/interface/xen.h>
63 */
64 e820_add_region(__pa(xen_start_info->mfn_list),
65 xen_start_info->pt_base - xen_start_info->mfn_list,
66 E820_RESERVED);
67
68 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
69
5ead97c8
JF
70 return "Xen";
71}
72
73static void xen_idle(void)
74{
75 local_irq_disable();
76
77 if (need_resched())
78 local_irq_enable();
79 else {
80 current_thread_info()->status &= ~TS_POLLING;
81 smp_mb__after_clear_bit();
82 safe_halt();
83 current_thread_info()->status |= TS_POLLING;
84 }
85}
86
d2eea68e
RM
87/*
88 * Set the bit indicating "nosegneg" library variants should be used.
6a52e4b1
JF
89 * We only need to bother in pure 32-bit mode; compat 32-bit processes
90 * can have un-truncated segments, so wrapping around is allowed.
d2eea68e 91 */
08b6d290 92static void __init fiddle_vdso(void)
d2eea68e 93{
6a52e4b1
JF
94#ifdef CONFIG_X86_32
95 u32 *mask;
96 mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
97 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
98 mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
d2eea68e 99 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
6fcac6d3 100#endif
d2eea68e
RM
101}
102
88459d4c 103static __cpuinit int register_callback(unsigned type, const void *func)
e2a81baf 104{
88459d4c
JF
105 struct callback_register callback = {
106 .type = type,
107 .address = XEN_CALLBACK(__KERNEL_CS, func),
e2a81baf
JF
108 .flags = CALLBACKF_mask_events,
109 };
110
88459d4c
JF
111 return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
112}
113
114void __cpuinit xen_enable_sysenter(void)
115{
6fcac6d3 116 int ret;
62541c37 117 unsigned sysenter_feature;
6fcac6d3
JF
118
119#ifdef CONFIG_X86_32
62541c37 120 sysenter_feature = X86_FEATURE_SEP;
6fcac6d3 121#else
62541c37 122 sysenter_feature = X86_FEATURE_SYSENTER32;
6fcac6d3 123#endif
88459d4c 124
62541c37
JF
125 if (!boot_cpu_has(sysenter_feature))
126 return;
127
6fcac6d3 128 ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
62541c37
JF
129 if(ret != 0)
130 setup_clear_cpu_cap(sysenter_feature);
e2a81baf
JF
131}
132
6fcac6d3
JF
133void __cpuinit xen_enable_syscall(void)
134{
135#ifdef CONFIG_X86_64
6fcac6d3 136 int ret;
6fcac6d3
JF
137
138 ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
139 if (ret != 0) {
d5303b81 140 printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
62541c37
JF
141 /* Pretty fatal; 64-bit userspace has no other
142 mechanism for syscalls. */
143 }
144
145 if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
6fcac6d3
JF
146 ret = register_callback(CALLBACKTYPE_syscall32,
147 xen_syscall32_target);
d5303b81 148 if (ret != 0)
62541c37 149 setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
6fcac6d3
JF
150 }
151#endif /* CONFIG_X86_64 */
152}
153
5ead97c8
JF
154void __init xen_arch_setup(void)
155{
156 struct physdev_set_iopl set_iopl;
157 int rc;
158
159 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
160 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
161
162 if (!xen_feature(XENFEAT_auto_translated_physmap))
f63c2f24
T
163 HYPERVISOR_vm_assist(VMASST_CMD_enable,
164 VMASST_TYPE_pae_extended_cr3);
5ead97c8 165
88459d4c
JF
166 if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
167 register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
168 BUG();
5ead97c8 169
e2a81baf 170 xen_enable_sysenter();
6fcac6d3 171 xen_enable_syscall();
e2a81baf 172
5ead97c8
JF
173 set_iopl.iopl = 1;
174 rc = HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
175 if (rc != 0)
176 printk(KERN_INFO "physdev_op failed %d\n", rc);
177
178#ifdef CONFIG_ACPI
179 if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
180 printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
181 disable_acpi();
182 }
183#endif
184
185 memcpy(boot_command_line, xen_start_info->cmd_line,
186 MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
187 COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
188
189 pm_idle = xen_idle;
f87e4cac 190
dfdcdd42 191 paravirt_disable_iospace();
d2eea68e
RM
192
193 fiddle_vdso();
5ead97c8 194}
This page took 0.249579 seconds and 5 git commands to generate.