blob: e2d4a4afa8c3070374f3617fa405f5733b5624b1 [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
Rusty Russell93a2cdf2013-04-22 14:10:38 +093014/* Page for Switcher text itself, then two pages per cpu */
15#define TOTAL_SWITCHER_PAGES (1 + 2 * nr_cpu_ids)
Jes Sorensen625efab2007-10-22 11:03:28 +100016
Rusty Russell406a590b2013-04-22 14:10:37 +093017/* Where we map the Switcher, in both Host and Guest. */
18extern unsigned long switcher_addr;
Jes Sorensen625efab2007-10-22 11:03:28 +100019
20/* Found in switcher.S */
21extern unsigned long default_idt_entries[];
22
Harvey Harrisoncbc34972008-02-13 13:14:35 -080023/* Declarations for definitions in lguest_guest.S */
24extern char lguest_noirq_start[], lguest_noirq_end[];
25extern const char lgstart_cli[], lgend_cli[];
26extern const char lgstart_sti[], lgend_sti[];
27extern const char lgstart_popf[], lgend_popf[];
28extern const char lgstart_pushf[], lgend_pushf[];
29extern const char lgstart_iret[], lgend_iret[];
30
31extern void lguest_iret(void);
32extern void lguest_init(void);
33
Joe Perchesfb444c72008-03-23 01:02:37 -070034struct lguest_regs {
Jes Sorensen625efab2007-10-22 11:03:28 +100035 /* Manually saved part. */
Jes Sorensen4614a3a2007-10-22 11:03:29 +100036 unsigned long eax, ebx, ecx, edx;
Jes Sorensen625efab2007-10-22 11:03:28 +100037 unsigned long esi, edi, ebp;
38 unsigned long gs;
Jes Sorensen625efab2007-10-22 11:03:28 +100039 unsigned long fs, ds, es;
40 unsigned long trapnum, errcode;
41 /* Trap pushed part */
42 unsigned long eip;
43 unsigned long cs;
44 unsigned long eflags;
45 unsigned long esp;
46 unsigned long ss;
47};
48
49/* This is a guest-specific page (mapped ro) into the guest. */
Joe Perchesfb444c72008-03-23 01:02:37 -070050struct lguest_ro_state {
Jes Sorensen625efab2007-10-22 11:03:28 +100051 /* Host information we need to restore when we switch back. */
52 u32 host_cr3;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010053 struct desc_ptr host_idt_desc;
54 struct desc_ptr host_gdt_desc;
Jes Sorensen625efab2007-10-22 11:03:28 +100055 u32 host_sp;
56
57 /* Fields which are used when guest is running. */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010058 struct desc_ptr guest_idt_desc;
59 struct desc_ptr guest_gdt_desc;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +010060 struct x86_hw_tss guest_tss;
Jes Sorensen625efab2007-10-22 11:03:28 +100061 struct desc_struct guest_idt[IDT_ENTRIES];
62 struct desc_struct guest_gdt[GDT_ENTRIES];
63};
64
Joe Perchesfb444c72008-03-23 01:02:37 -070065struct lg_cpu_arch {
Jes Sorensen625efab2007-10-22 11:03:28 +100066 /* The GDT entries copied into lguest_ro_state when running. */
67 struct desc_struct gdt[GDT_ENTRIES];
68
69 /* The IDT entries: some copied into lguest_ro_state when running. */
70 struct desc_struct idt[IDT_ENTRIES];
71
72 /* The address of the last guest-visible pagefault (ie. cr2). */
73 unsigned long last_pagefault;
74};
75
76static inline void lguest_set_ts(void)
77{
78 u32 cr0;
79
80 cr0 = read_cr0();
81 if (!(cr0 & 8))
Joe Perchesfb444c72008-03-23 01:02:37 -070082 write_cr0(cr0 | 8);
Jes Sorensen625efab2007-10-22 11:03:28 +100083}
84
85/* Full 4G segment descriptors, suitable for CS and DS. */
Akinobu Mita1e5de182009-07-19 00:12:20 +090086#define FULL_EXEC_SEGMENT \
87 ((struct desc_struct)GDT_ENTRY_INIT(0xc09b, 0, 0xfffff))
88#define FULL_SEGMENT ((struct desc_struct)GDT_ENTRY_INIT(0xc093, 0, 0xfffff))
Jes Sorensen625efab2007-10-22 11:03:28 +100089
90#endif /* __ASSEMBLY__ */
91
H. Peter Anvin1965aae2008-10-22 22:26:29 -070092#endif /* _ASM_X86_LGUEST_H */