]> Pileus Git - ~andy/linux/blob - drivers/kvm/kvm.h
[PATCH] KVM: MMU: Remove invlpg interception
[~andy/linux] / drivers / kvm / kvm.h
1 #ifndef __KVM_H
2 #define __KVM_H
3
4 /*
5  * This work is licensed under the terms of the GNU GPL, version 2.  See
6  * the COPYING file in the top-level directory.
7  */
8
9 #include <linux/types.h>
10 #include <linux/list.h>
11 #include <linux/mutex.h>
12 #include <linux/spinlock.h>
13 #include <linux/mm.h>
14
15 #include "vmx.h"
16 #include <linux/kvm.h>
17
18 #define CR0_PE_MASK (1ULL << 0)
19 #define CR0_TS_MASK (1ULL << 3)
20 #define CR0_NE_MASK (1ULL << 5)
21 #define CR0_WP_MASK (1ULL << 16)
22 #define CR0_NW_MASK (1ULL << 29)
23 #define CR0_CD_MASK (1ULL << 30)
24 #define CR0_PG_MASK (1ULL << 31)
25
26 #define CR3_WPT_MASK (1ULL << 3)
27 #define CR3_PCD_MASK (1ULL << 4)
28
29 #define CR3_RESEVED_BITS 0x07ULL
30 #define CR3_L_MODE_RESEVED_BITS (~((1ULL << 40) - 1) | 0x0fe7ULL)
31 #define CR3_FLAGS_MASK ((1ULL << 5) - 1)
32
33 #define CR4_VME_MASK (1ULL << 0)
34 #define CR4_PSE_MASK (1ULL << 4)
35 #define CR4_PAE_MASK (1ULL << 5)
36 #define CR4_PGE_MASK (1ULL << 7)
37 #define CR4_VMXE_MASK (1ULL << 13)
38
39 #define KVM_GUEST_CR0_MASK \
40         (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK \
41          | CR0_NW_MASK | CR0_CD_MASK)
42 #define KVM_VM_CR0_ALWAYS_ON \
43         (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK)
44 #define KVM_GUEST_CR4_MASK \
45         (CR4_PSE_MASK | CR4_PAE_MASK | CR4_PGE_MASK | CR4_VMXE_MASK | CR4_VME_MASK)
46 #define KVM_PMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK)
47 #define KVM_RMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK | CR4_VME_MASK)
48
49 #define INVALID_PAGE (~(hpa_t)0)
50 #define UNMAPPED_GVA (~(gpa_t)0)
51
52 #define KVM_MAX_VCPUS 1
53 #define KVM_MEMORY_SLOTS 4
54 #define KVM_NUM_MMU_PAGES 256
55 #define KVM_MIN_FREE_MMU_PAGES 5
56 #define KVM_REFILL_PAGES 25
57
58 #define FX_IMAGE_SIZE 512
59 #define FX_IMAGE_ALIGN 16
60 #define FX_BUF_SIZE (2 * FX_IMAGE_SIZE + FX_IMAGE_ALIGN)
61
62 #define DE_VECTOR 0
63 #define DF_VECTOR 8
64 #define TS_VECTOR 10
65 #define NP_VECTOR 11
66 #define SS_VECTOR 12
67 #define GP_VECTOR 13
68 #define PF_VECTOR 14
69
70 #define SELECTOR_TI_MASK (1 << 2)
71 #define SELECTOR_RPL_MASK 0x03
72
73 #define IOPL_SHIFT 12
74
75 /*
76  * Address types:
77  *
78  *  gva - guest virtual address
79  *  gpa - guest physical address
80  *  gfn - guest frame number
81  *  hva - host virtual address
82  *  hpa - host physical address
83  *  hfn - host frame number
84  */
85
86 typedef unsigned long  gva_t;
87 typedef u64            gpa_t;
88 typedef unsigned long  gfn_t;
89
90 typedef unsigned long  hva_t;
91 typedef u64            hpa_t;
92 typedef unsigned long  hfn_t;
93
94 #define NR_PTE_CHAIN_ENTRIES 5
95
96 struct kvm_pte_chain {
97         u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
98         struct hlist_node link;
99 };
100
101 /*
102  * kvm_mmu_page_role, below, is defined as:
103  *
104  *   bits 0:3 - total guest paging levels (2-4, or zero for real mode)
105  *   bits 4:7 - page table level for this shadow (1-4)
106  *   bits 8:9 - page table quadrant for 2-level guests
107  *   bit   16 - "metaphysical" - gfn is not a real page (huge page/real mode)
108  */
109 union kvm_mmu_page_role {
110         unsigned word;
111         struct {
112                 unsigned glevels : 4;
113                 unsigned level : 4;
114                 unsigned quadrant : 2;
115                 unsigned pad_for_nice_hex_output : 6;
116                 unsigned metaphysical : 1;
117         };
118 };
119
120 struct kvm_mmu_page {
121         struct list_head link;
122         struct hlist_node hash_link;
123
124         /*
125          * The following two entries are used to key the shadow page in the
126          * hash table.
127          */
128         gfn_t gfn;
129         union kvm_mmu_page_role role;
130
131         hpa_t page_hpa;
132         unsigned long slot_bitmap; /* One bit set per slot which has memory
133                                     * in this shadow page.
134                                     */
135         int global;              /* Set if all ptes in this page are global */
136         int multimapped;         /* More than one parent_pte? */
137         union {
138                 u64 *parent_pte;               /* !multimapped */
139                 struct hlist_head parent_ptes; /* multimapped, kvm_pte_chain */
140         };
141 };
142
143 struct vmcs {
144         u32 revision_id;
145         u32 abort;
146         char data[0];
147 };
148
149 #define vmx_msr_entry kvm_msr_entry
150
151 struct kvm_vcpu;
152
153 /*
154  * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
155  * 32-bit).  The kvm_mmu structure abstracts the details of the current mmu
156  * mode.
157  */
158 struct kvm_mmu {
159         void (*new_cr3)(struct kvm_vcpu *vcpu);
160         int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err);
161         void (*free)(struct kvm_vcpu *vcpu);
162         gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva);
163         hpa_t root_hpa;
164         int root_level;
165         int shadow_root_level;
166
167         u64 *pae_root;
168 };
169
170 struct kvm_guest_debug {
171         int enabled;
172         unsigned long bp[4];
173         int singlestep;
174 };
175
176 enum {
177         VCPU_REGS_RAX = 0,
178         VCPU_REGS_RCX = 1,
179         VCPU_REGS_RDX = 2,
180         VCPU_REGS_RBX = 3,
181         VCPU_REGS_RSP = 4,
182         VCPU_REGS_RBP = 5,
183         VCPU_REGS_RSI = 6,
184         VCPU_REGS_RDI = 7,
185 #ifdef CONFIG_X86_64
186         VCPU_REGS_R8 = 8,
187         VCPU_REGS_R9 = 9,
188         VCPU_REGS_R10 = 10,
189         VCPU_REGS_R11 = 11,
190         VCPU_REGS_R12 = 12,
191         VCPU_REGS_R13 = 13,
192         VCPU_REGS_R14 = 14,
193         VCPU_REGS_R15 = 15,
194 #endif
195         NR_VCPU_REGS
196 };
197
198 enum {
199         VCPU_SREG_CS,
200         VCPU_SREG_DS,
201         VCPU_SREG_ES,
202         VCPU_SREG_FS,
203         VCPU_SREG_GS,
204         VCPU_SREG_SS,
205         VCPU_SREG_TR,
206         VCPU_SREG_LDTR,
207 };
208
209 struct kvm_vcpu {
210         struct kvm *kvm;
211         union {
212                 struct vmcs *vmcs;
213                 struct vcpu_svm *svm;
214         };
215         struct mutex mutex;
216         int   cpu;
217         int   launched;
218         int interrupt_window_open;
219         unsigned long irq_summary; /* bit vector: 1 per word in irq_pending */
220 #define NR_IRQ_WORDS KVM_IRQ_BITMAP_SIZE(unsigned long)
221         unsigned long irq_pending[NR_IRQ_WORDS];
222         unsigned long regs[NR_VCPU_REGS]; /* for rsp: vcpu_load_rsp_rip() */
223         unsigned long rip;      /* needs vcpu_load_rsp_rip() */
224
225         unsigned long cr0;
226         unsigned long cr2;
227         unsigned long cr3;
228         unsigned long cr4;
229         unsigned long cr8;
230         u64 pdptrs[4]; /* pae */
231         u64 shadow_efer;
232         u64 apic_base;
233         int nmsrs;
234         struct vmx_msr_entry *guest_msrs;
235         struct vmx_msr_entry *host_msrs;
236
237         struct list_head free_pages;
238         struct kvm_mmu_page page_header_buf[KVM_NUM_MMU_PAGES];
239         struct kvm_mmu mmu;
240
241         struct kvm_guest_debug guest_debug;
242
243         char fx_buf[FX_BUF_SIZE];
244         char *host_fx_image;
245         char *guest_fx_image;
246
247         int mmio_needed;
248         int mmio_read_completed;
249         int mmio_is_write;
250         int mmio_size;
251         unsigned char mmio_data[8];
252         gpa_t mmio_phys_addr;
253
254         struct {
255                 int active;
256                 u8 save_iopl;
257                 struct kvm_save_segment {
258                         u16 selector;
259                         unsigned long base;
260                         u32 limit;
261                         u32 ar;
262                 } tr, es, ds, fs, gs;
263         } rmode;
264 };
265
266 struct kvm_memory_slot {
267         gfn_t base_gfn;
268         unsigned long npages;
269         unsigned long flags;
270         struct page **phys_mem;
271         unsigned long *dirty_bitmap;
272 };
273
274 struct kvm {
275         spinlock_t lock; /* protects everything except vcpus */
276         int nmemslots;
277         struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS];
278         /*
279          * Hash table of struct kvm_mmu_page.
280          */
281         struct list_head active_mmu_pages;
282         int n_free_mmu_pages;
283         struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
284         struct kvm_vcpu vcpus[KVM_MAX_VCPUS];
285         int memory_config_version;
286         int busy;
287         unsigned long rmap_overflow;
288 };
289
290 struct kvm_stat {
291         u32 pf_fixed;
292         u32 pf_guest;
293         u32 tlb_flush;
294         u32 invlpg;
295
296         u32 exits;
297         u32 io_exits;
298         u32 mmio_exits;
299         u32 signal_exits;
300         u32 irq_window_exits;
301         u32 halt_exits;
302         u32 request_irq_exits;
303         u32 irq_exits;
304 };
305
306 struct descriptor_table {
307         u16 limit;
308         unsigned long base;
309 } __attribute__((packed));
310
311 struct kvm_arch_ops {
312         int (*cpu_has_kvm_support)(void);          /* __init */
313         int (*disabled_by_bios)(void);             /* __init */
314         void (*hardware_enable)(void *dummy);      /* __init */
315         void (*hardware_disable)(void *dummy);
316         int (*hardware_setup)(void);               /* __init */
317         void (*hardware_unsetup)(void);            /* __exit */
318
319         int (*vcpu_create)(struct kvm_vcpu *vcpu);
320         void (*vcpu_free)(struct kvm_vcpu *vcpu);
321
322         struct kvm_vcpu *(*vcpu_load)(struct kvm_vcpu *vcpu);
323         void (*vcpu_put)(struct kvm_vcpu *vcpu);
324
325         int (*set_guest_debug)(struct kvm_vcpu *vcpu,
326                                struct kvm_debug_guest *dbg);
327         int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
328         int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
329         u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
330         void (*get_segment)(struct kvm_vcpu *vcpu,
331                             struct kvm_segment *var, int seg);
332         void (*set_segment)(struct kvm_vcpu *vcpu,
333                             struct kvm_segment *var, int seg);
334         void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
335         void (*decache_cr0_cr4_guest_bits)(struct kvm_vcpu *vcpu);
336         void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
337         void (*set_cr0_no_modeswitch)(struct kvm_vcpu *vcpu,
338                                       unsigned long cr0);
339         void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
340         void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
341         void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
342         void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
343         void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
344         void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
345         void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
346         unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
347         void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
348                        int *exception);
349         void (*cache_regs)(struct kvm_vcpu *vcpu);
350         void (*decache_regs)(struct kvm_vcpu *vcpu);
351         unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
352         void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
353
354         void (*invlpg)(struct kvm_vcpu *vcpu, gva_t addr);
355         void (*tlb_flush)(struct kvm_vcpu *vcpu);
356         void (*inject_page_fault)(struct kvm_vcpu *vcpu,
357                                   unsigned long addr, u32 err_code);
358
359         void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code);
360
361         int (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
362         int (*vcpu_setup)(struct kvm_vcpu *vcpu);
363         void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
364 };
365
366 extern struct kvm_stat kvm_stat;
367 extern struct kvm_arch_ops *kvm_arch_ops;
368
369 #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
370 #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
371
372 int kvm_init_arch(struct kvm_arch_ops *ops, struct module *module);
373 void kvm_exit_arch(void);
374
375 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
376 int kvm_mmu_create(struct kvm_vcpu *vcpu);
377 int kvm_mmu_setup(struct kvm_vcpu *vcpu);
378
379 int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
380 void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
381
382 hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa);
383 #define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
384 #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
385 static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
386 hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
387
388 void kvm_emulator_want_group7_invlpg(void);
389
390 extern hpa_t bad_page_address;
391
392 static inline struct page *gfn_to_page(struct kvm_memory_slot *slot, gfn_t gfn)
393 {
394         return slot->phys_mem[gfn - slot->base_gfn];
395 }
396
397 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
398 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
399
400 enum emulation_result {
401         EMULATE_DONE,       /* no further processing */
402         EMULATE_DO_MMIO,      /* kvm_run filled with mmio request */
403         EMULATE_FAIL,         /* can't emulate this instruction */
404 };
405
406 int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
407                         unsigned long cr2, u16 error_code);
408 void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
409 void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
410 void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
411                    unsigned long *rflags);
412
413 unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
414 void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
415                      unsigned long *rflags);
416
417 struct x86_emulate_ctxt;
418
419 int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
420 int emulate_clts(struct kvm_vcpu *vcpu);
421 int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr,
422                     unsigned long *dest);
423 int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
424                     unsigned long value);
425
426 void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
427 void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
428 void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
429 void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
430 void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
431
432 int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
433 int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
434
435 void fx_init(struct kvm_vcpu *vcpu);
436
437 void load_msrs(struct vmx_msr_entry *e, int n);
438 void save_msrs(struct vmx_msr_entry *e, int n);
439 void kvm_resched(struct kvm_vcpu *vcpu);
440
441 int kvm_read_guest(struct kvm_vcpu *vcpu,
442                gva_t addr,
443                unsigned long size,
444                void *dest);
445
446 int kvm_write_guest(struct kvm_vcpu *vcpu,
447                 gva_t addr,
448                 unsigned long size,
449                 void *data);
450
451 unsigned long segment_base(u16 selector);
452
453 void kvm_mmu_pre_write(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes);
454 void kvm_mmu_post_write(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes);
455 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
456 void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
457
458 static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
459                                      u32 error_code)
460 {
461         if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
462                 kvm_mmu_free_some_pages(vcpu);
463         return vcpu->mmu.page_fault(vcpu, gva, error_code);
464 }
465
466 static inline struct page *_gfn_to_page(struct kvm *kvm, gfn_t gfn)
467 {
468         struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
469         return (slot) ? slot->phys_mem[gfn - slot->base_gfn] : NULL;
470 }
471
472 static inline int is_long_mode(struct kvm_vcpu *vcpu)
473 {
474 #ifdef CONFIG_X86_64
475         return vcpu->shadow_efer & EFER_LME;
476 #else
477         return 0;
478 #endif
479 }
480
481 static inline int is_pae(struct kvm_vcpu *vcpu)
482 {
483         return vcpu->cr4 & CR4_PAE_MASK;
484 }
485
486 static inline int is_pse(struct kvm_vcpu *vcpu)
487 {
488         return vcpu->cr4 & CR4_PSE_MASK;
489 }
490
491 static inline int is_paging(struct kvm_vcpu *vcpu)
492 {
493         return vcpu->cr0 & CR0_PG_MASK;
494 }
495
496 static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
497 {
498         return slot - kvm->memslots;
499 }
500
501 static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
502 {
503         struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
504
505         return (struct kvm_mmu_page *)page->private;
506 }
507
508 static inline u16 read_fs(void)
509 {
510         u16 seg;
511         asm ("mov %%fs, %0" : "=g"(seg));
512         return seg;
513 }
514
515 static inline u16 read_gs(void)
516 {
517         u16 seg;
518         asm ("mov %%gs, %0" : "=g"(seg));
519         return seg;
520 }
521
522 static inline u16 read_ldt(void)
523 {
524         u16 ldt;
525         asm ("sldt %0" : "=g"(ldt));
526         return ldt;
527 }
528
529 static inline void load_fs(u16 sel)
530 {
531         asm ("mov %0, %%fs" : : "rm"(sel));
532 }
533
534 static inline void load_gs(u16 sel)
535 {
536         asm ("mov %0, %%gs" : : "rm"(sel));
537 }
538
539 #ifndef load_ldt
540 static inline void load_ldt(u16 sel)
541 {
542         asm ("lldt %0" : : "g"(sel));
543 }
544 #endif
545
546 static inline void get_idt(struct descriptor_table *table)
547 {
548         asm ("sidt %0" : "=m"(*table));
549 }
550
551 static inline void get_gdt(struct descriptor_table *table)
552 {
553         asm ("sgdt %0" : "=m"(*table));
554 }
555
556 static inline unsigned long read_tr_base(void)
557 {
558         u16 tr;
559         asm ("str %0" : "=g"(tr));
560         return segment_base(tr);
561 }
562
563 #ifdef CONFIG_X86_64
564 static inline unsigned long read_msr(unsigned long msr)
565 {
566         u64 value;
567
568         rdmsrl(msr, value);
569         return value;
570 }
571 #endif
572
573 static inline void fx_save(void *image)
574 {
575         asm ("fxsave (%0)":: "r" (image));
576 }
577
578 static inline void fx_restore(void *image)
579 {
580         asm ("fxrstor (%0)":: "r" (image));
581 }
582
583 static inline void fpu_init(void)
584 {
585         asm ("finit");
586 }
587
588 static inline u32 get_rdx_init_val(void)
589 {
590         return 0x600; /* P6 family */
591 }
592
593 #define ASM_VMX_VMCLEAR_RAX       ".byte 0x66, 0x0f, 0xc7, 0x30"
594 #define ASM_VMX_VMLAUNCH          ".byte 0x0f, 0x01, 0xc2"
595 #define ASM_VMX_VMRESUME          ".byte 0x0f, 0x01, 0xc3"
596 #define ASM_VMX_VMPTRLD_RAX       ".byte 0x0f, 0xc7, 0x30"
597 #define ASM_VMX_VMREAD_RDX_RAX    ".byte 0x0f, 0x78, 0xd0"
598 #define ASM_VMX_VMWRITE_RAX_RDX   ".byte 0x0f, 0x79, 0xd0"
599 #define ASM_VMX_VMWRITE_RSP_RDX   ".byte 0x0f, 0x79, 0xd4"
600 #define ASM_VMX_VMXOFF            ".byte 0x0f, 0x01, 0xc4"
601 #define ASM_VMX_VMXON_RAX         ".byte 0xf3, 0x0f, 0xc7, 0x30"
602
603 #define MSR_IA32_TIME_STAMP_COUNTER             0x010
604
605 #define TSS_IOPB_BASE_OFFSET 0x66
606 #define TSS_BASE_SIZE 0x68
607 #define TSS_IOPB_SIZE (65536 / 8)
608 #define TSS_REDIRECTION_SIZE (256 / 8)
609 #define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
610
611 #endif