source: mainline/kernel/arch/amd64/include/asm.h@ c22e964

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

There is no need to define ioport{8,16,32}_t types for each architecture separately.

  • Property mode set to 100644
File size: 7.6 KB
Line 
1/*
2 * Copyright (c) 2005 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
29/** @addtogroup amd64
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_amd64_ASM_H_
36#define KERN_amd64_ASM_H_
37
38#include <config.h>
39#include <arch/types.h>
40#include <typedefs.h>
41
42extern void asm_delay_loop(uint32_t t);
43extern void asm_fake_loop(uint32_t t);
44
45/** Return base address of current stack.
46 *
47 * Return the base address of the current stack.
48 * The stack is assumed to be STACK_SIZE bytes long.
49 * The stack must start on page boundary.
50 *
51 */
52static inline uintptr_t get_stack_base(void)
53{
54 uintptr_t v;
55
56 asm volatile (
57 "andq %%rsp, %[v]\n"
58 : [v] "=r" (v)
59 : "0" (~((uint64_t) STACK_SIZE-1))
60 );
61
62 return v;
63}
64
65static inline void cpu_sleep(void)
66{
67 asm volatile ("hlt\n");
68}
69
70static inline void cpu_halt(void)
71{
72 asm volatile ("hlt\n");
73}
74
75
76/** Byte from port
77 *
78 * Get byte from port
79 *
80 * @param port Port to read from
81 * @return Value read
82 *
83 */
84static inline uint8_t pio_read_8(ioport8_t *port)
85{
86 uint8_t val;
87
88 asm volatile (
89 "inb %w[port], %b[val]\n"
90 : [val] "=a" (val)
91 : [port] "d" (port)
92 );
93
94 return val;
95}
96
97/** Word from port
98 *
99 * Get word from port
100 *
101 * @param port Port to read from
102 * @return Value read
103 *
104 */
105static inline uint16_t pio_read_16(ioport16_t *port)
106{
107 uint16_t val;
108
109 asm volatile (
110 "inw %w[port], %w[val]\n"
111 : [val] "=a" (val)
112 : [port] "d" (port)
113 );
114
115 return val;
116}
117
118/** Double word from port
119 *
120 * Get double word from port
121 *
122 * @param port Port to read from
123 * @return Value read
124 *
125 */
126static inline uint32_t pio_read_32(ioport32_t *port)
127{
128 uint32_t val;
129
130 asm volatile (
131 "inl %w[port], %[val]\n"
132 : [val] "=a" (val)
133 : [port] "d" (port)
134 );
135
136 return val;
137}
138
139/** Byte to port
140 *
141 * Output byte to port
142 *
143 * @param port Port to write to
144 * @param val Value to write
145 *
146 */
147static inline void pio_write_8(ioport8_t *port, uint8_t val)
148{
149 asm volatile (
150 "outb %b[val], %w[port]\n"
151 :: [val] "a" (val), [port] "d" (port)
152 );
153}
154
155/** Word to port
156 *
157 * Output word to port
158 *
159 * @param port Port to write to
160 * @param val Value to write
161 *
162 */
163static inline void pio_write_16(ioport16_t *port, uint16_t val)
164{
165 asm volatile (
166 "outw %w[val], %w[port]\n"
167 :: [val] "a" (val), [port] "d" (port)
168 );
169}
170
171/** Double word to port
172 *
173 * Output double word to port
174 *
175 * @param port Port to write to
176 * @param val Value to write
177 *
178 */
179static inline void pio_write_32(ioport32_t *port, uint32_t val)
180{
181 asm volatile (
182 "outl %[val], %w[port]\n"
183 :: [val] "a" (val), [port] "d" (port)
184 );
185}
186
187/** Swap Hidden part of GS register with visible one */
188static inline void swapgs(void)
189{
190 asm volatile("swapgs");
191}
192
193/** Enable interrupts.
194 *
195 * Enable interrupts and return previous
196 * value of EFLAGS.
197 *
198 * @return Old interrupt priority level.
199 *
200 */
201static inline ipl_t interrupts_enable(void) {
202 ipl_t v;
203
204 asm volatile (
205 "pushfq\n"
206 "popq %[v]\n"
207 "sti\n"
208 : [v] "=r" (v)
209 );
210
211 return v;
212}
213
214/** Disable interrupts.
215 *
216 * Disable interrupts and return previous
217 * value of EFLAGS.
218 *
219 * @return Old interrupt priority level.
220 *
221 */
222static inline ipl_t interrupts_disable(void) {
223 ipl_t v;
224
225 asm volatile (
226 "pushfq\n"
227 "popq %[v]\n"
228 "cli\n"
229 : [v] "=r" (v)
230 );
231
232 return v;
233}
234
235/** Restore interrupt priority level.
236 *
237 * Restore EFLAGS.
238 *
239 * @param ipl Saved interrupt priority level.
240 *
241 */
242static inline void interrupts_restore(ipl_t ipl) {
243 asm volatile (
244 "pushq %[ipl]\n"
245 "popfq\n"
246 :: [ipl] "r" (ipl)
247 );
248}
249
250/** Return interrupt priority level.
251 *
252 * Return EFLAFS.
253 *
254 * @return Current interrupt priority level.
255 *
256 */
257static inline ipl_t interrupts_read(void) {
258 ipl_t v;
259
260 asm volatile (
261 "pushfq\n"
262 "popq %[v]\n"
263 : [v] "=r" (v)
264 );
265
266 return v;
267}
268
269/** Write to MSR */
270static inline void write_msr(uint32_t msr, uint64_t value)
271{
272 asm volatile (
273 "wrmsr\n"
274 :: "c" (msr),
275 "a" ((uint32_t) (value)),
276 "d" ((uint32_t) (value >> 32))
277 );
278}
279
280static inline unative_t read_msr(uint32_t msr)
281{
282 uint32_t ax, dx;
283
284 asm volatile (
285 "rdmsr\n"
286 : "=a" (ax), "=d" (dx)
287 : "c" (msr)
288 );
289
290 return ((uint64_t) dx << 32) | ax;
291}
292
293
294/** Enable local APIC
295 *
296 * Enable local APIC in MSR.
297 *
298 */
299static inline void enable_l_apic_in_msr()
300{
301 asm volatile (
302 "movl $0x1b, %%ecx\n"
303 "rdmsr\n"
304 "orl $(1 << 11),%%eax\n"
305 "orl $(0xfee00000),%%eax\n"
306 "wrmsr\n"
307 ::: "%eax","%ecx","%edx"
308 );
309}
310
311static inline uintptr_t * get_ip()
312{
313 uintptr_t *ip;
314
315 asm volatile (
316 "mov %%rip, %[ip]"
317 : [ip] "=r" (ip)
318 );
319
320 return ip;
321}
322
323/** Invalidate TLB Entry.
324 *
325 * @param addr Address on a page whose TLB entry is to be invalidated.
326 *
327 */
328static inline void invlpg(uintptr_t addr)
329{
330 asm volatile (
331 "invlpg %[addr]\n"
332 :: [addr] "m" (*((unative_t *) addr))
333 );
334}
335
336/** Load GDTR register from memory.
337 *
338 * @param gdtr_reg Address of memory from where to load GDTR.
339 *
340 */
341static inline void gdtr_load(struct ptr_16_64 *gdtr_reg)
342{
343 asm volatile (
344 "lgdtq %[gdtr_reg]\n"
345 :: [gdtr_reg] "m" (*gdtr_reg)
346 );
347}
348
349/** Store GDTR register to memory.
350 *
351 * @param gdtr_reg Address of memory to where to load GDTR.
352 *
353 */
354static inline void gdtr_store(struct ptr_16_64 *gdtr_reg)
355{
356 asm volatile (
357 "sgdtq %[gdtr_reg]\n"
358 :: [gdtr_reg] "m" (*gdtr_reg)
359 );
360}
361
362/** Load IDTR register from memory.
363 *
364 * @param idtr_reg Address of memory from where to load IDTR.
365 *
366 */
367static inline void idtr_load(struct ptr_16_64 *idtr_reg)
368{
369 asm volatile (
370 "lidtq %[idtr_reg]\n"
371 :: [idtr_reg] "m" (*idtr_reg));
372}
373
374/** Load TR from descriptor table.
375 *
376 * @param sel Selector specifying descriptor of TSS segment.
377 *
378 */
379static inline void tr_load(uint16_t sel)
380{
381 asm volatile (
382 "ltr %[sel]"
383 :: [sel] "r" (sel)
384 );
385}
386
387#define GEN_READ_REG(reg) static inline unative_t read_ ##reg (void) \
388 { \
389 unative_t res; \
390 asm volatile ( \
391 "movq %%" #reg ", %[res]" \
392 : [res] "=r" (res) \
393 ); \
394 return res; \
395 }
396
397#define GEN_WRITE_REG(reg) static inline void write_ ##reg (unative_t regn) \
398 { \
399 asm volatile ( \
400 "movq %[regn], %%" #reg \
401 :: [regn] "r" (regn) \
402 ); \
403 }
404
405GEN_READ_REG(cr0)
406GEN_READ_REG(cr2)
407GEN_READ_REG(cr3)
408GEN_WRITE_REG(cr3)
409
410GEN_READ_REG(dr0)
411GEN_READ_REG(dr1)
412GEN_READ_REG(dr2)
413GEN_READ_REG(dr3)
414GEN_READ_REG(dr6)
415GEN_READ_REG(dr7)
416
417GEN_WRITE_REG(dr0)
418GEN_WRITE_REG(dr1)
419GEN_WRITE_REG(dr2)
420GEN_WRITE_REG(dr3)
421GEN_WRITE_REG(dr6)
422GEN_WRITE_REG(dr7)
423
424extern size_t interrupt_handler_size;
425extern void interrupt_handlers(void);
426
427#endif
428
429/** @}
430 */
Note: See TracBrowser for help on using the repository browser.