source: mainline/arch/ia32/include/asm.h@ 104dc0b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 104dc0b was 104dc0b, checked in by Sergey Bondari <bondari@…>, 20 years ago

built-in memcpy is not used anymore on IA-32.
IA-32 memcpy is now fast and inline.

  • Property mode set to 100644
File size: 5.7 KB
Line 
1/*
2 * Copyright (C) 2001-2004 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#ifndef __ia32_ASM_H__
30#define __ia32_ASM_H__
31
32#include <arch/types.h>
33#include <config.h>
34
35extern __u32 interrupt_handler_size;
36
37extern void paging_on(void);
38
39extern void interrupt_handlers(void);
40
41extern void enable_l_apic_in_msr(void);
42
43
44void asm_delay_loop(__u32 t);
45void asm_fake_loop(__u32 t);
46
47
48/** Halt CPU
49 *
50 * Halt the current CPU until interrupt event.
51 */
52static inline void cpu_halt(void) { __asm__("hlt\n"); };
53static inline void cpu_sleep(void) { __asm__("hlt\n"); };
54
55/** Read CR2
56 *
57 * Return value in CR2
58 *
59 * @return Value read.
60 */
61static inline __u32 read_cr2(void) { __u32 v; __asm__ volatile ("movl %%cr2,%0\n" : "=r" (v)); return v; }
62
63/** Write CR3
64 *
65 * Write value to CR3.
66 *
67 * @param v Value to be written.
68 */
69static inline void write_cr3(__u32 v) { __asm__ volatile ("movl %0,%%cr3\n" : : "r" (v)); }
70
71/** Read CR3
72 *
73 * Return value in CR3
74 *
75 * @return Value read.
76 */
77static inline __u32 read_cr3(void) { __u32 v; __asm__ volatile ("movl %%cr3,%0\n" : "=r" (v)); return v; }
78
79/** Byte to port
80 *
81 * Output byte to port
82 *
83 * @param port Port to write to
84 * @param val Value to write
85 */
86static inline void outb(__u16 port, __u8 val) { __asm__ volatile ("outb %b0, %w1\n" : : "a" (val), "d" (port) ); }
87
88/** Word to port
89 *
90 * Output word to port
91 *
92 * @param port Port to write to
93 * @param val Value to write
94 */
95static inline void outw(__u16 port, __u16 val) { __asm__ volatile ("outw %w0, %w1\n" : : "a" (val), "d" (port) ); }
96
97/** Double word to port
98 *
99 * Output double word to port
100 *
101 * @param port Port to write to
102 * @param val Value to write
103 */
104static inline void outl(__u16 port, __u32 val) { __asm__ volatile ("outl %l0, %w1\n" : : "a" (val), "d" (port) ); }
105
106/** Byte from port
107 *
108 * Get byte from port
109 *
110 * @param port Port to read from
111 * @return Value read
112 */
113static inline __u8 inb(__u16 port) { __u8 val; __asm__ volatile ("inb %w1, %b0 \n" : "=a" (val) : "d" (port) ); return val; }
114
115/** Word from port
116 *
117 * Get word from port
118 *
119 * @param port Port to read from
120 * @return Value read
121 */
122static inline __u16 inw(__u16 port) { __u16 val; __asm__ volatile ("inw %w1, %w0 \n" : "=a" (val) : "d" (port) ); return val; }
123
124/** Double word from port
125 *
126 * Get double word from port
127 *
128 * @param port Port to read from
129 * @return Value read
130 */
131static inline __u32 inl(__u16 port) { __u32 val; __asm__ volatile ("inl %w1, %l0 \n" : "=a" (val) : "d" (port) ); return val; }
132
133/** Set priority level low
134 *
135 * Enable interrupts and return previous
136 * value of EFLAGS.
137 */
138static inline pri_t cpu_priority_low(void) {
139 pri_t v;
140 __asm__ volatile (
141 "pushf\n\t"
142 "popl %0\n\t"
143 "sti\n"
144 : "=r" (v)
145 );
146 return v;
147}
148
149/** Set priority level high
150 *
151 * Disable interrupts and return previous
152 * value of EFLAGS.
153 */
154static inline pri_t cpu_priority_high(void) {
155 pri_t v;
156 __asm__ volatile (
157 "pushf\n\t"
158 "popl %0\n\t"
159 "cli\n"
160 : "=r" (v)
161 );
162 return v;
163}
164
165/** Restore priority level
166 *
167 * Restore EFLAGS.
168 */
169static inline void cpu_priority_restore(pri_t pri) {
170 __asm__ volatile (
171 "pushl %0\n\t"
172 "popf\n"
173 : : "r" (pri)
174 );
175}
176
177/** Return raw priority level
178 *
179 * Return EFLAFS.
180 */
181static inline pri_t cpu_priority_read(void) {
182 pri_t v;
183 __asm__ volatile (
184 "pushf\n\t"
185 "popl %0\n"
186 : "=r" (v)
187 );
188 return v;
189}
190
191/** Return base address of current stack
192 *
193 * Return the base address of the current stack.
194 * The stack is assumed to be STACK_SIZE bytes long.
195 * The stack must start on page boundary.
196 */
197static inline __address get_stack_base(void)
198{
199 __address v;
200
201 __asm__ volatile ("andl %%esp, %0\n" : "=r" (v) : "0" (~(STACK_SIZE-1)));
202
203 return v;
204}
205
206static inline __u64 rdtsc(void)
207{
208 __u64 v;
209
210 __asm__ volatile("rdtsc\n" : "=A" (v));
211
212 return v;
213}
214
215/** Copy memory
216 *
217 * Copy a given number of bytes (3rd argument)
218 * from the memory location defined by 2nd argument
219 * to the memory location defined by 1st argument.
220 * The memory areas cannot overlap.
221 *
222 * @param destination
223 * @param source
224 * @param number of bytes
225 * @return destination
226 */
227static inline void * memcpy(void * dst, const void * src, size_t cnt)
228{
229 __u32 d0, d1, d2;
230
231 __asm__ __volatile__(
232 "rep movsl\n\t"
233 "movl %4, %%ecx\n\t"
234 "andl $3, %%ecx\n\t"
235 "jz 1f\n\t"
236 "rep movsb\n\t"
237 "1:\n"
238 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
239 : "0" (cnt / 4), "g" (cnt), "1" ((__u32) dst), "2" ((__u32) src)
240 : "memory");
241
242 return dst;
243}
244
245
246#endif
Note: See TracBrowser for help on using the repository browser.