[c245372b] | 1 | /*
|
---|
| 2 | * Copyright (C) 2001-2004 Jakub 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 |
|
---|
[b45c443] | 29 | /** @addtogroup amd64
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[8fc0d455] | 35 | #ifndef __amd64_PM_H__
|
---|
| 36 | #define __amd64_PM_H__
|
---|
[c245372b] | 37 |
|
---|
[8fc0d455] | 38 | #ifndef __ASM__
|
---|
| 39 | # include <arch/types.h>
|
---|
| 40 | # include <typedefs.h>
|
---|
| 41 | # include <arch/context.h>
|
---|
| 42 | #endif
|
---|
[c245372b] | 43 |
|
---|
| 44 | #define IDT_ITEMS 64
|
---|
[e8194664] | 45 | #define GDT_ITEMS 8
|
---|
[de07bcf] | 46 |
|
---|
[c245372b] | 47 |
|
---|
| 48 | #define NULL_DES 0
|
---|
[dd4d6b0] | 49 | /* Warning: Do not reorder next items, unless you look into syscall.c!!! */
|
---|
[c245372b] | 50 | #define KTEXT_DES 1
|
---|
| 51 | #define KDATA_DES 2
|
---|
[dd4d6b0] | 52 | #define UDATA_DES 3
|
---|
| 53 | #define UTEXT_DES 4
|
---|
[8fc0d455] | 54 | #define KTEXT32_DES 5
|
---|
[dd4d6b0] | 55 | /* EndOfWarning */
|
---|
[8fc0d455] | 56 | #define TSS_DES 6
|
---|
[e8194664] | 57 |
|
---|
| 58 |
|
---|
| 59 |
|
---|
| 60 | #ifdef CONFIG_FB
|
---|
| 61 |
|
---|
[de07bcf] | 62 | #define VESA_INIT_DES 8
|
---|
[e8194664] | 63 | #define VESA_INIT_SEGMENT 0x8000
|
---|
| 64 | #undef GDT_ITEMS
|
---|
| 65 | #define GDT_ITEMS 9
|
---|
| 66 |
|
---|
| 67 | #endif /*CONFIG_FB*/
|
---|
| 68 |
|
---|
| 69 |
|
---|
[c245372b] | 70 |
|
---|
[b9e97fb] | 71 | #define gdtselector(des) ((des)<<3)
|
---|
| 72 | #define idtselector(des) ((des)<<4)
|
---|
[c245372b] | 73 |
|
---|
| 74 | #define PL_KERNEL 0
|
---|
| 75 | #define PL_USER 3
|
---|
| 76 |
|
---|
| 77 | #define AR_PRESENT (1<<7)
|
---|
| 78 | #define AR_DATA (2<<3)
|
---|
| 79 | #define AR_CODE (3<<3)
|
---|
| 80 | #define AR_WRITABLE (1<<1)
|
---|
[6f878b7] | 81 | #define AR_READABLE (1<<1)
|
---|
[c245372b] | 82 | #define AR_TSS (0x9)
|
---|
[b9e97fb] | 83 | #define AR_INTERRUPT (0xe)
|
---|
| 84 | #define AR_TRAP (0xf)
|
---|
[c245372b] | 85 |
|
---|
| 86 | #define DPL_KERNEL (PL_KERNEL<<5)
|
---|
| 87 | #define DPL_USER (PL_USER<<5)
|
---|
| 88 |
|
---|
[39cea6a] | 89 | #define TSS_BASIC_SIZE 104
|
---|
[9fa16b20] | 90 | #define TSS_IOMAP_SIZE (16*1024+1) /* 16K for bitmap + 1 terminating byte for convenience */
|
---|
[c245372b] | 91 |
|
---|
[73e9b49] | 92 | #define IO_PORTS (64*1024)
|
---|
| 93 |
|
---|
[8fc0d455] | 94 | #ifndef __ASM__
|
---|
| 95 |
|
---|
[c245372b] | 96 | struct descriptor {
|
---|
| 97 | unsigned limit_0_15: 16;
|
---|
| 98 | unsigned base_0_15: 16;
|
---|
| 99 | unsigned base_16_23: 8;
|
---|
| 100 | unsigned access: 8;
|
---|
| 101 | unsigned limit_16_19: 4;
|
---|
| 102 | unsigned available: 1;
|
---|
| 103 | unsigned longmode: 1;
|
---|
| 104 | unsigned special: 1;
|
---|
| 105 | unsigned granularity : 1;
|
---|
| 106 | unsigned base_24_31: 8;
|
---|
| 107 | } __attribute__ ((packed));
|
---|
[39cea6a] | 108 | typedef struct descriptor descriptor_t;
|
---|
[c245372b] | 109 |
|
---|
[b9e97fb] | 110 | struct tss_descriptor {
|
---|
| 111 | unsigned limit_0_15: 16;
|
---|
| 112 | unsigned base_0_15: 16;
|
---|
| 113 | unsigned base_16_23: 8;
|
---|
| 114 | unsigned type: 4;
|
---|
[39cea6a] | 115 | unsigned : 1;
|
---|
[b9e97fb] | 116 | unsigned dpl : 2;
|
---|
| 117 | unsigned present : 1;
|
---|
| 118 | unsigned limit_16_19: 4;
|
---|
| 119 | unsigned available: 1;
|
---|
[e3b9572] | 120 | unsigned : 2;
|
---|
[b9e97fb] | 121 | unsigned granularity : 1;
|
---|
| 122 | unsigned base_24_31: 8;
|
---|
| 123 | unsigned base_32_63 : 32;
|
---|
[e3b9572] | 124 | unsigned : 32;
|
---|
[b9e97fb] | 125 | } __attribute__ ((packed));
|
---|
[39cea6a] | 126 | typedef struct tss_descriptor tss_descriptor_t;
|
---|
[b9e97fb] | 127 |
|
---|
[c245372b] | 128 | struct idescriptor {
|
---|
| 129 | unsigned offset_0_15: 16;
|
---|
| 130 | unsigned selector: 16;
|
---|
[b9e97fb] | 131 | unsigned ist:3;
|
---|
| 132 | unsigned unused: 5;
|
---|
| 133 | unsigned type: 5;
|
---|
| 134 | unsigned dpl: 2;
|
---|
| 135 | unsigned present : 1;
|
---|
[c245372b] | 136 | unsigned offset_16_31: 16;
|
---|
[e3b9572] | 137 | unsigned offset_32_63: 32;
|
---|
| 138 | unsigned : 32;
|
---|
[c245372b] | 139 | } __attribute__ ((packed));
|
---|
[39cea6a] | 140 | typedef struct idescriptor idescriptor_t;
|
---|
[c245372b] | 141 |
|
---|
[b9e97fb] | 142 | struct ptr_16_64 {
|
---|
[7f1c620] | 143 | uint16_t limit;
|
---|
| 144 | uint64_t base;
|
---|
[b9e97fb] | 145 | } __attribute__ ((packed));
|
---|
[39cea6a] | 146 | typedef struct ptr_16_64 ptr_16_64_t;
|
---|
[c245372b] | 147 |
|
---|
[776c91a] | 148 | struct ptr_16_32 {
|
---|
[7f1c620] | 149 | uint16_t limit;
|
---|
| 150 | uint32_t base;
|
---|
[776c91a] | 151 | } __attribute__ ((packed));
|
---|
[39cea6a] | 152 | typedef struct ptr_16_32 ptr_16_32_t;
|
---|
[776c91a] | 153 |
|
---|
[c245372b] | 154 | struct tss {
|
---|
[7f1c620] | 155 | uint32_t reserve1;
|
---|
| 156 | uint64_t rsp0;
|
---|
| 157 | uint64_t rsp1;
|
---|
| 158 | uint64_t rsp2;
|
---|
| 159 | uint64_t reserve2;
|
---|
| 160 | uint64_t ist1;
|
---|
| 161 | uint64_t ist2;
|
---|
| 162 | uint64_t ist3;
|
---|
| 163 | uint64_t ist4;
|
---|
| 164 | uint64_t ist5;
|
---|
| 165 | uint64_t ist6;
|
---|
| 166 | uint64_t ist7;
|
---|
| 167 | uint64_t reserve3;
|
---|
| 168 | uint16_t reserve4;
|
---|
| 169 | uint16_t iomap_base;
|
---|
| 170 | uint8_t iomap[TSS_IOMAP_SIZE];
|
---|
[c245372b] | 171 | } __attribute__ ((packed));
|
---|
[39cea6a] | 172 | typedef struct tss tss_t;
|
---|
[c245372b] | 173 |
|
---|
[39cea6a] | 174 | extern tss_t *tss_p;
|
---|
[c245372b] | 175 |
|
---|
[39cea6a] | 176 | extern descriptor_t gdt[];
|
---|
| 177 | extern idescriptor_t idt[];
|
---|
[c245372b] | 178 |
|
---|
[39cea6a] | 179 | extern ptr_16_64_t gdtr;
|
---|
| 180 | extern ptr_16_32_t bootstrap_gdtr;
|
---|
| 181 | extern ptr_16_32_t protected_ap_gdtr;
|
---|
[b9e97fb] | 182 |
|
---|
[c245372b] | 183 | extern void pm_init(void);
|
---|
| 184 |
|
---|
[7f1c620] | 185 | extern void gdt_tss_setbase(descriptor_t *d, uintptr_t base);
|
---|
| 186 | extern void gdt_tss_setlimit(descriptor_t *d, uint32_t limit);
|
---|
[c245372b] | 187 |
|
---|
| 188 | extern void idt_init(void);
|
---|
[7f1c620] | 189 | extern void idt_setoffset(idescriptor_t *d, uintptr_t offset);
|
---|
[c245372b] | 190 |
|
---|
[39cea6a] | 191 | extern void tss_initialize(tss_t *t);
|
---|
[c245372b] | 192 |
|
---|
[8fc0d455] | 193 | #endif /* __ASM__ */
|
---|
| 194 |
|
---|
[c245372b] | 195 | #endif
|
---|
[b45c443] | 196 |
|
---|
| 197 | /** @}
|
---|
| 198 | */
|
---|
| 199 |
|
---|