Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Release 1.0
[palacios.git] / misc / test_vm / include / geekos / defs.h
1 /*
2  * Misc. kernel definitions
3  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
4  * $Revision: 1.1 $
5  * 
6  * This is free software.  You are permitted to use,
7  * redistribute, and modify it as specified in the file "COPYING".
8  */
9
10 #ifndef GEEKOS_DEFS_H
11 #define GEEKOS_DEFS_H
12
13
14
15
16 /*
17  * Kernel code and data segment selectors.
18  * Keep these up to date with defs.asm.
19  */
20 #define KERNEL_CS  (1<<3)
21 #define KERNEL_DS  (2<<3)
22
23
24 /*
25  * Address where kernel is loaded INITIALLY
26  * we move it up in memory soon
27  */
28 #define KERNEL_START_ADDR 0x100000
29
30 /*
31  * Kernel and user privilege levels
32  */
33 #define KERNEL_PRIVILEGE 0
34 #define USER_PRIVILEGE 3
35
36
37 /*
38  * Software interrupt for syscalls
39  */
40 #define SYSCALL_INT 0x90
41
42 /*
43  * The windows versions of gcc use slightly different
44  * names for the bss begin and end symbols than the Linux version.
45  */
46 #if defined(GNU_WIN32)
47 #  define BSS_START _bss_start__
48 #  define BSS_END _bss_end__
49 #else
50 #  define BSS_START __bss_start
51 #  define BSS_END end
52 #endif
53
54 /*
55  * x86 has 4096 byte pages
56  */
57 #define PAGE_POWER 12
58 #define PAGE_SIZE (1<<PAGE_POWER)
59 #define PAGE_MASK (~(0xffffffff << PAGE_POWER))
60
61
62
63 /* Ultimate Memory Layout
64
65 0:
66 4096: KernelThreadObject (one page)
67       KernelStack (one page)
68       GDT (one page)
69       TSS (one page)
70       IDT (one page)
71 0x100000: KernelImage
72           Page List          (varies - must be an integral number of pages)
73           KernelHeap         (varies - KERNEL_HEAP_SIZE; must be integral number of pages)
74 */
75
76
77
78
79 #define GDT_SIZE PAGE_SIZE
80 #define TSS_SIZE PAGE_SIZE
81 #define IDT_SIZE PAGE_SIZE
82 //#define KERNEL_HEAP_SIZE (256*PAGE_SIZE)
83 #define KERNEL_STACK_SIZE PAGE_SIZE
84 #define KERNEL_THREAD_OBJECT_SIZE PAGE_SIZE
85
86
87
88
89 /*
90  *  * Keep these up to date with defs.asm.
91  */
92 #define GDT_LOCATION          (PAGE_SIZE * 3)
93 #define TSS_LOCATION          (GDT_LOCATION + TSS_SIZE)
94 #define IDT_LOCATION          (TSS_LOCATION + IDT_SIZE)
95
96
97
98
99   #define KERNEL_THREAD_OBJECT  (PAGE_SIZE)
100   #define KERNEL_STACK          (KERNEL_THREAD_OBJECT + KERNEL_THREAD_OBJECT_SIZE)
101 /*
102   #define KERNEL_HEAP           (KERNEL_STACK + KERNEL_STACK_SIZE)
103   #define KERNEL_PAGELIST       (KERNEL_HEAP + KERNEL_HEAP_SIZE)
104 */
105
106 /*
107  * PC memory map
108  */
109 #define ISA_HOLE_START 0x0A0000
110 #define ISA_HOLE_END   0x100000
111
112
113 #endif  /* GEEKOS_DEFS_H */