]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/pc/mem.h
merge
[plan9front.git] / sys / src / 9 / pc / mem.h
1 /*
2  * Memory and machine-specific definitions.  Used in C and assembler.
3  */
4
5 #define MIN(a, b)       ((a) < (b)? (a): (b))
6 #define MAX(a, b)       ((a) > (b)? (a): (b))
7
8 /*
9  * Sizes
10  */
11 #define BI2BY           8                       /* bits per byte */
12 #define BI2WD           32                      /* bits per word */
13 #define BY2WD           4                       /* bytes per word */
14 #define BY2V            8                       /* bytes per double word */
15 #define BY2PG           4096                    /* bytes per page */
16 #define WD2PG           (BY2PG/BY2WD)           /* words per page */
17 #define BY2XPG          (4096*1024)             /* bytes per big page */
18 #define PGSHIFT         12                      /* log(BY2PG) */
19 #define ROUND(s, sz)    (((s)+((sz)-1))&~((sz)-1))
20 #define PGROUND(s)      ROUND(s, BY2PG)
21 #define BLOCKALIGN      8
22
23 /*
24  * In 32-bit mode, the MAXMACH limit is 32 without
25  * changing the way active.machs is defined and used
26  * (unfortunately, it is also used in the port code).
27  */
28 #define MAXMACH         32                      /* max # cpus system can run */
29 #define KSTACK          4096                    /* Size of kernel stack */
30
31 /*
32  * Time
33  */
34 #define HZ              (100)                   /* clock frequency */
35 #define MS2HZ           (1000/HZ)               /* millisec per clock tick */
36 #define TK2SEC(t)       ((t)/HZ)                /* ticks to seconds */
37
38 /*
39  *  Address spaces
40  */
41 #define KZERO           0xF0000000              /* base of kernel address space */
42 #define KTZERO          (KZERO+0x100000)        /* first address in kernel text - 9load sits below */
43 #define VPT             (KZERO-VPTSIZE)
44 #define VPTSIZE         BY2XPG
45 #define NVPT            (VPTSIZE/BY2WD)
46 #define KMAP            (VPT-KMAPSIZE)
47 #define KMAPSIZE        BY2XPG
48 #define VMAP            (KMAP-VMAPSIZE)
49 #define VMAPSIZE        (0x10000000-VPTSIZE-KMAPSIZE)
50 #define UZERO           0                       /* base of user address space */
51 #define UTZERO          (UZERO+BY2PG)           /* first address in user text */
52 #define USTKTOP         (VMAP-BY2PG)            /* byte just beyond user stack */
53 #define USTKSIZE        (16*1024*1024)          /* size of user stack */
54
55 /*
56  * Fundamental addresses - bottom 64kB saved for return to real mode
57  */
58 #define CONFADDR        (KZERO+0x1200)          /* info passed from boot loader */
59 #define TMPADDR         (KZERO+0x2000)          /* used for temporary mappings */
60 #define APBOOTSTRAP     (KZERO+0x3000)          /* AP bootstrap code */
61 #define IDTADDR         (KZERO+0x10800)         /* idt */
62 #define REBOOTADDR      (0x11000)               /* reboot code - physical address */
63 #define CPU0PDB         (KZERO+0x12000)         /* bootstrap processor PDB */
64 #define CPU0PTE         (KZERO+0x13000)         /* bootstrap processor PTE's for 0-4MB */
65 #define CPU0GDT         (KZERO+0x14000)         /* bootstrap processor GDT */
66 #define MACHADDR        (KZERO+0x15000)         /* as seen by current processor */
67 #define CPU0MACH        (KZERO+0x16000)         /* Mach for bootstrap processor */
68 #define MACHSIZE        BY2PG
69 #define CPU0PTE1        (KZERO+0x17000)         /* bootstrap processor PTE's for 4MB-8MB */
70 #define CPU0END         (CPU0PTE1+BY2PG)
71 /*
72  * N.B.  ramscan knows that CPU0END is the end of reserved data
73  * N.B.  _startPADDR knows that CPU0PDB is the first reserved page
74  * and that there are 6 of them.
75  */
76
77 /*
78  *  known x86 segments (in GDT) and their selectors
79  */
80 #define NULLSEG 0       /* null segment */
81 #define KDSEG   1       /* kernel data/stack */
82 #define KESEG   2       /* kernel executable */ 
83 #define UDSEG   3       /* user data/stack */
84 #define UESEG   4       /* user executable */
85 #define TSSSEG  5       /* task segment */
86 #define APMCSEG         6       /* APM code segment */
87 #define APMCSEG16       7       /* APM 16-bit code segment */
88 #define APMDSEG         8       /* APM data segment */
89 #define KESEG16         9       /* kernel executable 16-bit */
90 #define LDTSEG          10      /* local descriptor table */
91 #define PROCSEG0        11      /* per process descriptor0 */
92 #define NPROCSEG        3       /* number of per process descriptors */
93 #define NGDT            14      /* number of GDT entries required */
94
95 #define SELGDT  (0<<2)  /* selector is in gdt */
96 #define SELLDT  (1<<2)  /* selector is in ldt */
97
98 #define SELECTOR(i, t, p)       (((i)<<3) | (t) | (p))
99
100 #define NULLSEL SELECTOR(NULLSEG, SELGDT, 0)
101 #define KDSEL   SELECTOR(KDSEG, SELGDT, 0)
102 #define KESEL   SELECTOR(KESEG, SELGDT, 0)
103 #define UESEL   SELECTOR(UESEG, SELGDT, 3)
104 #define UDSEL   SELECTOR(UDSEG, SELGDT, 3)
105 #define TSSSEL  SELECTOR(TSSSEG, SELGDT, 0)
106 #define APMCSEL         SELECTOR(APMCSEG, SELGDT, 0)
107 #define APMCSEL16       SELECTOR(APMCSEG16, SELGDT, 0)
108 #define APMDSEL         SELECTOR(APMDSEG, SELGDT, 0)
109 #define LDTSEL  SELECTOR(LDTSEG, SELGDT, 0)
110
111 /*
112  *  fields in segment descriptors
113  */
114 #define SEGDATA (0x10<<8)       /* data/stack segment */
115 #define SEGEXEC (0x18<<8)       /* executable segment */
116 #define SEGTSS  (0x9<<8)        /* TSS segment */
117 #define SEGCG   (0x0C<<8)       /* call gate */
118 #define SEGIG   (0x0E<<8)       /* interrupt gate */
119 #define SEGTG   (0x0F<<8)       /* trap gate */
120 #define SEGLDT  (0x02<<8)       /* local descriptor table */
121 #define SEGTYPE (0x1F<<8)
122
123 #define SEGP    (1<<15)         /* segment present */
124 #define SEGPL(x) ((x)<<13)      /* priority level */
125 #define SEGB    (1<<22)         /* granularity 1==4k (for expand-down) */
126 #define SEGG    (1<<23)         /* granularity 1==4k (for other) */
127 #define SEGE    (1<<10)         /* expand down */
128 #define SEGW    (1<<9)          /* writable (for data/stack) */
129 #define SEGR    (1<<9)          /* readable (for code) */
130 #define SEGD    (1<<22)         /* default 1==32bit (for code) */
131
132 /*
133  *  virtual MMU
134  */
135 #define PTEMAPMEM       (1024*1024)     
136 #define PTEPERTAB       (PTEMAPMEM/BY2PG)
137 #define SEGMAPSIZE      1984
138 #define SSEGMAPSIZE     16
139 #define PPN(x)          ((x)&~(BY2PG-1))
140
141 /*
142  *  physical MMU
143  */
144 #define PTEVALID        (1<<0)
145 #define PTEWT           (1<<3)
146 #define PTEUNCACHED     (1<<4)
147 #define PTEWRITE        (1<<1)
148 #define PTERONLY        (0<<1)
149 #define PTEKERNEL       (0<<2)
150 #define PTEUSER         (1<<2)
151 #define PTESIZE         (1<<7)
152 #define PTEGLOBAL       (1<<8)
153
154 /*
155  * Macros for calculating offsets within the page directory base
156  * and page tables. 
157  */
158 #define PDX(va)         ((((ulong)(va))>>22) & 0x03FF)
159 #define PTX(va)         ((((ulong)(va))>>12) & 0x03FF)
160
161 #define getpgcolor(a)   0
162