blob: e7d128312b23b2f8ff6047916b35abfa804c65ec [file] [log] [blame]
Rusty Russellf938d2c2007-07-26 10:41:02 -07001/*P:010
2 * A hypervisor allows multiple Operating Systems to run on a single machine.
3 * To quote David Wheeler: "Any problem in computer science can be solved with
4 * another layer of indirection."
Rusty Russell07ad1572007-07-19 01:49:22 -07005 *
Rusty Russellf938d2c2007-07-26 10:41:02 -07006 * We keep things simple in two ways. First, we start with a normal Linux
7 * kernel and insert a module (lg.ko) which allows us to run other Linux
8 * kernels the same way we'd run processes. We call the first kernel the Host,
9 * and the others the Guests. The program which sets up and configures Guests
10 * (such as the example in Documentation/lguest/lguest.c) is called the
11 * Launcher.
12 *
13 * Secondly, we only run specially modified Guests, not normal kernels. When
14 * you set CONFIG_LGUEST to 'y' or 'm', this automatically sets
15 * CONFIG_LGUEST_GUEST=y, which compiles this file into the kernel so it knows
16 * how to be a Guest. This means that you can use the same kernel you boot
17 * normally (ie. as a Host) as a Guest.
18 *
19 * These Guests know that they cannot do privileged operations, such as disable
20 * interrupts, and that they have to ask the Host to do such things explicitly.
21 * This file consists of all the replacements for such low-level native
22 * hardware operations: these special Guest versions call the Host.
23 *
24 * So how does the kernel know it's a Guest? The Guest starts at a special
25 * entry point marked with a magic string, which sets up a few things then
26 * calls here. We replace the native functions in "struct paravirt_ops"
27 * with our Guest versions, then boot like normal. :*/
28
29/*
Rusty Russell07ad1572007-07-19 01:49:22 -070030 * Copyright (C) 2006, Rusty Russell <rusty@rustcorp.com.au> IBM Corporation.
31 *
32 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version.
36 *
37 * This program is distributed in the hope that it will be useful, but
38 * WITHOUT ANY WARRANTY; without even the implied warranty of
39 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
40 * NON INFRINGEMENT. See the GNU General Public License for more
41 * details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
46 */
47#include <linux/kernel.h>
48#include <linux/start_kernel.h>
49#include <linux/string.h>
50#include <linux/console.h>
51#include <linux/screen_info.h>
52#include <linux/irq.h>
53#include <linux/interrupt.h>
Rusty Russelld7e28ff2007-07-19 01:49:23 -070054#include <linux/clocksource.h>
55#include <linux/clockchips.h>
Rusty Russell07ad1572007-07-19 01:49:22 -070056#include <linux/lguest.h>
57#include <linux/lguest_launcher.h>
58#include <linux/lguest_bus.h>
59#include <asm/paravirt.h>
60#include <asm/param.h>
61#include <asm/page.h>
62#include <asm/pgtable.h>
63#include <asm/desc.h>
64#include <asm/setup.h>
65#include <asm/e820.h>
66#include <asm/mce.h>
67#include <asm/io.h>
68
69/* Declarations for definitions in lguest_guest.S */
70extern char lguest_noirq_start[], lguest_noirq_end[];
71extern const char lgstart_cli[], lgend_cli[];
72extern const char lgstart_sti[], lgend_sti[];
73extern const char lgstart_popf[], lgend_popf[];
74extern const char lgstart_pushf[], lgend_pushf[];
75extern const char lgstart_iret[], lgend_iret[];
76extern void lguest_iret(void);
77
78struct lguest_data lguest_data = {
79 .hcall_status = { [0 ... LHCALL_RING_SIZE-1] = 0xFF },
80 .noirq_start = (u32)lguest_noirq_start,
81 .noirq_end = (u32)lguest_noirq_end,
82 .blocked_interrupts = { 1 }, /* Block timer interrupts */
83};
84struct lguest_device_desc *lguest_devices;
Rusty Russell9d1ca6f2007-07-20 22:15:01 +100085static cycle_t clock_base;
Rusty Russell07ad1572007-07-19 01:49:22 -070086
87static enum paravirt_lazy_mode lazy_mode;
88static void lguest_lazy_mode(enum paravirt_lazy_mode mode)
89{
90 if (mode == PARAVIRT_LAZY_FLUSH) {
91 if (unlikely(lazy_mode != PARAVIRT_LAZY_NONE))
92 hcall(LHCALL_FLUSH_ASYNC, 0, 0, 0);
93 } else {
94 lazy_mode = mode;
95 if (mode == PARAVIRT_LAZY_NONE)
96 hcall(LHCALL_FLUSH_ASYNC, 0, 0, 0);
97 }
98}
99
100static void lazy_hcall(unsigned long call,
101 unsigned long arg1,
102 unsigned long arg2,
103 unsigned long arg3)
104{
105 if (lazy_mode == PARAVIRT_LAZY_NONE)
106 hcall(call, arg1, arg2, arg3);
107 else
108 async_hcall(call, arg1, arg2, arg3);
109}
110
111void async_hcall(unsigned long call,
112 unsigned long arg1, unsigned long arg2, unsigned long arg3)
113{
114 /* Note: This code assumes we're uniprocessor. */
115 static unsigned int next_call;
116 unsigned long flags;
117
118 local_irq_save(flags);
119 if (lguest_data.hcall_status[next_call] != 0xFF) {
120 /* Table full, so do normal hcall which will flush table. */
121 hcall(call, arg1, arg2, arg3);
122 } else {
123 lguest_data.hcalls[next_call].eax = call;
124 lguest_data.hcalls[next_call].edx = arg1;
125 lguest_data.hcalls[next_call].ebx = arg2;
126 lguest_data.hcalls[next_call].ecx = arg3;
127 /* Make sure host sees arguments before "valid" flag. */
128 wmb();
129 lguest_data.hcall_status[next_call] = 0;
130 if (++next_call == LHCALL_RING_SIZE)
131 next_call = 0;
132 }
133 local_irq_restore(flags);
134}
135
136void lguest_send_dma(unsigned long key, struct lguest_dma *dma)
137{
138 dma->used_len = 0;
139 hcall(LHCALL_SEND_DMA, key, __pa(dma), 0);
140}
141
142int lguest_bind_dma(unsigned long key, struct lguest_dma *dmas,
143 unsigned int num, u8 irq)
144{
145 if (!hcall(LHCALL_BIND_DMA, key, __pa(dmas), (num << 8) | irq))
146 return -ENOMEM;
147 return 0;
148}
149
150void lguest_unbind_dma(unsigned long key, struct lguest_dma *dmas)
151{
152 hcall(LHCALL_BIND_DMA, key, __pa(dmas), 0);
153}
154
155/* For guests, device memory can be used as normal memory, so we cast away the
156 * __iomem to quieten sparse. */
157void *lguest_map(unsigned long phys_addr, unsigned long pages)
158{
159 return (__force void *)ioremap(phys_addr, PAGE_SIZE*pages);
160}
161
162void lguest_unmap(void *addr)
163{
164 iounmap((__force void __iomem *)addr);
165}
166
167static unsigned long save_fl(void)
168{
169 return lguest_data.irq_enabled;
170}
171
172static void restore_fl(unsigned long flags)
173{
174 /* FIXME: Check if interrupt pending... */
175 lguest_data.irq_enabled = flags;
176}
177
178static void irq_disable(void)
179{
180 lguest_data.irq_enabled = 0;
181}
182
183static void irq_enable(void)
184{
185 /* FIXME: Check if interrupt pending... */
186 lguest_data.irq_enabled = X86_EFLAGS_IF;
187}
188
189static void lguest_write_idt_entry(struct desc_struct *dt,
190 int entrynum, u32 low, u32 high)
191{
192 write_dt_entry(dt, entrynum, low, high);
193 hcall(LHCALL_LOAD_IDT_ENTRY, entrynum, low, high);
194}
195
196static void lguest_load_idt(const struct Xgt_desc_struct *desc)
197{
198 unsigned int i;
199 struct desc_struct *idt = (void *)desc->address;
200
201 for (i = 0; i < (desc->size+1)/8; i++)
202 hcall(LHCALL_LOAD_IDT_ENTRY, i, idt[i].a, idt[i].b);
203}
204
205static void lguest_load_gdt(const struct Xgt_desc_struct *desc)
206{
207 BUG_ON((desc->size+1)/8 != GDT_ENTRIES);
208 hcall(LHCALL_LOAD_GDT, __pa(desc->address), GDT_ENTRIES, 0);
209}
210
211static void lguest_write_gdt_entry(struct desc_struct *dt,
212 int entrynum, u32 low, u32 high)
213{
214 write_dt_entry(dt, entrynum, low, high);
215 hcall(LHCALL_LOAD_GDT, __pa(dt), GDT_ENTRIES, 0);
216}
217
218static void lguest_load_tls(struct thread_struct *t, unsigned int cpu)
219{
220 lazy_hcall(LHCALL_LOAD_TLS, __pa(&t->tls_array), cpu, 0);
221}
222
223static void lguest_set_ldt(const void *addr, unsigned entries)
224{
225}
226
227static void lguest_load_tr_desc(void)
228{
229}
230
231static void lguest_cpuid(unsigned int *eax, unsigned int *ebx,
232 unsigned int *ecx, unsigned int *edx)
233{
234 int function = *eax;
235
236 native_cpuid(eax, ebx, ecx, edx);
237 switch (function) {
238 case 1: /* Basic feature request. */
239 /* We only allow kernel to see SSE3, CMPXCHG16B and SSSE3 */
240 *ecx &= 0x00002201;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700241 /* SSE, SSE2, FXSR, MMX, CMOV, CMPXCHG8B, FPU. */
Rusty Russell07ad1572007-07-19 01:49:22 -0700242 *edx &= 0x07808101;
243 /* Host wants to know when we flush kernel pages: set PGE. */
244 *edx |= 0x00002000;
245 break;
246 case 0x80000000:
247 /* Futureproof this a little: if they ask how much extended
248 * processor information, limit it to known fields. */
249 if (*eax > 0x80000008)
250 *eax = 0x80000008;
251 break;
252 }
253}
254
255static unsigned long current_cr0, current_cr3;
256static void lguest_write_cr0(unsigned long val)
257{
258 lazy_hcall(LHCALL_TS, val & 8, 0, 0);
259 current_cr0 = val;
260}
261
262static unsigned long lguest_read_cr0(void)
263{
264 return current_cr0;
265}
266
267static void lguest_clts(void)
268{
269 lazy_hcall(LHCALL_TS, 0, 0, 0);
270 current_cr0 &= ~8U;
271}
272
273static unsigned long lguest_read_cr2(void)
274{
275 return lguest_data.cr2;
276}
277
278static void lguest_write_cr3(unsigned long cr3)
279{
280 lazy_hcall(LHCALL_NEW_PGTABLE, cr3, 0, 0);
281 current_cr3 = cr3;
282}
283
284static unsigned long lguest_read_cr3(void)
285{
286 return current_cr3;
287}
288
289/* Used to enable/disable PGE, but we don't care. */
290static unsigned long lguest_read_cr4(void)
291{
292 return 0;
293}
294
295static void lguest_write_cr4(unsigned long val)
296{
297}
298
299static void lguest_set_pte_at(struct mm_struct *mm, unsigned long addr,
300 pte_t *ptep, pte_t pteval)
301{
302 *ptep = pteval;
303 lazy_hcall(LHCALL_SET_PTE, __pa(mm->pgd), addr, pteval.pte_low);
304}
305
306/* We only support two-level pagetables at the moment. */
307static void lguest_set_pmd(pmd_t *pmdp, pmd_t pmdval)
308{
309 *pmdp = pmdval;
310 lazy_hcall(LHCALL_SET_PMD, __pa(pmdp)&PAGE_MASK,
311 (__pa(pmdp)&(PAGE_SIZE-1))/4, 0);
312}
313
314/* FIXME: Eliminate all callers of this. */
315static void lguest_set_pte(pte_t *ptep, pte_t pteval)
316{
317 *ptep = pteval;
318 /* Don't bother with hypercall before initial setup. */
319 if (current_cr3)
320 lazy_hcall(LHCALL_FLUSH_TLB, 1, 0, 0);
321}
322
323static void lguest_flush_tlb_single(unsigned long addr)
324{
325 /* Simply set it to zero, and it will fault back in. */
326 lazy_hcall(LHCALL_SET_PTE, current_cr3, addr, 0);
327}
328
329static void lguest_flush_tlb_user(void)
330{
331 lazy_hcall(LHCALL_FLUSH_TLB, 0, 0, 0);
332}
333
334static void lguest_flush_tlb_kernel(void)
335{
336 lazy_hcall(LHCALL_FLUSH_TLB, 1, 0, 0);
337}
338
339static void disable_lguest_irq(unsigned int irq)
340{
341 set_bit(irq, lguest_data.blocked_interrupts);
342}
343
344static void enable_lguest_irq(unsigned int irq)
345{
346 clear_bit(irq, lguest_data.blocked_interrupts);
347 /* FIXME: If it's pending? */
348}
349
350static struct irq_chip lguest_irq_controller = {
351 .name = "lguest",
352 .mask = disable_lguest_irq,
353 .mask_ack = disable_lguest_irq,
354 .unmask = enable_lguest_irq,
355};
356
357static void __init lguest_init_IRQ(void)
358{
359 unsigned int i;
360
361 for (i = 0; i < LGUEST_IRQS; i++) {
362 int vector = FIRST_EXTERNAL_VECTOR + i;
363 if (vector != SYSCALL_VECTOR) {
364 set_intr_gate(vector, interrupt[i]);
365 set_irq_chip_and_handler(i, &lguest_irq_controller,
366 handle_level_irq);
367 }
368 }
369 irq_ctx_init(smp_processor_id());
370}
371
372static unsigned long lguest_get_wallclock(void)
373{
374 return hcall(LHCALL_GET_WALLCLOCK, 0, 0, 0);
375}
376
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700377static cycle_t lguest_clock_read(void)
Rusty Russell07ad1572007-07-19 01:49:22 -0700378{
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700379 if (lguest_data.tsc_khz)
380 return native_read_tsc();
381 else
382 return jiffies;
Rusty Russell07ad1572007-07-19 01:49:22 -0700383}
384
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700385/* This is what we tell the kernel is our clocksource. */
386static struct clocksource lguest_clock = {
387 .name = "lguest",
388 .rating = 400,
389 .read = lguest_clock_read,
390};
391
Rusty Russell9d1ca6f2007-07-20 22:15:01 +1000392static unsigned long long lguest_sched_clock(void)
393{
394 return cyc2ns(&lguest_clock, lguest_clock_read() - clock_base);
395}
396
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700397/* We also need a "struct clock_event_device": Linux asks us to set it to go
398 * off some time in the future. Actually, James Morris figured all this out, I
399 * just applied the patch. */
400static int lguest_clockevent_set_next_event(unsigned long delta,
401 struct clock_event_device *evt)
402{
403 if (delta < LG_CLOCK_MIN_DELTA) {
404 if (printk_ratelimit())
405 printk(KERN_DEBUG "%s: small delta %lu ns\n",
406 __FUNCTION__, delta);
407 return -ETIME;
408 }
409 hcall(LHCALL_SET_CLOCKEVENT, delta, 0, 0);
410 return 0;
411}
412
413static void lguest_clockevent_set_mode(enum clock_event_mode mode,
414 struct clock_event_device *evt)
415{
416 switch (mode) {
417 case CLOCK_EVT_MODE_UNUSED:
418 case CLOCK_EVT_MODE_SHUTDOWN:
419 /* A 0 argument shuts the clock down. */
420 hcall(LHCALL_SET_CLOCKEVENT, 0, 0, 0);
421 break;
422 case CLOCK_EVT_MODE_ONESHOT:
423 /* This is what we expect. */
424 break;
425 case CLOCK_EVT_MODE_PERIODIC:
426 BUG();
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700427 case CLOCK_EVT_MODE_RESUME:
428 break;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700429 }
430}
431
432/* This describes our primitive timer chip. */
433static struct clock_event_device lguest_clockevent = {
434 .name = "lguest",
435 .features = CLOCK_EVT_FEAT_ONESHOT,
436 .set_next_event = lguest_clockevent_set_next_event,
437 .set_mode = lguest_clockevent_set_mode,
438 .rating = INT_MAX,
439 .mult = 1,
440 .shift = 0,
441 .min_delta_ns = LG_CLOCK_MIN_DELTA,
442 .max_delta_ns = LG_CLOCK_MAX_DELTA,
443};
444
445/* This is the Guest timer interrupt handler (hardware interrupt 0). We just
446 * call the clockevent infrastructure and it does whatever needs doing. */
447static void lguest_time_irq(unsigned int irq, struct irq_desc *desc)
448{
449 unsigned long flags;
450
451 /* Don't interrupt us while this is running. */
452 local_irq_save(flags);
453 lguest_clockevent.event_handler(&lguest_clockevent);
454 local_irq_restore(flags);
455}
456
Rusty Russell07ad1572007-07-19 01:49:22 -0700457static void lguest_time_init(void)
458{
459 set_irq_handler(0, lguest_time_irq);
Rusty Russell07ad1572007-07-19 01:49:22 -0700460
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700461 /* We use the TSC if the Host tells us we can, otherwise a dumb
462 * jiffies-based clock. */
463 if (lguest_data.tsc_khz) {
464 lguest_clock.shift = 22;
465 lguest_clock.mult = clocksource_khz2mult(lguest_data.tsc_khz,
466 lguest_clock.shift);
467 lguest_clock.mask = CLOCKSOURCE_MASK(64);
468 lguest_clock.flags = CLOCK_SOURCE_IS_CONTINUOUS;
469 } else {
470 /* To understand this, start at kernel/time/jiffies.c... */
471 lguest_clock.shift = 8;
472 lguest_clock.mult = (((u64)NSEC_PER_SEC<<8)/ACTHZ) << 8;
473 lguest_clock.mask = CLOCKSOURCE_MASK(32);
474 }
Rusty Russell9d1ca6f2007-07-20 22:15:01 +1000475 clock_base = lguest_clock_read();
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700476 clocksource_register(&lguest_clock);
477
478 /* We can't set cpumask in the initializer: damn C limitations! */
479 lguest_clockevent.cpumask = cpumask_of_cpu(0);
480 clockevents_register_device(&lguest_clockevent);
481
482 enable_lguest_irq(0);
Rusty Russell07ad1572007-07-19 01:49:22 -0700483}
484
485static void lguest_load_esp0(struct tss_struct *tss,
486 struct thread_struct *thread)
487{
488 lazy_hcall(LHCALL_SET_STACK, __KERNEL_DS|0x1, thread->esp0,
489 THREAD_SIZE/PAGE_SIZE);
490}
491
492static void lguest_set_debugreg(int regno, unsigned long value)
493{
494 /* FIXME: Implement */
495}
496
497static void lguest_wbinvd(void)
498{
499}
500
501#ifdef CONFIG_X86_LOCAL_APIC
502static void lguest_apic_write(unsigned long reg, unsigned long v)
503{
504}
505
506static unsigned long lguest_apic_read(unsigned long reg)
507{
508 return 0;
509}
510#endif
511
512static void lguest_safe_halt(void)
513{
514 hcall(LHCALL_HALT, 0, 0, 0);
515}
516
517static void lguest_power_off(void)
518{
519 hcall(LHCALL_CRASH, __pa("Power down"), 0, 0);
520}
521
522static int lguest_panic(struct notifier_block *nb, unsigned long l, void *p)
523{
524 hcall(LHCALL_CRASH, __pa(p), 0, 0);
525 return NOTIFY_DONE;
526}
527
528static struct notifier_block paniced = {
529 .notifier_call = lguest_panic
530};
531
532static __init char *lguest_memory_setup(void)
533{
534 /* We do this here because lockcheck barfs if before start_kernel */
535 atomic_notifier_chain_register(&panic_notifier_list, &paniced);
536
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700537 add_memory_region(E820_MAP->addr, E820_MAP->size, E820_MAP->type);
Rusty Russell07ad1572007-07-19 01:49:22 -0700538 return "LGUEST";
539}
540
541static const struct lguest_insns
542{
543 const char *start, *end;
544} lguest_insns[] = {
545 [PARAVIRT_PATCH(irq_disable)] = { lgstart_cli, lgend_cli },
546 [PARAVIRT_PATCH(irq_enable)] = { lgstart_sti, lgend_sti },
547 [PARAVIRT_PATCH(restore_fl)] = { lgstart_popf, lgend_popf },
548 [PARAVIRT_PATCH(save_fl)] = { lgstart_pushf, lgend_pushf },
549};
550static unsigned lguest_patch(u8 type, u16 clobber, void *insns, unsigned len)
551{
552 unsigned int insn_len;
553
554 /* Don't touch it if we don't have a replacement */
555 if (type >= ARRAY_SIZE(lguest_insns) || !lguest_insns[type].start)
556 return paravirt_patch_default(type, clobber, insns, len);
557
558 insn_len = lguest_insns[type].end - lguest_insns[type].start;
559
560 /* Similarly if we can't fit replacement. */
561 if (len < insn_len)
562 return paravirt_patch_default(type, clobber, insns, len);
563
564 memcpy(insns, lguest_insns[type].start, insn_len);
565 return insn_len;
566}
567
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700568__init void lguest_init(void *boot)
Rusty Russell07ad1572007-07-19 01:49:22 -0700569{
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700570 /* Copy boot parameters first. */
571 memcpy(&boot_params, boot, PARAM_SIZE);
572 memcpy(boot_command_line, __va(boot_params.hdr.cmd_line_ptr),
573 COMMAND_LINE_SIZE);
574
Rusty Russell07ad1572007-07-19 01:49:22 -0700575 paravirt_ops.name = "lguest";
576 paravirt_ops.paravirt_enabled = 1;
577 paravirt_ops.kernel_rpl = 1;
578
579 paravirt_ops.save_fl = save_fl;
580 paravirt_ops.restore_fl = restore_fl;
581 paravirt_ops.irq_disable = irq_disable;
582 paravirt_ops.irq_enable = irq_enable;
583 paravirt_ops.load_gdt = lguest_load_gdt;
584 paravirt_ops.memory_setup = lguest_memory_setup;
585 paravirt_ops.cpuid = lguest_cpuid;
586 paravirt_ops.write_cr3 = lguest_write_cr3;
587 paravirt_ops.flush_tlb_user = lguest_flush_tlb_user;
588 paravirt_ops.flush_tlb_single = lguest_flush_tlb_single;
589 paravirt_ops.flush_tlb_kernel = lguest_flush_tlb_kernel;
590 paravirt_ops.set_pte = lguest_set_pte;
591 paravirt_ops.set_pte_at = lguest_set_pte_at;
592 paravirt_ops.set_pmd = lguest_set_pmd;
593#ifdef CONFIG_X86_LOCAL_APIC
594 paravirt_ops.apic_write = lguest_apic_write;
595 paravirt_ops.apic_write_atomic = lguest_apic_write;
596 paravirt_ops.apic_read = lguest_apic_read;
597#endif
598 paravirt_ops.load_idt = lguest_load_idt;
599 paravirt_ops.iret = lguest_iret;
600 paravirt_ops.load_esp0 = lguest_load_esp0;
601 paravirt_ops.load_tr_desc = lguest_load_tr_desc;
602 paravirt_ops.set_ldt = lguest_set_ldt;
603 paravirt_ops.load_tls = lguest_load_tls;
604 paravirt_ops.set_debugreg = lguest_set_debugreg;
605 paravirt_ops.clts = lguest_clts;
606 paravirt_ops.read_cr0 = lguest_read_cr0;
607 paravirt_ops.write_cr0 = lguest_write_cr0;
608 paravirt_ops.init_IRQ = lguest_init_IRQ;
609 paravirt_ops.read_cr2 = lguest_read_cr2;
610 paravirt_ops.read_cr3 = lguest_read_cr3;
611 paravirt_ops.read_cr4 = lguest_read_cr4;
612 paravirt_ops.write_cr4 = lguest_write_cr4;
613 paravirt_ops.write_gdt_entry = lguest_write_gdt_entry;
614 paravirt_ops.write_idt_entry = lguest_write_idt_entry;
615 paravirt_ops.patch = lguest_patch;
616 paravirt_ops.safe_halt = lguest_safe_halt;
617 paravirt_ops.get_wallclock = lguest_get_wallclock;
618 paravirt_ops.time_init = lguest_time_init;
619 paravirt_ops.set_lazy_mode = lguest_lazy_mode;
620 paravirt_ops.wbinvd = lguest_wbinvd;
Rusty Russell9d1ca6f2007-07-20 22:15:01 +1000621 paravirt_ops.sched_clock = lguest_sched_clock;
Rusty Russell07ad1572007-07-19 01:49:22 -0700622
623 hcall(LHCALL_LGUEST_INIT, __pa(&lguest_data), 0, 0);
Rusty Russell07ad1572007-07-19 01:49:22 -0700624
625 /* We use top of mem for initial pagetables. */
626 init_pg_tables_end = __pa(pg0);
627
628 asm volatile ("mov %0, %%fs" : : "r" (__KERNEL_DS) : "memory");
629
630 reserve_top_address(lguest_data.reserve_mem);
631
632 lockdep_init();
633
634 paravirt_disable_iospace();
635
636 cpu_detect(&new_cpu_data);
637 /* head.S usually sets up the first capability word, so do it here. */
638 new_cpu_data.x86_capability[0] = cpuid_edx(1);
639
640 /* Math is always hard! */
641 new_cpu_data.hard_math = 1;
642
643#ifdef CONFIG_X86_MCE
644 mce_disabled = 1;
645#endif
646
647#ifdef CONFIG_ACPI
648 acpi_disabled = 1;
649 acpi_ht = 0;
650#endif
651
652 add_preferred_console("hvc", 0, NULL);
653
Rusty Russell07ad1572007-07-19 01:49:22 -0700654 pm_power_off = lguest_power_off;
655 start_kernel();
656}