blob: 85ecdb80d1218c6adf70d8742af3c9c12c7b0868 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_LGUEST_H
2#define _ASM_X86_LGUEST_H
Jes Sorensen625efab2007-10-22 11:03:28 +10003
4#define GDT_ENTRY_LGUEST_CS 10
5#define GDT_ENTRY_LGUEST_DS 11
6#define LGUEST_CS (GDT_ENTRY_LGUEST_CS * 8)
7#define LGUEST_DS (GDT_ENTRY_LGUEST_DS * 8)
8
9#ifndef __ASSEMBLY__
10#include <asm/desc.h>
11
12#define GUEST_PL 1
13
14/* Every guest maps the core switcher code. */
15#define SHARED_SWITCHER_PAGES \
16 DIV_ROUND_UP(end_switcher_text - start_switcher_text, PAGE_SIZE)
17/* Pages for switcher itself, then two pages per cpu */
Mike Travis96289372008-12-31 18:08:46 -080018#define TOTAL_SWITCHER_PAGES (SHARED_SWITCHER_PAGES + 2 * nr_cpu_ids)
Jes Sorensen625efab2007-10-22 11:03:28 +100019
Rusty Russell2e04ef72009-07-30 16:03:45 -060020/* We map at -4M (-2M for PAE) for ease of mapping (one PTE page). */
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -060021#ifdef CONFIG_X86_PAE
22#define SWITCHER_ADDR 0xFFE00000
23#else
Jes Sorensen625efab2007-10-22 11:03:28 +100024#define SWITCHER_ADDR 0xFFC00000
Matias Zabaljaureguiacdd0b62009-06-12 22:27:07 -060025#endif
Rusty Russell406a590b2013-04-22 14:10:37 +093026/* Where we map the Switcher, in both Host and Guest. */
27extern unsigned long switcher_addr;
Jes Sorensen625efab2007-10-22 11:03:28 +100028
29/* Found in switcher.S */
30extern unsigned long default_idt_entries[];
31
Harvey Harrisoncbc34972008-02-13 13:14:35 -080032/* Declarations for definitions in lguest_guest.S */
33extern char lguest_noirq_start[], lguest_noirq_end[];
34extern const char lgstart_cli[], lgend_cli[];
35extern const char lgstart_sti[], lgend_sti[];
36extern const char lgstart_popf[], lgend_popf[];
37extern const char lgstart_pushf[], lgend_pushf[];
38extern const char lgstart_iret[], lgend_iret[];
39
40extern void lguest_iret(void);
41extern void lguest_init(void);
42
Joe Perchesfb444c72008-03-23 01:02:37 -070043struct lguest_regs {
Jes Sorensen625efab2007-10-22 11:03:28 +100044 /* Manually saved part. */
Jes Sorensen4614a3a2007-10-22 11:03:29 +100045 unsigned long eax, ebx, ecx, edx;
Jes Sorensen625efab2007-10-22 11:03:28 +100046 unsigned long esi, edi, ebp;
47 unsigned long gs;
Jes Sorensen625efab2007-10-22 11:03:28 +100048 unsigned long fs, ds, es;
49 unsigned long trapnum, errcode;
50 /* Trap pushed part */
51 unsigned long eip;
52 unsigned long cs;
53 unsigned long eflags;
54 unsigned long esp;
55 unsigned long ss;
56};
57
58/* This is a guest-specific page (mapped ro) into the guest. */
Joe Perchesfb444c72008-03-23 01:02:37 -070059struct lguest_ro_state {
Jes Sorensen625efab2007-10-22 11:03:28 +100060 /* Host information we need to restore when we switch back. */
61 u32 host_cr3;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010062 struct desc_ptr host_idt_desc;
63 struct desc_ptr host_gdt_desc;
Jes Sorensen625efab2007-10-22 11:03:28 +100064 u32 host_sp;
65
66 /* Fields which are used when guest is running. */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010067 struct desc_ptr guest_idt_desc;
68 struct desc_ptr guest_gdt_desc;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +010069 struct x86_hw_tss guest_tss;
Jes Sorensen625efab2007-10-22 11:03:28 +100070 struct desc_struct guest_idt[IDT_ENTRIES];
71 struct desc_struct guest_gdt[GDT_ENTRIES];
72};
73
Joe Perchesfb444c72008-03-23 01:02:37 -070074struct lg_cpu_arch {
Jes Sorensen625efab2007-10-22 11:03:28 +100075 /* The GDT entries copied into lguest_ro_state when running. */
76 struct desc_struct gdt[GDT_ENTRIES];
77
78 /* The IDT entries: some copied into lguest_ro_state when running. */
79 struct desc_struct idt[IDT_ENTRIES];
80
81 /* The address of the last guest-visible pagefault (ie. cr2). */
82 unsigned long last_pagefault;
83};
84
85static inline void lguest_set_ts(void)
86{
87 u32 cr0;
88
89 cr0 = read_cr0();
90 if (!(cr0 & 8))
Joe Perchesfb444c72008-03-23 01:02:37 -070091 write_cr0(cr0 | 8);
Jes Sorensen625efab2007-10-22 11:03:28 +100092}
93
94/* Full 4G segment descriptors, suitable for CS and DS. */
Akinobu Mita1e5de182009-07-19 00:12:20 +090095#define FULL_EXEC_SEGMENT \
96 ((struct desc_struct)GDT_ENTRY_INIT(0xc09b, 0, 0xfffff))
97#define FULL_SEGMENT ((struct desc_struct)GDT_ENTRY_INIT(0xc093, 0, 0xfffff))
Jes Sorensen625efab2007-10-22 11:03:28 +100098
99#endif /* __ASSEMBLY__ */
100
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700101#endif /* _ASM_X86_LGUEST_H */