9024f253ea8a2913318e76505d9a74cf2cf6cb9d
[dragonfly.git] / sys / cpu / i386 / include / vm86.h
1 /*-
2  * Copyright (c) 1997 Jonathan Lemon
3  * All rights reserved.
4  *
5  * Derived from register.h, which is
6  *     Copyright (c) 1996 Michael Smith.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/sys/i386/include/vm86.h,v 1.13 1999/09/02 20:59:50 luoqi Exp $
30  * $DragonFly: src/sys/cpu/i386/include/vm86.h,v 1.7 2006/05/20 02:42:06 dillon Exp $
31  */
32
33 #ifndef _MACHINE_VM86_H_
34 #define _MACHINE_VM86_H_
35
36 #ifndef _SYS_TYPES_H_
37 #include <sys/types.h>
38 #endif
39
40 /* standard register representation */
41 typedef union {
42         u_int   r_ex;
43         struct {
44                 u_short r_x;
45                 u_int   :16;
46         } r_w;
47         struct {
48                 u_char  r_l;
49                 u_char  r_h;
50                 u_int   :16;
51         } r_b;
52 } reg86_t;
53
54 /* layout must match definition of struct trapframe_vm86 in <machine/frame.h> */
55
56 struct vm86frame {
57         int     kernel_fs;
58         int     kernel_es;
59         int     kernel_ds;
60         reg86_t edi;
61         reg86_t esi;
62         reg86_t ebp;
63         reg86_t isp;
64         reg86_t ebx;
65         reg86_t edx;
66         reg86_t ecx;
67         reg86_t eax;
68         int     vmf_trapno;
69         int     vmf_err;
70         reg86_t eip;
71         reg86_t cs;
72         reg86_t eflags;
73         reg86_t esp;
74         reg86_t ss;
75         reg86_t es;
76         reg86_t ds;
77         reg86_t fs;
78         reg86_t gs;
79 #define vmf_ah          eax.r_b.r_h
80 #define vmf_al          eax.r_b.r_l
81 #define vmf_ax          eax.r_w.r_x
82 #define vmf_eax         eax.r_ex
83 #define vmf_bh          ebx.r_b.r_h
84 #define vmf_bl          ebx.r_b.r_l
85 #define vmf_bx          ebx.r_w.r_x
86 #define vmf_ebx         ebx.r_ex
87 #define vmf_ch          ecx.r_b.r_h
88 #define vmf_cl          ecx.r_b.r_l
89 #define vmf_cx          ecx.r_w.r_x
90 #define vmf_ecx         ecx.r_ex
91 #define vmf_dh          edx.r_b.r_h
92 #define vmf_dl          edx.r_b.r_l
93 #define vmf_dx          edx.r_w.r_x
94 #define vmf_edx         edx.r_ex
95 #define vmf_si          esi.r_w.r_x
96 #define vmf_di          edi.r_w.r_x
97 #define vmf_cs          cs.r_w.r_x
98 #define vmf_ds          ds.r_w.r_x
99 #define vmf_es          es.r_w.r_x
100 #define vmf_ss          ss.r_w.r_x
101 #define vmf_sp          esp.r_w.r_x
102 #define vmf_ip          eip.r_w.r_x
103 #define vmf_flags       eflags.r_w.r_x
104 #define vmf_eflags      eflags.r_ex
105 };
106
107 #define VM86_PMAPSIZE   3
108 #define VMAP_MALLOC     1       /* page was malloced by us */
109
110 struct vm86context {
111         int     npages;
112         struct  vm86pmap {
113                 int     flags;
114                 int     pte_num;
115                 vm_offset_t     kva;
116                 u_int   old_pte;
117         } pmap[VM86_PMAPSIZE];
118 };
119
120 #define VM_USERCHANGE   (PSL_USERCHANGE | PSL_RF)
121 #define VME_USERCHANGE  (VM_USERCHANGE | PSL_VIP | PSL_VIF)
122
123 struct vm86_kernel {
124         caddr_t vm86_intmap;                    /* interrupt map */
125         u_int   vm86_eflags;                    /* emulated flags */
126         int     vm86_has_vme;                   /* VME support */
127         int     vm86_inited;                    /* we were initialized */
128         int     vm86_debug;
129         caddr_t vm86_sproc;                     /* address of sproc */
130 };
131
132 #define VM86_INIT       1
133 #define VM86_SET_VME    2
134 #define VM86_GET_VME    3
135 #define VM86_INTCALL    4
136
137 struct vm86_init_args {
138         int     debug;                  /* debug flag */
139         int     cpu_type;               /* cpu type to emulate */
140         u_char  int_map[32];            /* interrupt map */ 
141 };
142
143 struct vm86_vme_args {
144         int     state;                  /* status */
145 };
146
147 struct vm86_intcall_args {
148         int     intnum;
149         struct  vm86frame vmf;
150 };
151
152 extern  int in_vm86call;
153 extern  pt_entry_t *vm86paddr;
154
155 struct lwp;
156
157 extern  int vm86_emulate (struct vm86frame *);
158 extern  int vm86_sysarch (struct lwp *, char *);
159 extern void vm86_trap (struct vm86frame *, int);
160 extern  int vm86_intcall (int, struct vm86frame *);
161 extern  int vm86_datacall (int, struct vm86frame *, struct vm86context *);
162 extern void vm86_initialize (void);
163 extern vm_offset_t vm86_getpage (struct vm86context *, int);
164 extern vm_offset_t vm86_addpage (struct vm86context *, int, vm_offset_t);
165 extern int vm86_getptr (struct vm86context *, vm_offset_t,
166                                 u_short *, u_short *);
167
168 extern vm_offset_t vm86_getaddr (struct vm86context *, u_short, u_short);
169
170 #endif /* _MACHINE_VM86_H_ */