cpufunc.h revision 1.8 1 1.8 cgd /* $NetBSD: cpufunc.h,v 1.8 1994/10/27 04:15:59 cgd Exp $ */
2 1.8 cgd
3 1.1 cgd /*
4 1.4 mycroft * Copyright (c) 1993 Charles Hannum.
5 1.4 mycroft * All rights reserved.
6 1.2 mycroft *
7 1.4 mycroft * Redistribution and use in source and binary forms, with or without
8 1.4 mycroft * modification, are permitted provided that the following conditions
9 1.4 mycroft * are met:
10 1.4 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.4 mycroft * notice, this list of conditions and the following disclaimer.
12 1.4 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.4 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.4 mycroft * documentation and/or other materials provided with the distribution.
15 1.4 mycroft * 3. All advertising materials mentioning features or use of this software
16 1.4 mycroft * must display the following acknowledgement:
17 1.4 mycroft * This product includes software developed by Charles Hannum.
18 1.4 mycroft * 4. The name of the author may not be used to endorse or promote products
19 1.5 jtc * derived from this software without specific prior written permission
20 1.4 mycroft *
21 1.4 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.4 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.4 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.4 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.4 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.4 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.4 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.4 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.4 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.4 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.4 mycroft */
32 1.4 mycroft
33 1.7 mycroft #ifndef _I386_CPUFUNC_H_
34 1.7 mycroft #define _I386_CPUFUNC_H_
35 1.7 mycroft
36 1.4 mycroft /*
37 1.4 mycroft * Functions to provide access to i386-specific instructions.
38 1.1 cgd */
39 1.1 cgd
40 1.1 cgd #include <sys/cdefs.h>
41 1.1 cgd #include <sys/types.h>
42 1.1 cgd
43 1.1 cgd static __inline int bdb(void)
44 1.1 cgd {
45 1.1 cgd extern int bdb_exists;
46 1.1 cgd
47 1.1 cgd if (!bdb_exists)
48 1.1 cgd return (0);
49 1.4 mycroft __asm __volatile("int $3");
50 1.1 cgd return (1);
51 1.1 cgd }
52 1.1 cgd
53 1.1 cgd static __inline void
54 1.4 mycroft lidt(void *p)
55 1.4 mycroft {
56 1.4 mycroft __asm __volatile("lidt (%0)" : : "r" (p));
57 1.4 mycroft }
58 1.4 mycroft
59 1.4 mycroft static __inline void
60 1.4 mycroft lldt(u_short sel)
61 1.4 mycroft {
62 1.4 mycroft __asm __volatile("lldt %0" : : "r" (sel));
63 1.4 mycroft }
64 1.4 mycroft
65 1.4 mycroft static __inline void
66 1.4 mycroft ltr(u_short sel)
67 1.4 mycroft {
68 1.4 mycroft __asm __volatile("ltr %0" : : "r" (sel));
69 1.4 mycroft }
70 1.4 mycroft
71 1.4 mycroft static __inline void
72 1.4 mycroft lcr0(u_int val)
73 1.4 mycroft {
74 1.4 mycroft __asm __volatile("movl %0,%%cr0" : : "r" (val));
75 1.4 mycroft }
76 1.4 mycroft
77 1.4 mycroft static __inline u_int
78 1.4 mycroft rcr0(void)
79 1.4 mycroft {
80 1.4 mycroft u_int val;
81 1.6 mycroft __asm __volatile("movl %%cr0,%0" : "=r" (val));
82 1.4 mycroft return val;
83 1.4 mycroft }
84 1.4 mycroft
85 1.4 mycroft static __inline u_int
86 1.4 mycroft rcr2(void)
87 1.4 mycroft {
88 1.4 mycroft u_int val;
89 1.6 mycroft __asm __volatile("movl %%cr2,%0" : "=r" (val));
90 1.4 mycroft return val;
91 1.4 mycroft }
92 1.4 mycroft
93 1.4 mycroft static __inline void
94 1.4 mycroft lcr3(u_int val)
95 1.4 mycroft {
96 1.4 mycroft __asm __volatile("movl %0,%%cr3" : : "r" (val));
97 1.4 mycroft }
98 1.4 mycroft
99 1.4 mycroft static __inline u_int
100 1.4 mycroft rcr3(void)
101 1.4 mycroft {
102 1.4 mycroft u_int val;
103 1.6 mycroft __asm __volatile("movl %%cr3,%0" : "=r" (val));
104 1.4 mycroft return val;
105 1.6 mycroft }
106 1.6 mycroft
107 1.6 mycroft static __inline void
108 1.6 mycroft tlbflush(void)
109 1.6 mycroft {
110 1.6 mycroft u_int val;
111 1.6 mycroft __asm __volatile("movl %%cr3,%0" : "=r" (val));
112 1.6 mycroft __asm __volatile("movl %0,%%cr3" : : "r" (val));
113 1.4 mycroft }
114 1.4 mycroft
115 1.4 mycroft #ifdef notyet
116 1.4 mycroft void setidt __P((int idx, /*XXX*/caddr_t func, int typ, int dpl));
117 1.4 mycroft #endif
118 1.4 mycroft
119 1.4 mycroft
120 1.4 mycroft /* XXXX ought to be in psl.h with spl() functions */
121 1.4 mycroft
122 1.4 mycroft static __inline void
123 1.1 cgd disable_intr(void)
124 1.1 cgd {
125 1.1 cgd __asm __volatile("cli");
126 1.1 cgd }
127 1.1 cgd
128 1.1 cgd static __inline void
129 1.1 cgd enable_intr(void)
130 1.1 cgd {
131 1.1 cgd __asm __volatile("sti");
132 1.1 cgd }
133 1.1 cgd
134 1.7 mycroft #endif /* !_I386_CPUFUNC_H_ */
135