[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2001-2004 Jakub Jermar
|
---|
| 3 | * Copyright (c) 2005 Sergey Bondari
|
---|
[f761f1eb] | 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[06e1e95] | 30 | /** @addtogroup ia32
|
---|
[b45c443] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[06e1e95] | 36 | #ifndef KERN_ia32_ASM_H_
|
---|
| 37 | #define KERN_ia32_ASM_H_
|
---|
[f761f1eb] | 38 |
|
---|
[897ad60] | 39 | #include <arch/pm.h>
|
---|
[f761f1eb] | 40 | #include <arch/types.h>
|
---|
[361635c] | 41 | #include <config.h>
|
---|
[f761f1eb] | 42 |
|
---|
[7f1c620] | 43 | extern uint32_t interrupt_handler_size;
|
---|
[f761f1eb] | 44 |
|
---|
| 45 | extern void paging_on(void);
|
---|
| 46 |
|
---|
| 47 | extern void interrupt_handlers(void);
|
---|
| 48 |
|
---|
| 49 | extern void enable_l_apic_in_msr(void);
|
---|
| 50 |
|
---|
[9c0a9b3] | 51 |
|
---|
[7f1c620] | 52 | extern void asm_delay_loop(uint32_t t);
|
---|
| 53 | extern void asm_fake_loop(uint32_t t);
|
---|
[9c0a9b3] | 54 |
|
---|
| 55 |
|
---|
[18e0a6c] | 56 | /** Halt CPU
|
---|
| 57 | *
|
---|
| 58 | * Halt the current CPU until interrupt event.
|
---|
| 59 | */
|
---|
[e7b7be3f] | 60 | static inline void cpu_halt(void)
|
---|
| 61 | {
|
---|
[6aea2e00] | 62 | asm volatile ("hlt\n");
|
---|
[60133d0] | 63 | }
|
---|
[e7b7be3f] | 64 |
|
---|
| 65 | static inline void cpu_sleep(void)
|
---|
| 66 | {
|
---|
[6aea2e00] | 67 | asm volatile ("hlt\n");
|
---|
[60133d0] | 68 | }
|
---|
[f761f1eb] | 69 |
|
---|
[7f1c620] | 70 | #define GEN_READ_REG(reg) static inline unative_t read_ ##reg (void) \
|
---|
[23d22eb] | 71 | { \
|
---|
[7f1c620] | 72 | unative_t res; \
|
---|
[e7b7be3f] | 73 | asm volatile ("movl %%" #reg ", %0" : "=r" (res) ); \
|
---|
[23d22eb] | 74 | return res; \
|
---|
| 75 | }
|
---|
[0f4e706] | 76 |
|
---|
[7f1c620] | 77 | #define GEN_WRITE_REG(reg) static inline void write_ ##reg (unative_t regn) \
|
---|
[23d22eb] | 78 | { \
|
---|
[e7b7be3f] | 79 | asm volatile ("movl %0, %%" #reg : : "r" (regn)); \
|
---|
[23d22eb] | 80 | }
|
---|
[18e0a6c] | 81 |
|
---|
[60133d0] | 82 | GEN_READ_REG(cr0)
|
---|
| 83 | GEN_READ_REG(cr2)
|
---|
| 84 | GEN_READ_REG(cr3)
|
---|
| 85 | GEN_WRITE_REG(cr3)
|
---|
| 86 |
|
---|
| 87 | GEN_READ_REG(dr0)
|
---|
| 88 | GEN_READ_REG(dr1)
|
---|
| 89 | GEN_READ_REG(dr2)
|
---|
| 90 | GEN_READ_REG(dr3)
|
---|
| 91 | GEN_READ_REG(dr6)
|
---|
| 92 | GEN_READ_REG(dr7)
|
---|
| 93 |
|
---|
| 94 | GEN_WRITE_REG(dr0)
|
---|
| 95 | GEN_WRITE_REG(dr1)
|
---|
| 96 | GEN_WRITE_REG(dr2)
|
---|
| 97 | GEN_WRITE_REG(dr3)
|
---|
| 98 | GEN_WRITE_REG(dr6)
|
---|
| 99 | GEN_WRITE_REG(dr7)
|
---|
[18e0a6c] | 100 |
|
---|
[a5556b4] | 101 | /** Byte to port
|
---|
| 102 | *
|
---|
| 103 | * Output byte to port
|
---|
| 104 | *
|
---|
| 105 | * @param port Port to write to
|
---|
| 106 | * @param val Value to write
|
---|
| 107 | */
|
---|
[7d60cf5] | 108 | static inline void pio_write_8(ioport8_t *port, uint8_t val)
|
---|
[e7b7be3f] | 109 | {
|
---|
[7d60cf5] | 110 | asm volatile ("outb %b0, %w1\n" : : "a" (val), "d" (port));
|
---|
[e7b7be3f] | 111 | }
|
---|
[a5556b4] | 112 |
|
---|
[714675b] | 113 | /** Word to port
|
---|
| 114 | *
|
---|
| 115 | * Output word to port
|
---|
| 116 | *
|
---|
| 117 | * @param port Port to write to
|
---|
| 118 | * @param val Value to write
|
---|
| 119 | */
|
---|
[7d60cf5] | 120 | static inline void pio_write_16(ioport16_t *port, uint16_t val)
|
---|
[e7b7be3f] | 121 | {
|
---|
[7d60cf5] | 122 | asm volatile ("outw %w0, %w1\n" : : "a" (val), "d" (port));
|
---|
[e7b7be3f] | 123 | }
|
---|
[714675b] | 124 |
|
---|
| 125 | /** Double word to port
|
---|
| 126 | *
|
---|
| 127 | * Output double word to port
|
---|
| 128 | *
|
---|
| 129 | * @param port Port to write to
|
---|
| 130 | * @param val Value to write
|
---|
| 131 | */
|
---|
[7d60cf5] | 132 | static inline void pio_write_32(ioport32_t *port, uint32_t val)
|
---|
[e7b7be3f] | 133 | {
|
---|
[7d60cf5] | 134 | asm volatile ("outl %l0, %w1\n" : : "a" (val), "d" (port));
|
---|
[e7b7be3f] | 135 | }
|
---|
[a5556b4] | 136 |
|
---|
[105a0dc] | 137 | /** Byte from port
|
---|
| 138 | *
|
---|
| 139 | * Get byte from port
|
---|
| 140 | *
|
---|
| 141 | * @param port Port to read from
|
---|
| 142 | * @return Value read
|
---|
| 143 | */
|
---|
[7d60cf5] | 144 | static inline uint8_t pio_read_8(ioport8_t *port)
|
---|
[e7b7be3f] | 145 | {
|
---|
| 146 | uint8_t val;
|
---|
| 147 |
|
---|
[7d60cf5] | 148 | asm volatile ("inb %w1, %b0 \n" : "=a" (val) : "d" (port));
|
---|
[e7b7be3f] | 149 | return val;
|
---|
| 150 | }
|
---|
[105a0dc] | 151 |
|
---|
| 152 | /** Word from port
|
---|
| 153 | *
|
---|
| 154 | * Get word from port
|
---|
| 155 | *
|
---|
| 156 | * @param port Port to read from
|
---|
| 157 | * @return Value read
|
---|
| 158 | */
|
---|
[7d60cf5] | 159 | static inline uint16_t pio_read_16(ioport16_t *port)
|
---|
[e7b7be3f] | 160 | {
|
---|
| 161 | uint16_t val;
|
---|
| 162 |
|
---|
[7d60cf5] | 163 | asm volatile ("inw %w1, %w0 \n" : "=a" (val) : "d" (port));
|
---|
[e7b7be3f] | 164 | return val;
|
---|
| 165 | }
|
---|
[105a0dc] | 166 |
|
---|
| 167 | /** Double word from port
|
---|
| 168 | *
|
---|
| 169 | * Get double word from port
|
---|
| 170 | *
|
---|
| 171 | * @param port Port to read from
|
---|
| 172 | * @return Value read
|
---|
| 173 | */
|
---|
[7d60cf5] | 174 | static inline uint32_t pio_read_32(ioport32_t *port)
|
---|
[e7b7be3f] | 175 | {
|
---|
| 176 | uint32_t val;
|
---|
| 177 |
|
---|
[7d60cf5] | 178 | asm volatile ("inl %w1, %l0 \n" : "=a" (val) : "d" (port));
|
---|
[e7b7be3f] | 179 | return val;
|
---|
| 180 | }
|
---|
[105a0dc] | 181 |
|
---|
[22f7769] | 182 | /** Enable interrupts.
|
---|
[18e0a6c] | 183 | *
|
---|
| 184 | * Enable interrupts and return previous
|
---|
| 185 | * value of EFLAGS.
|
---|
[22f7769] | 186 | *
|
---|
| 187 | * @return Old interrupt priority level.
|
---|
[18e0a6c] | 188 | */
|
---|
[0259524] | 189 | static inline ipl_t interrupts_enable(void)
|
---|
| 190 | {
|
---|
[22f7769] | 191 | ipl_t v;
|
---|
[e7b7be3f] | 192 | asm volatile (
|
---|
[104dc0b] | 193 | "pushf\n\t"
|
---|
| 194 | "popl %0\n\t"
|
---|
[18e0a6c] | 195 | "sti\n"
|
---|
| 196 | : "=r" (v)
|
---|
| 197 | );
|
---|
| 198 | return v;
|
---|
| 199 | }
|
---|
| 200 |
|
---|
[22f7769] | 201 | /** Disable interrupts.
|
---|
[18e0a6c] | 202 | *
|
---|
| 203 | * Disable interrupts and return previous
|
---|
| 204 | * value of EFLAGS.
|
---|
[22f7769] | 205 | *
|
---|
| 206 | * @return Old interrupt priority level.
|
---|
[18e0a6c] | 207 | */
|
---|
[0259524] | 208 | static inline ipl_t interrupts_disable(void)
|
---|
| 209 | {
|
---|
[22f7769] | 210 | ipl_t v;
|
---|
[e7b7be3f] | 211 | asm volatile (
|
---|
[104dc0b] | 212 | "pushf\n\t"
|
---|
| 213 | "popl %0\n\t"
|
---|
[18e0a6c] | 214 | "cli\n"
|
---|
| 215 | : "=r" (v)
|
---|
| 216 | );
|
---|
| 217 | return v;
|
---|
| 218 | }
|
---|
| 219 |
|
---|
[22f7769] | 220 | /** Restore interrupt priority level.
|
---|
[18e0a6c] | 221 | *
|
---|
| 222 | * Restore EFLAGS.
|
---|
[22f7769] | 223 | *
|
---|
| 224 | * @param ipl Saved interrupt priority level.
|
---|
[18e0a6c] | 225 | */
|
---|
[0259524] | 226 | static inline void interrupts_restore(ipl_t ipl)
|
---|
| 227 | {
|
---|
[e7b7be3f] | 228 | asm volatile (
|
---|
[104dc0b] | 229 | "pushl %0\n\t"
|
---|
[18e0a6c] | 230 | "popf\n"
|
---|
[22f7769] | 231 | : : "r" (ipl)
|
---|
[18e0a6c] | 232 | );
|
---|
| 233 | }
|
---|
| 234 |
|
---|
[22f7769] | 235 | /** Return interrupt priority level.
|
---|
[18e0a6c] | 236 | *
|
---|
[22f7769] | 237 | * @return EFLAFS.
|
---|
[18e0a6c] | 238 | */
|
---|
[0259524] | 239 | static inline ipl_t interrupts_read(void)
|
---|
| 240 | {
|
---|
[22f7769] | 241 | ipl_t v;
|
---|
[e7b7be3f] | 242 | asm volatile (
|
---|
[104dc0b] | 243 | "pushf\n\t"
|
---|
[18e0a6c] | 244 | "popl %0\n"
|
---|
| 245 | : "=r" (v)
|
---|
| 246 | );
|
---|
| 247 | return v;
|
---|
| 248 | }
|
---|
[c9b8c5c] | 249 |
|
---|
[f2ef7fd] | 250 | /** Write to MSR */
|
---|
| 251 | static inline void write_msr(uint32_t msr, uint64_t value)
|
---|
| 252 | {
|
---|
| 253 | asm volatile ("wrmsr" : : "c" (msr), "a" ((uint32_t)(value)),
|
---|
| 254 | "d" ((uint32_t)(value >> 32)));
|
---|
| 255 | }
|
---|
| 256 |
|
---|
| 257 | static inline uint64_t read_msr(uint32_t msr)
|
---|
| 258 | {
|
---|
| 259 | uint32_t ax, dx;
|
---|
| 260 |
|
---|
| 261 | asm volatile ("rdmsr" : "=a"(ax), "=d"(dx) : "c" (msr));
|
---|
| 262 | return ((uint64_t)dx << 32) | ax;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
| 265 |
|
---|
[361635c] | 266 | /** Return base address of current stack
|
---|
| 267 | *
|
---|
| 268 | * Return the base address of the current stack.
|
---|
| 269 | * The stack is assumed to be STACK_SIZE bytes long.
|
---|
[1fbbcd6] | 270 | * The stack must start on page boundary.
|
---|
[361635c] | 271 | */
|
---|
[7f1c620] | 272 | static inline uintptr_t get_stack_base(void)
|
---|
[361635c] | 273 | {
|
---|
[7f1c620] | 274 | uintptr_t v;
|
---|
[361635c] | 275 |
|
---|
[7f043c0] | 276 | asm volatile (
|
---|
| 277 | "andl %%esp, %0\n"
|
---|
| 278 | : "=r" (v)
|
---|
| 279 | : "0" (~(STACK_SIZE - 1))
|
---|
| 280 | );
|
---|
[361635c] | 281 |
|
---|
| 282 | return v;
|
---|
| 283 | }
|
---|
| 284 |
|
---|
[a3ac9a7] | 285 | /** Return current IP address */
|
---|
[7f1c620] | 286 | static inline uintptr_t * get_ip()
|
---|
[a3ac9a7] | 287 | {
|
---|
[7f1c620] | 288 | uintptr_t *ip;
|
---|
[a3ac9a7] | 289 |
|
---|
[e7b7be3f] | 290 | asm volatile (
|
---|
[a3ac9a7] | 291 | "mov %%eip, %0"
|
---|
| 292 | : "=r" (ip)
|
---|
| 293 | );
|
---|
| 294 | return ip;
|
---|
| 295 | }
|
---|
| 296 |
|
---|
[7910cff] | 297 | /** Invalidate TLB Entry.
|
---|
| 298 | *
|
---|
| 299 | * @param addr Address on a page whose TLB entry is to be invalidated.
|
---|
| 300 | */
|
---|
[7f1c620] | 301 | static inline void invlpg(uintptr_t addr)
|
---|
[7910cff] | 302 | {
|
---|
[e7b7be3f] | 303 | asm volatile ("invlpg %0\n" :: "m" (*(unative_t *)addr));
|
---|
[7910cff] | 304 | }
|
---|
| 305 |
|
---|
[897ad60] | 306 | /** Load GDTR register from memory.
|
---|
| 307 | *
|
---|
| 308 | * @param gdtr_reg Address of memory from where to load GDTR.
|
---|
| 309 | */
|
---|
[39cea6a] | 310 | static inline void gdtr_load(ptr_16_32_t *gdtr_reg)
|
---|
[897ad60] | 311 | {
|
---|
[e7b7be3f] | 312 | asm volatile ("lgdtl %0\n" : : "m" (*gdtr_reg));
|
---|
[897ad60] | 313 | }
|
---|
| 314 |
|
---|
| 315 | /** Store GDTR register to memory.
|
---|
| 316 | *
|
---|
| 317 | * @param gdtr_reg Address of memory to where to load GDTR.
|
---|
| 318 | */
|
---|
[39cea6a] | 319 | static inline void gdtr_store(ptr_16_32_t *gdtr_reg)
|
---|
[897ad60] | 320 | {
|
---|
[e7b7be3f] | 321 | asm volatile ("sgdtl %0\n" : : "m" (*gdtr_reg));
|
---|
[897ad60] | 322 | }
|
---|
| 323 |
|
---|
| 324 | /** Load IDTR register from memory.
|
---|
| 325 | *
|
---|
| 326 | * @param idtr_reg Address of memory from where to load IDTR.
|
---|
| 327 | */
|
---|
[39cea6a] | 328 | static inline void idtr_load(ptr_16_32_t *idtr_reg)
|
---|
[897ad60] | 329 | {
|
---|
[e7b7be3f] | 330 | asm volatile ("lidtl %0\n" : : "m" (*idtr_reg));
|
---|
[897ad60] | 331 | }
|
---|
| 332 |
|
---|
| 333 | /** Load TR from descriptor table.
|
---|
| 334 | *
|
---|
| 335 | * @param sel Selector specifying descriptor of TSS segment.
|
---|
| 336 | */
|
---|
[7f1c620] | 337 | static inline void tr_load(uint16_t sel)
|
---|
[897ad60] | 338 | {
|
---|
[e7b7be3f] | 339 | asm volatile ("ltr %0" : : "r" (sel));
|
---|
[897ad60] | 340 | }
|
---|
| 341 |
|
---|
[f761f1eb] | 342 | #endif
|
---|
[b45c443] | 343 |
|
---|
[06e1e95] | 344 | /** @}
|
---|
[b45c443] | 345 | */
|
---|