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
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
[397c77f]30#ifndef __ia32_ASM_H__
31#define __ia32_ASM_H__
[f761f1eb]32
[897ad60]33#include <arch/pm.h>
[f761f1eb]34#include <arch/types.h>
[361635c]35#include <config.h>
[f761f1eb]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
[9c0a9b3]45
[7910cff]46extern void asm_delay_loop(__u32 t);
47extern void asm_fake_loop(__u32 t);
[9c0a9b3]48
49
[18e0a6c]50/** Halt CPU
51 *
52 * Halt the current CPU until interrupt event.
53 */
[d6dcdd2e]54static inline void cpu_halt(void) { __asm__("hlt\n"); };
55static inline void cpu_sleep(void) { __asm__("hlt\n"); };
[f761f1eb]56
[23d22eb]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 }
[0f4e706]63
[23d22eb]64#define GEN_WRITE_REG(reg) static inline void write_ ##reg (__native regn) \
65 { \
66 __asm__ volatile ("movl %0, %%" #reg : : "r" (regn)); \
67 }
[18e0a6c]68
[23d22eb]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);
[18e0a6c]87
[a5556b4]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
[714675b]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) ); }
[a5556b4]114
[105a0dc]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
[22f7769]142/** Enable interrupts.
[18e0a6c]143 *
144 * Enable interrupts and return previous
145 * value of EFLAGS.
[22f7769]146 *
147 * @return Old interrupt priority level.
[18e0a6c]148 */
[0259524]149static inline ipl_t interrupts_enable(void)
150{
[22f7769]151 ipl_t v;
[18e0a6c]152 __asm__ volatile (
[104dc0b]153 "pushf\n\t"
154 "popl %0\n\t"
[18e0a6c]155 "sti\n"
156 : "=r" (v)
157 );
158 return v;
159}
160
[22f7769]161/** Disable interrupts.
[18e0a6c]162 *
163 * Disable interrupts and return previous
164 * value of EFLAGS.
[22f7769]165 *
166 * @return Old interrupt priority level.
[18e0a6c]167 */
[0259524]168static inline ipl_t interrupts_disable(void)
169{
[22f7769]170 ipl_t v;
[18e0a6c]171 __asm__ volatile (
[104dc0b]172 "pushf\n\t"
173 "popl %0\n\t"
[18e0a6c]174 "cli\n"
175 : "=r" (v)
176 );
177 return v;
178}
179
[22f7769]180/** Restore interrupt priority level.
[18e0a6c]181 *
182 * Restore EFLAGS.
[22f7769]183 *
184 * @param ipl Saved interrupt priority level.
[18e0a6c]185 */
[0259524]186static inline void interrupts_restore(ipl_t ipl)
187{
[18e0a6c]188 __asm__ volatile (
[104dc0b]189 "pushl %0\n\t"
[18e0a6c]190 "popf\n"
[22f7769]191 : : "r" (ipl)
[18e0a6c]192 );
193}
194
[22f7769]195/** Return interrupt priority level.
[18e0a6c]196 *
[22f7769]197 * @return EFLAFS.
[18e0a6c]198 */
[0259524]199static inline ipl_t interrupts_read(void)
200{
[22f7769]201 ipl_t v;
[18e0a6c]202 __asm__ volatile (
[104dc0b]203 "pushf\n\t"
[18e0a6c]204 "popl %0\n"
205 : "=r" (v)
206 );
207 return v;
208}
[c9b8c5c]209
[361635c]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.
[1fbbcd6]214 * The stack must start on page boundary.
[361635c]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
[d6dcdd2e]225static inline __u64 rdtsc(void)
226{
227 __u64 v;
228
229 __asm__ volatile("rdtsc\n" : "=A" (v));
230
231 return v;
232}
233
[a3ac9a7]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
[7910cff]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{
[6463264c]252 __asm__ volatile ("invlpg %0\n" :: "m" (*(__native *)addr));
[7910cff]253}
254
[897ad60]255/** Load GDTR register from memory.
256 *
257 * @param gdtr_reg Address of memory from where to load GDTR.
258 */
[39cea6a]259static inline void gdtr_load(ptr_16_32_t *gdtr_reg)
[897ad60]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 */
[39cea6a]268static inline void gdtr_store(ptr_16_32_t *gdtr_reg)
[897ad60]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 */
[39cea6a]277static inline void idtr_load(ptr_16_32_t *idtr_reg)
[897ad60]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
[f761f1eb]291#endif
Note: See TracBrowser for help on using the repository browser.