source: mainline/kernel/arch/ia32/include/asm.h@ 26678e5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 26678e5 was 06e1e95, checked in by Jakub Jermar <jakub@…>, 19 years ago

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[f761f1eb]1/*
2 * Copyright (C) 2001-2004 Jakub Jermar
[49c1f93]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]43extern uint32_t interrupt_handler_size;
[f761f1eb]44
45extern void paging_on(void);
46
47extern void interrupt_handlers(void);
48
49extern void enable_l_apic_in_msr(void);
50
[9c0a9b3]51
[7f1c620]52extern void asm_delay_loop(uint32_t t);
53extern void asm_fake_loop(uint32_t t);
[9c0a9b3]54
55
[18e0a6c]56/** Halt CPU
57 *
58 * Halt the current CPU until interrupt event.
59 */
[d6dcdd2e]60static inline void cpu_halt(void) { __asm__("hlt\n"); };
61static inline void cpu_sleep(void) { __asm__("hlt\n"); };
[f761f1eb]62
[7f1c620]63#define GEN_READ_REG(reg) static inline unative_t read_ ##reg (void) \
[23d22eb]64 { \
[7f1c620]65 unative_t res; \
[23d22eb]66 __asm__ volatile ("movl %%" #reg ", %0" : "=r" (res) ); \
67 return res; \
68 }
[0f4e706]69
[7f1c620]70#define GEN_WRITE_REG(reg) static inline void write_ ##reg (unative_t regn) \
[23d22eb]71 { \
72 __asm__ volatile ("movl %0, %%" #reg : : "r" (regn)); \
73 }
[18e0a6c]74
[23d22eb]75GEN_READ_REG(cr0);
76GEN_READ_REG(cr2);
77GEN_READ_REG(cr3);
78GEN_WRITE_REG(cr3);
79
80GEN_READ_REG(dr0);
81GEN_READ_REG(dr1);
82GEN_READ_REG(dr2);
83GEN_READ_REG(dr3);
84GEN_READ_REG(dr6);
85GEN_READ_REG(dr7);
86
87GEN_WRITE_REG(dr0);
88GEN_WRITE_REG(dr1);
89GEN_WRITE_REG(dr2);
90GEN_WRITE_REG(dr3);
91GEN_WRITE_REG(dr6);
92GEN_WRITE_REG(dr7);
[18e0a6c]93
[a5556b4]94/** Byte to port
95 *
96 * Output byte to port
97 *
98 * @param port Port to write to
99 * @param val Value to write
100 */
[7f1c620]101static inline void outb(uint16_t port, uint8_t val) { __asm__ volatile ("outb %b0, %w1\n" : : "a" (val), "d" (port) ); }
[a5556b4]102
[714675b]103/** Word to port
104 *
105 * Output word to port
106 *
107 * @param port Port to write to
108 * @param val Value to write
109 */
[7f1c620]110static inline void outw(uint16_t port, uint16_t val) { __asm__ volatile ("outw %w0, %w1\n" : : "a" (val), "d" (port) ); }
[714675b]111
112/** Double word to port
113 *
114 * Output double word to port
115 *
116 * @param port Port to write to
117 * @param val Value to write
118 */
[7f1c620]119static inline void outl(uint16_t port, uint32_t val) { __asm__ volatile ("outl %l0, %w1\n" : : "a" (val), "d" (port) ); }
[a5556b4]120
[105a0dc]121/** Byte from port
122 *
123 * Get byte from port
124 *
125 * @param port Port to read from
126 * @return Value read
127 */
[7f1c620]128static inline uint8_t inb(uint16_t port) { uint8_t val; __asm__ volatile ("inb %w1, %b0 \n" : "=a" (val) : "d" (port) ); return val; }
[105a0dc]129
130/** Word from port
131 *
132 * Get word from port
133 *
134 * @param port Port to read from
135 * @return Value read
136 */
[7f1c620]137static inline uint16_t inw(uint16_t port) { uint16_t val; __asm__ volatile ("inw %w1, %w0 \n" : "=a" (val) : "d" (port) ); return val; }
[105a0dc]138
139/** Double word from port
140 *
141 * Get double word from port
142 *
143 * @param port Port to read from
144 * @return Value read
145 */
[7f1c620]146static inline uint32_t inl(uint16_t port) { uint32_t val; __asm__ volatile ("inl %w1, %l0 \n" : "=a" (val) : "d" (port) ); return val; }
[105a0dc]147
[22f7769]148/** Enable interrupts.
[18e0a6c]149 *
150 * Enable interrupts and return previous
151 * value of EFLAGS.
[22f7769]152 *
153 * @return Old interrupt priority level.
[18e0a6c]154 */
[0259524]155static inline ipl_t interrupts_enable(void)
156{
[22f7769]157 ipl_t v;
[18e0a6c]158 __asm__ volatile (
[104dc0b]159 "pushf\n\t"
160 "popl %0\n\t"
[18e0a6c]161 "sti\n"
162 : "=r" (v)
163 );
164 return v;
165}
166
[22f7769]167/** Disable interrupts.
[18e0a6c]168 *
169 * Disable interrupts and return previous
170 * value of EFLAGS.
[22f7769]171 *
172 * @return Old interrupt priority level.
[18e0a6c]173 */
[0259524]174static inline ipl_t interrupts_disable(void)
175{
[22f7769]176 ipl_t v;
[18e0a6c]177 __asm__ volatile (
[104dc0b]178 "pushf\n\t"
179 "popl %0\n\t"
[18e0a6c]180 "cli\n"
181 : "=r" (v)
182 );
183 return v;
184}
185
[22f7769]186/** Restore interrupt priority level.
[18e0a6c]187 *
188 * Restore EFLAGS.
[22f7769]189 *
190 * @param ipl Saved interrupt priority level.
[18e0a6c]191 */
[0259524]192static inline void interrupts_restore(ipl_t ipl)
193{
[18e0a6c]194 __asm__ volatile (
[104dc0b]195 "pushl %0\n\t"
[18e0a6c]196 "popf\n"
[22f7769]197 : : "r" (ipl)
[18e0a6c]198 );
199}
200
[22f7769]201/** Return interrupt priority level.
[18e0a6c]202 *
[22f7769]203 * @return EFLAFS.
[18e0a6c]204 */
[0259524]205static inline ipl_t interrupts_read(void)
206{
[22f7769]207 ipl_t v;
[18e0a6c]208 __asm__ volatile (
[104dc0b]209 "pushf\n\t"
[18e0a6c]210 "popl %0\n"
211 : "=r" (v)
212 );
213 return v;
214}
[c9b8c5c]215
[361635c]216/** Return base address of current stack
217 *
218 * Return the base address of the current stack.
219 * The stack is assumed to be STACK_SIZE bytes long.
[1fbbcd6]220 * The stack must start on page boundary.
[361635c]221 */
[7f1c620]222static inline uintptr_t get_stack_base(void)
[361635c]223{
[7f1c620]224 uintptr_t v;
[361635c]225
226 __asm__ volatile ("andl %%esp, %0\n" : "=r" (v) : "0" (~(STACK_SIZE-1)));
227
228 return v;
229}
230
[7f1c620]231static inline uint64_t rdtsc(void)
[d6dcdd2e]232{
[7f1c620]233 uint64_t v;
[d6dcdd2e]234
235 __asm__ volatile("rdtsc\n" : "=A" (v));
236
237 return v;
238}
239
[a3ac9a7]240/** Return current IP address */
[7f1c620]241static inline uintptr_t * get_ip()
[a3ac9a7]242{
[7f1c620]243 uintptr_t *ip;
[a3ac9a7]244
245 __asm__ volatile (
246 "mov %%eip, %0"
247 : "=r" (ip)
248 );
249 return ip;
250}
251
[7910cff]252/** Invalidate TLB Entry.
253 *
254 * @param addr Address on a page whose TLB entry is to be invalidated.
255 */
[7f1c620]256static inline void invlpg(uintptr_t addr)
[7910cff]257{
[7f1c620]258 __asm__ volatile ("invlpg %0\n" :: "m" (*(unative_t *)addr));
[7910cff]259}
260
[897ad60]261/** Load GDTR register from memory.
262 *
263 * @param gdtr_reg Address of memory from where to load GDTR.
264 */
[39cea6a]265static inline void gdtr_load(ptr_16_32_t *gdtr_reg)
[897ad60]266{
[11928d5]267 __asm__ volatile ("lgdtl %0\n" : : "m" (*gdtr_reg));
[897ad60]268}
269
270/** Store GDTR register to memory.
271 *
272 * @param gdtr_reg Address of memory to where to load GDTR.
273 */
[39cea6a]274static inline void gdtr_store(ptr_16_32_t *gdtr_reg)
[897ad60]275{
[11928d5]276 __asm__ volatile ("sgdtl %0\n" : : "m" (*gdtr_reg));
[897ad60]277}
278
279/** Load IDTR register from memory.
280 *
281 * @param idtr_reg Address of memory from where to load IDTR.
282 */
[39cea6a]283static inline void idtr_load(ptr_16_32_t *idtr_reg)
[897ad60]284{
[11928d5]285 __asm__ volatile ("lidtl %0\n" : : "m" (*idtr_reg));
[897ad60]286}
287
288/** Load TR from descriptor table.
289 *
290 * @param sel Selector specifying descriptor of TSS segment.
291 */
[7f1c620]292static inline void tr_load(uint16_t sel)
[897ad60]293{
294 __asm__ volatile ("ltr %0" : : "r" (sel));
295}
296
[f761f1eb]297#endif
[b45c443]298
[06e1e95]299/** @}
[b45c443]300 */
Note: See TracBrowser for help on using the repository browser.