Rev 2927 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | jermar | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2001-2004 Jakub Jermar |
| 1 | jermar | 3 | * All rights reserved. |
| 4 | * |
||
| 5 | * Redistribution and use in source and binary forms, with or without |
||
| 6 | * modification, are permitted provided that the following conditions |
||
| 7 | * are met: |
||
| 8 | * |
||
| 9 | * - Redistributions of source code must retain the above copyright |
||
| 10 | * notice, this list of conditions and the following disclaimer. |
||
| 11 | * - Redistributions in binary form must reproduce the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer in the |
||
| 13 | * documentation and/or other materials provided with the distribution. |
||
| 14 | * - The name of the author may not be used to endorse or promote products |
||
| 15 | * derived from this software without specific prior written permission. |
||
| 16 | * |
||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | */ |
||
| 28 | |||
| 4346 | svoboda | 29 | /** @addtogroup ia32 |
| 1702 | cejka | 30 | * @{ |
| 31 | */ |
||
| 32 | /** @file |
||
| 33 | */ |
||
| 34 | |||
| 1888 | jermar | 35 | #ifndef KERN_ia32_PM_H_ |
| 36 | #define KERN_ia32_PM_H_ |
||
| 1 | jermar | 37 | |
| 4346 | svoboda | 38 | #define IDT_ITEMS 64 |
| 39 | #define GDT_ITEMS 7 |
||
| 1 | jermar | 40 | |
| 4346 | svoboda | 41 | #define NULL_DES 0 |
| 42 | #define KTEXT_DES 1 |
||
| 43 | #define KDATA_DES 2 |
||
| 44 | #define UTEXT_DES 3 |
||
| 45 | #define UDATA_DES 4 |
||
| 46 | #define TSS_DES 5 |
||
| 47 | #define TLS_DES 6 /* Pointer to Thread-Local-Storage data */ |
||
| 1287 | vana | 48 | |
| 1292 | vana | 49 | #ifdef CONFIG_FB |
| 50 | |||
| 4346 | svoboda | 51 | #define VESA_INIT_SEGMENT 0x8000 |
| 52 | #define VESA_INIT_DES 7 |
||
| 53 | #define KTEXT32_DES KTEXT_DES |
||
| 54 | |||
| 1292 | vana | 55 | #undef GDT_ITEMS |
| 4346 | svoboda | 56 | #define GDT_ITEMS 8 |
| 1 | jermar | 57 | |
| 1292 | vana | 58 | #endif /* CONFIG_FB */ |
| 59 | |||
| 4346 | svoboda | 60 | #define gdtselector(des) ((des) << 3) |
| 1292 | vana | 61 | |
| 4346 | svoboda | 62 | #define PL_KERNEL 0 |
| 63 | #define PL_USER 3 |
||
| 1 | jermar | 64 | |
| 4346 | svoboda | 65 | #define AR_PRESENT (1 << 7) |
| 66 | #define AR_DATA (2 << 3) |
||
| 67 | #define AR_CODE (3 << 3) |
||
| 68 | #define AR_WRITABLE (1 << 1) |
||
| 69 | #define AR_INTERRUPT (0x0e) |
||
| 70 | #define AR_TSS (0x09) |
||
| 1 | jermar | 71 | |
| 4346 | svoboda | 72 | #define DPL_KERNEL (PL_KERNEL << 5) |
| 73 | #define DPL_USER (PL_USER << 5) |
||
| 1 | jermar | 74 | |
| 4346 | svoboda | 75 | #define TSS_BASIC_SIZE 104 |
| 76 | #define TSS_IOMAP_SIZE (16 * 1024 + 1) /* 16K for bitmap + 1 terminating byte for convenience */ |
||
| 1 | jermar | 77 | |
| 4346 | svoboda | 78 | #define IO_PORTS (64 * 1024) |
| 1 | jermar | 79 | |
| 300 | palkovsky | 80 | #ifndef __ASM__ |
| 81 | |||
| 82 | #include <arch/types.h> |
||
| 83 | #include <arch/context.h> |
||
| 84 | |||
| 4346 | svoboda | 85 | typedef struct { |
| 1780 | jermar | 86 | uint16_t limit; |
| 87 | uint32_t base; |
||
| 4346 | svoboda | 88 | } __attribute__ ((packed)) ptr_16_32_t; |
| 1 | jermar | 89 | |
| 4346 | svoboda | 90 | typedef struct { |
| 1 | jermar | 91 | unsigned limit_0_15: 16; |
| 92 | unsigned base_0_15: 16; |
||
| 93 | unsigned base_16_23: 8; |
||
| 94 | unsigned access: 8; |
||
| 95 | unsigned limit_16_19: 4; |
||
| 96 | unsigned available: 1; |
||
| 97 | unsigned unused: 1; |
||
| 98 | unsigned special: 1; |
||
| 99 | unsigned granularity : 1; |
||
| 100 | unsigned base_24_31: 8; |
||
| 4346 | svoboda | 101 | } __attribute__ ((packed)) descriptor_t; |
| 1 | jermar | 102 | |
| 4346 | svoboda | 103 | typedef struct { |
| 1 | jermar | 104 | unsigned offset_0_15: 16; |
| 105 | unsigned selector: 16; |
||
| 106 | unsigned unused: 8; |
||
| 107 | unsigned access: 8; |
||
| 108 | unsigned offset_16_31: 16; |
||
| 4346 | svoboda | 109 | } __attribute__ ((packed)) idescriptor_t; |
| 1 | jermar | 110 | |
| 4346 | svoboda | 111 | typedef struct { |
| 1780 | jermar | 112 | uint16_t link; |
| 1 | jermar | 113 | unsigned : 16; |
| 1780 | jermar | 114 | uint32_t esp0; |
| 115 | uint16_t ss0; |
||
| 1 | jermar | 116 | unsigned : 16; |
| 1780 | jermar | 117 | uint32_t esp1; |
| 118 | uint16_t ss1; |
||
| 1 | jermar | 119 | unsigned : 16; |
| 1780 | jermar | 120 | uint32_t esp2; |
| 121 | uint16_t ss2; |
||
| 1 | jermar | 122 | unsigned : 16; |
| 1780 | jermar | 123 | uint32_t cr3; |
| 124 | uint32_t eip; |
||
| 125 | uint32_t eflags; |
||
| 126 | uint32_t eax; |
||
| 127 | uint32_t ecx; |
||
| 128 | uint32_t edx; |
||
| 129 | uint32_t ebx; |
||
| 130 | uint32_t esp; |
||
| 131 | uint32_t ebp; |
||
| 132 | uint32_t esi; |
||
| 133 | uint32_t edi; |
||
| 134 | uint16_t es; |
||
| 1 | jermar | 135 | unsigned : 16; |
| 1780 | jermar | 136 | uint16_t cs; |
| 1 | jermar | 137 | unsigned : 16; |
| 1780 | jermar | 138 | uint16_t ss; |
| 1 | jermar | 139 | unsigned : 16; |
| 1780 | jermar | 140 | uint16_t ds; |
| 1 | jermar | 141 | unsigned : 16; |
| 1780 | jermar | 142 | uint16_t fs; |
| 1 | jermar | 143 | unsigned : 16; |
| 1780 | jermar | 144 | uint16_t gs; |
| 1 | jermar | 145 | unsigned : 16; |
| 1780 | jermar | 146 | uint16_t ldtr; |
| 1 | jermar | 147 | unsigned : 16; |
| 148 | unsigned : 16; |
||
| 1780 | jermar | 149 | uint16_t iomap_base; |
| 150 | uint8_t iomap[TSS_IOMAP_SIZE]; |
||
| 4346 | svoboda | 151 | } __attribute__ ((packed)) tss_t; |
| 1 | jermar | 152 | |
| 1187 | jermar | 153 | extern ptr_16_32_t gdtr; |
| 154 | extern ptr_16_32_t bootstrap_gdtr; |
||
| 155 | extern ptr_16_32_t protected_ap_gdtr; |
||
| 4346 | svoboda | 156 | extern tss_t *tss_p; |
| 1 | jermar | 157 | |
| 1187 | jermar | 158 | extern descriptor_t gdt[]; |
| 1 | jermar | 159 | |
| 160 | extern void pm_init(void); |
||
| 161 | |||
| 1780 | jermar | 162 | extern void gdt_setbase(descriptor_t *d, uintptr_t base); |
| 163 | extern void gdt_setlimit(descriptor_t *d, uint32_t limit); |
||
| 1 | jermar | 164 | |
| 165 | extern void idt_init(void); |
||
| 1780 | jermar | 166 | extern void idt_setoffset(idescriptor_t *d, uintptr_t offset); |
| 1 | jermar | 167 | |
| 1187 | jermar | 168 | extern void tss_initialize(tss_t *t); |
| 1780 | jermar | 169 | extern void set_tls_desc(uintptr_t tls); |
| 1 | jermar | 170 | |
| 300 | palkovsky | 171 | #endif /* __ASM__ */ |
| 172 | |||
| 1 | jermar | 173 | #endif |
| 1702 | cejka | 174 | |
| 1888 | jermar | 175 | /** @} |
| 1702 | cejka | 176 | */ |