source: mainline/arch/ia32/include/asm.h@ e185136

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

Cleanup pm.c and pm.h code on ia32 and amd64.
Add before_task_runs() and before_task_runs_arch() for each architecture.
Add ia32 and amd64 code to ensure I/O Permission Bitmap update.

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