xref: /xv6-public/mmu.h (revision ff278344)
10cfc7290Srsc // This file contains definitions for the
20cfc7290Srsc // x86 memory management unit (MMU).
355e95b16Srtm 
455e95b16Srtm // Eflags register
555e95b16Srtm #define FL_CF           0x00000001      // Carry Flag
655e95b16Srtm #define FL_PF           0x00000004      // Parity Flag
755e95b16Srtm #define FL_AF           0x00000010      // Auxiliary carry Flag
855e95b16Srtm #define FL_ZF           0x00000040      // Zero Flag
955e95b16Srtm #define FL_SF           0x00000080      // Sign Flag
1055e95b16Srtm #define FL_TF           0x00000100      // Trap Flag
113c821bf9Srsc #define FL_IF           0x00000200      // Interrupt Enable
1255e95b16Srtm #define FL_DF           0x00000400      // Direction Flag
1355e95b16Srtm #define FL_OF           0x00000800      // Overflow Flag
1455e95b16Srtm #define FL_IOPL_MASK    0x00003000      // I/O Privilege Level bitmask
1555e95b16Srtm #define FL_IOPL_0       0x00000000      //   IOPL == 0
1655e95b16Srtm #define FL_IOPL_1       0x00001000      //   IOPL == 1
1755e95b16Srtm #define FL_IOPL_2       0x00002000      //   IOPL == 2
1855e95b16Srtm #define FL_IOPL_3       0x00003000      //   IOPL == 3
1955e95b16Srtm #define FL_NT           0x00004000      // Nested Task
2055e95b16Srtm #define FL_RF           0x00010000      // Resume Flag
2155e95b16Srtm #define FL_VM           0x00020000      // Virtual 8086 mode
2255e95b16Srtm #define FL_AC           0x00040000      // Alignment Check
2355e95b16Srtm #define FL_VIF          0x00080000      // Virtual Interrupt Flag
2455e95b16Srtm #define FL_VIP          0x00100000      // Virtual Interrupt Pending
2555e95b16Srtm #define FL_ID           0x00200000      // ID flag
2655e95b16Srtm 
277914ab72SAustin Clements // Control Register flags
287914ab72SAustin Clements #define CR0_PE          0x00000001      // Protection Enable
297914ab72SAustin Clements #define CR0_MP          0x00000002      // Monitor coProcessor
307914ab72SAustin Clements #define CR0_EM          0x00000004      // Emulation
317914ab72SAustin Clements #define CR0_TS          0x00000008      // Task Switched
327914ab72SAustin Clements #define CR0_ET          0x00000010      // Extension Type
337914ab72SAustin Clements #define CR0_NE          0x00000020      // Numeric Errror
347914ab72SAustin Clements #define CR0_WP          0x00010000      // Write Protect
357914ab72SAustin Clements #define CR0_AM          0x00040000      // Alignment Mask
367914ab72SAustin Clements #define CR0_NW          0x20000000      // Not Writethrough
377914ab72SAustin Clements #define CR0_CD          0x40000000      // Cache Disable
387914ab72SAustin Clements #define CR0_PG          0x80000000      // Paging
397914ab72SAustin Clements 
4094496468SFrans Kaashoek #define CR4_PSE         0x00000010      // Page size extension
4194496468SFrans Kaashoek 
42a56c8d60SFrans Kaashoek #define SEG_KCODE 1  // kernel code
43a56c8d60SFrans Kaashoek #define SEG_KDATA 2  // kernel data+stack
44a56c8d60SFrans Kaashoek #define SEG_KCPU  3  // kernel per-cpu data
45a56c8d60SFrans Kaashoek #define SEG_UCODE 4  // user code
46a56c8d60SFrans Kaashoek #define SEG_UDATA 5  // user data+stack
47a56c8d60SFrans Kaashoek #define SEG_TSS   6  // this process's task state
48a56c8d60SFrans Kaashoek 
497914ab72SAustin Clements //PAGEBREAK!
50a56c8d60SFrans Kaashoek #ifndef __ASSEMBLER__
51dfcc5b99Srtm // Segment Descriptor
52b5f17007Srsc struct segdesc {
53b5ee5165Srsc   uint lim_15_0 : 16;  // Low bits of segment limit
54b5ee5165Srsc   uint base_15_0 : 16; // Low bits of segment base address
55b5ee5165Srsc   uint base_23_16 : 8; // Middle bits of segment base address
56b5ee5165Srsc   uint type : 4;       // Segment type (see STS_ constants)
57b5ee5165Srsc   uint s : 1;          // 0 = system, 1 = application
58b5ee5165Srsc   uint dpl : 2;        // Descriptor Privilege Level
59b5ee5165Srsc   uint p : 1;          // Present
60b5ee5165Srsc   uint lim_19_16 : 4;  // High bits of segment limit
61b5ee5165Srsc   uint avl : 1;        // Unused (available for software use)
62b5ee5165Srsc   uint rsv1 : 1;       // Reserved
63b5ee5165Srsc   uint db : 1;         // 0 = 16-bit segment, 1 = 32-bit segment
64b5ee5165Srsc   uint g : 1;          // Granularity: limit scaled by 4K when set
65b5ee5165Srsc   uint base_31_24 : 8; // High bits of segment base address
6655e95b16Srtm };
67dfcc5b99Srtm 
6855e95b16Srtm // Normal segment
69b5f17007Srsc #define SEG(type, base, lim, dpl) (struct segdesc)    \
7048755214SRuss Cox { ((lim) >> 12) & 0xffff, (uint)(base) & 0xffff,      \
7148755214SRuss Cox   ((uint)(base) >> 16) & 0xff, type, 1, dpl, 1,       \
7248755214SRuss Cox   (uint)(lim) >> 28, 0, 0, 1, 1, (uint)(base) >> 24 }
73b5f17007Srsc #define SEG16(type, base, lim, dpl) (struct segdesc)  \
7448755214SRuss Cox { (lim) & 0xffff, (uint)(base) & 0xffff,              \
7548755214SRuss Cox   ((uint)(base) >> 16) & 0xff, type, 1, dpl, 1,       \
7648755214SRuss Cox   (uint)(lim) >> 16, 0, 0, 1, 0, (uint)(base) >> 24 }
77a56c8d60SFrans Kaashoek #endif
7855e95b16Srtm 
79b6dc6187Srsc #define DPL_USER    0x3     // User DPL
80b6dc6187Srsc 
8155e95b16Srtm // Application segment type bits
8255e95b16Srtm #define STA_X       0x8     // Executable segment
8355e95b16Srtm #define STA_E       0x4     // Expand down (non-executable segments)
8455e95b16Srtm #define STA_C       0x4     // Conforming code segment (executable only)
8555e95b16Srtm #define STA_W       0x2     // Writeable (non-executable segments)
8655e95b16Srtm #define STA_R       0x2     // Readable (executable segments)
8755e95b16Srtm #define STA_A       0x1     // Accessed
8855e95b16Srtm 
8955e95b16Srtm // System segment type bits
9055e95b16Srtm #define STS_T16A    0x1     // Available 16-bit TSS
9155e95b16Srtm #define STS_LDT     0x2     // Local Descriptor Table
9255e95b16Srtm #define STS_T16B    0x3     // Busy 16-bit TSS
9355e95b16Srtm #define STS_CG16    0x4     // 16-bit Call Gate
9455e95b16Srtm #define STS_TG      0x5     // Task Gate / Coum Transmitions
9555e95b16Srtm #define STS_IG16    0x6     // 16-bit Interrupt Gate
9655e95b16Srtm #define STS_TG16    0x7     // 16-bit Trap Gate
9755e95b16Srtm #define STS_T32A    0x9     // Available 32-bit TSS
9855e95b16Srtm #define STS_T32B    0xB     // Busy 32-bit TSS
9955e95b16Srtm #define STS_CG32    0xC     // 32-bit Call Gate
10055e95b16Srtm #define STS_IG32    0xE     // 32-bit Interrupt Gate
10155e95b16Srtm #define STS_TG32    0xF     // 32-bit Trap Gate
10255e95b16Srtm 
103c3dcf479SFrans Kaashoek // A virtual address 'la' has a three-part structure as follows:
10440889627SFrans Kaashoek //
10540889627SFrans Kaashoek // +--------10------+-------10-------+---------12----------+
10640889627SFrans Kaashoek // | Page Directory |   Page Table   | Offset within Page  |
10740889627SFrans Kaashoek // |      Index     |      Index     |                     |
10840889627SFrans Kaashoek // +----------------+----------------+---------------------+
109c3dcf479SFrans Kaashoek //  \--- PDX(va) --/ \--- PTX(va) --/
11040889627SFrans Kaashoek 
11140889627SFrans Kaashoek // page directory index
112c3dcf479SFrans Kaashoek #define PDX(va)         (((uint)(va) >> PDXSHIFT) & 0x3FF)
11340889627SFrans Kaashoek 
11440889627SFrans Kaashoek // page table index
115c3dcf479SFrans Kaashoek #define PTX(va)         (((uint)(va) >> PTXSHIFT) & 0x3FF)
11640889627SFrans Kaashoek 
117c3dcf479SFrans Kaashoek // construct virtual address from indexes and offset
11840889627SFrans Kaashoek #define PGADDR(d, t, o) ((uint)((d) << PDXSHIFT | (t) << PTXSHIFT | (o)))
11940889627SFrans Kaashoek 
12040889627SFrans Kaashoek // Page directory and page table constants.
121e25b74caSFrans Kaashoek #define NPDENTRIES      1024    // # directory entries per page directory
122e25b74caSFrans Kaashoek #define NPTENTRIES      1024    // # PTEs per page table
123c3dcf479SFrans Kaashoek #define PGSIZE          4096    // bytes mapped by a page
12440889627SFrans Kaashoek 
125c3dcf479SFrans Kaashoek #define PGSHIFT         12      // log2(PGSIZE)
12640889627SFrans Kaashoek #define PTXSHIFT        12      // offset of PTX in a linear address
12740889627SFrans Kaashoek #define PDXSHIFT        22      // offset of PDX in a linear address
12840889627SFrans Kaashoek 
129eb18645fSRobert Morris #define PGROUNDUP(sz)  (((sz)+PGSIZE-1) & ~(PGSIZE-1))
130c3dcf479SFrans Kaashoek #define PGROUNDDOWN(a) (((a)) & ~(PGSIZE-1))
131eb18645fSRobert Morris 
13240889627SFrans Kaashoek // Page table/directory entry flags.
13340889627SFrans Kaashoek #define PTE_P           0x001   // Present
13440889627SFrans Kaashoek #define PTE_W           0x002   // Writeable
13540889627SFrans Kaashoek #define PTE_U           0x004   // User
13640889627SFrans Kaashoek #define PTE_PWT         0x008   // Write-Through
13740889627SFrans Kaashoek #define PTE_PCD         0x010   // Cache-Disable
13840889627SFrans Kaashoek #define PTE_A           0x020   // Accessed
13940889627SFrans Kaashoek #define PTE_D           0x040   // Dirty
14040889627SFrans Kaashoek #define PTE_PS          0x080   // Page Size
14140889627SFrans Kaashoek #define PTE_MBZ         0x180   // Bits must be zero
14240889627SFrans Kaashoek 
14340889627SFrans Kaashoek // Address in page table or page directory entry
14440889627SFrans Kaashoek #define PTE_ADDR(pte)   ((uint)(pte) & ~0xFFF)
145*ff278344SStephen Tu #define PTE_FLAGS(pte)  ((uint)(pte) &  0xFFF)
14640889627SFrans Kaashoek 
147a56c8d60SFrans Kaashoek #ifndef __ASSEMBLER__
14840889627SFrans Kaashoek typedef uint pte_t;
14940889627SFrans Kaashoek 
150dfcc5b99Srtm // Task state segment format
151b5f17007Srsc struct taskstate {
15229270816Srtm   uint link;         // Old ts selector
15311a9947fSrtm   uint esp0;         // Stack pointers and segment selectors
15429270816Srtm   ushort ss0;        //   after an increase in privilege level
15529270816Srtm   ushort padding1;
15629270816Srtm   uint *esp1;
15729270816Srtm   ushort ss1;
15829270816Srtm   ushort padding2;
15929270816Srtm   uint *esp2;
16029270816Srtm   ushort ss2;
16129270816Srtm   ushort padding3;
16229270816Srtm   void *cr3;         // Page directory base
16329270816Srtm   uint *eip;         // Saved state from last task switch
16429270816Srtm   uint eflags;
16529270816Srtm   uint eax;          // More saved state (registers)
16629270816Srtm   uint ecx;
16729270816Srtm   uint edx;
16829270816Srtm   uint ebx;
16929270816Srtm   uint *esp;
17029270816Srtm   uint *ebp;
17129270816Srtm   uint esi;
17229270816Srtm   uint edi;
17329270816Srtm   ushort es;         // Even more saved state (segment selectors)
17429270816Srtm   ushort padding4;
17529270816Srtm   ushort cs;
17629270816Srtm   ushort padding5;
17729270816Srtm   ushort ss;
17829270816Srtm   ushort padding6;
17929270816Srtm   ushort ds;
18029270816Srtm   ushort padding7;
18129270816Srtm   ushort fs;
18229270816Srtm   ushort padding8;
18329270816Srtm   ushort gs;
18429270816Srtm   ushort padding9;
18529270816Srtm   ushort ldt;
18629270816Srtm   ushort padding10;
18729270816Srtm   ushort t;          // Trap on task switch
18829270816Srtm   ushort iomb;       // I/O map base address
18955e95b16Srtm };
19055e95b16Srtm 
191cce27ba9Srsc // PAGEBREAK: 12
19255e95b16Srtm // Gate descriptors for interrupts and traps
193b5f17007Srsc struct gatedesc {
194b5ee5165Srsc   uint off_15_0 : 16;   // low 16 bits of offset in segment
1950fe118f3Srsc   uint cs : 16;         // code segment selector
196b5ee5165Srsc   uint args : 5;        // # args, 0 for interrupt/trap gates
197b5ee5165Srsc   uint rsv1 : 3;        // reserved(should be zero I guess)
198b5ee5165Srsc   uint type : 4;        // type(STS_{TG,IG32,TG32})
199b5ee5165Srsc   uint s : 1;           // must be 0 (system)
200b5ee5165Srsc   uint dpl : 2;         // descriptor(meaning new) privilege level
201b5ee5165Srsc   uint p : 1;           // Present
202b5ee5165Srsc   uint off_31_16 : 16;  // high bits of offset in segment
20355e95b16Srtm };
20455e95b16Srtm 
20555e95b16Srtm // Set up a normal interrupt/trap gate descriptor.
20655e95b16Srtm // - istrap: 1 for a trap (= exception) gate, 0 for an interrupt gate.
2075be0039cSrtm //   interrupt gate clears FL_IF, trap gate leaves FL_IF alone
20855e95b16Srtm // - sel: Code segment selector for interrupt/trap handler
20955e95b16Srtm // - off: Offset in code segment for interrupt/trap handler
21055e95b16Srtm // - dpl: Descriptor Privilege Level -
21155e95b16Srtm //        the privilege level required for software to invoke
21255e95b16Srtm //        this interrupt/trap gate explicitly using an int instruction.
213ef2bd07aSrsc #define SETGATE(gate, istrap, sel, off, d)                \
21455e95b16Srtm {                                                         \
21529270816Srtm   (gate).off_15_0 = (uint)(off) & 0xffff;                \
2160fe118f3Srsc   (gate).cs = (sel);                                      \
217ef2bd07aSrsc   (gate).args = 0;                                        \
218ef2bd07aSrsc   (gate).rsv1 = 0;                                        \
219ef2bd07aSrsc   (gate).type = (istrap) ? STS_TG32 : STS_IG32;           \
220ef2bd07aSrsc   (gate).s = 0;                                           \
221ef2bd07aSrsc   (gate).dpl = (d);                                       \
222ef2bd07aSrsc   (gate).p = 1;                                           \
22329270816Srtm   (gate).off_31_16 = (uint)(off) >> 16;                  \
22455e95b16Srtm }
22555e95b16Srtm 
226a56c8d60SFrans Kaashoek #endif
227